diff --git a/app.vue b/app.vue
index 89c1fa0e..4498af06 100644
--- a/app.vue
+++ b/app.vue
@@ -4,7 +4,7 @@ provideGlobalCommands()
const route = useRoute()
-if (process.server && !route.path.startsWith('/settings')) {
+if (import.meta.server && !route.path.startsWith('/settings')) {
const url = useRequestURL()
useHead({
diff --git a/components/aria/AriaAnnouncer.vue b/components/aria/AriaAnnouncer.vue
index fe46114e..ed6a8e3d 100644
--- a/components/aria/AriaAnnouncer.vue
+++ b/components/aria/AriaAnnouncer.vue
@@ -1,6 +1,6 @@
diff --git a/components/status/StatusPreviewStackBlitz.vue b/components/status/StatusPreviewStackBlitz.vue
index 6f553798..7110edf1 100644
--- a/components/status/StatusPreviewStackBlitz.vue
+++ b/components/status/StatusPreviewStackBlitz.vue
@@ -26,13 +26,12 @@ const meta = computed(() => {
const lines = meta?.[2]
const code = meta?.[3].split('\n').slice(0, maxLines).join('\n')
const project = props.card.title?.replace(' - StackBlitz', '')
- const info = {
+ return {
file,
lines,
code,
project,
- }
- return info
+ } satisfies Meta
})
const vnodeCode = computed(() => {
diff --git a/components/tiptap/TiptapEmojiList.vue b/components/tiptap/TiptapEmojiList.vue
index 3268fbfe..47d810a6 100644
--- a/components/tiptap/TiptapEmojiList.vue
+++ b/components/tiptap/TiptapEmojiList.vue
@@ -13,7 +13,7 @@ const { items, command } = defineProps<{
}>()
const emojis = computed(() => {
- if (process.server)
+ if (import.meta.server)
return []
return items.map((item: CustomEmoji | Emoji) => {
diff --git a/composables/cache.ts b/composables/cache.ts
index d9503638..6ea52f6b 100644
--- a/composables/cache.ts
+++ b/composables/cache.ts
@@ -5,7 +5,7 @@ const cache = new LRUCache({
max: 1000,
})
-if (process.dev && process.client)
+if (import.meta.dev && import.meta.client)
// eslint-disable-next-line no-console
console.log({ cache })
diff --git a/composables/command.ts b/composables/command.ts
index 6f40de3e..9d18d851 100644
--- a/composables/command.ts
+++ b/composables/command.ts
@@ -1,7 +1,7 @@
import type { ComputedRef } from 'vue'
import { defineStore } from 'pinia'
import Fuse from 'fuse.js'
-import type { LocaleObject } from '#i18n'
+import type { LocaleObject } from '@nuxtjs/i18n'
import type { SearchResult } from '~/composables/masto/search'
// @unocss-include
diff --git a/composables/dialog.ts b/composables/dialog.ts
index 07cee25d..b35af76b 100644
--- a/composables/dialog.ts
+++ b/composables/dialog.ts
@@ -56,7 +56,7 @@ export async function openPublishDialog(draftKey = 'dialog', draft?: Draft, over
if (overwrite && !isEmptyDraft(currentUserDrafts.value[draftKey])) {
// TODO overwrite warning
// TODO don't overwrite, have a draft list
- if (process.dev) {
+ if (import.meta.dev) {
// eslint-disable-next-line no-alert
const result = confirm('[DEV] Are you sure you overwrite draft content?')
if (!result)
@@ -89,7 +89,7 @@ function restoreMediaPreviewFromState() {
isMediaPreviewOpen.value = history.state?.mediaPreview ?? false
}
-if (process.client) {
+if (import.meta.client) {
window.addEventListener('popstate', restoreMediaPreviewFromState)
restoreMediaPreviewFromState()
diff --git a/composables/emojis.ts b/composables/emojis.ts
index ce39c051..d16e13fb 100644
--- a/composables/emojis.ts
+++ b/composables/emojis.ts
@@ -11,7 +11,7 @@ function getDefault(): CustomEmojisInfo {
}
}
-export const currentCustomEmojis = process.server
+export const currentCustomEmojis = import.meta.server
? computed(getDefault)
: useUserLocalStorage(STORAGE_KEY_CUSTOM_EMOJIS, getDefault)
diff --git a/composables/idb/index.ts b/composables/idb/index.ts
index 9ce1e794..d671eead 100644
--- a/composables/idb/index.ts
+++ b/composables/idb/index.ts
@@ -21,7 +21,7 @@ export async function useAsyncIDBKeyval(
const data = (shallow ? shallowRef : ref)(initialValue) as Ref
- const rawInit: T = resolveUnref(initialValue)
+ const rawInit: T = toValue(initialValue)
async function read() {
if (!isIDBSupported)
diff --git a/composables/mask.ts b/composables/mask.ts
index 9534abc0..ee02252c 100644
--- a/composables/mask.ts
+++ b/composables/mask.ts
@@ -13,7 +13,7 @@ export function useMask(options: UseMaskOptions = {}) {
getContainer = () => document.body,
zIndex = 100,
} = options
- const wrapperEl = (process.server ? null : document.createElement('div')) as HTMLDivElement
+ const wrapperEl = (import.meta.server ? null : document.createElement('div')) as HTMLDivElement
function show() {
const container = getContainer()
diff --git a/composables/masto/masto.ts b/composables/masto/masto.ts
index 2aa11fa8..56f0918c 100644
--- a/composables/masto/masto.ts
+++ b/composables/masto/masto.ts
@@ -99,7 +99,7 @@ export function useStreaming(
stream.value = cb(streamingClient.value)
})
- if (process.client && !process.test)
+ if (import.meta.client && !process.test)
useNuxtApp().$pageLifecycle.addFrozenListener(cleanup)
tryOnBeforeUnmount(() => isActive.value = false)
diff --git a/composables/masto/publish.ts b/composables/masto/publish.ts
index 85f53c90..10dd28b8 100644
--- a/composables/masto/publish.ts
+++ b/composables/masto/publish.ts
@@ -94,7 +94,7 @@ export function usePublish(options: {
...(isGlitchEdition.value ? { 'content-type': 'text/markdown' } : {}),
} as mastodon.rest.v1.CreateStatusParams
- if (process.dev) {
+ if (import.meta.dev) {
// eslint-disable-next-line no-console
console.info({
raw: draft.value.params.status,
@@ -249,7 +249,7 @@ export function useUploadMediaAttachment(draft: Ref) {
}
async function pickAttachments() {
- if (process.server)
+ if (import.meta.server)
return
const mimeTypes = currentInstance.value!.configuration?.mediaAttachments.supportedMimeTypes
const files = await fileOpen({
diff --git a/composables/masto/statusDrafts.ts b/composables/masto/statusDrafts.ts
index 34b429bb..4dddee8c 100644
--- a/composables/masto/statusDrafts.ts
+++ b/composables/masto/statusDrafts.ts
@@ -4,7 +4,7 @@ import { STORAGE_KEY_DRAFTS } from '~/constants'
import type { Draft, DraftMap } from '~/types'
import type { Mutable } from '~/types/utils'
-export const currentUserDrafts = (process.server || process.test)
+export const currentUserDrafts = (import.meta.server || process.test)
? computed(() => ({}))
: useUserLocalStorage(STORAGE_KEY_DRAFTS, () => ({}))
diff --git a/composables/masto/translate.ts b/composables/masto/translate.ts
index 06a81520..8cddbbd5 100644
--- a/composables/masto/translate.ts
+++ b/composables/masto/translate.ts
@@ -45,7 +45,7 @@ export const supportedTranslationCodes = [
export function getLanguageCode() {
let code = 'en'
const getCode = (code: string) => code.replace(/-.*$/, '')
- if (!process.server) {
+ if (import.meta.client) {
const { locale } = useI18n()
code = getCode(locale.value ? locale.value : navigator.language)
}
diff --git a/composables/paginator.ts b/composables/paginator.ts
index 02c96945..49884f23 100644
--- a/composables/paginator.ts
+++ b/composables/paginator.ts
@@ -103,7 +103,7 @@ export function usePaginator(
bound.update()
}
- if (process.client) {
+ if (import.meta.client) {
useIntervalFn(() => {
bound.update()
}, 1000)
diff --git a/composables/settings/definition.ts b/composables/settings/definition.ts
index 5c9ca284..566ac0f5 100644
--- a/composables/settings/definition.ts
+++ b/composables/settings/definition.ts
@@ -56,7 +56,7 @@ export interface ThemeColors {
}
export function getDefaultLanguage(languages: string[]) {
- if (process.server)
+ if (import.meta.server)
return 'en-US'
return matchLanguages(languages, navigator.languages) || 'en-US'
}
diff --git a/composables/settings/storage.ts b/composables/settings/storage.ts
index a1a543d7..329f56b2 100644
--- a/composables/settings/storage.ts
+++ b/composables/settings/storage.ts
@@ -1,14 +1,12 @@
import type { Ref } from 'vue'
-import type { VueI18n } from 'vue-i18n'
-import type { LocaleObject } from 'vue-i18n-routing'
+import type { LocaleObject } from '@nuxtjs/i18n'
import type { FontSize, OldFontSize, PreferencesSettings, UserSettings } from './definition'
import { STORAGE_KEY_SETTINGS } from '~/constants'
import { oldFontSizeMap } from '~~/constants/options'
export function useUserSettings() {
- const i18n = useNuxtApp().vueApp.config.globalProperties.$i18n as VueI18n
- const { locales } = i18n
- const supportLanguages = (locales as LocaleObject[]).map(locale => locale.code)
+ const { locales } = useNuxtApp().$i18n
+ const supportLanguages = (unref(locales) as LocaleObject[]).map(locale => locale.code)
const settingsStorage = useUserLocalStorage(STORAGE_KEY_SETTINGS, () => getDefaultUserSettings(supportLanguages))
// Backward compatibility, font size was xs, sm, md, lg, xl before
diff --git a/composables/setups.ts b/composables/setups.ts
index f5a7a312..ec93ecd6 100644
--- a/composables/setups.ts
+++ b/composables/setups.ts
@@ -1,5 +1,4 @@
-import type { Directions } from 'vue-i18n-routing'
-import type { LocaleObject } from '#i18n'
+import type { Directions, LocaleObject } from '@nuxtjs/i18n'
export function setupPageHeader() {
const { locale, locales, t } = useI18n()
@@ -52,7 +51,7 @@ export function setupPageHeader() {
return titleTemplate
},
- link: (process.client && useAppConfig().pwaEnabled)
+ link: (import.meta.client && useAppConfig().pwaEnabled)
? () => [{
key: 'webmanifest',
rel: 'manifest',
diff --git a/composables/tiptap.ts b/composables/tiptap.ts
index da7c42bb..598dff5f 100644
--- a/composables/tiptap.ts
+++ b/composables/tiptap.ts
@@ -28,7 +28,7 @@ export interface UseTiptapOptions {
}
export function useTiptap(options: UseTiptapOptions) {
- if (process.server)
+ if (import.meta.server)
return { editor: ref() }
const {
diff --git a/composables/tiptap/suggestion.ts b/composables/tiptap/suggestion.ts
index e9c6b035..ce666bab 100644
--- a/composables/tiptap/suggestion.ts
+++ b/composables/tiptap/suggestion.ts
@@ -18,7 +18,7 @@ export function isCustomEmoji(emoji: CustomEmoji | Emoji): emoji is CustomEmoji
return !!(emoji as CustomEmoji).custom
}
-export const TiptapMentionSuggestion: Partial = process.server
+export const TiptapMentionSuggestion: Partial = import.meta.server
? {}
: {
pluginKey: new PluginKey('mention'),
@@ -56,7 +56,7 @@ export const TiptapEmojiSuggestion: Partial = {
pluginKey: new PluginKey('emoji'),
char: ':',
async items({ query }): Promise<(CustomEmoji | Emoji)[]> {
- if (process.server || query.length === 0)
+ if (import.meta.server || query.length === 0)
return []
if (currentCustomEmojis.value.emojis.length === 0)
diff --git a/composables/users.ts b/composables/users.ts
index 75460b07..8c0b21bd 100644
--- a/composables/users.ts
+++ b/composables/users.ts
@@ -32,7 +32,7 @@ function initializeUsers(): Promise[ | RemovableRef
}
}
- const users = process.server
+ const users = import.meta.server
? ref(defaultUsers)
: useAsyncIDBKeyval(STORAGE_KEY_USERS, defaultUsers, { deep: true })
@@ -42,7 +42,7 @@ function initializeUsers(): Promise][ | RemovableRef
return users
}
-const users = process.server ? initializeUsers() as Ref | RemovableRef : await initializeUsers()
+const users = import.meta.server ? initializeUsers() as Ref | RemovableRef : await initializeUsers()
const nodes = useLocalStorage>(STORAGE_KEY_NODES, {}, { deep: true })
const currentUserHandle = useLocalStorage(STORAGE_KEY_CURRENT_USER_HANDLE, mock ? mock.user.account.id : '')
export const instanceStorage = useLocalStorage>(STORAGE_KEY_SERVERS, mock ? mock.server : {}, { deep: true })
@@ -81,7 +81,7 @@ export const isGotoSocial = computed(() => currentNodeInfo.value?.software?.name
export const isGlitchEdition = computed(() => currentInstance.value?.version?.includes('+glitch'))
// when multiple tabs: we need to reload window when sign in, switch account or sign out
-if (process.client) {
+if (import.meta.client) {
const windowReload = () => {
document.visibilityState === 'visible' && window.location.reload()
}
@@ -184,7 +184,7 @@ export function getExpandSpoilersByDefault(account: mastodon.v1.AccountCredentia
* @returns `true` when user selected "Always show media" as Media Display preference
*/
export function getExpandMediaByDefault(account: mastodon.v1.AccountCredentials) {
- return accountPreferencesMap.get(account.acct)?.['reading:expand:media'] === 'show_all' ?? false
+ return accountPreferencesMap.get(account.acct)?.['reading:expand:media'] === 'show_all'
}
/**
@@ -192,7 +192,7 @@ export function getExpandMediaByDefault(account: mastodon.v1.AccountCredentials)
* @returns `true` when user selected "Always hide media" as Media Display preference
*/
export function getHideMediaByDefault(account: mastodon.v1.AccountCredentials) {
- return accountPreferencesMap.get(account.acct)?.['reading:expand:media'] === 'hide_all' ?? false
+ return accountPreferencesMap.get(account.acct)?.['reading:expand:media'] === 'hide_all'
}
export async function fetchAccountInfo(client: mastodon.rest.Client, server: string) {
@@ -343,7 +343,7 @@ interface UseUserLocalStorageCache {
* @param initial
*/
export function useUserLocalStorage(key: string, initial: () => T): Ref {
- if (process.server || process.test)
+ if (import.meta.server || process.test)
return shallowRef(initial())
// @ts-expect-error bind value to the function
diff --git a/composables/vue.ts b/composables/vue.ts
index 10b7e212..5b50549d 100644
--- a/composables/vue.ts
+++ b/composables/vue.ts
@@ -43,7 +43,7 @@ export function onReactivated(hook: () => void, target?: ComponentInternalInstan
export function useHydratedHead(input: UseHeadInput, options?: UseHeadOptions): ActiveHeadEntry> | void {
if (input && typeof input === 'object' && !('value' in input)) {
const title = 'title' in input ? input.title : undefined
- if (process.server && title) {
+ if (import.meta.server && title) {
input.meta = input.meta || []
if (Array.isArray(input.meta)) {
input.meta.push(
diff --git a/composables/web-share-target.ts b/composables/web-share-target.ts
index 70772fc5..c68d59a8 100644
--- a/composables/web-share-target.ts
+++ b/composables/web-share-target.ts
@@ -1,5 +1,5 @@
export function useWebShareTarget(listener?: (message: MessageEvent) => void) {
- if (process.server)
+ if (import.meta.server)
return
onBeforeMount(() => {
diff --git a/config/i18n.config.ts b/config/i18n.config.ts
new file mode 100644
index 00000000..fcef6fb8
--- /dev/null
+++ b/config/i18n.config.ts
@@ -0,0 +1,20 @@
+import {
+ currentLocales,
+ datetimeFormats,
+ numberFormats,
+ pluralRules,
+} from './i18n'
+
+export default defineI18nConfig(() => {
+ return {
+ legacy: false,
+ availableLocales: currentLocales.map(l => l.code),
+ fallbackLocale: 'en-US',
+ fallbackWarn: true,
+ missingWarn: true,
+ datetimeFormats,
+ numberFormats,
+ // eslint-disable-next-line @typescript-eslint/comma-dangle
+ pluralRules
+ }
+})
diff --git a/config/i18n.ts b/config/i18n.ts
index 1230d5db..9975780c 100644
--- a/config/i18n.ts
+++ b/config/i18n.ts
@@ -1,7 +1,5 @@
-import type { NuxtI18nOptions } from '@nuxtjs/i18n'
import type { DateTimeFormats, NumberFormats, PluralizationRule, PluralizationRules } from '@intlify/core-base'
-
-import type { LocaleObject } from '#i18n'
+import type { LocaleObject } from '@nuxtjs/i18n'
interface LocaleObjectData extends LocaleObject {
numberFormats?: NumberFormats
@@ -239,7 +237,7 @@ function buildLocales() {
...data,
code: l.code,
name: l.name,
- files: [data.file!, `${l.code}.json`],
+ files: [data.file as string, `${l.code}.json`],
}
delete entry.file
acc.push(entry)
@@ -256,7 +254,7 @@ function buildLocales() {
export const currentLocales = buildLocales()
-const datetimeFormats = Object.values(currentLocales).reduce((acc, data) => {
+export const datetimeFormats = Object.values(currentLocales).reduce((acc, data) => {
const dateTimeFormats = data.dateTimeFormats
if (dateTimeFormats) {
acc[data.code] = { ...dateTimeFormats }
@@ -281,7 +279,7 @@ const datetimeFormats = Object.values(currentLocales).reduce((acc, data) => {
return acc
}, {})
-const numberFormats = Object.values(currentLocales).reduce((acc, data) => {
+export const numberFormats = Object.values(currentLocales).reduce((acc, data) => {
const numberFormats = data.numberFormats
if (numberFormats) {
acc[data.code] = { ...numberFormats }
@@ -313,7 +311,7 @@ const numberFormats = Object.values(currentLocales).reduce((acc, data) => {
return acc
}, {})
-const pluralRules = Object.values(currentLocales).reduce((acc, data) => {
+export const pluralRules = Object.values(currentLocales).reduce((acc, data) => {
const pluralRule = data.pluralRule
if (pluralRule) {
acc[data.code] = pluralRule
@@ -322,21 +320,3 @@ const pluralRules = Object.values(currentLocales).reduce((acc, data) => {
return acc
}, {})
-
-export const i18n: NuxtI18nOptions = {
- locales: currentLocales,
- lazy: true,
- strategy: 'no_prefix',
- detectBrowserLanguage: false,
- langDir: 'locales',
- defaultLocale: 'en-US',
- vueI18n: {
- availableLocales: currentLocales.map(l => l.code),
- fallbackLocale: 'en-US',
- fallbackWarn: false,
- missingWarn: false,
- datetimeFormats,
- numberFormats,
- pluralRules,
- },
-}
diff --git a/docs/package.json b/docs/package.json
index 9ba583dc..b07df8cc 100755
--- a/docs/package.json
+++ b/docs/package.json
@@ -9,10 +9,10 @@
"preview": "nuxi preview"
},
"dependencies": {
- "theme-colors": "^0.0.5"
+ "theme-colors": "^0.1.0"
},
"devDependencies": {
- "@nuxt-themes/docus": "^1.14.6",
- "nuxt": "^3.7.0"
+ "@nuxt-themes/docus": "^1.15.0",
+ "nuxt": "^3.10.3"
}
}
diff --git a/emoji-mart-traslation.d.ts b/emoji-mart-traslation.d.ts
index d99e6cd2..32fca08c 100644
--- a/emoji-mart-traslation.d.ts
+++ b/emoji-mart-traslation.d.ts
@@ -1,3 +1,3 @@
declare module 'virtual:emoji-mart-lang-importer' {
- export default function(lang: string): Promise
+ export default function (lang: string): Promise
}
diff --git a/error.vue b/error.vue
index ea822dfb..f4c4b575 100644
--- a/error.vue
+++ b/error.vue
@@ -11,7 +11,7 @@ const errorCodes: Record = {
404: 'Page not found',
}
-if (process.dev)
+if (import.meta.dev)
console.error(error)
const defaultMessage = 'Something went wrong'
diff --git a/middleware/1.permalink.global.ts b/middleware/1.permalink.global.ts
index e27f5fdc..754d0815 100644
--- a/middleware/1.permalink.global.ts
+++ b/middleware/1.permalink.global.ts
@@ -1,5 +1,5 @@
export default defineNuxtRouteMiddleware(async (to, from) => {
- if (process.server)
+ if (import.meta.server)
return
if (!('server' in to.params))
diff --git a/middleware/2.single-instance.global.ts b/middleware/2.single-instance.global.ts
index 83bb9a2c..527d8358 100644
--- a/middleware/2.single-instance.global.ts
+++ b/middleware/2.single-instance.global.ts
@@ -1,5 +1,5 @@
export default defineNuxtRouteMiddleware(async (to) => {
- if (process.server || !useRuntimeConfig().public.singleInstance)
+ if (import.meta.server || !useRuntimeConfig().public.singleInstance)
return
if (to.params.server) {
diff --git a/middleware/auth.ts b/middleware/auth.ts
index 7d5c36c4..0210fedc 100644
--- a/middleware/auth.ts
+++ b/middleware/auth.ts
@@ -1,7 +1,7 @@
import type { RouteLocationNormalized } from 'vue-router'
export default defineNuxtRouteMiddleware((to) => {
- if (process.server)
+ if (import.meta.server)
return
if (to.path === '/signin/callback')
diff --git a/modules/emoji-mart-translation.ts b/modules/emoji-mart-translation.ts
index fbc62858..8118c4dd 100644
--- a/modules/emoji-mart-translation.ts
+++ b/modules/emoji-mart-translation.ts
@@ -1,7 +1,6 @@
import fs from 'fs-extra'
import { createResolver, defineNuxtModule } from '@nuxt/kit'
-import { i18n } from '../config/i18n'
-import type { LocaleObject } from '#i18n'
+import { currentLocales } from '../config/i18n'
const virtual = 'virtual:emoji-mart-lang-importer'
const resolvedVirtual = `\0${virtual}.mjs`
@@ -25,7 +24,7 @@ export default defineNuxtModule({
if (id === resolvedVirtual) {
const locales = await Promise.all(
Array
- .from(new Set((i18n.locales as LocaleObject[]).map(l => l.code.split('-')[0])))
+ .from(new Set((currentLocales).map(l => l.code.split('-')[0])))
.map(async (l) => {
const exists = await isFile(resolver.resolve(`../node_modules/@emoji-mart/data/i18n/${l}.json`))
return [l, exists] as [code: string, exists: boolean]
diff --git a/modules/pwa/i18n.ts b/modules/pwa/i18n.ts
index e1cfe25b..f8e2b1e6 100644
--- a/modules/pwa/i18n.ts
+++ b/modules/pwa/i18n.ts
@@ -3,12 +3,11 @@ import { readFile } from 'fs-extra'
import { createResolver } from '@nuxt/kit'
import type { ManifestOptions } from 'vite-plugin-pwa'
import { getEnv } from '../../config/env'
-import { i18n } from '../../config/i18n'
-import type { LocaleObject } from '#i18n'
+import { currentLocales } from '../../config/i18n'
export type LocalizedWebManifest = Record>
-export const pwaLocales = i18n.locales as LocaleObject[]
+export const pwaLocales = currentLocales
type WebManifestEntry = Pick
type RequiredWebManifestEntry = Required>
@@ -141,8 +140,8 @@ export async function createI18n(): Promise {
.map(async ({ code, dir = 'ltr', file, files }) => {
// read locale file or files
const { action, app_desc_short, app_name, nav, pwa } = file
- ? await readI18nFile(file)
- : await findBestWebManifestData(files, env)
+ ? await readI18nFile(file as string)
+ : await findBestWebManifestData(files as string[], env)
const entry = pwa?.webmanifest?.[env] ?? {}
if (!entry.name && app_name)
diff --git a/modules/tauri/runtime/nitro.client.ts b/modules/tauri/runtime/nitro.client.ts
index 5f16feba..affedc06 100644
--- a/modules/tauri/runtime/nitro.client.ts
+++ b/modules/tauri/runtime/nitro.client.ts
@@ -37,7 +37,7 @@ export default defineNuxtPlugin(async () => {
const config = useRuntimeConfig()
const h3App = createApp({
- debug: process.dev,
+ debug: import.meta.dev,
// TODO: add global error handler
// onError: (err, event) => {
// console.log({ err, event })
diff --git a/nuxt.config.ts b/nuxt.config.ts
index 911e9b56..034eaded 100644
--- a/nuxt.config.ts
+++ b/nuxt.config.ts
@@ -1,9 +1,9 @@
import { createResolver, useNuxt } from '@nuxt/kit'
import { isCI, isDevelopment, isWindows } from 'std-env'
import { isPreview } from './config/env'
-import { i18n } from './config/i18n'
import { pwa } from './config/pwa'
import type { BuildInfo } from './types'
+import { currentLocales } from './config/i18n'
const { resolve } = createResolver(import.meta.url)
@@ -34,7 +34,6 @@ export default defineNuxtConfig({
'stale-dep/nuxt',
],
vue: {
- defineModel: true,
propsDestructure: true,
},
macros: {
@@ -46,9 +45,11 @@ export default defineNuxtConfig({
devtools: {
enabled: true,
},
+ features: {
+ inlineStyles: false,
+ },
experimental: {
payloadExtraction: false,
- inlineSSRStyles: false,
renderJsonPayloads: true,
},
css: [
@@ -277,7 +278,15 @@ export default defineNuxtConfig({
rateLimiter: false,
},
colorMode: { classSuffix: '' },
- i18n,
+ i18n: {
+ locales: currentLocales,
+ lazy: true,
+ strategy: 'no_prefix',
+ detectBrowserLanguage: false,
+ langDir: 'locales',
+ defaultLocale: 'en-US',
+ vueI18n: './config/i18n.config.ts',
+ },
pwa,
staleDep: {
packageManager: 'pnpm',
diff --git a/package.json b/package.json
index b94829ff..0a5cf720 100644
--- a/package.json
+++ b/package.json
@@ -36,12 +36,12 @@
"@fnando/sparkline": "^0.3.10",
"@iconify-emoji/twemoji": "^1.0.2",
"@iconify/json": "^2.2.170",
- "@iconify/utils": "^2.1.7",
- "@nuxt/devtools": "^1.0.0-beta.1",
- "@nuxt/test-utils": "^3.9.0-alpha.1",
+ "@iconify/utils": "^2.1.22",
+ "@nuxt/devtools": "^1.0.8",
+ "@nuxt/test-utils": "^3.11.0",
"@nuxtjs/color-mode": "^3.3.2",
- "@nuxtjs/i18n": "8.0.0-beta.10",
- "@pinia/nuxt": "^0.4.11",
+ "@nuxtjs/i18n": "^8.1.1",
+ "@pinia/nuxt": "^0.5.1",
"@tiptap/core": "2.1.8",
"@tiptap/extension-bold": "2.1.8",
"@tiptap/extension-character-count": "2.1.8",
@@ -56,22 +56,22 @@
"@tiptap/starter-kit": "2.1.8",
"@tiptap/suggestion": "2.1.8",
"@tiptap/vue-3": "2.1.8",
- "@unocss/nuxt": "^0.53.4",
+ "@unocss/nuxt": "^0.58.5",
"@upstash/redis": "^1.27.1",
"@vercel/kv": "^1.0.1",
"@vue-macros/nuxt": "^1.6.0",
- "@vueuse/core": "^10.2.1",
+ "@vueuse/core": "^10.8.0",
"@vueuse/gesture": "^2.0.0",
- "@vueuse/integrations": "^10.2.1",
- "@vueuse/math": "^10.2.1",
- "@vueuse/motion": "2.0.0",
- "@vueuse/nuxt": "^10.2.1",
+ "@vueuse/integrations": "^10.8.0",
+ "@vueuse/math": "^10.8.0",
+ "@vueuse/motion": "2.1.0",
+ "@vueuse/nuxt": "^10.8.0",
"blurhash": "^2.0.5",
- "browser-fs-access": "^0.34.1",
+ "browser-fs-access": "^0.35.0",
"chroma-js": "^2.4.2",
"emoji-mart": "^5.5.2",
"file-saver": "^2.0.5",
- "floating-vue": "2.0.0-beta.24",
+ "floating-vue": "^5.2.2",
"focus-trap": "^7.5.1",
"form-data": "^4.0.0",
"fuse.js": "^6.6.2",
@@ -86,7 +86,7 @@
"node-emoji": "^2.1.3",
"nuxt-security": "^0.13.1",
"page-lifecycle": "^0.1.2",
- "pinia": "^2.1.4",
+ "pinia": "^2.1.7",
"postcss-nested": "^6.0.1",
"prosemirror-highlight": "^0.5.0",
"rollup-plugin-node-polyfills": "^0.2.1",
@@ -101,10 +101,10 @@
"theme-vitesse": "^0.7.2",
"tiny-decode": "^0.1.3",
"tippy.js": "^6.3.7",
- "ufo": "^1.3.0",
- "ultrahtml": "^1.2.0",
- "unimport": "^3.0.12",
- "vite-plugin-pwa": "^0.16.4",
+ "ufo": "^1.4.0",
+ "ultrahtml": "^1.5.3",
+ "unimport": "^3.7.1",
+ "vite-plugin-pwa": "^0.19.0",
"vue-advanced-cropper": "^2.8.8",
"vue-virtual-scroller": "2.0.0-beta.8",
"workbox-build": "^7.0.0",
@@ -112,8 +112,8 @@
"ws": "^8.15.1"
},
"devDependencies": {
- "@antfu/eslint-config": "^0.41.3",
- "@antfu/ni": "^0.21.8",
+ "@antfu/eslint-config": "^0.43.1",
+ "@antfu/ni": "^0.21.12",
"@types/chroma-js": "^2.4.1",
"@types/file-saver": "^2.0.5",
"@types/flat": "^5.0.2",
@@ -123,34 +123,34 @@
"@types/prettier": "^2.7.3",
"@types/wicg-file-system-access": "^2020.9.6",
"@types/ws": "^8.5.10",
- "@unlazy/nuxt": "^0.9.3",
- "@vue/test-utils": "^2.4.3",
+ "@unlazy/nuxt": "^0.11.1",
+ "@vue/test-utils": "^2.4.4",
"bumpp": "^9.2.0",
"consola": "^3.2.3",
"eslint": "^8.49.0",
"flat": "^5.0.2",
"fs-extra": "^11.1.1",
"lint-staged": "^14.0.1",
- "nuxt": "3.8.2",
+ "nuxt": "^3.10.3",
"prettier": "^3.0.3",
- "sharp": "^0.32.5",
+ "sharp": "^0.32.6",
"sharp-ico": "^0.1.5",
"simple-git-hooks": "^2.9.0",
- "tsx": "^3.12.8",
- "typescript": "^5.1.6",
- "vitest": "^1.3.0",
- "vue-tsc": "^1.8.8"
+ "tsx": "^4.7.1",
+ "typescript": "^5.3.3",
+ "vitest": "1.3.1",
+ "vue-tsc": "^1.8.27"
},
"pnpm": {
"overrides": {
- "@nuxt/schema": "3.8.2",
- "unstorage": "^1.9.0"
+ "unstorage": "^1.10.1"
},
"patchedDependencies": {
"nuxt-security@0.13.1": "patches/nuxt-security@0.13.1.patch"
}
},
"resolutions": {
+ "vitest": "1.3.1",
"vue": "^3.4.19"
},
"simple-git-hooks": {
diff --git a/page-lifecycle.d.ts b/page-lifecycle.d.ts
index 16fe86dd..415f1d94 100644
--- a/page-lifecycle.d.ts
+++ b/page-lifecycle.d.ts
@@ -1,17 +1,17 @@
declare module 'page-lifecycle/dist/lifecycle.mjs' {
- type PageLifecycleState = 'active' | 'passive' | 'hidden' | 'frozen' | 'terminated'
+ type PageLifecycleState = 'active' | 'passive' | 'hidden' | 'frozen' | 'terminated'
- interface PageLifecycleEvent extends Event {
- newState: PageLifecycleState
- oldState: PageLifecycleState
- }
- interface PageLifecycle extends EventTarget {
- get state(): PageLifecycleState
- get pageWasDiscarded(): boolean
- addUnsavedChanges: (id: Symbol | any) => void
- removeUnsavedChanges: (id: Symbol | any) => void
- addEventListener: (type: string, listener: (evt: PageLifecycleEvent) => void) => void
- }
- const lifecycle: PageLifecycle
- export default lifecycle
+ interface PageLifecycleEvent extends Event {
+ newState: PageLifecycleState
+ oldState: PageLifecycleState
+ }
+ interface PageLifecycle extends EventTarget {
+ get state(): PageLifecycleState
+ get pageWasDiscarded(): boolean
+ addUnsavedChanges: (id: symbol | any) => void
+ removeUnsavedChanges: (id: symbol | any) => void
+ addEventListener: (type: string, listener: (evt: PageLifecycleEvent) => void) => void
+ }
+ const lifecycle: PageLifecycle
+ export default lifecycle
}
diff --git a/pages/[[server]]/@[account]/index.vue b/pages/[[server]]/@[account]/index.vue
index 36eb9298..46e9211a 100644
--- a/pages/[[server]]/@[account]/index.vue
+++ b/pages/[[server]]/@[account]/index.vue
@@ -8,7 +8,7 @@ const accountName = computed(() => toShortHandle(params.account as string))
const { t } = useI18n()
-const { data: account, pending, refresh } = await useAsyncData(() => fetchAccountByHandle(accountName.value).catch(() => null), { immediate: process.client, default: () => shallowRef() })
+const { data: account, pending, refresh } = await useAsyncData(() => fetchAccountByHandle(accountName.value).catch(() => null), { immediate: import.meta.client, default: () => shallowRef() })
const relationship = computed(() => account ? useRelationship(account.value).value : undefined)
const userSettings = useUserSettings()
diff --git a/pages/home.vue b/pages/home.vue
index b25c85bf..27383c2d 100644
--- a/pages/home.vue
+++ b/pages/home.vue
@@ -6,7 +6,7 @@ definePageMeta({
const route = useRoute()
const router = useRouter()
-if (process.client && route.path === '/signin/callback')
+if (import.meta.client && route.path === '/signin/callback')
router.push('/home')
const { t } = useI18n()
diff --git a/pages/settings/users/index.vue b/pages/settings/users/index.vue
index 6daa02ee..b44e9781 100644
--- a/pages/settings/users/index.vue
+++ b/pages/settings/users/index.vue
@@ -12,7 +12,7 @@ useHydratedHead({
const loggedInUsers = useUsers()
async function exportTokens() {
- if (process.server)
+ if (import.meta.server)
return
if (!confirm('Please aware that the tokens represent the **full access** to your accounts, and should be treated as sensitive information. Are you sure you want to export the tokens?'))
@@ -31,7 +31,7 @@ async function exportTokens() {
}
async function importTokens() {
- if (process.server)
+ if (import.meta.server)
return
const file = await fileOpen({
description: 'Token File',
diff --git a/pages/share-target.vue b/pages/share-target.vue
index 5e565218..1e41717d 100644
--- a/pages/share-target.vue
+++ b/pages/share-target.vue
@@ -8,7 +8,7 @@ definePageMeta({
useWebShareTarget()
-const pwaIsInstalled = process.client && !!useNuxtApp().$pwa?.isInstalled
+const pwaIsInstalled = import.meta.client && !!useNuxtApp().$pwa?.isInstalled
diff --git a/plugins/setup-head-script.server.ts b/plugins/setup-head-script.server.ts
index 47244e04..213188a9 100644
--- a/plugins/setup-head-script.server.ts
+++ b/plugins/setup-head-script.server.ts
@@ -16,7 +16,7 @@ export default defineNuxtPlugin(() => {
if (!settings) { return }
const html = document.documentElement
- ${process.dev ? 'console.log({ settings })' : ''}
+ ${import.meta.dev ? 'console.log({ settings })' : ''}
if (settings.fontSize) {
const oldFontSizeMap = ${JSON.stringify(oldFontSizeMap)}
diff --git a/plugins/setup-i18n.ts b/plugins/setup-i18n.ts
index fecd933a..d421f954 100644
--- a/plugins/setup-i18n.ts
+++ b/plugins/setup-i18n.ts
@@ -7,13 +7,13 @@ export default defineNuxtPlugin(async (nuxt) => {
nuxt.vueApp.config.globalProperties.$d = wrapI18n(d)
nuxt.vueApp.config.globalProperties.$n = wrapI18n(n)
- if (process.client) {
- const i18n = nuxt.vueApp.config.globalProperties.$i18n as import('vue-i18n').VueI18n
+ if (import.meta.client) {
+ const i18n = useNuxtApp().$i18n
const { setLocale, locales } = i18n
const userSettings = useUserSettings()
const lang = computed(() => userSettings.value.language)
- const supportLanguages = (locales as import('vue-i18n-routing').LocaleObject[]).map(locale => locale.code)
+ const supportLanguages = unref(locales).map(locale => locale.code)
if (!supportLanguages.includes(lang.value))
userSettings.value.language = getDefaultLanguage(supportLanguages)
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 295df5f1..16145174 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -5,9 +5,9 @@ settings:
excludeLinksFromLockfile: false
overrides:
+ vitest: 1.3.1
vue: ^3.4.19
- '@nuxt/schema': 3.8.2
- unstorage: ^1.9.0
+ unstorage: ^1.10.1
patchedDependencies:
nuxt-security@0.13.1:
@@ -31,23 +31,23 @@ importers:
specifier: ^2.2.170
version: 2.2.170
'@iconify/utils':
- specifier: ^2.1.7
- version: 2.1.7
+ specifier: ^2.1.22
+ version: 2.1.22
'@nuxt/devtools':
- specifier: ^1.0.0-beta.1
- version: 1.0.4(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)(nuxt@3.8.2)(rollup@2.79.1)(vite@4.5.0)
+ specifier: ^1.0.8
+ version: 1.0.8(nuxt@3.10.3)(rollup@4.6.0)(vite@5.1.4)
'@nuxt/test-utils':
- specifier: ^3.9.0-alpha.1
- version: 3.9.0-alpha.1(@vue/test-utils@2.4.3)(h3@1.9.0)(happy-dom@10.5.2)(rollup@2.79.1)(vite@4.5.0)(vitest@1.3.0)(vue-router@4.2.5)(vue@3.4.19)
+ specifier: ^3.11.0
+ version: 3.11.0(@vue/test-utils@2.4.4)(h3@1.10.2)(happy-dom@10.5.2)(rollup@4.6.0)(vite@5.1.4)(vitest@1.3.1)(vue-router@4.3.0)(vue@3.4.19)
'@nuxtjs/color-mode':
specifier: ^3.3.2
- version: 3.3.2(rollup@2.79.1)
+ version: 3.3.2(rollup@4.6.0)
'@nuxtjs/i18n':
- specifier: 8.0.0-beta.10
- version: 8.0.0-beta.10(rollup@2.79.1)(vue-router@4.2.5)(vue@3.4.19)
+ specifier: ^8.1.1
+ version: 8.1.1(rollup@4.6.0)(vue@3.4.19)
'@pinia/nuxt':
- specifier: ^0.4.11
- version: 0.4.11(rollup@2.79.1)(typescript@5.1.6)(vue@3.4.19)
+ specifier: ^0.5.1
+ version: 0.5.1(rollup@4.6.0)(typescript@5.3.3)(vue@3.4.19)
'@tiptap/core':
specifier: 2.1.8
version: 2.1.8(@tiptap/pm@2.0.3)
@@ -91,8 +91,8 @@ importers:
specifier: 2.1.8
version: 2.1.8(@tiptap/core@2.1.8)(@tiptap/pm@2.0.3)(vue@3.4.19)
'@unocss/nuxt':
- specifier: ^0.53.4
- version: 0.53.4(postcss@8.4.32)(rollup@2.79.1)(vite@4.5.0)(webpack@5.89.0)
+ specifier: ^0.58.5
+ version: 0.58.5(postcss@8.4.35)(rollup@4.6.0)(vite@5.1.4)(webpack@5.89.0)
'@upstash/redis':
specifier: ^1.27.1
version: 1.27.1
@@ -101,31 +101,31 @@ importers:
version: 1.0.1
'@vue-macros/nuxt':
specifier: ^1.6.0
- version: 1.6.0(@vue-macros/reactivity-transform@0.3.23)(@vueuse/core@10.2.1)(nuxt@3.8.2)(rollup@2.79.1)(typescript@5.1.6)(vite@4.5.0)(vue-tsc@1.8.8)(vue@3.4.19)(webpack@5.89.0)
+ version: 1.6.0(@vue-macros/reactivity-transform@0.3.23)(@vueuse/core@10.8.0)(nuxt@3.10.3)(rollup@4.6.0)(typescript@5.3.3)(vite@5.1.4)(vue-tsc@1.8.27)(vue@3.4.19)(webpack@5.89.0)
'@vueuse/core':
- specifier: ^10.2.1
- version: 10.2.1(vue@3.4.19)
+ specifier: ^10.8.0
+ version: 10.8.0(vue@3.4.19)
'@vueuse/gesture':
specifier: ^2.0.0
version: 2.0.0(vue@3.4.19)
'@vueuse/integrations':
- specifier: ^10.2.1
- version: 10.2.1(focus-trap@7.5.2)(fuse.js@6.6.2)(idb-keyval@6.2.1)(vue@3.4.19)
+ specifier: ^10.8.0
+ version: 10.8.0(focus-trap@7.5.4)(fuse.js@6.6.2)(idb-keyval@6.2.1)(vue@3.4.19)
'@vueuse/math':
- specifier: ^10.2.1
- version: 10.2.1(vue@3.4.19)
+ specifier: ^10.8.0
+ version: 10.8.0(vue@3.4.19)
'@vueuse/motion':
- specifier: 2.0.0
- version: 2.0.0(rollup@2.79.1)(vue@3.4.19)
+ specifier: 2.1.0
+ version: 2.1.0(rollup@4.6.0)(vue@3.4.19)
'@vueuse/nuxt':
- specifier: ^10.2.1
- version: 10.2.1(nuxt@3.8.2)(rollup@2.79.1)(vue@3.4.19)
+ specifier: ^10.8.0
+ version: 10.8.0(nuxt@3.10.3)(rollup@4.6.0)(vue@3.4.19)
blurhash:
specifier: ^2.0.5
version: 2.0.5
browser-fs-access:
- specifier: ^0.34.1
- version: 0.34.1
+ specifier: ^0.35.0
+ version: 0.35.0
chroma-js:
specifier: ^2.4.2
version: 2.4.2
@@ -136,11 +136,11 @@ importers:
specifier: ^2.0.5
version: 2.0.5
floating-vue:
- specifier: 2.0.0-beta.24
- version: 2.0.0-beta.24(vue@3.4.19)
+ specifier: ^5.2.2
+ version: 5.2.2(vue@3.4.19)
focus-trap:
specifier: ^7.5.1
- version: 7.5.2
+ version: 7.5.4
form-data:
specifier: ^4.0.0
version: 4.0.0
@@ -167,7 +167,7 @@ importers:
version: 4.1.0
lru-cache:
specifier: ^10.0.0
- version: 10.0.1
+ version: 10.2.0
masto:
specifier: ^6.5.2
version: 6.5.2
@@ -176,28 +176,28 @@ importers:
version: 2.1.3
nuxt-security:
specifier: ^0.13.1
- version: 0.13.1(patch_hash=bd6cmp7ukwwiwrxafbbotwkihe)(rollup@2.79.1)
+ version: 0.13.1(patch_hash=bd6cmp7ukwwiwrxafbbotwkihe)(rollup@4.6.0)
page-lifecycle:
specifier: ^0.1.2
version: 0.1.2
pinia:
- specifier: ^2.1.4
- version: 2.1.4(typescript@5.1.6)(vue@3.4.19)
+ specifier: ^2.1.7
+ version: 2.1.7(typescript@5.3.3)(vue@3.4.19)
postcss-nested:
specifier: ^6.0.1
- version: 6.0.1(postcss@8.4.32)
+ version: 6.0.1(postcss@8.4.35)
prosemirror-highlight:
specifier: ^0.5.0
- version: 0.5.0(prosemirror-model@1.19.4)(prosemirror-state@1.4.3)(prosemirror-view@1.32.7)(shiki@1.1.2)
+ version: 0.5.0(prosemirror-model@1.19.4)(prosemirror-state@1.4.3)(prosemirror-view@1.32.7)(shiki@1.1.7)
rollup-plugin-node-polyfills:
specifier: ^0.2.1
version: 0.2.1
shiki:
specifier: ^1.0.0
- version: 1.1.2
+ version: 1.1.7
simple-git:
specifier: ^3.19.1
- version: 3.21.0
+ version: 3.22.0
slimeform:
specifier: ^0.9.1
version: 0.9.1(vue@3.4.19)
@@ -206,7 +206,7 @@ importers:
version: 0.7.0
std-env:
specifier: ^3.3.3
- version: 3.5.0
+ version: 3.7.0
string-length:
specifier: ^5.0.1
version: 5.0.1
@@ -226,17 +226,17 @@ importers:
specifier: ^6.3.7
version: 6.3.7
ufo:
- specifier: ^1.3.0
- version: 1.3.2
+ specifier: ^1.4.0
+ version: 1.4.0
ultrahtml:
- specifier: ^1.2.0
- version: 1.5.2
+ specifier: ^1.5.3
+ version: 1.5.3
unimport:
- specifier: ^3.0.12
- version: 3.6.0(rollup@2.79.1)
+ specifier: ^3.7.1
+ version: 3.7.1(rollup@4.6.0)
vite-plugin-pwa:
- specifier: ^0.16.4
- version: 0.16.4(vite@4.5.0)(workbox-build@7.0.0)(workbox-window@7.0.0)
+ specifier: ^0.19.0
+ version: 0.19.0(vite@5.1.4)(workbox-build@7.0.0)(workbox-window@7.0.0)
vue-advanced-cropper:
specifier: ^2.8.8
version: 2.8.8(vue@3.4.19)
@@ -251,14 +251,14 @@ importers:
version: 7.0.0
ws:
specifier: ^8.15.1
- version: 8.15.1
+ version: 8.16.0
devDependencies:
'@antfu/eslint-config':
- specifier: ^0.41.3
- version: 0.41.3(eslint@8.49.0)(typescript@5.1.6)
+ specifier: ^0.43.1
+ version: 0.43.1(eslint@8.49.0)(typescript@5.3.3)
'@antfu/ni':
- specifier: ^0.21.8
- version: 0.21.8
+ specifier: ^0.21.12
+ version: 0.21.12
'@types/chroma-js':
specifier: ^2.4.1
version: 2.4.1
@@ -287,11 +287,11 @@ importers:
specifier: ^8.5.10
version: 8.5.10
'@unlazy/nuxt':
- specifier: ^0.9.3
- version: 0.9.3(rollup@2.79.1)
+ specifier: ^0.11.1
+ version: 0.11.1(rollup@4.6.0)
'@vue/test-utils':
- specifier: ^2.4.3
- version: 2.4.3(vue@3.4.19)
+ specifier: ^2.4.4
+ version: 2.4.4(vue@3.4.19)
bumpp:
specifier: ^9.2.0
version: 9.2.0
@@ -311,14 +311,14 @@ importers:
specifier: ^14.0.1
version: 14.0.1
nuxt:
- specifier: 3.8.2
- version: 3.8.2(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@2.79.1)(typescript@5.1.6)(vite@4.5.0)(vue-tsc@1.8.8)
+ specifier: ^3.10.3
+ version: 3.10.3(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@4.6.0)(typescript@5.3.3)(vite@5.1.4)(vue-tsc@1.8.27)
prettier:
specifier: ^3.0.3
version: 3.0.3
sharp:
- specifier: ^0.32.5
- version: 0.32.5
+ specifier: ^0.32.6
+ version: 0.32.6
sharp-ico:
specifier: ^0.1.5
version: 0.1.5
@@ -326,30 +326,30 @@ importers:
specifier: ^2.9.0
version: 2.9.0
tsx:
- specifier: ^3.12.8
- version: 3.12.8
+ specifier: ^4.7.1
+ version: 4.7.1
typescript:
- specifier: ^5.1.6
- version: 5.1.6
+ specifier: ^5.3.3
+ version: 5.3.3
vitest:
- specifier: ^1.3.0
- version: 1.3.0(happy-dom@10.5.2)
+ specifier: 1.3.1
+ version: 1.3.1(happy-dom@10.5.2)
vue-tsc:
- specifier: ^1.8.8
- version: 1.8.8(typescript@5.1.6)
+ specifier: ^1.8.27
+ version: 1.8.27(typescript@5.3.3)
docs:
dependencies:
theme-colors:
- specifier: ^0.0.5
- version: 0.0.5
+ specifier: ^0.1.0
+ version: 0.1.0
devDependencies:
'@nuxt-themes/docus':
- specifier: ^1.14.6
- version: 1.14.6(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)(nuxt@3.8.2)(postcss@8.4.32)(rollup@3.29.4)(vue@3.4.19)
+ specifier: ^1.15.0
+ version: 1.15.0(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)(nuxt@3.10.3)(postcss@8.4.35)(rollup@3.29.4)(vue@3.4.19)
nuxt:
- specifier: ^3.7.0
- version: 3.8.2(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@3.29.4)(typescript@5.1.6)(vite@4.5.0)(vue-tsc@1.8.8)
+ specifier: ^3.10.3
+ version: 3.10.3(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@3.29.4)(typescript@5.3.3)(vite@5.1.4)(vue-tsc@1.8.27)
packages:
@@ -364,24 +364,25 @@ packages:
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.20
- /@antfu/eslint-config-basic@0.41.3(@typescript-eslint/eslint-plugin@6.7.0)(@typescript-eslint/parser@6.7.0)(eslint@8.49.0)(typescript@5.1.6):
- resolution: {integrity: sha512-Xppfl1QpueHc71DvTU38K0s69AvOHGdMEpqMUc0X2xIr4V30oofJ3rs8aVPLfgoNwPZvvVpuP0R8JFSp3YVfIw==}
+ /@antfu/eslint-config-basic@0.43.1(@typescript-eslint/eslint-plugin@6.21.0)(@typescript-eslint/parser@6.21.0)(eslint@8.49.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-SW6hmGmqI985fsCJ+oivo4MbiMmRMgCJ0Ne8j/hwCB6O6Mc0m5bDqYeKn5HqFhvZhG84GEg5jPDKNiHrBYnQjw==}
peerDependencies:
eslint: '>=7.4.0'
dependencies:
+ '@stylistic/eslint-plugin-js': 0.0.4
eslint: 8.49.0
- eslint-plugin-antfu: 0.41.3(eslint@8.49.0)(typescript@5.1.6)
+ eslint-plugin-antfu: 0.43.1(eslint@8.49.0)(typescript@5.3.3)
eslint-plugin-eslint-comments: 3.2.0(eslint@8.49.0)
eslint-plugin-html: 7.1.0
- eslint-plugin-import: /eslint-plugin-i@2.28.1(@typescript-eslint/parser@6.7.0)(eslint@8.49.0)
- eslint-plugin-jsdoc: 46.6.0(eslint@8.49.0)
+ eslint-plugin-import: /eslint-plugin-i@2.28.1(@typescript-eslint/parser@6.21.0)(eslint@8.49.0)
+ eslint-plugin-jsdoc: 46.10.1(eslint@8.49.0)
eslint-plugin-jsonc: 2.9.0(eslint@8.49.0)
eslint-plugin-markdown: 3.0.1(eslint@8.49.0)
eslint-plugin-n: 16.1.0(eslint@8.49.0)
eslint-plugin-no-only-tests: 3.1.0
eslint-plugin-promise: 6.1.1(eslint@8.49.0)
eslint-plugin-unicorn: 48.0.1(eslint@8.49.0)
- eslint-plugin-unused-imports: 3.0.0(@typescript-eslint/eslint-plugin@6.7.0)(eslint@8.49.0)
+ eslint-plugin-unused-imports: 3.0.0(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.49.0)
eslint-plugin-yml: 1.9.0(eslint@8.49.0)
jsonc-eslint-parser: 2.3.0
yaml-eslint-parser: 1.2.2
@@ -394,18 +395,19 @@ packages:
- typescript
dev: true
- /@antfu/eslint-config-ts@0.41.3(eslint@8.49.0)(typescript@5.1.6):
- resolution: {integrity: sha512-XpRqg7oy+JPyCC38eZCBrhoB3uMBC+tPuYxv7l1leud5SCx1DHNTrTGF5TI2Ep5mvA/DQw35DhRIiQk8CLTi/A==}
+ /@antfu/eslint-config-ts@0.43.1(eslint@8.49.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-s3zItBSopYbM/3eii/JKas1PmWR+wCPRNS89qUi4zxPvpuIgN5mahkBvbsCiWacrNFtLxe1zGgo5qijBhVfuvA==}
peerDependencies:
eslint: '>=7.4.0'
typescript: '>=3.9'
dependencies:
- '@antfu/eslint-config-basic': 0.41.3(@typescript-eslint/eslint-plugin@6.7.0)(@typescript-eslint/parser@6.7.0)(eslint@8.49.0)(typescript@5.1.6)
- '@typescript-eslint/eslint-plugin': 6.7.0(@typescript-eslint/parser@6.7.0)(eslint@8.49.0)(typescript@5.1.6)
- '@typescript-eslint/parser': 6.7.0(eslint@8.49.0)(typescript@5.1.6)
+ '@antfu/eslint-config-basic': 0.43.1(@typescript-eslint/eslint-plugin@6.21.0)(@typescript-eslint/parser@6.21.0)(eslint@8.49.0)(typescript@5.3.3)
+ '@stylistic/eslint-plugin-ts': 0.0.4(eslint@8.49.0)(typescript@5.3.3)
+ '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.49.0)(typescript@5.3.3)
+ '@typescript-eslint/parser': 6.21.0(eslint@8.49.0)(typescript@5.3.3)
eslint: 8.49.0
- eslint-plugin-jest: 27.2.3(@typescript-eslint/eslint-plugin@6.7.0)(eslint@8.49.0)(typescript@5.1.6)
- typescript: 5.1.6
+ eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.49.0)(typescript@5.3.3)
+ typescript: 5.3.3
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
@@ -413,13 +415,13 @@ packages:
- supports-color
dev: true
- /@antfu/eslint-config-vue@0.41.3(@typescript-eslint/eslint-plugin@6.7.0)(@typescript-eslint/parser@6.7.0)(eslint@8.49.0)(typescript@5.1.6):
- resolution: {integrity: sha512-RWt2a1EIq0XqTYNNmulrFhTDjlrXHRN7uz0dBerUNlbok3Pvd+GsGnMEvUw/JxgBmYzGecnGBu7N1I28W4R/6g==}
+ /@antfu/eslint-config-vue@0.43.1(@typescript-eslint/eslint-plugin@6.21.0)(@typescript-eslint/parser@6.21.0)(eslint@8.49.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-HxOfe8Vl+DPrzssbs5LHRDCnBtCy1LSA1DIeV71IC+iTpzoASFahSsVX5qckYu1InFgUm93XOhHCWm34LzPsvg==}
peerDependencies:
eslint: '>=7.4.0'
dependencies:
- '@antfu/eslint-config-basic': 0.41.3(@typescript-eslint/eslint-plugin@6.7.0)(@typescript-eslint/parser@6.7.0)(eslint@8.49.0)(typescript@5.1.6)
- '@antfu/eslint-config-ts': 0.41.3(eslint@8.49.0)(typescript@5.1.6)
+ '@antfu/eslint-config-basic': 0.43.1(@typescript-eslint/eslint-plugin@6.21.0)(@typescript-eslint/parser@6.21.0)(eslint@8.49.0)(typescript@5.3.3)
+ '@antfu/eslint-config-ts': 0.43.1(eslint@8.49.0)(typescript@5.3.3)
eslint: 8.49.0
eslint-plugin-vue: 9.17.0(eslint@8.49.0)
local-pkg: 0.4.3
@@ -433,18 +435,18 @@ packages:
- typescript
dev: true
- /@antfu/eslint-config@0.41.3(eslint@8.49.0)(typescript@5.1.6):
- resolution: {integrity: sha512-bITiZ7QX6LqbitOh8pslfkglNQhReKMS3YhpgYEz59rAMxdRpg12Rw64FGImsMzSEm17mZ0jyICDOI3TrEx68w==}
+ /@antfu/eslint-config@0.43.1(eslint@8.49.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-kTOJeCqhotaiQ/Rv6JxgfAX+SxUq2GII4ZIvTa3GWBUXhFMBvehdUNtxcmO8/HxwxYKkm34/qeF+v7osBsMF1w==}
peerDependencies:
eslint: '>=7.4.0'
dependencies:
- '@antfu/eslint-config-vue': 0.41.3(@typescript-eslint/eslint-plugin@6.7.0)(@typescript-eslint/parser@6.7.0)(eslint@8.49.0)(typescript@5.1.6)
- '@typescript-eslint/eslint-plugin': 6.7.0(@typescript-eslint/parser@6.7.0)(eslint@8.49.0)(typescript@5.1.6)
- '@typescript-eslint/parser': 6.7.0(eslint@8.49.0)(typescript@5.1.6)
+ '@antfu/eslint-config-vue': 0.43.1(@typescript-eslint/eslint-plugin@6.21.0)(@typescript-eslint/parser@6.21.0)(eslint@8.49.0)(typescript@5.3.3)
+ '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.49.0)(typescript@5.3.3)
+ '@typescript-eslint/parser': 6.21.0(eslint@8.49.0)(typescript@5.3.3)
eslint: 8.49.0
eslint-plugin-eslint-comments: 3.2.0(eslint@8.49.0)
eslint-plugin-html: 7.1.0
- eslint-plugin-import: /eslint-plugin-i@2.28.1(@typescript-eslint/parser@6.7.0)(eslint@8.49.0)
+ eslint-plugin-import: /eslint-plugin-i@2.28.1(@typescript-eslint/parser@6.21.0)(eslint@8.49.0)
eslint-plugin-jsonc: 2.9.0(eslint@8.49.0)
eslint-plugin-n: 16.1.0(eslint@8.49.0)
eslint-plugin-promise: 6.1.1(eslint@8.49.0)
@@ -468,13 +470,13 @@ packages:
find-up: 5.0.0
dev: false
- /@antfu/ni@0.21.8:
- resolution: {integrity: sha512-90X8pU2szlvw0AJo9EZMbYc2eQKkmO7mAdC4tD4r5co2Mm56MT37MIG8EyB7p4WRheuzGxuLDxJ63mF6+Zajiw==}
+ /@antfu/ni@0.21.12:
+ resolution: {integrity: sha512-2aDL3WUv8hMJb2L3r/PIQWsTLyq7RQr3v9xD16fiz6O8ys1xEyLhhTOv8gxtZvJiTzjTF5pHoArvRdesGL1DMQ==}
hasBin: true
dev: true
- /@antfu/utils@0.7.6:
- resolution: {integrity: sha512-pvFiLP2BeOKA/ZOS6jxx4XhKzdVLHDhGlFEaZ2flWWYf2xOqVniqpk38I04DFRyz+L0ASggl7SkItTc+ZLju4w==}
+ /@antfu/utils@0.7.7:
+ resolution: {integrity: sha512-gFPqTG7otEJ8uP6wrhDv6mqwGWYZKNvAcCq6u9hOj0c+IKCEsY4L1oC9trPq2SaWIzAfHvqfBDxF591JkMf+kg==}
/@apideck/better-ajv-errors@0.3.6(ajv@8.12.0):
resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==}
@@ -495,24 +497,24 @@ packages:
'@babel/highlight': 7.23.4
chalk: 2.4.2
- /@babel/compat-data@7.22.9:
- resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==}
+ /@babel/compat-data@7.23.5:
+ resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==}
engines: {node: '>=6.9.0'}
- /@babel/core@7.23.5:
- resolution: {integrity: sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==}
+ /@babel/core@7.23.9:
+ resolution: {integrity: sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.1
'@babel/code-frame': 7.23.5
- '@babel/generator': 7.23.5
- '@babel/helper-compilation-targets': 7.22.15
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5)
- '@babel/helpers': 7.23.5
- '@babel/parser': 7.23.5
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.5
- '@babel/types': 7.23.5
+ '@babel/generator': 7.23.6
+ '@babel/helper-compilation-targets': 7.23.6
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
+ '@babel/helpers': 7.23.9
+ '@babel/parser': 7.23.9
+ '@babel/template': 7.23.9
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
convert-source-map: 2.0.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -521,11 +523,11 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/generator@7.23.5:
- resolution: {integrity: sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA==}
+ /@babel/generator@7.23.6:
+ resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.5
+ '@babel/types': 7.23.9
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.20
jsesc: 2.5.2
@@ -534,61 +536,61 @@ packages:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.5
+ '@babel/types': 7.23.9
/@babel/helper-builder-binary-assignment-operator-visitor@7.22.5:
resolution: {integrity: sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.5
+ '@babel/types': 7.23.9
dev: false
- /@babel/helper-compilation-targets@7.22.15:
- resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==}
+ /@babel/helper-compilation-targets@7.23.6:
+ resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/helper-validator-option': 7.22.15
- browserslist: 4.22.1
+ '@babel/compat-data': 7.23.5
+ '@babel/helper-validator-option': 7.23.5
+ browserslist: 4.23.0
lru-cache: 5.1.1
semver: 6.3.1
- /@babel/helper-create-class-features-plugin@7.23.5(@babel/core@7.23.5):
+ /@babel/helper-create-class-features-plugin@7.23.5(@babel/core@7.23.9):
resolution: {integrity: sha512-QELlRWxSpgdwdJzSJn4WAhKC+hvw/AtHbbrIoncKHkhKKR/luAlKkgBDcri1EzWAo8f8VvYVryEHN4tax/V67A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.9)
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
- /@babel/helper-create-regexp-features-plugin@7.22.5(@babel/core@7.23.5):
+ /@babel/helper-create-regexp-features-plugin@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
semver: 6.3.1
dev: false
- /@babel/helper-define-polyfill-provider@0.4.0(@babel/core@7.23.5):
+ /@babel/helper-define-polyfill-provider@0.4.0(@babel/core@7.23.9):
resolution: {integrity: sha512-RnanLx5ETe6aybRi1cO/edaRH+bNYWaryCEmjDDYyNr4wnSzyOp8T0dWipmqVHKEY3AbVKUom50AKSlj1zmKbg==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/core': 7.23.9
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
debug: 4.3.4
lodash.debounce: 4.0.8
@@ -606,34 +608,34 @@ packages:
resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.22.15
- '@babel/types': 7.23.5
+ '@babel/template': 7.23.9
+ '@babel/types': 7.23.9
/@babel/helper-hoist-variables@7.22.5:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.5
+ '@babel/types': 7.23.9
/@babel/helper-member-expression-to-functions@7.23.0:
resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.5
+ '@babel/types': 7.23.9
/@babel/helper-module-imports@7.22.15:
resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.5
+ '@babel/types': 7.23.9
- /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.5):
+ /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-module-imports': 7.22.15
'@babel/helper-simple-access': 7.22.5
@@ -644,34 +646,34 @@ packages:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.5
+ '@babel/types': 7.23.9
/@babel/helper-plugin-utils@7.22.5:
resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
engines: {node: '>=6.9.0'}
- /@babel/helper-remap-async-to-generator@7.22.5(@babel/core@7.23.5):
+ /@babel/helper-remap-async-to-generator@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-wrap-function': 7.22.5
- '@babel/types': 7.23.5
+ '@babel/types': 7.23.9
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.5):
+ /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.9):
resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
@@ -680,19 +682,19 @@ packages:
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.5
+ '@babel/types': 7.23.9
/@babel/helper-skip-transparent-expression-wrappers@7.22.5:
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.5
+ '@babel/types': 7.23.9
/@babel/helper-split-export-declaration@7.22.6:
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.5
+ '@babel/types': 7.23.9
/@babel/helper-string-parser@7.23.4:
resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
@@ -702,8 +704,8 @@ packages:
resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-option@7.22.15:
- resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==}
+ /@babel/helper-validator-option@7.23.5:
+ resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
engines: {node: '>=6.9.0'}
/@babel/helper-wrap-function@7.22.5:
@@ -711,20 +713,20 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-function-name': 7.23.0
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.5
- '@babel/types': 7.23.5
+ '@babel/template': 7.23.9
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/helpers@7.23.5:
- resolution: {integrity: sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==}
+ /@babel/helpers@7.23.9:
+ resolution: {integrity: sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.5
- '@babel/types': 7.23.5
+ '@babel/template': 7.23.9
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
transitivePeerDependencies:
- supports-color
@@ -736,934 +738,941 @@ packages:
chalk: 2.4.2
js-tokens: 4.0.0
- /@babel/parser@7.23.5:
- resolution: {integrity: sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- '@babel/types': 7.23.5
-
/@babel/parser@7.23.9:
resolution: {integrity: sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.23.5
+ '@babel/types': 7.23.9
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.22.5(@babel/core@7.23.5)
+ '@babel/plugin-transform-optional-chaining': 7.22.5(@babel/core@7.23.9)
dev: false
- /@babel/plugin-proposal-decorators@7.23.0(@babel/core@7.23.5):
+ /@babel/plugin-proposal-decorators@7.23.0(@babel/core@7.23.9):
resolution: {integrity: sha512-kYsT+f5ARWF6AdFmqoEEp+hpqxEB8vGmRWfw2aj78M2vTwS2uHW91EF58iFm1Z9U8Y/RrLu2XKJn46P9ca1b0w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.9)
'@babel/helper-split-export-declaration': 7.22.6
- '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.23.5)
+ '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.23.9)
- /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.23.5):
+ /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.23.9):
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.5)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.9)
dev: false
- /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.5):
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.9):
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
dev: false
- /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.23.5):
+ /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.23.9):
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.5)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.5):
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.9):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.5):
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.9):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.5):
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.9):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.23.5):
+ /@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.23.9):
resolution: {integrity: sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.5):
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.5):
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.5):
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.9):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.5):
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.5):
- resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
+ /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.9):
+ resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.5):
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.9):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.5):
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.5):
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.9):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.5):
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.5):
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.5):
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.5):
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.9):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.5):
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.9):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.5):
+ /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.5):
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.9):
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.5)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-async-generator-functions@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-async-generator-functions@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-gGOEvFzm3fWoyD5uZq7vVTD57pPJ3PczPUD/xCFGjzBpUosnklmXyKnGQbbbGs1NPNPskFex0j93yKbHt0cHyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.5)
+ '@babel/helper-remap-async-to-generator': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.9)
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.5(@babel/core@7.23.5)
+ '@babel/helper-remap-async-to-generator': 7.22.5(@babel/core@7.23.9)
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.5)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.9)
dev: false
- /@babel/plugin-transform-classes@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-classes@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.9)
'@babel/helper-split-export-declaration': 7.22.6
globals: 11.12.0
dev: false
- /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/template': 7.22.15
+ '@babel/template': 7.23.9
dev: false
- /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.5)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.5)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.9)
dev: false
- /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.5)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.9)
dev: false
- /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/core': 7.23.9
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-function-name': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.5)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.9)
dev: false
- /@babel/plugin-transform-literals@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-literals@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.5)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.9)
dev: false
- /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5)
+ '@babel/core': 7.23.9
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.23.5):
- resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==}
+ /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.9):
+ resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5)
+ '@babel/core': 7.23.9
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-simple-access': 7.22.5
dev: false
- /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5)
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-identifier': 7.22.20
dev: false
- /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5)
+ '@babel/core': 7.23.9
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.5)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.5)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.9)
dev: false
- /@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.5)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.9)
dev: false
- /@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.23.5
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/compat-data': 7.23.5
+ '@babel/core': 7.23.9
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.5)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.23.5)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.23.9)
dev: false
- /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.9)
dev: false
- /@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.5)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.9)
dev: false
- /@babel/plugin-transform-optional-chaining@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-optional-chaining@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.5)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.9)
dev: false
- /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5)
+ '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.5)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.9)
dev: false
- /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
regenerator-transform: 0.15.1
dev: false
- /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-spread@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-spread@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: false
- /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-typescript@7.23.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-typescript@7.23.5(@babel/core@7.23.9):
resolution: {integrity: sha512-2fMkXEJkrmwgu2Bsv1Saxgj30IXZdJ+84lQcKKI7sm719oXs0BBw2ZENKdJdR1PjWndgLCEBNXJOri0fk7RYQA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5)
+ '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.5)
+ '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.9)
- /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.5)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.5)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.5)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/preset-env@7.22.5(@babel/core@7.23.5):
+ /@babel/preset-env@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-fj06hw89dpiZzGZtxn+QybifF07nNiZjZ7sazs2aVDcysAZVGjW7+7iFYxg6GLNM47R/thYfLdrXc+2f11Vi9A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.23.5
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/compat-data': 7.23.5
+ '@babel/core': 7.23.9
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.15
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.5)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.5)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.5)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.5)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.5)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.5)
- '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.5)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.5)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.5)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.5)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.5)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.5)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.5)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.5)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.5)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.5)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.5)
- '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-async-generator-functions': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-classes': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-optional-chaining': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.23.5)
- '@babel/preset-modules': 0.1.5(@babel/core@7.23.5)
- '@babel/types': 7.23.5
- babel-plugin-polyfill-corejs2: 0.4.3(@babel/core@7.23.5)
- babel-plugin-polyfill-corejs3: 0.8.1(@babel/core@7.23.5)
- babel-plugin-polyfill-regenerator: 0.5.0(@babel/core@7.23.5)
+ '@babel/helper-validator-option': 7.23.5
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.9)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.9)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.9)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.9)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.9)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.9)
+ '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-async-generator-functions': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-classes': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-optional-chaining': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.23.9)
+ '@babel/preset-modules': 0.1.5(@babel/core@7.23.9)
+ '@babel/types': 7.23.9
+ babel-plugin-polyfill-corejs2: 0.4.3(@babel/core@7.23.9)
+ babel-plugin-polyfill-corejs3: 0.8.1(@babel/core@7.23.9)
+ babel-plugin-polyfill-regenerator: 0.5.0(@babel/core@7.23.9)
core-js-compat: 3.31.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/preset-modules@0.1.5(@babel/core@7.23.5):
+ /@babel/preset-modules@0.1.5(@babel/core@7.23.9):
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.23.5)
- '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.5)
- '@babel/types': 7.23.5
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.23.9)
+ '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.9)
+ '@babel/types': 7.23.9
esutils: 2.0.3
dev: false
+ /@babel/preset-typescript@7.23.3(@babel/core@7.23.9):
+ resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.9
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-option': 7.23.5
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-typescript': 7.23.5(@babel/core@7.23.9)
+ dev: false
+
/@babel/regjsgen@0.8.0:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
dev: false
@@ -1675,37 +1684,37 @@ packages:
regenerator-runtime: 0.13.11
dev: false
- /@babel/standalone@7.22.15:
- resolution: {integrity: sha512-8qE83Gths6g29KOpYF9uaFPOXa3oaFF1/88ejKwgkGAZRIkdmoR/jPIzVviAsWNSaZdIdMLWwKSoXpuk9iNGmw==}
+ /@babel/standalone@7.23.10:
+ resolution: {integrity: sha512-xqWviI/pt1Zb/d+6ilWa5IDL2mkDzsBnlHbreqnfyP3/QB/ofQ1bNVcHj8YQX154Rf/xZKR6y0s1ydVF3nAS8g==}
engines: {node: '>=6.9.0'}
- /@babel/template@7.22.15:
- resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
+ /@babel/template@7.23.9:
+ resolution: {integrity: sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.23.5
- '@babel/parser': 7.23.5
- '@babel/types': 7.23.5
+ '@babel/parser': 7.23.9
+ '@babel/types': 7.23.9
- /@babel/traverse@7.23.5:
- resolution: {integrity: sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==}
+ /@babel/traverse@7.23.9:
+ resolution: {integrity: sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.23.5
- '@babel/generator': 7.23.5
+ '@babel/generator': 7.23.6
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-hoist-variables': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.23.5
- '@babel/types': 7.23.5
+ '@babel/parser': 7.23.9
+ '@babel/types': 7.23.9
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- /@babel/types@7.23.5:
- resolution: {integrity: sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w==}
+ /@babel/types@7.23.9:
+ resolution: {integrity: sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.23.4
@@ -1750,35 +1759,30 @@ packages:
resolution: {integrity: sha512-1HP8BxD2azjqWJvxIaWAMyTySeZY0Osr83ukYjltPVkNXeJvTz7yDrPLBtnrD5uqJ3tg4CcLuuBW09wahqL/fg==}
dev: false
- /@es-joy/jsdoccomment@0.40.1:
- resolution: {integrity: sha512-YORCdZSusAlBrFpZ77pJjc5r1bQs5caPWtAu+WWmiSo+8XaUzseapVrfAtiRFbQWnrBxxLLEwF6f6ZG/UgCQCg==}
+ /@es-joy/jsdoccomment@0.41.0:
+ resolution: {integrity: sha512-aKUhyn1QI5Ksbqcr3fFJj16p99QdjUxXAEuFst1Z47DRyoiMwivIH9MV/ARcJOCXVjPfjITciej8ZD2O/6qUmw==}
engines: {node: '>=16'}
dependencies:
- comment-parser: 1.4.0
+ comment-parser: 1.4.1
esquery: 1.5.0
jsdoc-type-pratt-parser: 4.0.0
dev: true
- /@esbuild-kit/cjs-loader@2.4.2:
- resolution: {integrity: sha512-BDXFbYOJzT/NBEtp71cvsrGPwGAMGRB/349rwKuoxNSiKjPraNNnlK6MIIabViCjqZugu6j+xeMDlEkWdHHJSg==}
- dependencies:
- '@esbuild-kit/core-utils': 3.2.2
- get-tsconfig: 4.7.2
- dev: true
+ /@esbuild/aix-ppc64@0.19.12:
+ resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [aix]
+ requiresBuild: true
+ optional: true
- /@esbuild-kit/core-utils@3.2.2:
- resolution: {integrity: sha512-Ub6LaRaAgF80dTSzUdXpFLM1pVDdmEVB9qb5iAzSpyDlX/mfJTFGOnZ516O05p5uWWteNviMKi4PAyEuRxI5gA==}
- dependencies:
- esbuild: 0.18.20
- source-map-support: 0.5.21
- dev: true
-
- /@esbuild-kit/esm-loader@2.5.5:
- resolution: {integrity: sha512-Qwfvj/qoPbClxCRNuac1Du01r9gvNOT+pMYtJDapfB1eoGN1YlJ1BixLyL9WVENRx5RXgNLdfYdx/CuswlGhMw==}
- dependencies:
- '@esbuild-kit/core-utils': 3.2.2
- get-tsconfig: 4.7.2
- dev: true
+ /@esbuild/aix-ppc64@0.20.1:
+ resolution: {integrity: sha512-m55cpeupQ2DbuRGQMMZDzbv9J9PgVelPjlcmM5kxHnrBdBx6REaEd7LamYV7Dm8N7rCyR/XwU6rVP8ploKtIkA==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [aix]
+ requiresBuild: true
+ optional: true
/@esbuild/android-arm64@0.17.19:
resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==}
@@ -1789,16 +1793,16 @@ packages:
dev: true
optional: true
- /@esbuild/android-arm64@0.18.20:
- resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
+ /@esbuild/android-arm64@0.19.12:
+ resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
requiresBuild: true
optional: true
- /@esbuild/android-arm64@0.19.8:
- resolution: {integrity: sha512-B8JbS61bEunhfx8kasogFENgQfr/dIp+ggYXwTqdbMAgGDhRa3AaPpQMuQU0rNxDLECj6FhDzk1cF9WHMVwrtA==}
+ /@esbuild/android-arm64@0.20.1:
+ resolution: {integrity: sha512-hCnXNF0HM6AjowP+Zou0ZJMWWa1VkD77BXe959zERgGJBBxB+sV+J9f/rcjeg2c5bsukD/n17RKWXGFCO5dD5A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
@@ -1814,16 +1818,16 @@ packages:
dev: true
optional: true
- /@esbuild/android-arm@0.18.20:
- resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
+ /@esbuild/android-arm@0.19.12:
+ resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
requiresBuild: true
optional: true
- /@esbuild/android-arm@0.19.8:
- resolution: {integrity: sha512-31E2lxlGM1KEfivQl8Yf5aYU/mflz9g06H6S15ITUFQueMFtFjESRMoDSkvMo8thYvLBax+VKTPlpnx+sPicOA==}
+ /@esbuild/android-arm@0.20.1:
+ resolution: {integrity: sha512-4j0+G27/2ZXGWR5okcJi7pQYhmkVgb4D7UKwxcqrjhvp5TKWx3cUjgB1CGj1mfdmJBQ9VnUGgUhign+FPF2Zgw==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
@@ -1839,16 +1843,16 @@ packages:
dev: true
optional: true
- /@esbuild/android-x64@0.18.20:
- resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
+ /@esbuild/android-x64@0.19.12:
+ resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
requiresBuild: true
optional: true
- /@esbuild/android-x64@0.19.8:
- resolution: {integrity: sha512-rdqqYfRIn4jWOp+lzQttYMa2Xar3OK9Yt2fhOhzFXqg0rVWEfSclJvZq5fZslnz6ypHvVf3CT7qyf0A5pM682A==}
+ /@esbuild/android-x64@0.20.1:
+ resolution: {integrity: sha512-MSfZMBoAsnhpS+2yMFYIQUPs8Z19ajwfuaSZx+tSl09xrHZCjbeXXMsUF/0oq7ojxYEpsSo4c0SfjxOYXRbpaA==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
@@ -1864,16 +1868,16 @@ packages:
dev: true
optional: true
- /@esbuild/darwin-arm64@0.18.20:
- resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
+ /@esbuild/darwin-arm64@0.19.12:
+ resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
- /@esbuild/darwin-arm64@0.19.8:
- resolution: {integrity: sha512-RQw9DemMbIq35Bprbboyf8SmOr4UXsRVxJ97LgB55VKKeJOOdvsIPy0nFyF2l8U+h4PtBx/1kRf0BelOYCiQcw==}
+ /@esbuild/darwin-arm64@0.20.1:
+ resolution: {integrity: sha512-Ylk6rzgMD8klUklGPzS414UQLa5NPXZD5tf8JmQU8GQrj6BrFA/Ic9tb2zRe1kOZyCbGl+e8VMbDRazCEBqPvA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
@@ -1889,16 +1893,16 @@ packages:
dev: true
optional: true
- /@esbuild/darwin-x64@0.18.20:
- resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
+ /@esbuild/darwin-x64@0.19.12:
+ resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
requiresBuild: true
optional: true
- /@esbuild/darwin-x64@0.19.8:
- resolution: {integrity: sha512-3sur80OT9YdeZwIVgERAysAbwncom7b4bCI2XKLjMfPymTud7e/oY4y+ci1XVp5TfQp/bppn7xLw1n/oSQY3/Q==}
+ /@esbuild/darwin-x64@0.20.1:
+ resolution: {integrity: sha512-pFIfj7U2w5sMp52wTY1XVOdoxw+GDwy9FsK3OFz4BpMAjvZVs0dT1VXs8aQm22nhwoIWUmIRaE+4xow8xfIDZA==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
@@ -1914,16 +1918,16 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-arm64@0.18.20:
- resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
+ /@esbuild/freebsd-arm64@0.19.12:
+ resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
requiresBuild: true
optional: true
- /@esbuild/freebsd-arm64@0.19.8:
- resolution: {integrity: sha512-WAnPJSDattvS/XtPCTj1tPoTxERjcTpH6HsMr6ujTT+X6rylVe8ggxk8pVxzf5U1wh5sPODpawNicF5ta/9Tmw==}
+ /@esbuild/freebsd-arm64@0.20.1:
+ resolution: {integrity: sha512-UyW1WZvHDuM4xDz0jWun4qtQFauNdXjXOtIy7SYdf7pbxSWWVlqhnR/T2TpX6LX5NI62spt0a3ldIIEkPM6RHw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
@@ -1939,16 +1943,16 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-x64@0.18.20:
- resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
+ /@esbuild/freebsd-x64@0.19.12:
+ resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
requiresBuild: true
optional: true
- /@esbuild/freebsd-x64@0.19.8:
- resolution: {integrity: sha512-ICvZyOplIjmmhjd6mxi+zxSdpPTKFfyPPQMQTK/w+8eNK6WV01AjIztJALDtwNNfFhfZLux0tZLC+U9nSyA5Zg==}
+ /@esbuild/freebsd-x64@0.20.1:
+ resolution: {integrity: sha512-itPwCw5C+Jh/c624vcDd9kRCCZVpzpQn8dtwoYIt2TJF3S9xJLiRohnnNrKwREvcZYx0n8sCSbvGH349XkcQeg==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
@@ -1964,16 +1968,16 @@ packages:
dev: true
optional: true
- /@esbuild/linux-arm64@0.18.20:
- resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
+ /@esbuild/linux-arm64@0.19.12:
+ resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-arm64@0.19.8:
- resolution: {integrity: sha512-z1zMZivxDLHWnyGOctT9JP70h0beY54xDDDJt4VpTX+iwA77IFsE1vCXWmprajJGa+ZYSqkSbRQ4eyLCpCmiCQ==}
+ /@esbuild/linux-arm64@0.20.1:
+ resolution: {integrity: sha512-cX8WdlF6Cnvw/DO9/X7XLH2J6CkBnz7Twjpk56cshk9sjYVcuh4sXQBy5bmTwzBjNVZze2yaV1vtcJS04LbN8w==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
@@ -1989,16 +1993,16 @@ packages:
dev: true
optional: true
- /@esbuild/linux-arm@0.18.20:
- resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
+ /@esbuild/linux-arm@0.19.12:
+ resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-arm@0.19.8:
- resolution: {integrity: sha512-H4vmI5PYqSvosPaTJuEppU9oz1dq2A7Mr2vyg5TF9Ga+3+MGgBdGzcyBP7qK9MrwFQZlvNyJrvz6GuCaj3OukQ==}
+ /@esbuild/linux-arm@0.20.1:
+ resolution: {integrity: sha512-LojC28v3+IhIbfQ+Vu4Ut5n3wKcgTu6POKIHN9Wpt0HnfgUGlBuyDDQR4jWZUZFyYLiz4RBBBmfU6sNfn6RhLw==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
@@ -2014,16 +2018,16 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ia32@0.18.20:
- resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
+ /@esbuild/linux-ia32@0.19.12:
+ resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-ia32@0.19.8:
- resolution: {integrity: sha512-1a8suQiFJmZz1khm/rDglOc8lavtzEMRo0v6WhPgxkrjcU0LkHj+TwBrALwoz/OtMExvsqbbMI0ChyelKabSvQ==}
+ /@esbuild/linux-ia32@0.20.1:
+ resolution: {integrity: sha512-4H/sQCy1mnnGkUt/xszaLlYJVTz3W9ep52xEefGtd6yXDQbz/5fZE5dFLUgsPdbUOQANcVUa5iO6g3nyy5BJiw==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
@@ -2039,16 +2043,16 @@ packages:
dev: true
optional: true
- /@esbuild/linux-loong64@0.18.20:
- resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
+ /@esbuild/linux-loong64@0.19.12:
+ resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-loong64@0.19.8:
- resolution: {integrity: sha512-fHZWS2JJxnXt1uYJsDv9+b60WCc2RlvVAy1F76qOLtXRO+H4mjt3Tr6MJ5l7Q78X8KgCFudnTuiQRBhULUyBKQ==}
+ /@esbuild/linux-loong64@0.20.1:
+ resolution: {integrity: sha512-c0jgtB+sRHCciVXlyjDcWb2FUuzlGVRwGXgI+3WqKOIuoo8AmZAddzeOHeYLtD+dmtHw3B4Xo9wAUdjlfW5yYA==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
@@ -2064,16 +2068,16 @@ packages:
dev: true
optional: true
- /@esbuild/linux-mips64el@0.18.20:
- resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
+ /@esbuild/linux-mips64el@0.19.12:
+ resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-mips64el@0.19.8:
- resolution: {integrity: sha512-Wy/z0EL5qZYLX66dVnEg9riiwls5IYnziwuju2oUiuxVc+/edvqXa04qNtbrs0Ukatg5HEzqT94Zs7J207dN5Q==}
+ /@esbuild/linux-mips64el@0.20.1:
+ resolution: {integrity: sha512-TgFyCfIxSujyuqdZKDZ3yTwWiGv+KnlOeXXitCQ+trDODJ+ZtGOzLkSWngynP0HZnTsDyBbPy7GWVXWaEl6lhA==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
@@ -2089,16 +2093,16 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ppc64@0.18.20:
- resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
+ /@esbuild/linux-ppc64@0.19.12:
+ resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-ppc64@0.19.8:
- resolution: {integrity: sha512-ETaW6245wK23YIEufhMQ3HSeHO7NgsLx8gygBVldRHKhOlD1oNeNy/P67mIh1zPn2Hr2HLieQrt6tWrVwuqrxg==}
+ /@esbuild/linux-ppc64@0.20.1:
+ resolution: {integrity: sha512-b+yuD1IUeL+Y93PmFZDZFIElwbmFfIKLKlYI8M6tRyzE6u7oEP7onGk0vZRh8wfVGC2dZoy0EqX1V8qok4qHaw==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
@@ -2114,16 +2118,16 @@ packages:
dev: true
optional: true
- /@esbuild/linux-riscv64@0.18.20:
- resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
+ /@esbuild/linux-riscv64@0.19.12:
+ resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-riscv64@0.19.8:
- resolution: {integrity: sha512-T2DRQk55SgoleTP+DtPlMrxi/5r9AeFgkhkZ/B0ap99zmxtxdOixOMI570VjdRCs9pE4Wdkz7JYrsPvsl7eESg==}
+ /@esbuild/linux-riscv64@0.20.1:
+ resolution: {integrity: sha512-wpDlpE0oRKZwX+GfomcALcouqjjV8MIX8DyTrxfyCfXxoKQSDm45CZr9fanJ4F6ckD4yDEPT98SrjvLwIqUCgg==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
@@ -2139,16 +2143,16 @@ packages:
dev: true
optional: true
- /@esbuild/linux-s390x@0.18.20:
- resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
+ /@esbuild/linux-s390x@0.19.12:
+ resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-s390x@0.19.8:
- resolution: {integrity: sha512-NPxbdmmo3Bk7mbNeHmcCd7R7fptJaczPYBaELk6NcXxy7HLNyWwCyDJ/Xx+/YcNH7Im5dHdx9gZ5xIwyliQCbg==}
+ /@esbuild/linux-s390x@0.20.1:
+ resolution: {integrity: sha512-5BepC2Au80EohQ2dBpyTquqGCES7++p7G+7lXe1bAIvMdXm4YYcEfZtQrP4gaoZ96Wv1Ute61CEHFU7h4FMueQ==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
@@ -2164,16 +2168,16 @@ packages:
dev: true
optional: true
- /@esbuild/linux-x64@0.18.20:
- resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
+ /@esbuild/linux-x64@0.19.12:
+ resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-x64@0.19.8:
- resolution: {integrity: sha512-lytMAVOM3b1gPypL2TRmZ5rnXl7+6IIk8uB3eLsV1JwcizuolblXRrc5ShPrO9ls/b+RTp+E6gbsuLWHWi2zGg==}
+ /@esbuild/linux-x64@0.20.1:
+ resolution: {integrity: sha512-5gRPk7pKuaIB+tmH+yKd2aQTRpqlf1E4f/mC+tawIm/CGJemZcHZpp2ic8oD83nKgUPMEd0fNanrnFljiruuyA==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
@@ -2189,16 +2193,16 @@ packages:
dev: true
optional: true
- /@esbuild/netbsd-x64@0.18.20:
- resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
+ /@esbuild/netbsd-x64@0.19.12:
+ resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
requiresBuild: true
optional: true
- /@esbuild/netbsd-x64@0.19.8:
- resolution: {integrity: sha512-hvWVo2VsXz/8NVt1UhLzxwAfo5sioj92uo0bCfLibB0xlOmimU/DeAEsQILlBQvkhrGjamP0/el5HU76HAitGw==}
+ /@esbuild/netbsd-x64@0.20.1:
+ resolution: {integrity: sha512-4fL68JdrLV2nVW2AaWZBv3XEm3Ae3NZn/7qy2KGAt3dexAgSVT+Hc97JKSZnqezgMlv9x6KV0ZkZY7UO5cNLCg==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
@@ -2214,16 +2218,16 @@ packages:
dev: true
optional: true
- /@esbuild/openbsd-x64@0.18.20:
- resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
+ /@esbuild/openbsd-x64@0.19.12:
+ resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
requiresBuild: true
optional: true
- /@esbuild/openbsd-x64@0.19.8:
- resolution: {integrity: sha512-/7Y7u77rdvmGTxR83PgaSvSBJCC2L3Kb1M/+dmSIvRvQPXXCuC97QAwMugBNG0yGcbEGfFBH7ojPzAOxfGNkwQ==}
+ /@esbuild/openbsd-x64@0.20.1:
+ resolution: {integrity: sha512-GhRuXlvRE+twf2ES+8REbeCb/zeikNqwD3+6S5y5/x+DYbAQUNl0HNBs4RQJqrechS4v4MruEr8ZtAin/hK5iw==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
@@ -2239,16 +2243,16 @@ packages:
dev: true
optional: true
- /@esbuild/sunos-x64@0.18.20:
- resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
+ /@esbuild/sunos-x64@0.19.12:
+ resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
requiresBuild: true
optional: true
- /@esbuild/sunos-x64@0.19.8:
- resolution: {integrity: sha512-9Lc4s7Oi98GqFA4HzA/W2JHIYfnXbUYgekUP/Sm4BG9sfLjyv6GKKHKKVs83SMicBF2JwAX6A1PuOLMqpD001w==}
+ /@esbuild/sunos-x64@0.20.1:
+ resolution: {integrity: sha512-ZnWEyCM0G1Ex6JtsygvC3KUUrlDXqOihw8RicRuQAzw+c4f1D66YlPNNV3rkjVW90zXVsHwZYWbJh3v+oQFM9Q==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
@@ -2264,16 +2268,16 @@ packages:
dev: true
optional: true
- /@esbuild/win32-arm64@0.18.20:
- resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
+ /@esbuild/win32-arm64@0.19.12:
+ resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
requiresBuild: true
optional: true
- /@esbuild/win32-arm64@0.19.8:
- resolution: {integrity: sha512-rq6WzBGjSzihI9deW3fC2Gqiak68+b7qo5/3kmB6Gvbh/NYPA0sJhrnp7wgV4bNwjqM+R2AApXGxMO7ZoGhIJg==}
+ /@esbuild/win32-arm64@0.20.1:
+ resolution: {integrity: sha512-QZ6gXue0vVQY2Oon9WyLFCdSuYbXSoxaZrPuJ4c20j6ICedfsDilNPYfHLlMH7vGfU5DQR0czHLmJvH4Nzis/A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
@@ -2289,16 +2293,16 @@ packages:
dev: true
optional: true
- /@esbuild/win32-ia32@0.18.20:
- resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
+ /@esbuild/win32-ia32@0.19.12:
+ resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
requiresBuild: true
optional: true
- /@esbuild/win32-ia32@0.19.8:
- resolution: {integrity: sha512-AIAbverbg5jMvJznYiGhrd3sumfwWs8572mIJL5NQjJa06P8KfCPWZQ0NwZbPQnbQi9OWSZhFVSUWjjIrn4hSw==}
+ /@esbuild/win32-ia32@0.20.1:
+ resolution: {integrity: sha512-HzcJa1NcSWTAU0MJIxOho8JftNp9YALui3o+Ny7hCh0v5f90nprly1U3Sj1Ldj/CvKKdvvFsCRvDkpsEMp4DNw==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
@@ -2314,16 +2318,16 @@ packages:
dev: true
optional: true
- /@esbuild/win32-x64@0.18.20:
- resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
+ /@esbuild/win32-x64@0.19.12:
+ resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
requiresBuild: true
optional: true
- /@esbuild/win32-x64@0.19.8:
- resolution: {integrity: sha512-bfZ0cQ1uZs2PqpulNL5j/3w+GDhP36k1K5c38QdQg+Swy51jFZWWeIkteNsufkQxp986wnqRRsb/bHbY1WQ7TA==}
+ /@esbuild/win32-x64@0.20.1:
+ resolution: {integrity: sha512-0MBh53o6XtI6ctDnRMeQ+xoCN8kD2qI1rY1KgF/xdWQwoFeKou7puvDfV8/Wv4Ctx2rRpET/gGdz3YlNtNACSA==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
@@ -2351,7 +2355,7 @@ packages:
debug: 4.3.4
espree: 9.6.1
globals: 13.20.0
- ignore: 5.3.0
+ ignore: 5.3.1
import-fresh: 3.3.0
js-yaml: 4.1.0
minimatch: 3.1.2
@@ -2406,21 +2410,22 @@ packages:
resolution: {integrity: sha512-KJQ+LPj5KOpBrTknm0vpb2A6+T12ZyIFInubW3kT/58eZRKtiDv5D87QWVXczL5/uyDr2rkRu8rAfOrGr/UFhA==}
dependencies:
'@iconify/types': 2.0.0
- pathe: 1.1.1
+ pathe: 1.1.2
dev: false
/@iconify/types@2.0.0:
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
- /@iconify/utils@2.1.7:
- resolution: {integrity: sha512-P8S3z/L1LcV4Qem9AoCfVAaTFGySEMzFEY4CHZLkfRj0Fv9LiR+AwjDgrDrzyI93U2L2mg9JHsbTJ52mF8suNw==}
+ /@iconify/utils@2.1.22:
+ resolution: {integrity: sha512-6UHVzTVXmvO8uS6xFF+L/QTSpTzA/JZxtgU+KYGFyDYMEObZ1bu/b5l+zNJjHy+0leWjHI+C0pXlzGvv3oXZMA==}
dependencies:
'@antfu/install-pkg': 0.1.1
- '@antfu/utils': 0.7.6
+ '@antfu/utils': 0.7.7
'@iconify/types': 2.0.0
debug: 4.3.4
kolorist: 1.8.0
- local-pkg: 0.4.3
+ local-pkg: 0.5.0
+ mlly: 1.6.1
transitivePeerDependencies:
- supports-color
dev: false
@@ -2431,12 +2436,12 @@ packages:
vue: ^3.4.19
dependencies:
'@iconify/types': 2.0.0
- vue: 3.4.19(typescript@5.1.6)
+ vue: 3.4.19(typescript@5.3.3)
dev: true
- /@intlify/bundle-utils@4.0.0(vue-i18n@9.3.0-beta.16):
- resolution: {integrity: sha512-klXrYT9VXyKEXsD6UY3pShg0O5MPC07n0TZ5RrSs5ry6T1eZVolIFGJi9c3qcDrh1qjJxgikRnPBmD7qGDqbjw==}
- engines: {node: '>= 12'}
+ /@intlify/bundle-utils@7.5.0(vue-i18n@9.9.1):
+ resolution: {integrity: sha512-6DymqusddBQ8kVtVBsVFFF7arNfIhuLacOmmsqayT2vl427j9m0VX12mMC+cgoVIodSpRfzYPaPTdPuJq7mK0Q==}
+ engines: {node: '>= 14.16'}
peerDependencies:
petite-vue-i18n: '*'
vue-i18n: '*'
@@ -2446,59 +2451,58 @@ packages:
vue-i18n:
optional: true
dependencies:
- '@intlify/message-compiler': 9.4.1
- '@intlify/shared': 9.4.1
- jsonc-eslint-parser: 1.4.1
- source-map: 0.6.1
- vue-i18n: 9.3.0-beta.16(vue@3.4.19)
- yaml-eslint-parser: 0.3.2
+ '@intlify/message-compiler': 9.9.1
+ '@intlify/shared': 9.9.1
+ acorn: 8.11.3
+ escodegen: 2.1.0
+ estree-walker: 2.0.2
+ jsonc-eslint-parser: 2.3.0
+ magic-string: 0.30.7
+ mlly: 1.6.1
+ source-map-js: 1.0.2
+ vue-i18n: 9.9.1(vue@3.4.19)
+ yaml-eslint-parser: 1.2.2
dev: false
- /@intlify/core-base@9.3.0-beta.16:
- resolution: {integrity: sha512-BoAxVoPIJoPKCCMdsuNXKaaJxvetvHrW2KA43IpkwgPd2/w6zPebh/+v8e4zpXKjFVSgcF97zP87KeVcM/Lxwg==}
- engines: {node: '>= 14'}
- dependencies:
- '@intlify/devtools-if': 9.3.0-beta.16
- '@intlify/message-compiler': 9.3.0-beta.16
- '@intlify/shared': 9.3.0-beta.16
- '@intlify/vue-devtools': 9.3.0-beta.16
- dev: false
-
- /@intlify/devtools-if@9.3.0-beta.16:
- resolution: {integrity: sha512-9WXn8YMAnL/DHdoWqCy6yLTXcLFxd8eXB9UNsViQA5JJV7neR+yahr+23X1wP0prhG338MruxAu65khRf+AJCw==}
- engines: {node: '>= 14'}
- dependencies:
- '@intlify/shared': 9.3.0-beta.16
- dev: false
-
- /@intlify/message-compiler@9.3.0-beta.16:
- resolution: {integrity: sha512-CGQI3xRcs1ET75eDQ0DUy3MRYOqTauRIIgaMoISKiF83gqRWg93FqN8lGMKcpBqaF4tI0JhsfosCaGiBL9+dnw==}
- engines: {node: '>= 14'}
- dependencies:
- '@intlify/shared': 9.3.0-beta.16
- source-map: 0.6.1
- dev: false
-
- /@intlify/message-compiler@9.4.1:
- resolution: {integrity: sha512-aN2N+dUx320108QhH51Ycd2LEpZ+NKbzyQ2kjjhqMcxhHdxtOnkgdx+MDBhOy/CObwBmhC3Nygzc6hNlfKvPNw==}
+ /@intlify/core-base@9.9.1:
+ resolution: {integrity: sha512-qsV15dg7jNX2faBRyKMgZS8UcFJViWEUPLdzZ9UR0kQZpFVeIpc0AG7ZOfeP7pX2T9SQ5jSiorq/tii9nkkafA==}
engines: {node: '>= 16'}
dependencies:
- '@intlify/shared': 9.4.1
+ '@intlify/message-compiler': 9.9.1
+ '@intlify/shared': 9.9.1
+ dev: false
+
+ /@intlify/core@9.9.1:
+ resolution: {integrity: sha512-KPD++4tB2M3TeeRqUtsSRFREVtrZHBdUzxF05zF0tbd/hZQJugJYN0t/AY1fp75OKWYZHJOKz7kKX36q8Qx7FA==}
+ engines: {node: '>= 16'}
+ dependencies:
+ '@intlify/core-base': 9.9.1
+ '@intlify/shared': 9.9.1
+ dev: false
+
+ /@intlify/h3@0.5.0:
+ resolution: {integrity: sha512-cgfrtD3qu3BPJ47gfZ35J2LJpI64Riic0K8NGgid5ilyPXRQTNY7mXlT/B+HZYQg1hmBxKa5G5HJXyAZ4R2H5A==}
+ engines: {node: '>= 18'}
+ dependencies:
+ '@intlify/core': 9.9.1
+ '@intlify/utils': 0.12.0
+ dev: false
+
+ /@intlify/message-compiler@9.9.1:
+ resolution: {integrity: sha512-zTvP6X6HeumHOXuAE1CMMsV6tTX+opKMOxO1OHTCg5N5Sm/F7d8o2jdT6W6L5oHUsJ/vvkGefHIs7Q3hfowmsA==}
+ engines: {node: '>= 16'}
+ dependencies:
+ '@intlify/shared': 9.9.1
source-map-js: 1.0.2
dev: false
- /@intlify/shared@9.3.0-beta.16:
- resolution: {integrity: sha512-kXbm4svALe3lX+EjdJxfnabOphqS4yQ1Ge/iIlR8tvUiYRCoNz3hig1M4336iY++Dfx5ytEQJPNjIcknNIuvig==}
- engines: {node: '>= 14'}
- dev: false
-
- /@intlify/shared@9.4.1:
- resolution: {integrity: sha512-A51elBmZWf1FS80inf/32diO9DeXoqg9GR9aUDHFcfHoNDuT46Q+fpPOdj8jiJnSHSBh8E1E+6qWRhAZXdK3Ng==}
+ /@intlify/shared@9.9.1:
+ resolution: {integrity: sha512-b3Pta1nwkz5rGq434v0psHwEwHGy1pYCttfcM22IE//K9owbpkEvFptx9VcuRAxjQdrO2If249cmDDjBu5wMDA==}
engines: {node: '>= 16'}
dev: false
- /@intlify/unplugin-vue-i18n@0.8.2(vue-i18n@9.3.0-beta.16):
- resolution: {integrity: sha512-cRnzPqSEZQOmTD+p4pwc3RTS9HxreLqfID0keoqZDZweCy/CGRMLLTNd15S4TUf1vSBhPF03DItEFDr1F+8MDA==}
+ /@intlify/unplugin-vue-i18n@2.0.0(rollup@4.6.0)(vue-i18n@9.9.1):
+ resolution: {integrity: sha512-1oKvm92L9l2od2H9wKx2ZvR4tzn7gUtd7bPLI7AWUmm7U9H1iEypndt5d985ypxGsEs0gToDaKTrytbBIJwwSg==}
engines: {node: '>= 14.16'}
peerDependencies:
petite-vue-i18n: '*'
@@ -2512,69 +2516,27 @@ packages:
vue-i18n-bridge:
optional: true
dependencies:
- '@intlify/bundle-utils': 4.0.0(vue-i18n@9.3.0-beta.16)
- '@intlify/shared': 9.4.1
- '@rollup/pluginutils': 4.2.1
- '@vue/compiler-sfc': 3.3.9
+ '@intlify/bundle-utils': 7.5.0(vue-i18n@9.9.1)
+ '@intlify/shared': 9.9.1
+ '@rollup/pluginutils': 5.1.0(rollup@4.6.0)
+ '@vue/compiler-sfc': 3.4.19
debug: 4.3.4
fast-glob: 3.3.2
js-yaml: 4.1.0
json5: 2.2.3
- pathe: 1.1.1
+ pathe: 1.1.2
picocolors: 1.0.0
- source-map: 0.6.1
- unplugin: 1.5.1
- vue-i18n: 9.3.0-beta.16(vue@3.4.19)
+ source-map-js: 1.0.2
+ unplugin: 1.7.1
+ vue-i18n: 9.9.1(vue@3.4.19)
transitivePeerDependencies:
+ - rollup
- supports-color
dev: false
- /@intlify/vue-devtools@9.3.0-beta.16:
- resolution: {integrity: sha512-rQ/jSW0gBciYLBBi+XN65r80B59Ypege9oqUi+EZ2QpOaK54wDcy1xq9w6Zbj6WpY1qgf34KtYawKIF10mMr6w==}
- engines: {node: '>= 14'}
- dependencies:
- '@intlify/core-base': 9.3.0-beta.16
- '@intlify/shared': 9.3.0-beta.16
- dev: false
-
- /@intlify/vue-i18n-bridge@0.8.0(vue-i18n@9.3.0-beta.16):
- resolution: {integrity: sha512-wQ18fSccm9QaWpUW2vq2QHvojgKIog7s+UMj9LeY3pUV3yD9bU4YZI+1PTNoX3tOA+BE71gQyqVGox/TVQKP6Q==}
- engines: {node: '>= 12'}
- hasBin: true
- requiresBuild: true
- peerDependencies:
- '@vue/composition-api': ^1.0.0-rc.1
- vue-i18n: ^8.26.1 || ^9.2.0-beta.25 || ^9.3.0-beta.5
- vue-i18n-bridge: ^9.2.0-beta.25 || ^9.3.0-beta.5
- peerDependenciesMeta:
- '@vue/composition-api':
- optional: true
- vue-i18n:
- optional: true
- vue-i18n-bridge:
- optional: true
- dependencies:
- vue-i18n: 9.3.0-beta.16(vue@3.4.19)
- dev: false
-
- /@intlify/vue-router-bridge@0.8.0(vue-router@4.2.5)(vue@3.4.19):
- resolution: {integrity: sha512-CNxOgvyQcRhtGmRrksicL+HGjDijXtz+J/x04C/RslZ74CFdZkxjCe8MABkeD3xr+ry8G8tCm2nV2hLjZbynQw==}
- engines: {node: '>= 12'}
- hasBin: true
- requiresBuild: true
- peerDependencies:
- '@vue/composition-api': ^1.0.0-rc.1
- vue-router: ^4.0.0-0 || ^3.0.0
- peerDependenciesMeta:
- '@vue/composition-api':
- optional: true
- vue-router:
- optional: true
- dependencies:
- vue-demi: 0.13.11(vue@3.4.19)
- vue-router: 4.2.5(vue@3.4.19)
- transitivePeerDependencies:
- - vue
+ /@intlify/utils@0.12.0:
+ resolution: {integrity: sha512-yCBNcuZQ49iInqmWC2xfW0rgEQyNtCM8C8KcWKTXxyscgUE1+48gjLgZZqP75MjhlApxwph7ZMWLqyABkSgxQA==}
+ engines: {node: '>= 18'}
dev: false
/@ioredis/commands@1.2.0:
@@ -2673,7 +2635,7 @@ packages:
resolution: {integrity: sha512-PgaIi8Vv89YOjc6rpKL/uPg2w4k0rAwAYxcqeXqzKqsEAste5rgB8xp1/KUOG0oAOkPd3MRL6Duj+m0ZwJ3g+g==}
engines: {node: ^12.16.0 || >=13.7.0}
dependencies:
- '@babel/generator': 7.23.5
+ '@babel/generator': 7.23.6
'@linaria/logger': 4.0.0
'@linaria/utils': 4.3.4
transitivePeerDependencies:
@@ -2684,14 +2646,14 @@ packages:
resolution: {integrity: sha512-vt6WJG54n+KANaqxOfzIIU7aSfFHEWFbnGLsgxL7nASHqO0zezrNA2y2Rrp80zSeTW+wSpbmDM4uJyC9UW1qoA==}
engines: {node: ^12.16.0 || >=13.7.0}
dependencies:
- '@babel/core': 7.23.5
- '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.23.5)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.5)
- '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.23.5)
- '@babel/traverse': 7.23.5
- '@babel/types': 7.23.5
+ '@babel/core': 7.23.9
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.23.9)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.9)
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
'@linaria/logger': 4.0.0
- babel-merge: 3.0.0(@babel/core@7.23.5)
+ babel-merge: 3.0.0(@babel/core@7.23.9)
transitivePeerDependencies:
- supports-color
dev: false
@@ -2707,12 +2669,22 @@ packages:
nopt: 5.0.0
npmlog: 5.0.1
rimraf: 3.0.2
- semver: 7.5.4
+ semver: 7.6.0
tar: 6.2.0
transitivePeerDependencies:
- encoding
- supports-color
+ /@miyaneee/rollup-plugin-json5@1.2.0(rollup@4.6.0):
+ resolution: {integrity: sha512-JjTIaXZp9WzhUHpElrqPnl1AzBi/rvRs065F71+aTmlqvTMVkdbjZ8vfFl4nRlgJy+TPBw69ZK4pwFdmOAt4aA==}
+ peerDependencies:
+ rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0
+ dependencies:
+ '@rollup/pluginutils': 5.1.0(rollup@4.6.0)
+ json5: 2.2.3
+ rollup: 4.6.0
+ dev: false
+
/@netlify/functions@2.4.0:
resolution: {integrity: sha512-dIqhdj5u4Lu/8qbYwtYpn8NfvIyPHbSTV2lAP4ocL+iwC9As06AXT0wa/xOpO2vRWJa0IMxdZaqCPnkyHlHiyg==}
engines: {node: '>=14.0.0'}
@@ -2756,7 +2728,7 @@ packages:
agent-base: 7.1.0
http-proxy-agent: 7.0.0
https-proxy-agent: 7.0.2
- lru-cache: 10.0.1
+ lru-cache: 10.2.0
socks-proxy-agent: 8.0.2
transitivePeerDependencies:
- supports-color
@@ -2765,19 +2737,19 @@ packages:
resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
- semver: 7.5.4
+ semver: 7.6.0
/@npmcli/git@5.0.3:
resolution: {integrity: sha512-UZp9NwK+AynTrKvHn5k3KviW/hA5eENmFsu3iAPe7sWRt0lFUdsY/wXIYjpDFe7cdSNwOIzbObfwgt6eL5/2zw==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
'@npmcli/promise-spawn': 7.0.0
- lru-cache: 10.0.1
+ lru-cache: 10.2.0
npm-pick-manifest: 9.0.0
proc-log: 3.0.0
promise-inflight: 1.0.1
promise-retry: 2.0.1
- semver: 7.5.4
+ semver: 7.6.0
which: 4.0.0
transitivePeerDependencies:
- bluebird
@@ -2812,17 +2784,17 @@ packages:
transitivePeerDependencies:
- supports-color
- /@nuxt-themes/docus@1.14.6(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)(nuxt@3.8.2)(postcss@8.4.32)(rollup@3.29.4)(vue@3.4.19):
- resolution: {integrity: sha512-tkSG7j0jhVo53wEpK9V48hIvaK0XEzVU64hXhFfnIMv6LJu99cKOC//boebPbN9qLbJmkBdo4IAIJ0tN5MD0qw==}
+ /@nuxt-themes/docus@1.15.0(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)(nuxt@3.10.3)(postcss@8.4.35)(rollup@3.29.4)(vue@3.4.19):
+ resolution: {integrity: sha512-V2kJ5ecGUxXcEovXeQkJBPYfQwjmjaxB5fnl2XaQV+S2Epcn+vhPWShSlL6/WXzLPiAkQFdwbBj9xedTvXgjkw==}
dependencies:
- '@nuxt-themes/elements': 0.9.4(postcss@8.4.32)(rollup@3.29.4)(vue@3.4.19)
- '@nuxt-themes/tokens': 1.9.1(postcss@8.4.32)(rollup@3.29.4)(vue@3.4.19)
- '@nuxt-themes/typography': 0.11.0(postcss@8.4.32)(rollup@3.29.4)(vue@3.4.19)
- '@nuxt/content': 2.7.2(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)(rollup@3.29.4)
- '@nuxthq/studio': 0.13.4(rollup@3.29.4)
- '@vueuse/integrations': 10.2.1(focus-trap@7.5.2)(fuse.js@6.6.2)(idb-keyval@6.2.1)(vue@3.4.19)
- '@vueuse/nuxt': 10.2.1(nuxt@3.8.2)(rollup@3.29.4)(vue@3.4.19)
- focus-trap: 7.5.2
+ '@nuxt-themes/elements': 0.9.5(postcss@8.4.35)(rollup@3.29.4)(vue@3.4.19)
+ '@nuxt-themes/tokens': 1.9.1(postcss@8.4.35)(rollup@3.29.4)(vue@3.4.19)
+ '@nuxt-themes/typography': 0.11.0(postcss@8.4.35)(rollup@3.29.4)(vue@3.4.19)
+ '@nuxt/content': 2.12.0(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)(nuxt@3.10.3)(rollup@3.29.4)(vue@3.4.19)
+ '@nuxthq/studio': 1.0.11(rollup@3.29.4)
+ '@vueuse/integrations': 10.8.0(focus-trap@7.5.4)(fuse.js@6.6.2)(idb-keyval@6.2.1)(vue@3.4.19)
+ '@vueuse/nuxt': 10.8.0(nuxt@3.10.3)(rollup@3.29.4)(vue@3.4.19)
+ focus-trap: 7.5.4
fuse.js: 6.6.2
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -2832,6 +2804,7 @@ packages:
- '@azure/keyvault-secrets'
- '@azure/storage-blob'
- '@capacitor/preferences'
+ - '@netlify/blobs'
- '@planetscale/database'
- '@upstash/redis'
- '@vercel/kv'
@@ -2856,10 +2829,10 @@ packages:
- vue
dev: true
- /@nuxt-themes/elements@0.9.4(postcss@8.4.32)(rollup@3.29.4)(vue@3.4.19):
- resolution: {integrity: sha512-d7XgHc/gjMpre26+N76APL1vlnQHiZTOk61GC4I/ZYQuioSfoKuoIP+Ixrr0QgM22j4MRBtAaBnDAg1wRJrDCQ==}
+ /@nuxt-themes/elements@0.9.5(postcss@8.4.35)(rollup@3.29.4)(vue@3.4.19):
+ resolution: {integrity: sha512-uAA5AiIaT1SxCBjNIURJyCDPNR27+8J+t3AWuzWyhbNPr3L1inEcETZ3RVNzFdQE6mx7MGAMwFBqxPkOUhZQuA==}
dependencies:
- '@nuxt-themes/tokens': 1.9.1(postcss@8.4.32)(rollup@3.29.4)(vue@3.4.19)
+ '@nuxt-themes/tokens': 1.9.1(postcss@8.4.35)(rollup@3.29.4)(vue@3.4.19)
'@vueuse/core': 9.13.0(vue@3.4.19)
transitivePeerDependencies:
- '@vue/composition-api'
@@ -2870,12 +2843,12 @@ packages:
- vue
dev: true
- /@nuxt-themes/tokens@1.9.1(postcss@8.4.32)(rollup@3.29.4)(vue@3.4.19):
+ /@nuxt-themes/tokens@1.9.1(postcss@8.4.35)(rollup@3.29.4)(vue@3.4.19):
resolution: {integrity: sha512-5C28kfRvKnTX8Tux+xwyaf+2pxKgQ53dC9l6C33sZwRRyfUJulGDZCFjKbuNq4iqVwdGvkFSQBYBYjFAv6t75g==}
dependencies:
'@nuxtjs/color-mode': 3.3.2(rollup@3.29.4)
'@vueuse/core': 9.13.0(vue@3.4.19)
- pinceau: 0.18.9(postcss@8.4.32)
+ pinceau: 0.18.9(postcss@8.4.35)
transitivePeerDependencies:
- '@vue/composition-api'
- postcss
@@ -2885,14 +2858,14 @@ packages:
- vue
dev: true
- /@nuxt-themes/typography@0.11.0(postcss@8.4.32)(rollup@3.29.4)(vue@3.4.19):
+ /@nuxt-themes/typography@0.11.0(postcss@8.4.35)(rollup@3.29.4)(vue@3.4.19):
resolution: {integrity: sha512-TqyvD7sDWnqGmL00VtuI7JdmNTPL5/g957HCAWNzcNp+S20uJjW/FXSdkM76d4JSVDHvBqw7Wer3RsqVhqvA4w==}
dependencies:
'@nuxtjs/color-mode': 3.3.2(rollup@3.29.4)
nuxt-config-schema: 0.4.6(rollup@3.29.4)
nuxt-icon: 0.3.3(rollup@3.29.4)(vue@3.4.19)
- pinceau: 0.18.9(postcss@8.4.32)
- ufo: 1.3.2
+ pinceau: 0.18.9(postcss@8.4.35)
+ ufo: 1.4.0
transitivePeerDependencies:
- postcss
- rollup
@@ -2901,45 +2874,36 @@ packages:
- vue
dev: true
- /@nuxt/content@2.7.2(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)(rollup@3.29.4):
- resolution: {integrity: sha512-fP0nrnyjtFbluKltKUtC7jSMFc1xAH+bwweZyLwXb3gkIap2EHlVL+e9ptGt39+4HIkRkLgME7TNr/fUO+CHug==}
+ /@nuxt/content@2.12.0(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)(nuxt@3.10.3)(rollup@3.29.4)(vue@3.4.19):
+ resolution: {integrity: sha512-XQkbkJzFRWKdX4aoVDprqLphbQGDsRX35ZRgHe4i7Phe3F1z2EzXVhZ9WXBTmpXau3MkLlmsQ+NzcRns1kOOvQ==}
dependencies:
- '@nuxt/kit': 3.8.2(rollup@3.29.4)
+ '@nuxt/kit': 3.10.3(rollup@3.29.4)
+ '@nuxtjs/mdc': 0.5.0(rollup@3.29.4)
+ '@vueuse/core': 10.8.0(vue@3.4.19)
+ '@vueuse/head': 2.0.0(vue@3.4.19)
+ '@vueuse/nuxt': 10.8.0(nuxt@3.10.3)(rollup@3.29.4)(vue@3.4.19)
consola: 3.2.3
- defu: 6.1.3
- destr: 2.0.2
- detab: 3.0.2
+ defu: 6.1.4
+ destr: 2.0.3
json5: 2.2.3
knitwork: 1.0.0
- listhen: 1.5.5
- mdast-util-to-hast: 12.3.0
- mdurl: 1.0.1
+ listhen: 1.6.0
+ mdast-util-to-string: 4.0.0
+ mdurl: 2.0.0
+ micromark: 4.0.0
+ micromark-util-sanitize-uri: 2.0.0
+ micromark-util-types: 2.0.0
+ minisearch: 6.3.0
ohash: 1.1.3
- pathe: 1.1.1
- property-information: 6.2.0
- rehype-external-links: 2.1.0
- rehype-raw: 6.1.1
- rehype-slug: 5.1.0
- rehype-sort-attribute-values: 4.0.0
- rehype-sort-attributes: 4.0.0
- remark-emoji: 3.1.2
- remark-gfm: 3.0.1
- remark-mdc: 1.1.3
- remark-parse: 10.0.2
- remark-rehype: 10.1.0
- remark-squeeze-paragraphs: 5.0.1
- scule: 1.1.0
- shiki-es: 0.14.0
+ pathe: 1.1.2
+ scule: 1.3.0
+ shiki: 1.1.7
slugify: 1.6.6
- socket.io-client: 4.7.1
- ufo: 1.3.2
- unified: 10.1.2
- unist-builder: 4.0.0
- unist-util-position: 5.0.0
+ socket.io-client: 4.7.4
+ ufo: 1.4.0
unist-util-stringify-position: 4.0.0
- unist-util-visit: 5.0.0
- unstorage: 1.9.0(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)
- ws: 8.14.2
+ unstorage: 1.10.1(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)
+ ws: 8.16.0
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -2948,52 +2912,56 @@ packages:
- '@azure/keyvault-secrets'
- '@azure/storage-blob'
- '@capacitor/preferences'
+ - '@netlify/blobs'
- '@planetscale/database'
- '@upstash/redis'
- '@vercel/kv'
+ - '@vue/composition-api'
- bufferutil
- idb-keyval
+ - nuxt
- rollup
- supports-color
- utf-8-validate
+ - vue
dev: true
/@nuxt/devalue@2.0.2:
resolution: {integrity: sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==}
- /@nuxt/devtools-kit@1.0.4(nuxt@3.8.2)(rollup@2.79.1)(vite@4.5.0):
- resolution: {integrity: sha512-AXNeI1dBilNryCmwuTd3lU7CrPBhzUJ5ntTFiXw9MmFwe5QT3NOxDFOv0gX7z1DFnmBEmx5mPKWysCwh7htEnQ==}
+ /@nuxt/devtools-kit@1.0.8(nuxt@3.10.3)(rollup@3.29.4)(vite@5.1.4):
+ resolution: {integrity: sha512-j7bNZmoAXQ1a8qv6j6zk4c/aekrxYqYVQM21o/Hy4XHCUq4fajSgpoc8mjyWJSTfpkOmuLyEzMexpDWiIVSr6A==}
peerDependencies:
- nuxt: ^3.8.1
+ nuxt: ^3.9.0
vite: '*'
dependencies:
- '@nuxt/kit': 3.8.2(rollup@2.79.1)
- '@nuxt/schema': 3.8.2(rollup@2.79.1)
+ '@nuxt/kit': 3.10.3(rollup@3.29.4)
+ '@nuxt/schema': 3.10.3(rollup@3.29.4)
execa: 7.2.0
- nuxt: 3.8.2(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@2.79.1)(typescript@5.1.6)(vite@4.5.0)(vue-tsc@1.8.8)
- vite: 4.5.0
- transitivePeerDependencies:
- - rollup
- - supports-color
-
- /@nuxt/devtools-kit@1.0.4(nuxt@3.8.2)(rollup@3.29.4)(vite@4.5.0):
- resolution: {integrity: sha512-AXNeI1dBilNryCmwuTd3lU7CrPBhzUJ5ntTFiXw9MmFwe5QT3NOxDFOv0gX7z1DFnmBEmx5mPKWysCwh7htEnQ==}
- peerDependencies:
- nuxt: ^3.8.1
- vite: '*'
- dependencies:
- '@nuxt/kit': 3.8.2(rollup@3.29.4)
- '@nuxt/schema': 3.8.2(rollup@3.29.4)
- execa: 7.2.0
- nuxt: 3.8.2(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@3.29.4)(typescript@5.1.6)(vite@4.5.0)(vue-tsc@1.8.8)
- vite: 4.5.0
+ nuxt: 3.10.3(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@3.29.4)(typescript@5.3.3)(vite@5.1.4)(vue-tsc@1.8.27)
+ vite: 5.1.4
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /@nuxt/devtools-wizard@1.0.4:
- resolution: {integrity: sha512-3QHRfmkiITM67lAzSIOiI6N4Qzi5i705TCQ53pHQbce0+E00f5vck2hPauflN2X0/M3SZdkUV8UayaHc4egmdA==}
+ /@nuxt/devtools-kit@1.0.8(nuxt@3.10.3)(rollup@4.6.0)(vite@5.1.4):
+ resolution: {integrity: sha512-j7bNZmoAXQ1a8qv6j6zk4c/aekrxYqYVQM21o/Hy4XHCUq4fajSgpoc8mjyWJSTfpkOmuLyEzMexpDWiIVSr6A==}
+ peerDependencies:
+ nuxt: ^3.9.0
+ vite: '*'
+ dependencies:
+ '@nuxt/kit': 3.10.3(rollup@4.6.0)
+ '@nuxt/schema': 3.10.3(rollup@4.6.0)
+ execa: 7.2.0
+ nuxt: 3.10.3(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@4.6.0)(typescript@5.3.3)(vite@5.1.4)(vue-tsc@1.8.27)
+ vite: 5.1.4
+ transitivePeerDependencies:
+ - rollup
+ - supports-color
+
+ /@nuxt/devtools-wizard@1.0.8:
+ resolution: {integrity: sha512-RxyOlM7Isk5npwXwDJ/rjm9ekX5sTNG0LS0VOBMdSx+D5nlRPMRr/r9yO+9WQDyzPLClLzHaXRHBWLPlRX3IMw==}
hasBin: true
dependencies:
consola: 3.2.3
@@ -3001,305 +2969,276 @@ packages:
execa: 7.2.0
global-directory: 4.0.1
magicast: 0.3.2
- pathe: 1.1.1
+ pathe: 1.1.2
pkg-types: 1.0.3
prompts: 2.4.2
rc9: 2.1.1
- semver: 7.5.4
+ semver: 7.6.0
- /@nuxt/devtools@1.0.4(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)(nuxt@3.8.2)(rollup@2.79.1)(vite@4.5.0):
- resolution: {integrity: sha512-G1Oo9+TaOYzePIXpNX+Zzalw/rJyIZKZpZmXfzolPlOJSA1i0JKzZX6Z7iQHdqPwNJ8t+HnVaF4PghPIpo1kwg==}
+ /@nuxt/devtools@1.0.8(nuxt@3.10.3)(rollup@3.29.4)(vite@5.1.4):
+ resolution: {integrity: sha512-o6aBFEBxc8OgVHV4OPe2g0q9tFIe9HiTxRiJnlTJ+jHvOQsBLS651ArdVtwLChf9UdMouFlpLLJ1HteZqTbtsQ==}
hasBin: true
peerDependencies:
- nuxt: ^3.8.1
+ nuxt: ^3.9.0
vite: '*'
dependencies:
- '@antfu/utils': 0.7.6
- '@nuxt/devtools-kit': 1.0.4(nuxt@3.8.2)(rollup@2.79.1)(vite@4.5.0)
- '@nuxt/devtools-wizard': 1.0.4
- '@nuxt/kit': 3.8.2(rollup@2.79.1)
+ '@antfu/utils': 0.7.7
+ '@nuxt/devtools-kit': 1.0.8(nuxt@3.10.3)(rollup@3.29.4)(vite@5.1.4)
+ '@nuxt/devtools-wizard': 1.0.8
+ '@nuxt/kit': 3.10.3(rollup@3.29.4)
birpc: 0.2.14
consola: 3.2.3
- destr: 2.0.2
+ destr: 2.0.3
error-stack-parser-es: 0.1.1
execa: 7.2.0
fast-glob: 3.3.2
flatted: 3.2.9
- get-port-please: 3.1.1
- h3: 1.9.0
+ get-port-please: 3.1.2
hookable: 5.5.3
image-meta: 0.2.0
is-installed-globally: 1.0.0
launch-editor: 2.6.1
local-pkg: 0.5.0
magicast: 0.3.2
- nitropack: 2.8.1(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)
- nuxt: 3.8.2(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@2.79.1)(typescript@5.1.6)(vite@4.5.0)(vue-tsc@1.8.8)
- nypm: 0.3.3
- ofetch: 1.3.3
+ nuxt: 3.10.3(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@3.29.4)(typescript@5.3.3)(vite@5.1.4)(vue-tsc@1.8.27)
+ nypm: 0.3.6
ohash: 1.1.3
- pacote: 17.0.4
- pathe: 1.1.1
+ pacote: 17.0.6
+ pathe: 1.1.2
perfect-debounce: 1.0.0
pkg-types: 1.0.3
rc9: 2.1.1
- scule: 1.1.0
- semver: 7.5.4
- simple-git: 3.21.0
- sirv: 2.0.3
- unimport: 3.6.0(rollup@2.79.1)
- vite: 4.5.0
- vite-plugin-inspect: 0.7.42(@nuxt/kit@3.8.2)(rollup@2.79.1)(vite@4.5.0)
- vite-plugin-vue-inspector: 4.0.0(vite@4.5.0)
+ scule: 1.3.0
+ semver: 7.6.0
+ simple-git: 3.22.0
+ sirv: 2.0.4
+ unimport: 3.7.1(rollup@3.29.4)
+ vite: 5.1.4
+ vite-plugin-inspect: 0.8.3(@nuxt/kit@3.10.3)(rollup@3.29.4)(vite@5.1.4)
+ vite-plugin-vue-inspector: 4.0.2(vite@5.1.4)
which: 3.0.1
- ws: 8.14.2
+ ws: 8.16.0
transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@planetscale/database'
- - '@upstash/redis'
- - '@vercel/kv'
- bluebird
- bufferutil
- - encoding
- - idb-keyval
- rollup
- supports-color
- utf-8-validate
- - xml2js
+ dev: true
- /@nuxt/devtools@1.0.4(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)(nuxt@3.8.2)(rollup@3.29.4)(vite@4.5.0):
- resolution: {integrity: sha512-G1Oo9+TaOYzePIXpNX+Zzalw/rJyIZKZpZmXfzolPlOJSA1i0JKzZX6Z7iQHdqPwNJ8t+HnVaF4PghPIpo1kwg==}
+ /@nuxt/devtools@1.0.8(nuxt@3.10.3)(rollup@4.6.0)(vite@5.1.4):
+ resolution: {integrity: sha512-o6aBFEBxc8OgVHV4OPe2g0q9tFIe9HiTxRiJnlTJ+jHvOQsBLS651ArdVtwLChf9UdMouFlpLLJ1HteZqTbtsQ==}
hasBin: true
peerDependencies:
- nuxt: ^3.8.1
+ nuxt: ^3.9.0
vite: '*'
dependencies:
- '@antfu/utils': 0.7.6
- '@nuxt/devtools-kit': 1.0.4(nuxt@3.8.2)(rollup@3.29.4)(vite@4.5.0)
- '@nuxt/devtools-wizard': 1.0.4
- '@nuxt/kit': 3.8.2(rollup@3.29.4)
+ '@antfu/utils': 0.7.7
+ '@nuxt/devtools-kit': 1.0.8(nuxt@3.10.3)(rollup@4.6.0)(vite@5.1.4)
+ '@nuxt/devtools-wizard': 1.0.8
+ '@nuxt/kit': 3.10.3(rollup@4.6.0)
birpc: 0.2.14
consola: 3.2.3
- destr: 2.0.2
+ destr: 2.0.3
error-stack-parser-es: 0.1.1
execa: 7.2.0
fast-glob: 3.3.2
flatted: 3.2.9
- get-port-please: 3.1.1
- h3: 1.9.0
+ get-port-please: 3.1.2
hookable: 5.5.3
image-meta: 0.2.0
is-installed-globally: 1.0.0
launch-editor: 2.6.1
local-pkg: 0.5.0
magicast: 0.3.2
- nitropack: 2.8.1(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)
- nuxt: 3.8.2(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@3.29.4)(typescript@5.1.6)(vite@4.5.0)(vue-tsc@1.8.8)
- nypm: 0.3.3
- ofetch: 1.3.3
+ nuxt: 3.10.3(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@4.6.0)(typescript@5.3.3)(vite@5.1.4)(vue-tsc@1.8.27)
+ nypm: 0.3.6
ohash: 1.1.3
- pacote: 17.0.4
- pathe: 1.1.1
+ pacote: 17.0.6
+ pathe: 1.1.2
perfect-debounce: 1.0.0
pkg-types: 1.0.3
rc9: 2.1.1
- scule: 1.1.0
- semver: 7.5.4
- simple-git: 3.21.0
- sirv: 2.0.3
- unimport: 3.6.0(rollup@3.29.4)
- vite: 4.5.0
- vite-plugin-inspect: 0.7.42(@nuxt/kit@3.8.2)(rollup@3.29.4)(vite@4.5.0)
- vite-plugin-vue-inspector: 4.0.0(vite@4.5.0)
+ scule: 1.3.0
+ semver: 7.6.0
+ simple-git: 3.22.0
+ sirv: 2.0.4
+ unimport: 3.7.1(rollup@4.6.0)
+ vite: 5.1.4
+ vite-plugin-inspect: 0.8.3(@nuxt/kit@3.10.3)(rollup@4.6.0)(vite@5.1.4)
+ vite-plugin-vue-inspector: 4.0.2(vite@5.1.4)
which: 3.0.1
- ws: 8.14.2
+ ws: 8.16.0
transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@planetscale/database'
- - '@upstash/redis'
- - '@vercel/kv'
- bluebird
- bufferutil
- - encoding
- - idb-keyval
- rollup
- supports-color
- utf-8-validate
- - xml2js
- dev: true
- /@nuxt/kit@3.8.2(rollup@2.79.1):
- resolution: {integrity: sha512-LrXCm8hAkw+zpX8teUSD/LqXRarlXjbRiYxDkaqw739JSHFReWzBFgJbojsJqL4h1XIEScDGGOWiEgO4QO1sMg==}
+ /@nuxt/kit@3.10.3(rollup@3.29.4):
+ resolution: {integrity: sha512-PUjYB9Mvx0qD9H1QZBwwtY4fLlCLET+Mm9BVqUOtXCaGoXd6u6BE4e/dGFPk2UEKkIcDGrUMSbqkHYvsEuK9NQ==}
engines: {node: ^14.18.0 || >=16.10.0}
dependencies:
- '@nuxt/schema': 3.8.2(rollup@2.79.1)
- c12: 1.5.1
+ '@nuxt/schema': 3.10.3(rollup@3.29.4)
+ c12: 1.9.0
consola: 3.2.3
- defu: 6.1.3
- globby: 14.0.0
+ defu: 6.1.4
+ globby: 14.0.1
hash-sum: 2.0.0
- ignore: 5.3.0
+ ignore: 5.3.1
jiti: 1.21.0
knitwork: 1.0.0
- mlly: 1.4.2
- pathe: 1.1.1
+ mlly: 1.6.1
+ pathe: 1.1.2
pkg-types: 1.0.3
- scule: 1.1.0
- semver: 7.5.4
- ufo: 1.3.2
+ scule: 1.3.0
+ semver: 7.6.0
+ ufo: 1.4.0
unctx: 2.3.1
- unimport: 3.6.0(rollup@2.79.1)
- untyped: 1.4.0
- transitivePeerDependencies:
- - rollup
- - supports-color
-
- /@nuxt/kit@3.8.2(rollup@3.29.4):
- resolution: {integrity: sha512-LrXCm8hAkw+zpX8teUSD/LqXRarlXjbRiYxDkaqw739JSHFReWzBFgJbojsJqL4h1XIEScDGGOWiEgO4QO1sMg==}
- engines: {node: ^14.18.0 || >=16.10.0}
- dependencies:
- '@nuxt/schema': 3.8.2(rollup@3.29.4)
- c12: 1.5.1
- consola: 3.2.3
- defu: 6.1.3
- globby: 14.0.0
- hash-sum: 2.0.0
- ignore: 5.3.0
- jiti: 1.21.0
- knitwork: 1.0.0
- mlly: 1.4.2
- pathe: 1.1.1
- pkg-types: 1.0.3
- scule: 1.1.0
- semver: 7.5.4
- ufo: 1.3.2
- unctx: 2.3.1
- unimport: 3.6.0(rollup@3.29.4)
- untyped: 1.4.0
+ unimport: 3.7.1(rollup@3.29.4)
+ untyped: 1.4.2
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /@nuxt/schema@3.8.2(rollup@2.79.1):
- resolution: {integrity: sha512-AMpysQ/wHK2sOujLShqYdC4OSj/S3fFJGjhYXqA2g6dgmz+FNQWJRG/ie5sI9r2EX9Ela1wt0GN1jZR3wYNE8Q==}
+ /@nuxt/kit@3.10.3(rollup@4.6.0):
+ resolution: {integrity: sha512-PUjYB9Mvx0qD9H1QZBwwtY4fLlCLET+Mm9BVqUOtXCaGoXd6u6BE4e/dGFPk2UEKkIcDGrUMSbqkHYvsEuK9NQ==}
+ engines: {node: ^14.18.0 || >=16.10.0}
+ dependencies:
+ '@nuxt/schema': 3.10.3(rollup@4.6.0)
+ c12: 1.9.0
+ consola: 3.2.3
+ defu: 6.1.4
+ globby: 14.0.1
+ hash-sum: 2.0.0
+ ignore: 5.3.1
+ jiti: 1.21.0
+ knitwork: 1.0.0
+ mlly: 1.6.1
+ pathe: 1.1.2
+ pkg-types: 1.0.3
+ scule: 1.3.0
+ semver: 7.6.0
+ ufo: 1.4.0
+ unctx: 2.3.1
+ unimport: 3.7.1(rollup@4.6.0)
+ untyped: 1.4.2
+ transitivePeerDependencies:
+ - rollup
+ - supports-color
+
+ /@nuxt/schema@3.10.3(rollup@3.29.4):
+ resolution: {integrity: sha512-a4cYbeskEVBPazgAhvUGkL/j7ho/iPWMK3vCEm6dRMjSqHVEITRosrj0aMfLbRrDpTrMjlRs0ZitxiaUfE/p5Q==}
engines: {node: ^14.18.0 || >=16.10.0}
dependencies:
'@nuxt/ui-templates': 1.3.1
consola: 3.2.3
- defu: 6.1.3
+ defu: 6.1.4
hookable: 5.5.3
- pathe: 1.1.1
+ pathe: 1.1.2
pkg-types: 1.0.3
- scule: 1.1.0
- std-env: 3.6.0
- ufo: 1.3.2
- unimport: 3.6.0(rollup@2.79.1)
- untyped: 1.4.0
- transitivePeerDependencies:
- - rollup
- - supports-color
-
- /@nuxt/schema@3.8.2(rollup@3.29.4):
- resolution: {integrity: sha512-AMpysQ/wHK2sOujLShqYdC4OSj/S3fFJGjhYXqA2g6dgmz+FNQWJRG/ie5sI9r2EX9Ela1wt0GN1jZR3wYNE8Q==}
- engines: {node: ^14.18.0 || >=16.10.0}
- dependencies:
- '@nuxt/ui-templates': 1.3.1
- consola: 3.2.3
- defu: 6.1.3
- hookable: 5.5.3
- pathe: 1.1.1
- pkg-types: 1.0.3
- scule: 1.1.0
- std-env: 3.6.0
- ufo: 1.3.2
- unimport: 3.6.0(rollup@3.29.4)
- untyped: 1.4.0
+ scule: 1.3.0
+ std-env: 3.7.0
+ ufo: 1.4.0
+ unimport: 3.7.1(rollup@3.29.4)
+ untyped: 1.4.2
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /@nuxt/telemetry@2.5.2(rollup@2.79.1):
- resolution: {integrity: sha512-kZ+rWq/5MZonMhp8KGFI5zMaR2VsiWpnlkOLJIuIX2WoJl0DkHvtxCtuFq2erAqMVruWLpKU+tgMC+1cno/QmA==}
+ /@nuxt/schema@3.10.3(rollup@4.6.0):
+ resolution: {integrity: sha512-a4cYbeskEVBPazgAhvUGkL/j7ho/iPWMK3vCEm6dRMjSqHVEITRosrj0aMfLbRrDpTrMjlRs0ZitxiaUfE/p5Q==}
+ engines: {node: ^14.18.0 || >=16.10.0}
+ dependencies:
+ '@nuxt/ui-templates': 1.3.1
+ consola: 3.2.3
+ defu: 6.1.4
+ hookable: 5.5.3
+ pathe: 1.1.2
+ pkg-types: 1.0.3
+ scule: 1.3.0
+ std-env: 3.7.0
+ ufo: 1.4.0
+ unimport: 3.7.1(rollup@4.6.0)
+ untyped: 1.4.2
+ transitivePeerDependencies:
+ - rollup
+ - supports-color
+
+ /@nuxt/telemetry@2.5.3(rollup@3.29.4):
+ resolution: {integrity: sha512-Ghv2MgWbJcUM9G5Dy3oQP0cJkUwEgaiuQxEF61FXJdn0a69Q4StZEP/hLF0MWPM9m6EvAwI7orxkJHM7MrmtVg==}
hasBin: true
dependencies:
- '@nuxt/kit': 3.8.2(rollup@2.79.1)
- ci-info: 3.8.0
+ '@nuxt/kit': 3.10.3(rollup@3.29.4)
+ ci-info: 4.0.0
consola: 3.2.3
create-require: 1.1.1
- defu: 6.1.3
- destr: 2.0.2
- dotenv: 16.3.1
- git-url-parse: 13.1.0
+ defu: 6.1.4
+ destr: 2.0.3
+ dotenv: 16.4.5
+ git-url-parse: 13.1.1
is-docker: 3.0.0
jiti: 1.21.0
mri: 1.2.0
nanoid: 4.0.2
ofetch: 1.3.3
parse-git-config: 3.0.0
- pathe: 1.1.1
+ pathe: 1.1.2
rc9: 2.1.1
- std-env: 3.6.0
+ std-env: 3.7.0
transitivePeerDependencies:
- rollup
- supports-color
+ dev: true
- /@nuxt/telemetry@2.5.2(rollup@3.29.4):
- resolution: {integrity: sha512-kZ+rWq/5MZonMhp8KGFI5zMaR2VsiWpnlkOLJIuIX2WoJl0DkHvtxCtuFq2erAqMVruWLpKU+tgMC+1cno/QmA==}
+ /@nuxt/telemetry@2.5.3(rollup@4.6.0):
+ resolution: {integrity: sha512-Ghv2MgWbJcUM9G5Dy3oQP0cJkUwEgaiuQxEF61FXJdn0a69Q4StZEP/hLF0MWPM9m6EvAwI7orxkJHM7MrmtVg==}
hasBin: true
dependencies:
- '@nuxt/kit': 3.8.2(rollup@3.29.4)
- ci-info: 3.8.0
+ '@nuxt/kit': 3.10.3(rollup@4.6.0)
+ ci-info: 4.0.0
consola: 3.2.3
create-require: 1.1.1
- defu: 6.1.3
- destr: 2.0.2
- dotenv: 16.3.1
- git-url-parse: 13.1.0
+ defu: 6.1.4
+ destr: 2.0.3
+ dotenv: 16.4.5
+ git-url-parse: 13.1.1
is-docker: 3.0.0
jiti: 1.21.0
mri: 1.2.0
nanoid: 4.0.2
ofetch: 1.3.3
parse-git-config: 3.0.0
- pathe: 1.1.1
+ pathe: 1.1.2
rc9: 2.1.1
- std-env: 3.6.0
+ std-env: 3.7.0
transitivePeerDependencies:
- rollup
- supports-color
- dev: true
- /@nuxt/test-utils@3.9.0-alpha.1(@vue/test-utils@2.4.3)(h3@1.9.0)(happy-dom@10.5.2)(rollup@2.79.1)(vite@4.5.0)(vitest@1.3.0)(vue-router@4.2.5)(vue@3.4.19):
- resolution: {integrity: sha512-cPR2Z2REMyIRGM3/2zEf5IAfMHT2GniMx4IkeeexlG7O0y3VMA1SumoWFa5/pRLxXhUjR2Vg3je1WaUr/ACZkw==}
+ /@nuxt/test-utils@3.11.0(@vue/test-utils@2.4.4)(h3@1.10.2)(happy-dom@10.5.2)(rollup@4.6.0)(vite@5.1.4)(vitest@1.3.1)(vue-router@4.3.0)(vue@3.4.19):
+ resolution: {integrity: sha512-9ovgpQZkZpVg/MhYVVn2169WjH/IL0XUqwGryTa/lkx0/BCi1LMVEp3HTPkmt4qbRcxitO+kL4vFqqrFGVaSVg==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
+ '@cucumber/cucumber': ^10.3.1
'@jest/globals': ^29.5.0
'@testing-library/vue': ^7.0.0 || ^8.0.1
- '@vitest/ui': ^0.33.0 || ^0.34.6 || ^1.0.0
+ '@vitest/ui': ^0.34.6 || ^1.0.0
'@vue/test-utils': ^2.4.2
h3: '*'
- happy-dom: ^9.10.9 || ^10.0.0 || ^11.0.0 || ^12.0.0
- jsdom: ^22.0.0 || ^23.0.0
+ happy-dom: ^9.10.9 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0
+ jsdom: ^22.0.0 || ^23.0.0 || ^24.0.0
playwright-core: ^1.34.3
vite: '*'
- vitest: ^0.24.5 || ^0.26.0 || ^0.27.0 || ^0.28.0 || ^0.29.0 || ^0.30.0 || ^0.33.0 || ^0.34.6 || ^1.0.0
+ vitest: 1.3.1
vue: ^3.4.19
vue-router: ^4.0.0
peerDependenciesMeta:
+ '@cucumber/cucumber':
+ optional: true
'@jest/globals':
optional: true
'@testing-library/vue':
@@ -3317,33 +3256,36 @@ packages:
vitest:
optional: true
dependencies:
- '@nuxt/kit': 3.8.2(rollup@2.79.1)
- '@nuxt/schema': 3.8.2(rollup@2.79.1)
- '@vue/test-utils': 2.4.3(vue@3.4.19)
+ '@nuxt/kit': 3.10.3(rollup@4.6.0)
+ '@nuxt/schema': 3.10.3(rollup@4.6.0)
+ '@vue/test-utils': 2.4.4(vue@3.4.19)
+ c12: 1.9.0
consola: 3.2.3
- defu: 6.1.3
+ defu: 6.1.4
+ destr: 2.0.3
estree-walker: 3.0.3
execa: 8.0.1
- fake-indexeddb: 5.0.1
- get-port-please: 3.1.1
- h3: 1.9.0
+ fake-indexeddb: 5.0.2
+ get-port-please: 3.1.2
+ h3: 1.10.2
happy-dom: 10.5.2
local-pkg: 0.5.0
- magic-string: 0.30.5
- node-fetch-native: 1.4.1
+ magic-string: 0.30.7
+ node-fetch-native: 1.6.2
ofetch: 1.3.3
- pathe: 1.1.1
+ pathe: 1.1.2
perfect-debounce: 1.0.0
radix3: 1.1.0
- std-env: 3.6.0
- ufo: 1.3.2
- unenv: 1.8.0
- unplugin: 1.5.1
- vite: 4.5.0
- vitest: 1.3.0(happy-dom@10.5.2)
- vitest-environment-nuxt: 1.0.0-alpha.1(@vue/test-utils@2.4.3)(h3@1.9.0)(happy-dom@10.5.2)(rollup@2.79.1)(vite@4.5.0)(vitest@1.3.0)(vue-router@4.2.5)(vue@3.4.19)
- vue: 3.4.19(typescript@5.1.6)
- vue-router: 4.2.5(vue@3.4.19)
+ scule: 1.3.0
+ std-env: 3.7.0
+ ufo: 1.4.0
+ unenv: 1.9.0
+ unplugin: 1.7.1
+ vite: 5.1.4
+ vitest: 1.3.1(happy-dom@10.5.2)
+ vitest-environment-nuxt: 1.0.0(@vue/test-utils@2.4.4)(h3@1.10.2)(happy-dom@10.5.2)(rollup@4.6.0)(vite@5.1.4)(vitest@1.3.1)(vue-router@4.3.0)(vue@3.4.19)
+ vue: 3.4.19(typescript@5.3.3)
+ vue-router: 4.3.0(vue@3.4.19)
transitivePeerDependencies:
- rollup
- supports-color
@@ -3352,104 +3294,46 @@ packages:
/@nuxt/ui-templates@1.3.1:
resolution: {integrity: sha512-5gc02Pu1HycOVUWJ8aYsWeeXcSTPe8iX8+KIrhyEtEoOSkY0eMBuo0ssljB8wALuEmepv31DlYe5gpiRwkjESA==}
- /@nuxt/vite-builder@3.8.2(eslint@8.49.0)(rollup@2.79.1)(typescript@5.1.6)(vue-tsc@1.8.8)(vue@3.4.19):
- resolution: {integrity: sha512-l/lzDDTbd3M89BpmWqjhVLgLVRqfkKp0tyYgV5seJQjj3SX+IeqI7k6k8+dMEifdeO34jUajVWptNpITXQryyg==}
+ /@nuxt/vite-builder@3.10.3(eslint@8.49.0)(rollup@3.29.4)(typescript@5.3.3)(vue-tsc@1.8.27)(vue@3.4.19):
+ resolution: {integrity: sha512-BqkbrYkEk1AVUJleofbqTRV+ltf2p1CDjGDK78zENPCgrSABlj4F4oK8rze8vmRY5qoH7kMZxgMa2dXVXCp6OA==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
vue: ^3.4.19
dependencies:
- '@nuxt/kit': 3.8.2(rollup@2.79.1)
- '@rollup/plugin-replace': 5.0.5(rollup@2.79.1)
- '@vitejs/plugin-vue': 4.5.0(vite@4.5.0)(vue@3.4.19)
- '@vitejs/plugin-vue-jsx': 3.1.0(vite@4.5.0)(vue@3.4.19)
- autoprefixer: 10.4.16(postcss@8.4.32)
- clear: 0.1.0
- consola: 3.2.3
- cssnano: 6.0.1(postcss@8.4.32)
- defu: 6.1.3
- esbuild: 0.19.8
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- externality: 1.0.2
- fs-extra: 11.2.0
- get-port-please: 3.1.1
- h3: 1.9.0
- knitwork: 1.0.0
- magic-string: 0.30.5
- mlly: 1.4.2
- ohash: 1.1.3
- pathe: 1.1.1
- perfect-debounce: 1.0.0
- pkg-types: 1.0.3
- postcss: 8.4.32
- rollup-plugin-visualizer: 5.9.3(rollup@2.79.1)
- std-env: 3.6.0
- strip-literal: 1.3.0
- ufo: 1.3.2
- unplugin: 1.5.1
- vite: 4.5.0
- vite-node: 0.33.0
- vite-plugin-checker: 0.6.2(eslint@8.49.0)(typescript@5.1.6)(vite@4.5.0)(vue-tsc@1.8.8)
- vue: 3.4.19(typescript@5.1.6)
- vue-bundle-renderer: 2.0.0
- transitivePeerDependencies:
- - '@types/node'
- - eslint
- - less
- - lightningcss
- - meow
- - optionator
- - rollup
- - sass
- - stylelint
- - stylus
- - sugarss
- - supports-color
- - terser
- - typescript
- - vls
- - vti
- - vue-tsc
-
- /@nuxt/vite-builder@3.8.2(eslint@8.49.0)(rollup@3.29.4)(typescript@5.1.6)(vue-tsc@1.8.8)(vue@3.4.19):
- resolution: {integrity: sha512-l/lzDDTbd3M89BpmWqjhVLgLVRqfkKp0tyYgV5seJQjj3SX+IeqI7k6k8+dMEifdeO34jUajVWptNpITXQryyg==}
- engines: {node: ^14.18.0 || >=16.10.0}
- peerDependencies:
- vue: ^3.4.19
- dependencies:
- '@nuxt/kit': 3.8.2(rollup@3.29.4)
+ '@nuxt/kit': 3.10.3(rollup@3.29.4)
'@rollup/plugin-replace': 5.0.5(rollup@3.29.4)
- '@vitejs/plugin-vue': 4.5.0(vite@4.5.0)(vue@3.4.19)
- '@vitejs/plugin-vue-jsx': 3.1.0(vite@4.5.0)(vue@3.4.19)
- autoprefixer: 10.4.16(postcss@8.4.32)
+ '@vitejs/plugin-vue': 5.0.4(vite@5.1.4)(vue@3.4.19)
+ '@vitejs/plugin-vue-jsx': 3.1.0(vite@5.1.4)(vue@3.4.19)
+ autoprefixer: 10.4.17(postcss@8.4.35)
clear: 0.1.0
consola: 3.2.3
- cssnano: 6.0.1(postcss@8.4.32)
- defu: 6.1.3
- esbuild: 0.19.8
+ cssnano: 6.0.5(postcss@8.4.35)
+ defu: 6.1.4
+ esbuild: 0.20.1
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
externality: 1.0.2
fs-extra: 11.2.0
- get-port-please: 3.1.1
- h3: 1.9.0
+ get-port-please: 3.1.2
+ h3: 1.10.2
knitwork: 1.0.0
- magic-string: 0.30.5
- mlly: 1.4.2
+ magic-string: 0.30.7
+ mlly: 1.6.1
ohash: 1.1.3
- pathe: 1.1.1
+ pathe: 1.1.2
perfect-debounce: 1.0.0
pkg-types: 1.0.3
- postcss: 8.4.32
- rollup-plugin-visualizer: 5.9.3(rollup@3.29.4)
- std-env: 3.6.0
- strip-literal: 1.3.0
- ufo: 1.3.2
- unplugin: 1.5.1
- vite: 4.5.0
- vite-node: 0.33.0
- vite-plugin-checker: 0.6.2(eslint@8.49.0)(typescript@5.1.6)(vite@4.5.0)(vue-tsc@1.8.8)
- vue: 3.4.19(typescript@5.1.6)
+ postcss: 8.4.35
+ rollup-plugin-visualizer: 5.12.0(rollup@3.29.4)
+ std-env: 3.7.0
+ strip-literal: 2.0.0
+ ufo: 1.4.0
+ unenv: 1.9.0
+ unplugin: 1.7.1
+ vite: 5.1.4
+ vite-node: 1.3.1
+ vite-plugin-checker: 0.6.4(eslint@8.49.0)(typescript@5.3.3)(vite@5.1.4)(vue-tsc@1.8.27)
+ vue: 3.4.19(typescript@5.3.3)
vue-bundle-renderer: 2.0.0
transitivePeerDependencies:
- '@types/node'
@@ -3471,15 +3355,78 @@ packages:
- vue-tsc
dev: true
- /@nuxthq/studio@0.13.4(rollup@3.29.4):
- resolution: {integrity: sha512-+Jn0iN6TvRTTtTBX4qXWhtOMLL4rsyUIX3/9HM+eBAwr5/cELLw3RuI1tgp942QteTi7PvI5Av4nEi6BlLBr+A==}
+ /@nuxt/vite-builder@3.10.3(eslint@8.49.0)(rollup@4.6.0)(typescript@5.3.3)(vue-tsc@1.8.27)(vue@3.4.19):
+ resolution: {integrity: sha512-BqkbrYkEk1AVUJleofbqTRV+ltf2p1CDjGDK78zENPCgrSABlj4F4oK8rze8vmRY5qoH7kMZxgMa2dXVXCp6OA==}
+ engines: {node: ^14.18.0 || >=16.10.0}
+ peerDependencies:
+ vue: ^3.4.19
dependencies:
- '@nuxt/kit': 3.8.2(rollup@3.29.4)
- defu: 6.1.3
- nuxt-component-meta: 0.5.3(rollup@3.29.4)
- nuxt-config-schema: 0.4.6(rollup@3.29.4)
- socket.io-client: 4.7.1
- ufo: 1.3.2
+ '@nuxt/kit': 3.10.3(rollup@4.6.0)
+ '@rollup/plugin-replace': 5.0.5(rollup@4.6.0)
+ '@vitejs/plugin-vue': 5.0.4(vite@5.1.4)(vue@3.4.19)
+ '@vitejs/plugin-vue-jsx': 3.1.0(vite@5.1.4)(vue@3.4.19)
+ autoprefixer: 10.4.17(postcss@8.4.35)
+ clear: 0.1.0
+ consola: 3.2.3
+ cssnano: 6.0.5(postcss@8.4.35)
+ defu: 6.1.4
+ esbuild: 0.20.1
+ escape-string-regexp: 5.0.0
+ estree-walker: 3.0.3
+ externality: 1.0.2
+ fs-extra: 11.2.0
+ get-port-please: 3.1.2
+ h3: 1.10.2
+ knitwork: 1.0.0
+ magic-string: 0.30.7
+ mlly: 1.6.1
+ ohash: 1.1.3
+ pathe: 1.1.2
+ perfect-debounce: 1.0.0
+ pkg-types: 1.0.3
+ postcss: 8.4.35
+ rollup-plugin-visualizer: 5.12.0(rollup@4.6.0)
+ std-env: 3.7.0
+ strip-literal: 2.0.0
+ ufo: 1.4.0
+ unenv: 1.9.0
+ unplugin: 1.7.1
+ vite: 5.1.4
+ vite-node: 1.3.1
+ vite-plugin-checker: 0.6.4(eslint@8.49.0)(typescript@5.3.3)(vite@5.1.4)(vue-tsc@1.8.27)
+ vue: 3.4.19(typescript@5.3.3)
+ vue-bundle-renderer: 2.0.0
+ transitivePeerDependencies:
+ - '@types/node'
+ - eslint
+ - less
+ - lightningcss
+ - meow
+ - optionator
+ - rollup
+ - sass
+ - stylelint
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - typescript
+ - vls
+ - vti
+ - vue-tsc
+
+ /@nuxthq/studio@1.0.11(rollup@3.29.4):
+ resolution: {integrity: sha512-MLrs/qvGqaSp+q3pezBTcRfkTHOJs9+MP0IIzSPwVCl4mncu4/1jyVLF7XjcjV4V91NFXJ/cjCNBQQWRsU7uLg==}
+ dependencies:
+ '@nuxt/kit': 3.10.3(rollup@3.29.4)
+ defu: 6.1.4
+ git-url-parse: 14.0.0
+ nuxt-component-meta: 0.6.3(rollup@3.29.4)
+ parse-git-config: 3.0.0
+ pkg-types: 1.0.3
+ socket.io-client: 4.7.4
+ ufo: 1.4.0
+ untyped: 1.4.2
transitivePeerDependencies:
- bufferutil
- rollup
@@ -3487,172 +3434,214 @@ packages:
- utf-8-validate
dev: true
- /@nuxtjs/color-mode@3.3.2(rollup@2.79.1):
- resolution: {integrity: sha512-BLpBfrYZngV2QWFQ4HNEFwAXa3Pno43Ge+2XHcZJTTa1Z4KzRLvOwku8yiyV3ovIaaXKGwduBdv3Z5Ocdp0/+g==}
- dependencies:
- '@nuxt/kit': 3.8.2(rollup@2.79.1)
- lodash.template: 4.5.0
- pathe: 1.1.1
- transitivePeerDependencies:
- - rollup
- - supports-color
- dev: false
-
/@nuxtjs/color-mode@3.3.2(rollup@3.29.4):
resolution: {integrity: sha512-BLpBfrYZngV2QWFQ4HNEFwAXa3Pno43Ge+2XHcZJTTa1Z4KzRLvOwku8yiyV3ovIaaXKGwduBdv3Z5Ocdp0/+g==}
dependencies:
- '@nuxt/kit': 3.8.2(rollup@3.29.4)
+ '@nuxt/kit': 3.10.3(rollup@3.29.4)
lodash.template: 4.5.0
- pathe: 1.1.1
+ pathe: 1.1.2
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /@nuxtjs/i18n@8.0.0-beta.10(rollup@2.79.1)(vue-router@4.2.5)(vue@3.4.19):
- resolution: {integrity: sha512-a7xcWKSJvABxF6O7W7MKscyT3OJxaKpBQZ84PGuTop9YrlBFkTV+bUQX3cayQqd0EYVLjgdE9R0uri5JMIVQWQ==}
- engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
+ /@nuxtjs/color-mode@3.3.2(rollup@4.6.0):
+ resolution: {integrity: sha512-BLpBfrYZngV2QWFQ4HNEFwAXa3Pno43Ge+2XHcZJTTa1Z4KzRLvOwku8yiyV3ovIaaXKGwduBdv3Z5Ocdp0/+g==}
dependencies:
- '@intlify/bundle-utils': 4.0.0(vue-i18n@9.3.0-beta.16)
- '@intlify/shared': 9.3.0-beta.16
- '@intlify/unplugin-vue-i18n': 0.8.2(vue-i18n@9.3.0-beta.16)
- '@nuxt/kit': 3.8.2(rollup@2.79.1)
- '@vue/compiler-sfc': 3.3.9
- cookie-es: 0.5.0
+ '@nuxt/kit': 3.10.3(rollup@4.6.0)
+ lodash.template: 4.5.0
+ pathe: 1.1.2
+ transitivePeerDependencies:
+ - rollup
+ - supports-color
+ dev: false
+
+ /@nuxtjs/i18n@8.1.1(rollup@4.6.0)(vue@3.4.19):
+ resolution: {integrity: sha512-woq2gdXv+soVRc2yeE2pwWODiLnF7fx1eAEXi5Zx+StQDxHegAHTbKX/ZqcsW8VZ3mqlcpzfqN399KCZ9qXJ8g==}
+ engines: {node: ^14.16.0 || >=16.11.0}
+ dependencies:
+ '@intlify/h3': 0.5.0
+ '@intlify/shared': 9.9.1
+ '@intlify/unplugin-vue-i18n': 2.0.0(rollup@4.6.0)(vue-i18n@9.9.1)
+ '@intlify/utils': 0.12.0
+ '@miyaneee/rollup-plugin-json5': 1.2.0(rollup@4.6.0)
+ '@nuxt/kit': 3.10.3(rollup@4.6.0)
+ '@rollup/plugin-yaml': 4.1.2(rollup@4.6.0)
+ '@vue/compiler-sfc': 3.4.19
debug: 4.3.4
+ defu: 6.1.4
estree-walker: 3.0.3
is-https: 4.0.0
- js-cookie: 3.0.5
knitwork: 1.0.0
- magic-string: 0.27.0
- mlly: 1.4.2
- pathe: 1.1.1
- pkg-types: 1.0.3
- ufo: 1.3.2
- unplugin: 1.5.1
- vue-i18n: 9.3.0-beta.16(vue@3.4.19)
- vue-i18n-routing: 0.12.2(vue-i18n@9.3.0-beta.16)(vue-router@4.2.5)(vue@3.4.19)
+ magic-string: 0.30.7
+ mlly: 1.6.1
+ pathe: 1.1.2
+ sucrase: 3.35.0
+ ufo: 1.4.0
+ unplugin: 1.7.1
+ vue-i18n: 9.9.1(vue@3.4.19)
+ vue-router: 4.3.0(vue@3.4.19)
transitivePeerDependencies:
- - '@vue/composition-api'
- petite-vue-i18n
- rollup
- supports-color
- vue
- vue-i18n-bridge
- - vue-router
dev: false
+ /@nuxtjs/mdc@0.5.0(rollup@3.29.4):
+ resolution: {integrity: sha512-480Ajc7o/YAl9b21btd0oRtVe/UjUWmVSEWauS+H+izwEGdGvJTVfZRdaiAXcXKl+UmUTpf+POel027sE9HAZQ==}
+ dependencies:
+ '@nuxt/kit': 3.10.3(rollup@3.29.4)
+ '@shikijs/transformers': 1.1.7
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.3
+ '@vue/compiler-core': 3.4.19
+ consola: 3.2.3
+ debug: 4.3.4
+ defu: 6.1.4
+ destr: 2.0.3
+ detab: 3.0.2
+ github-slugger: 2.0.0
+ hast-util-to-string: 3.0.0
+ mdast-util-to-hast: 13.1.0
+ micromark-util-sanitize-uri: 2.0.0
+ ohash: 1.1.3
+ parse5: 7.1.2
+ pathe: 1.1.2
+ property-information: 6.4.1
+ rehype-external-links: 3.0.0
+ rehype-raw: 7.0.0
+ rehype-slug: 6.0.0
+ rehype-sort-attribute-values: 5.0.0
+ rehype-sort-attributes: 5.0.0
+ remark-emoji: 4.0.1
+ remark-gfm: 4.0.0
+ remark-mdc: 3.0.2
+ remark-parse: 11.0.0
+ remark-rehype: 11.1.0
+ scule: 1.3.0
+ shiki: 1.1.7
+ ufo: 1.4.0
+ unified: 11.0.4
+ unist-builder: 4.0.0
+ unist-util-visit: 5.0.0
+ unwasm: 0.3.7
+ transitivePeerDependencies:
+ - rollup
+ - supports-color
+ dev: true
+
/@one-ini/wasm@0.1.1:
resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==}
- /@parcel/watcher-android-arm64@2.3.0:
- resolution: {integrity: sha512-f4o9eA3dgk0XRT3XhB0UWpWpLnKgrh1IwNJKJ7UJek7eTYccQ8LR7XUWFKqw6aEq5KUNlCcGvSzKqSX/vtWVVA==}
+ /@parcel/watcher-android-arm64@2.4.1:
+ resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [android]
requiresBuild: true
optional: true
- /@parcel/watcher-darwin-arm64@2.3.0:
- resolution: {integrity: sha512-mKY+oijI4ahBMc/GygVGvEdOq0L4DxhYgwQqYAz/7yPzuGi79oXrZG52WdpGA1wLBPrYb0T8uBaGFo7I6rvSKw==}
+ /@parcel/watcher-darwin-arm64@2.4.1:
+ resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
- /@parcel/watcher-darwin-x64@2.3.0:
- resolution: {integrity: sha512-20oBj8LcEOnLE3mgpy6zuOq8AplPu9NcSSSfyVKgfOhNAc4eF4ob3ldj0xWjGGbOF7Dcy1Tvm6ytvgdjlfUeow==}
+ /@parcel/watcher-darwin-x64@2.4.1:
+ resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [darwin]
requiresBuild: true
optional: true
- /@parcel/watcher-freebsd-x64@2.3.0:
- resolution: {integrity: sha512-7LftKlaHunueAEiojhCn+Ef2CTXWsLgTl4hq0pkhkTBFI3ssj2bJXmH2L67mKpiAD5dz66JYk4zS66qzdnIOgw==}
+ /@parcel/watcher-freebsd-x64@2.4.1:
+ resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [freebsd]
requiresBuild: true
optional: true
- /@parcel/watcher-linux-arm-glibc@2.3.0:
- resolution: {integrity: sha512-1apPw5cD2xBv1XIHPUlq0cO6iAaEUQ3BcY0ysSyD9Kuyw4MoWm1DV+W9mneWI+1g6OeP6dhikiFE6BlU+AToTQ==}
+ /@parcel/watcher-linux-arm-glibc@2.4.1:
+ resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==}
engines: {node: '>= 10.0.0'}
cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
- /@parcel/watcher-linux-arm64-glibc@2.3.0:
- resolution: {integrity: sha512-mQ0gBSQEiq1k/MMkgcSB0Ic47UORZBmWoAWlMrTW6nbAGoLZP+h7AtUM7H3oDu34TBFFvjy4JCGP43JlylkTQA==}
+ /@parcel/watcher-linux-arm64-glibc@2.4.1:
+ resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@parcel/watcher-linux-arm64-musl@2.3.0:
- resolution: {integrity: sha512-LXZAExpepJew0Gp8ZkJ+xDZaTQjLHv48h0p0Vw2VMFQ8A+RKrAvpFuPVCVwKJCr5SE+zvaG+Etg56qXvTDIedw==}
+ /@parcel/watcher-linux-arm64-musl@2.4.1:
+ resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@parcel/watcher-linux-x64-glibc@2.3.0:
- resolution: {integrity: sha512-P7Wo91lKSeSgMTtG7CnBS6WrA5otr1K7shhSjKHNePVmfBHDoAOHYRXgUmhiNfbcGk0uMCHVcdbfxtuiZCHVow==}
+ /@parcel/watcher-linux-x64-glibc@2.4.1:
+ resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@parcel/watcher-linux-x64-musl@2.3.0:
- resolution: {integrity: sha512-+kiRE1JIq8QdxzwoYY+wzBs9YbJ34guBweTK8nlzLKimn5EQ2b2FSC+tAOpq302BuIMjyuUGvBiUhEcLIGMQ5g==}
+ /@parcel/watcher-linux-x64-musl@2.4.1:
+ resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@parcel/watcher-wasm@2.3.0:
- resolution: {integrity: sha512-ejBAX8H0ZGsD8lSICDNyMbSEtPMWgDL0WFCt/0z7hyf5v8Imz4rAM8xY379mBsECkq/Wdqa5WEDLqtjZ+6NxfA==}
+ /@parcel/watcher-wasm@2.4.0:
+ resolution: {integrity: sha512-MNgQ4WCbBybqQ97KwR/hqJGYTg3+s8qHpgIyFWB2qJOBvoJWbXuJGmm4ZkPLq2bMaANqCZqrXwmKYagZTkMKZA==}
engines: {node: '>= 10.0.0'}
dependencies:
is-glob: 4.0.3
micromatch: 4.0.5
- napi-wasm: 1.1.0
bundledDependencies:
- napi-wasm
- /@parcel/watcher-win32-arm64@2.3.0:
- resolution: {integrity: sha512-35gXCnaz1AqIXpG42evcoP2+sNL62gZTMZne3IackM+6QlfMcJLy3DrjuL6Iks7Czpd3j4xRBzez3ADCj1l7Aw==}
+ /@parcel/watcher-win32-arm64@2.4.1:
+ resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [win32]
requiresBuild: true
optional: true
- /@parcel/watcher-win32-ia32@2.3.0:
- resolution: {integrity: sha512-FJS/IBQHhRpZ6PiCjFt1UAcPr0YmCLHRbTc00IBTrelEjlmmgIVLeOx4MSXzx2HFEy5Jo5YdhGpxCuqCyDJ5ow==}
+ /@parcel/watcher-win32-ia32@2.4.1:
+ resolution: {integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==}
engines: {node: '>= 10.0.0'}
cpu: [ia32]
os: [win32]
requiresBuild: true
optional: true
- /@parcel/watcher-win32-x64@2.3.0:
- resolution: {integrity: sha512-dLx+0XRdMnVI62kU3wbXvbIRhLck4aE28bIGKbRGS7BJNt54IIj9+c/Dkqb+7DJEbHUZAX1bwaoM8PqVlHJmCA==}
+ /@parcel/watcher-win32-x64@2.4.1:
+ resolution: {integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [win32]
requiresBuild: true
optional: true
- /@parcel/watcher@2.3.0:
- resolution: {integrity: sha512-pW7QaFiL11O0BphO+bq3MgqeX/INAk9jgBldVDYjlQPO4VddoZnF22TcF9onMhnLVHuNqBJeRf+Fj7eezi/+rQ==}
+ /@parcel/watcher@2.4.1:
+ resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==}
engines: {node: '>= 10.0.0'}
dependencies:
detect-libc: 1.0.3
@@ -3660,24 +3649,24 @@ packages:
micromatch: 4.0.5
node-addon-api: 7.0.0
optionalDependencies:
- '@parcel/watcher-android-arm64': 2.3.0
- '@parcel/watcher-darwin-arm64': 2.3.0
- '@parcel/watcher-darwin-x64': 2.3.0
- '@parcel/watcher-freebsd-x64': 2.3.0
- '@parcel/watcher-linux-arm-glibc': 2.3.0
- '@parcel/watcher-linux-arm64-glibc': 2.3.0
- '@parcel/watcher-linux-arm64-musl': 2.3.0
- '@parcel/watcher-linux-x64-glibc': 2.3.0
- '@parcel/watcher-linux-x64-musl': 2.3.0
- '@parcel/watcher-win32-arm64': 2.3.0
- '@parcel/watcher-win32-ia32': 2.3.0
- '@parcel/watcher-win32-x64': 2.3.0
+ '@parcel/watcher-android-arm64': 2.4.1
+ '@parcel/watcher-darwin-arm64': 2.4.1
+ '@parcel/watcher-darwin-x64': 2.4.1
+ '@parcel/watcher-freebsd-x64': 2.4.1
+ '@parcel/watcher-linux-arm-glibc': 2.4.1
+ '@parcel/watcher-linux-arm64-glibc': 2.4.1
+ '@parcel/watcher-linux-arm64-musl': 2.4.1
+ '@parcel/watcher-linux-x64-glibc': 2.4.1
+ '@parcel/watcher-linux-x64-musl': 2.4.1
+ '@parcel/watcher-win32-arm64': 2.4.1
+ '@parcel/watcher-win32-ia32': 2.4.1
+ '@parcel/watcher-win32-x64': 2.4.1
- /@pinia/nuxt@0.4.11(rollup@2.79.1)(typescript@5.1.6)(vue@3.4.19):
- resolution: {integrity: sha512-bhuNFngJpmBCdAqWguezNJ/oJFR7wvKieqiZrmmdmPR07XjsidAw8RLXHMZE9kUm32M9E6T057OBbG/22jERTg==}
+ /@pinia/nuxt@0.5.1(rollup@4.6.0)(typescript@5.3.3)(vue@3.4.19):
+ resolution: {integrity: sha512-6wT6TqY81n+7/x3Yhf0yfaJVKkZU42AGqOR0T3+UvChcaOJhSma7OWPN64v+ptYlznat+fS1VTwNAcbi2lzHnw==}
dependencies:
- '@nuxt/kit': 3.8.2(rollup@2.79.1)
- pinia: 2.1.4(typescript@5.1.6)(vue@3.4.19)
+ '@nuxt/kit': 3.10.3(rollup@4.6.0)
+ pinia: 2.1.7(typescript@5.3.3)(vue@3.4.19)
transitivePeerDependencies:
- '@vue/composition-api'
- rollup
@@ -3692,8 +3681,8 @@ packages:
requiresBuild: true
optional: true
- /@polka/url@1.0.0-next.21:
- resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==}
+ /@polka/url@1.0.0-next.24:
+ resolution: {integrity: sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==}
/@popperjs/core@2.11.8:
resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
@@ -3758,7 +3747,7 @@ packages:
rollup: 4.6.0
slash: 4.0.0
- /@rollup/plugin-babel@5.3.1(@babel/core@7.23.5)(rollup@2.79.1):
+ /@rollup/plugin-babel@5.3.1(@babel/core@7.23.9)(rollup@2.79.1):
resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
engines: {node: '>= 10.0.0'}
peerDependencies:
@@ -3769,7 +3758,7 @@ packages:
'@types/babel__core':
optional: true
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-module-imports': 7.22.15
'@rollup/pluginutils': 3.1.0(rollup@2.79.1)
rollup: 2.79.1
@@ -3807,7 +3796,7 @@ packages:
estree-walker: 2.0.2
glob: 8.1.0
is-reference: 1.2.1
- magic-string: 0.30.5
+ magic-string: 0.30.7
rollup: 4.6.0
/@rollup/plugin-inject@5.0.5(rollup@4.6.0):
@@ -3821,7 +3810,7 @@ packages:
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.6.0)
estree-walker: 2.0.2
- magic-string: 0.30.5
+ magic-string: 0.30.7
rollup: 4.6.0
/@rollup/plugin-json@6.0.1(rollup@3.29.4):
@@ -3909,19 +3898,6 @@ packages:
rollup: 2.79.1
dev: false
- /@rollup/plugin-replace@5.0.5(rollup@2.79.1):
- resolution: {integrity: sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
- peerDependenciesMeta:
- rollup:
- optional: true
- dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@2.79.1)
- magic-string: 0.30.5
- rollup: 2.79.1
-
/@rollup/plugin-replace@5.0.5(rollup@3.29.4):
resolution: {integrity: sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ==}
engines: {node: '>=14.0.0'}
@@ -3932,7 +3908,7 @@ packages:
optional: true
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@3.29.4)
- magic-string: 0.30.5
+ magic-string: 0.30.7
rollup: 3.29.4
dev: true
@@ -3946,7 +3922,7 @@ packages:
optional: true
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.6.0)
- magic-string: 0.30.5
+ magic-string: 0.30.7
rollup: 4.6.0
/@rollup/plugin-terser@0.4.4(rollup@4.6.0):
@@ -3975,6 +3951,21 @@ packages:
'@rollup/pluginutils': 5.1.0(rollup@4.6.0)
rollup: 4.6.0
+ /@rollup/plugin-yaml@4.1.2(rollup@4.6.0):
+ resolution: {integrity: sha512-RpupciIeZMUqhgFE97ba0s98mOFS7CWzN3EJNhJkqSv9XLlWYtwVdtE6cDw6ASOF/sZVFS7kRJXftaqM2Vakdw==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+ dependencies:
+ '@rollup/pluginutils': 5.1.0(rollup@4.6.0)
+ js-yaml: 4.1.0
+ rollup: 4.6.0
+ tosource: 2.0.0-alpha.3
+ dev: false
+
/@rollup/pluginutils@3.1.0(rollup@2.79.1):
resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==}
engines: {node: '>= 8.0.0'}
@@ -3994,20 +3985,6 @@ packages:
estree-walker: 2.0.2
picomatch: 2.3.1
- /@rollup/pluginutils@5.1.0(rollup@2.79.1):
- resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
- peerDependenciesMeta:
- rollup:
- optional: true
- dependencies:
- '@types/estree': 1.0.3
- estree-walker: 2.0.2
- picomatch: 2.3.1
- rollup: 2.79.1
-
/@rollup/pluginutils@5.1.0(rollup@3.29.4):
resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
engines: {node: '>=14.0.0'}
@@ -4120,55 +4097,100 @@ packages:
requiresBuild: true
optional: true
- /@shikijs/core@1.1.2:
- resolution: {integrity: sha512-ERVzNQz88ZkDqUpWeC57Kp+Kmx5RjqeDBR1M8AGWGom4yrkITiTfXCGmjchlDSw12MhDTuPYR4HVFW8uT61RaQ==}
- dev: false
+ /@shikijs/core@1.1.7:
+ resolution: {integrity: sha512-gTYLUIuD1UbZp/11qozD3fWpUTuMqPSf3svDMMrL0UmlGU7D9dPw/V1FonwAorCUJBltaaESxq90jrSjQyGixg==}
- /@sigstore/bundle@2.1.0:
- resolution: {integrity: sha512-89uOo6yh/oxaU8AeOUnVrTdVMcGk9Q1hJa7Hkvalc6G3Z3CupWk4Xe9djSgJm9fMkH69s0P0cVHUoKSOemLdng==}
+ /@shikijs/transformers@1.1.7:
+ resolution: {integrity: sha512-lXz011ao4+rvweps/9h3CchBfzb1U5OtP5D51Tqc9lQYdLblWMIxQxH6Ybe1GeGINcEVM4goMyPrI0JvlIp4UQ==}
+ dependencies:
+ shiki: 1.1.7
+ dev: true
+
+ /@sigstore/bundle@2.2.0:
+ resolution: {integrity: sha512-5VI58qgNs76RDrwXNhpmyN/jKpq9evV/7f1XrcqcAfvxDl5SeVY/I5Rmfe96ULAV7/FK5dge9RBKGBJPhL1WsQ==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- '@sigstore/protobuf-specs': 0.2.1
+ '@sigstore/protobuf-specs': 0.3.0
- /@sigstore/protobuf-specs@0.2.1:
- resolution: {integrity: sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==}
+ /@sigstore/core@1.0.0:
+ resolution: {integrity: sha512-dW2qjbWLRKGu6MIDUTBuJwXCnR8zivcSpf5inUzk7y84zqy/dji0/uahppoIgMoKeR+6pUZucrwHfkQQtiG9Rw==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ /@sigstore/protobuf-specs@0.3.0:
+ resolution: {integrity: sha512-zxiQ66JFOjVvP9hbhGj/F/qNdsZfkGb/dVXSanNRNuAzMlr4MC95voPUBX8//ZNnmv3uSYzdfR/JSkrgvZTGxA==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- /@sigstore/sign@2.1.0:
- resolution: {integrity: sha512-4VRpfJxs+8eLqzLVrZngVNExVA/zAhVbi4UT4zmtLi4xRd7vz5qie834OgkrGsLlLB1B2nz/3wUxT1XAUBe8gw==}
+ /@sigstore/sign@2.2.3:
+ resolution: {integrity: sha512-LqlA+ffyN02yC7RKszCdMTS6bldZnIodiox+IkT8B2f8oRYXCB3LQ9roXeiEL21m64CVH1wyveYAORfD65WoSw==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- '@sigstore/bundle': 2.1.0
- '@sigstore/protobuf-specs': 0.2.1
+ '@sigstore/bundle': 2.2.0
+ '@sigstore/core': 1.0.0
+ '@sigstore/protobuf-specs': 0.3.0
make-fetch-happen: 13.0.0
transitivePeerDependencies:
- supports-color
- /@sigstore/tuf@2.2.0:
- resolution: {integrity: sha512-KKATZ5orWfqd9ZG6MN8PtCIx4eevWSuGRKQvofnWXRpyMyUEpmrzg5M5BrCpjM+NfZ0RbNGOh5tCz/P2uoRqOA==}
+ /@sigstore/tuf@2.3.1:
+ resolution: {integrity: sha512-9Iv40z652td/QbV0o5n/x25H9w6IYRt2pIGbTX55yFDYlApDQn/6YZomjz6+KBx69rXHLzHcbtTS586mDdFD+Q==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- '@sigstore/protobuf-specs': 0.2.1
- tuf-js: 2.1.0
+ '@sigstore/protobuf-specs': 0.3.0
+ tuf-js: 2.2.0
transitivePeerDependencies:
- supports-color
+ /@sigstore/verify@1.1.0:
+ resolution: {integrity: sha512-1fTqnqyTBWvV7cftUUFtDcHPdSox0N3Ub7C0lRyReYx4zZUlNTZjCV+HPy4Lre+r45dV7Qx5JLKvqqsgxuyYfg==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+ dependencies:
+ '@sigstore/bundle': 2.2.0
+ '@sigstore/core': 1.0.0
+ '@sigstore/protobuf-specs': 0.3.0
+
/@sinclair/typebox@0.27.8:
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
/@sindresorhus/is@4.6.0:
resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==}
engines: {node: '>=10'}
- dev: false
- /@sindresorhus/merge-streams@1.0.0:
- resolution: {integrity: sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==}
+ /@sindresorhus/merge-streams@2.3.0:
+ resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
engines: {node: '>=18'}
/@socket.io/component-emitter@3.1.0:
resolution: {integrity: sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==}
dev: true
+ /@stylistic/eslint-plugin-js@0.0.4:
+ resolution: {integrity: sha512-W1rq2xxlFNhgZZJO+L59wtvlDI0xARYxx0WD8EeWNBO7NDybUSYSozCIcY9XvxQbTAsEXBjwqokeYm0crt7RxQ==}
+ dependencies:
+ acorn: 8.11.3
+ escape-string-regexp: 4.0.0
+ eslint-visitor-keys: 3.4.3
+ espree: 9.6.1
+ esutils: 2.0.3
+ graphemer: 1.4.0
+ dev: true
+
+ /@stylistic/eslint-plugin-ts@0.0.4(eslint@8.49.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-sWL4Km5j8S+TLyzya/3adxMWGkCm3lVasJIVQqhxVfwnlGkpMI0GgYVIu/ubdKPS+dSvqjUHpsXgqWfMRF2+cQ==}
+ peerDependencies:
+ eslint: '*'
+ typescript: '*'
+ dependencies:
+ '@stylistic/eslint-plugin-js': 0.0.4
+ '@typescript-eslint/scope-manager': 6.21.0
+ '@typescript-eslint/type-utils': 6.21.0(eslint@8.49.0)(typescript@5.3.3)
+ '@typescript-eslint/utils': 6.21.0(eslint@8.49.0)(typescript@5.3.3)
+ eslint: 8.49.0
+ graphemer: 1.4.0
+ typescript: 5.3.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@surma/rollup-plugin-off-main-thread@2.2.3:
resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==}
dependencies:
@@ -4474,7 +4496,7 @@ packages:
'@tiptap/extension-bubble-menu': 2.1.8(@tiptap/core@2.1.8)(@tiptap/pm@2.0.3)
'@tiptap/extension-floating-menu': 2.1.8(@tiptap/core@2.1.8)(@tiptap/pm@2.0.3)
'@tiptap/pm': 2.0.3(@tiptap/core@2.1.8)
- vue: 3.4.19(typescript@5.1.6)
+ vue: 3.4.19(typescript@5.3.3)
dev: false
/@tootallnate/once@2.0.0:
@@ -4546,10 +4568,10 @@ packages:
'@types/node': 20.8.6
dev: true
- /@types/hast@2.3.4:
- resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==}
+ /@types/hast@3.0.4:
+ resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
dependencies:
- '@types/unist': 3.0.0
+ '@types/unist': 3.0.2
dev: true
/@types/http-proxy@1.17.14:
@@ -4573,7 +4595,13 @@ packages:
/@types/mdast@3.0.11:
resolution: {integrity: sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==}
dependencies:
- '@types/unist': 3.0.0
+ '@types/unist': 3.0.2
+ dev: true
+
+ /@types/mdast@4.0.3:
+ resolution: {integrity: sha512-LsjtqsyF+d2/yFOYaN22dHZI1Cpwkrj+g06G8+qtUKlhovPW89YhqSnfKtMbkgmEtYpH2gydRNULd6y8mciAFg==}
+ dependencies:
+ '@types/unist': 3.0.2
dev: true
/@types/ms@0.7.31:
@@ -4597,10 +4625,6 @@ packages:
resolution: {integrity: sha512-sn7L+qQ6RLPdXRoiaE7bZ/Ek+o4uICma/lBFPyJEKDTPTBP1W8u0c4baj3EiS4DiqLs+Hk+KUGvMVJtAw3ePJg==}
dev: false
- /@types/parse5@6.0.3:
- resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==}
- dev: true
-
/@types/prettier@2.7.3:
resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==}
dev: true
@@ -4630,16 +4654,16 @@ packages:
resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==}
dev: true
- /@types/unist@3.0.0:
- resolution: {integrity: sha512-MFETx3tbTjE7Uk6vvnWINA/1iJ7LuMdO4fcq8UfF0pRbj01aGLduVvQcRyswuACJdpnHgg8E3rQLhaRdNEJS0w==}
+ /@types/unist@3.0.2:
+ resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==}
dev: true
/@types/web-bluetooth@0.0.16:
resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==}
dev: true
- /@types/web-bluetooth@0.0.17:
- resolution: {integrity: sha512-4p9vcSmxAayx72yn70joFoL44c9MO/0+iVEBIQXe3v2h2SiAsEIo/G5v6ObFWvNKRFjbrVadNf9LqEEZeQPzdA==}
+ /@types/web-bluetooth@0.0.20:
+ resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
/@types/wicg-file-system-access@2020.9.6:
resolution: {integrity: sha512-6hogE75Hl2Ov/jgp8ZhDaGmIF/q3J07GtXf8nCJCwKTHq7971po5+DId7grft09zG7plBwpF6ZU0yx9Du4/e1A==}
@@ -4651,8 +4675,8 @@ packages:
'@types/node': 20.8.6
dev: true
- /@typescript-eslint/eslint-plugin@6.7.0(@typescript-eslint/parser@6.7.0)(eslint@8.49.0)(typescript@5.1.6):
- resolution: {integrity: sha512-gUqtknHm0TDs1LhY12K2NA3Rmlmp88jK9Tx8vGZMfHeNMLE3GH2e9TRub+y+SOjuYgtOmok+wt1AyDPZqxbNag==}
+ /@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.49.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
'@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
@@ -4663,25 +4687,25 @@ packages:
optional: true
dependencies:
'@eslint-community/regexpp': 4.6.2
- '@typescript-eslint/parser': 6.7.0(eslint@8.49.0)(typescript@5.1.6)
- '@typescript-eslint/scope-manager': 6.7.0
- '@typescript-eslint/type-utils': 6.7.0(eslint@8.49.0)(typescript@5.1.6)
- '@typescript-eslint/utils': 6.7.0(eslint@8.49.0)(typescript@5.1.6)
- '@typescript-eslint/visitor-keys': 6.7.0
+ '@typescript-eslint/parser': 6.21.0(eslint@8.49.0)(typescript@5.3.3)
+ '@typescript-eslint/scope-manager': 6.21.0
+ '@typescript-eslint/type-utils': 6.21.0(eslint@8.49.0)(typescript@5.3.3)
+ '@typescript-eslint/utils': 6.21.0(eslint@8.49.0)(typescript@5.3.3)
+ '@typescript-eslint/visitor-keys': 6.21.0
debug: 4.3.4
eslint: 8.49.0
graphemer: 1.4.0
- ignore: 5.3.0
+ ignore: 5.3.1
natural-compare: 1.4.0
- semver: 7.5.4
- ts-api-utils: 1.0.1(typescript@5.1.6)
- typescript: 5.1.6
+ semver: 7.6.0
+ ts-api-utils: 1.0.1(typescript@5.3.3)
+ typescript: 5.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/parser@6.7.0(eslint@8.49.0)(typescript@5.1.6):
- resolution: {integrity: sha512-jZKYwqNpNm5kzPVP5z1JXAuxjtl2uG+5NpaMocFPTNC2EdYIgbXIPImObOkhbONxtFTTdoZstLZefbaK+wXZng==}
+ /@typescript-eslint/parser@6.21.0(eslint@8.49.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -4690,13 +4714,13 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 6.7.0
- '@typescript-eslint/types': 6.7.0
- '@typescript-eslint/typescript-estree': 6.7.0(typescript@5.1.6)
- '@typescript-eslint/visitor-keys': 6.7.0
+ '@typescript-eslint/scope-manager': 6.21.0
+ '@typescript-eslint/types': 6.21.0
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.3.3)
+ '@typescript-eslint/visitor-keys': 6.21.0
debug: 4.3.4
eslint: 8.49.0
- typescript: 5.1.6
+ typescript: 5.3.3
transitivePeerDependencies:
- supports-color
dev: true
@@ -4709,16 +4733,16 @@ packages:
'@typescript-eslint/visitor-keys': 5.61.0
dev: true
- /@typescript-eslint/scope-manager@6.7.0:
- resolution: {integrity: sha512-lAT1Uau20lQyjoLUQ5FUMSX/dS07qux9rYd5FGzKz/Kf8W8ccuvMyldb8hadHdK/qOI7aikvQWqulnEq2nCEYA==}
+ /@typescript-eslint/scope-manager@6.21.0:
+ resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 6.7.0
- '@typescript-eslint/visitor-keys': 6.7.0
+ '@typescript-eslint/types': 6.21.0
+ '@typescript-eslint/visitor-keys': 6.21.0
dev: true
- /@typescript-eslint/type-utils@6.7.0(eslint@8.49.0)(typescript@5.1.6):
- resolution: {integrity: sha512-f/QabJgDAlpSz3qduCyQT0Fw7hHpmhOzY/Rv6zO3yO+HVIdPfIWhrQoAyG+uZVtWAIS85zAyzgAFfyEr+MgBpg==}
+ /@typescript-eslint/type-utils@6.21.0(eslint@8.49.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -4727,12 +4751,12 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 6.7.0(typescript@5.1.6)
- '@typescript-eslint/utils': 6.7.0(eslint@8.49.0)(typescript@5.1.6)
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.3.3)
+ '@typescript-eslint/utils': 6.21.0(eslint@8.49.0)(typescript@5.3.3)
debug: 4.3.4
eslint: 8.49.0
- ts-api-utils: 1.0.1(typescript@5.1.6)
- typescript: 5.1.6
+ ts-api-utils: 1.0.1(typescript@5.3.3)
+ typescript: 5.3.3
transitivePeerDependencies:
- supports-color
dev: true
@@ -4742,12 +4766,12 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/types@6.7.0:
- resolution: {integrity: sha512-ihPfvOp7pOcN/ysoj0RpBPOx3HQTJTrIN8UZK+WFd3/iDeFHHqeyYxa4hQk4rMhsz9H9mXpR61IzwlBVGXtl9Q==}
+ /@typescript-eslint/types@6.21.0:
+ resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==}
engines: {node: ^16.0.0 || >=18.0.0}
dev: true
- /@typescript-eslint/typescript-estree@5.61.0(typescript@5.1.6):
+ /@typescript-eslint/typescript-estree@5.61.0(typescript@5.3.3):
resolution: {integrity: sha512-Fud90PxONnnLZ36oR5ClJBLTLfU4pIWBmnvGwTbEa2cXIqj70AEDEmOmpkFComjBZ/037ueKrOdHuYmSFVD7Rw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -4761,15 +4785,15 @@ packages:
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.5.4
- tsutils: 3.21.0(typescript@5.1.6)
- typescript: 5.1.6
+ semver: 7.6.0
+ tsutils: 3.21.0(typescript@5.3.3)
+ typescript: 5.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/typescript-estree@6.7.0(typescript@5.1.6):
- resolution: {integrity: sha512-dPvkXj3n6e9yd/0LfojNU8VMUGHWiLuBZvbM6V6QYD+2qxqInE7J+J/ieY2iGwR9ivf/R/haWGkIj04WVUeiSQ==}
+ /@typescript-eslint/typescript-estree@6.21.0(typescript@5.3.3):
+ resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
typescript: '*'
@@ -4777,19 +4801,20 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 6.7.0
- '@typescript-eslint/visitor-keys': 6.7.0
+ '@typescript-eslint/types': 6.21.0
+ '@typescript-eslint/visitor-keys': 6.21.0
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.5.4
- ts-api-utils: 1.0.1(typescript@5.1.6)
- typescript: 5.1.6
+ minimatch: 9.0.3
+ semver: 7.6.0
+ ts-api-utils: 1.0.1(typescript@5.3.3)
+ typescript: 5.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/utils@5.61.0(eslint@8.49.0)(typescript@5.1.6):
+ /@typescript-eslint/utils@5.61.0(eslint@8.49.0)(typescript@5.3.3):
resolution: {integrity: sha512-mV6O+6VgQmVE6+xzlA91xifndPW9ElFW8vbSF0xCT/czPXVhwDewKila1jOyRwa9AE19zKnrr7Cg5S3pJVrTWQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -4800,17 +4825,17 @@ packages:
'@types/semver': 7.5.0
'@typescript-eslint/scope-manager': 5.61.0
'@typescript-eslint/types': 5.61.0
- '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.1.6)
+ '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.3.3)
eslint: 8.49.0
eslint-scope: 5.1.1
- semver: 7.5.4
+ semver: 7.6.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/utils@6.7.0(eslint@8.49.0)(typescript@5.1.6):
- resolution: {integrity: sha512-MfCq3cM0vh2slSikQYqK2Gq52gvOhe57vD2RM3V4gQRZYX4rDPnKLu5p6cm89+LJiGlwEXU8hkYxhqqEC/V3qA==}
+ /@typescript-eslint/utils@6.21.0(eslint@8.49.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -4818,11 +4843,11 @@ packages:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.49.0)
'@types/json-schema': 7.0.14
'@types/semver': 7.5.0
- '@typescript-eslint/scope-manager': 6.7.0
- '@typescript-eslint/types': 6.7.0
- '@typescript-eslint/typescript-estree': 6.7.0(typescript@5.1.6)
+ '@typescript-eslint/scope-manager': 6.21.0
+ '@typescript-eslint/types': 6.21.0
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.3.3)
eslint: 8.49.0
- semver: 7.5.4
+ semver: 7.6.0
transitivePeerDependencies:
- supports-color
- typescript
@@ -4836,138 +4861,149 @@ packages:
eslint-visitor-keys: 3.4.3
dev: true
- /@typescript-eslint/visitor-keys@6.7.0:
- resolution: {integrity: sha512-/C1RVgKFDmGMcVGeD8HjKv2bd72oI1KxQDeY8uc66gw9R0OK0eMq48cA+jv9/2Ag6cdrsUGySm1yzYmfz0hxwQ==}
+ /@typescript-eslint/visitor-keys@6.21.0:
+ resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 6.7.0
+ '@typescript-eslint/types': 6.21.0
eslint-visitor-keys: 3.4.3
dev: true
- /@unhead/dom@1.8.8:
- resolution: {integrity: sha512-KRtn+tvA83lEtKrtZD85XmqW04fcytVuNKLUpPBzhJvsxB3v7gozw0nu46e3EpbO3TGJjLlLd6brNHQY6WLWfA==}
- dependencies:
- '@unhead/schema': 1.8.8
- '@unhead/shared': 1.8.8
+ /@ungap/structured-clone@1.2.0:
+ resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
+ dev: true
- /@unhead/schema@1.8.8:
- resolution: {integrity: sha512-xuhNW4osVNLW1yQSbdInZ8YGiXVTi1gjF8rK1E4VnODpWLg8XOq0OpoCbdIlCH4X4A0Ee0UQGRyzkuuVZlrSsQ==}
+ /@unhead/dom@1.8.10:
+ resolution: {integrity: sha512-dBeDbHrBjeU+eVgMsD91TGEazb1dwLrY0x/ve01CldMCmm+WcRu++SUW7s1QX84mzGH2EgFz78o1OPn6jpV3zw==}
+ dependencies:
+ '@unhead/schema': 1.8.10
+ '@unhead/shared': 1.8.10
+
+ /@unhead/schema@1.8.10:
+ resolution: {integrity: sha512-cy8RGOPkwOVY5EmRoCgGV8AqLjy/226xBVTY54kBct02Om3hBdpB9FZa9frM910pPUXMI8PNmFgABO23O7IdJA==}
dependencies:
hookable: 5.5.3
zhead: 2.2.4
- /@unhead/shared@1.8.8:
- resolution: {integrity: sha512-LoIJUDgmOzxoRHSIf29w/wc+IzKN2XvGiQC2dZZrYoTjOOzodf75609PEW5bhx2aHio38k9F+6BnD3KDiJ7IIg==}
+ /@unhead/shared@1.8.10:
+ resolution: {integrity: sha512-pEFryAs3EmV+ShDQx2ZBwUnt5l3RrMrXSMZ50oFf+MImKZNARVvD4+3I8fEI9wZh+Zq0JYG3UAfzo51MUP+Juw==}
dependencies:
- '@unhead/schema': 1.8.8
+ '@unhead/schema': 1.8.10
- /@unhead/ssr@1.8.8:
- resolution: {integrity: sha512-+nKFgU2jT/3U0x97pQaVYa5+pH+ngpdfqPjpT6Wti8htJsBnRRUdQ8X3hTyD2vHgFsrUTj0RRr9/6CY/qdpM/A==}
+ /@unhead/ssr@1.8.10:
+ resolution: {integrity: sha512-7wKRKDd8c2NFmMyPetj8Ah5u2hXunDBZT5Y2DH83O16PiMxx4/uobGamTV1EfcqjTvOKJvAqkrYZNYSWss99NQ==}
dependencies:
- '@unhead/schema': 1.8.8
- '@unhead/shared': 1.8.8
+ '@unhead/schema': 1.8.10
+ '@unhead/shared': 1.8.10
- /@unhead/vue@1.8.8(vue@3.4.19):
- resolution: {integrity: sha512-isHpVnSSE5SP+ObsZG/i+Jq9tAQ2u1AbGrktXKmL7P5FRxwPjhATYnJFdGpxXeXfuaFgRFKzGKs29xo4MMVODw==}
+ /@unhead/vue@1.8.10(vue@3.4.19):
+ resolution: {integrity: sha512-KF8pftHnxnlBlgNpKXWLTg3ZUtkuDCxRPUFSDBy9CtqRSX/qvAhLZ26mbqRVmHj8KigiRHP/wnPWNyGnUx20Bg==}
peerDependencies:
vue: ^3.4.19
dependencies:
- '@unhead/schema': 1.8.8
- '@unhead/shared': 1.8.8
+ '@unhead/schema': 1.8.10
+ '@unhead/shared': 1.8.10
hookable: 5.5.3
- unhead: 1.8.8
- vue: 3.4.19(typescript@5.1.6)
+ unhead: 1.8.10
+ vue: 3.4.19(typescript@5.3.3)
- /@unlazy/core@0.9.3:
- resolution: {integrity: sha512-kLOv6JDXIh8Hol8DsMuWH8PEvEF174wU82gL2gLZKFhw5eheHMAEV/3C55OL5V75YzHWap/HlNa5oQslCprqjg==}
+ /@unlazy/core@0.11.1:
+ resolution: {integrity: sha512-dpEQKIZNHbUV/WE4W5j3A/ffgJw+1PHuaNNIN79QEJpiBgi0Im2LhoU5gsLsneFcEqQQ230YE61sJrteXf7DjQ==}
dev: true
- /@unlazy/nuxt@0.9.3(rollup@2.79.1):
- resolution: {integrity: sha512-Utuk7lreKempg5ChM+mzVdwBdH2970e3xWL8GV6aZzjfnTVC5fH3ToD/8WEg3YHwcf4jyZezEF1gMUHg9Z+Bxg==}
+ /@unlazy/nuxt@0.11.1(rollup@4.6.0):
+ resolution: {integrity: sha512-rDexoCHhMx79Rcwn6OVS5g4XxWQh/uh/Tf/cBNKduptksgLc5Z+XGkbHBP4ueVyD6pTnHyNDDUjd2XqZCwy/lA==}
dependencies:
- '@nuxt/kit': 3.8.2(rollup@2.79.1)
- defu: 6.1.3
- unlazy: 0.9.3
+ '@nuxt/kit': 3.10.3(rollup@4.6.0)
+ defu: 6.1.4
+ unlazy: 0.11.1
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /@unocss/astro@0.53.4(rollup@2.79.1)(vite@4.5.0):
- resolution: {integrity: sha512-fR1F0mNktoN79R+t4GD4y3cvfHUVxtV0+9/6vraZTw3SOXTOMdHeisdxDLjJb3N1yer7XoKX+2GHrKCt873IUA==}
+ /@unocss/astro@0.58.5(rollup@4.6.0)(vite@5.1.4):
+ resolution: {integrity: sha512-LtuVnj8oFAK9663OVhQO8KpdJFiOyyPsYfnOZlDCOFK3gHb/2WMrzdBwr1w8LoQF3bDedkFMKirVF7gWjyZiaw==}
+ peerDependencies:
+ vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
+ peerDependenciesMeta:
+ vite:
+ optional: true
dependencies:
- '@unocss/core': 0.53.4
- '@unocss/reset': 0.53.4
- '@unocss/vite': 0.53.4(rollup@2.79.1)(vite@4.5.0)
+ '@unocss/core': 0.58.5
+ '@unocss/reset': 0.58.5
+ '@unocss/vite': 0.58.5(rollup@4.6.0)(vite@5.1.4)
+ vite: 5.1.4
transitivePeerDependencies:
- rollup
- - vite
dev: false
- /@unocss/cli@0.53.4(rollup@2.79.1):
- resolution: {integrity: sha512-nRlmEcApzFbRkvkOauq6z46dcYJaWfkK7VdavSgXbLWCSoKWXY7JkEAON1Zhmk4O8F4zW7hnxTfqZI5jfy09Rw==}
+ /@unocss/cli@0.58.5(rollup@4.6.0):
+ resolution: {integrity: sha512-FzVVXO9ghsGtJpu9uR4o7JeM9gUfWNbVZZ/IfH+0WbDJuyx4rO/jwN55z0yA5QDkhvOz9DvzwPCBzLpTJ5q+Lw==}
engines: {node: '>=14'}
hasBin: true
dependencies:
'@ampproject/remapping': 2.2.1
- '@rollup/pluginutils': 5.1.0(rollup@2.79.1)
- '@unocss/config': 0.53.4
- '@unocss/core': 0.53.4
- '@unocss/preset-uno': 0.53.4
+ '@rollup/pluginutils': 5.1.0(rollup@4.6.0)
+ '@unocss/config': 0.58.5
+ '@unocss/core': 0.58.5
+ '@unocss/preset-uno': 0.58.5
cac: 6.7.14
- chokidar: 3.5.3
+ chokidar: 3.6.0
colorette: 2.0.20
consola: 3.2.3
fast-glob: 3.3.2
- magic-string: 0.30.5
- pathe: 1.1.1
+ magic-string: 0.30.7
+ pathe: 1.1.2
perfect-debounce: 1.0.0
transitivePeerDependencies:
- rollup
dev: false
- /@unocss/config@0.53.4:
- resolution: {integrity: sha512-xcawSTpo/+yXUsmfQE0FNAkTS6k2sSSWXQD1grCpeZPY9YNVZTFIJvQXC3xMTgRRBRTBThuGDiUC9YF/XAOcZw==}
+ /@unocss/config@0.58.5:
+ resolution: {integrity: sha512-O1pLSeNXfG11QHaLSVwS9rJKvE4b9304IQ3UvOdbYN+7SAT4YTZ7JDU4ngO1KWyOFBO6RD0WspCR95pgqOqJiQ==}
engines: {node: '>=14'}
dependencies:
- '@unocss/core': 0.53.4
- unconfig: 0.3.9
+ '@unocss/core': 0.58.5
+ unconfig: 0.3.11
dev: false
- /@unocss/core@0.53.4:
- resolution: {integrity: sha512-JvmpuFOiJ8NkGzRmh0dCUmNdYjr8MmMtCX+czCmSnX2kvKyQjJIw3RIu84/DQbd/M/yxZmPjle8DrcZ1Ql86rQ==}
+ /@unocss/core@0.58.5:
+ resolution: {integrity: sha512-qbPqL+46hf1/UelQOwUwpAuvm6buoss43DPYHOPdfNJ+NTWkSpATQMF0JKT04QE0QRQbHNSHdMe9ariG+IIlCw==}
dev: false
- /@unocss/extractor-arbitrary-variants@0.53.4:
- resolution: {integrity: sha512-ydkfObZALqRqe/M68hBsIfT6KsUFm3nBD/4xUf4hvOiIySwptzUWYliVSoPHqhEq8L122oAEG1i5Yg8kQUUJZQ==}
+ /@unocss/extractor-arbitrary-variants@0.58.5:
+ resolution: {integrity: sha512-KJQX0OJKzy4YjJo09h2la2Q+cn5IJ1JdyPVJJkzovHnv7jSBWzsfct+bj/6a+SJ4p4JBIqEJz3M/qxHv4EPJyA==}
dependencies:
- '@unocss/core': 0.53.4
+ '@unocss/core': 0.58.5
dev: false
- /@unocss/inspector@0.53.4:
- resolution: {integrity: sha512-PW5+dAYKCipOmqtT3W407JZmjswcxQvifFEzdamhxjYrH0aFi5xhbH4PX5ArXeywebdg6inm343K0Gg/4I6GuA==}
+ /@unocss/inspector@0.58.5:
+ resolution: {integrity: sha512-cbJlIHEZ14puTtttf7sl+VZFDscV1DJiSseh9sSe0xJ/1NVBT9Bvkm09/1tnpLYAgF5gfa1CaCcjKmURgYzKrA==}
dependencies:
+ '@unocss/core': 0.58.5
+ '@unocss/rule-utils': 0.58.5
gzip-size: 6.0.0
- sirv: 2.0.3
+ sirv: 2.0.4
dev: false
- /@unocss/nuxt@0.53.4(postcss@8.4.32)(rollup@2.79.1)(vite@4.5.0)(webpack@5.89.0):
- resolution: {integrity: sha512-KKLWLcOQw65oWaye3MF6rpZBc/zy8f5pJPPaqS0r2VQ1vGN85KuEc0yY2E0HK1KrW5yB/YU3aPWosRf5wPa5mQ==}
+ /@unocss/nuxt@0.58.5(postcss@8.4.35)(rollup@4.6.0)(vite@5.1.4)(webpack@5.89.0):
+ resolution: {integrity: sha512-x5iIGATNAhAGfN2w0f+ulRzmJTgu7PcJ8XAFmAx9QMKkVGnnurZEyW4IEm3Kr/EsRMhJXLtmZnsAGjC09qUh6A==}
dependencies:
- '@nuxt/kit': 3.8.2(rollup@2.79.1)
- '@unocss/config': 0.53.4
- '@unocss/core': 0.53.4
- '@unocss/preset-attributify': 0.53.4
- '@unocss/preset-icons': 0.53.4
- '@unocss/preset-tagify': 0.53.4
- '@unocss/preset-typography': 0.53.4
- '@unocss/preset-uno': 0.53.4
- '@unocss/preset-web-fonts': 0.53.4
- '@unocss/preset-wind': 0.53.4
- '@unocss/reset': 0.53.4
- '@unocss/vite': 0.53.4(rollup@2.79.1)(vite@4.5.0)
- '@unocss/webpack': 0.53.4(rollup@2.79.1)(webpack@5.89.0)
- unocss: 0.53.4(@unocss/webpack@0.53.4)(postcss@8.4.32)(rollup@2.79.1)(vite@4.5.0)
+ '@nuxt/kit': 3.10.3(rollup@4.6.0)
+ '@unocss/config': 0.58.5
+ '@unocss/core': 0.58.5
+ '@unocss/preset-attributify': 0.58.5
+ '@unocss/preset-icons': 0.58.5
+ '@unocss/preset-tagify': 0.58.5
+ '@unocss/preset-typography': 0.58.5
+ '@unocss/preset-uno': 0.58.5
+ '@unocss/preset-web-fonts': 0.58.5
+ '@unocss/preset-wind': 0.58.5
+ '@unocss/reset': 0.58.5
+ '@unocss/vite': 0.58.5(rollup@4.6.0)(vite@5.1.4)
+ '@unocss/webpack': 0.58.5(rollup@4.6.0)(webpack@5.89.0)
+ unocss: 0.58.5(@unocss/webpack@0.58.5)(postcss@8.4.35)(rollup@4.6.0)(vite@5.1.4)
transitivePeerDependencies:
- postcss
- rollup
@@ -4976,154 +5012,172 @@ packages:
- webpack
dev: false
- /@unocss/postcss@0.53.4(postcss@8.4.32):
- resolution: {integrity: sha512-G7ZWqUszJiXrQVOzLBzOFZwGIVGwH695lE75NufQi8tXQF9QphGKT0t7AX1NRxA3IZpZW2Twxa/tZYRh2PJQAg==}
+ /@unocss/postcss@0.58.5(postcss@8.4.35):
+ resolution: {integrity: sha512-m4L2YRdYfT6CV306Kl2VwEwbqa/92EpW4GE2Kqak1RuJyFJXBnWEEMJV4Uy6B1jWKLlCEWkuVUW33JUg7X6BxQ==}
engines: {node: '>=14'}
peerDependencies:
postcss: ^8.4.21
dependencies:
- '@unocss/config': 0.53.4
- '@unocss/core': 0.53.4
+ '@unocss/config': 0.58.5
+ '@unocss/core': 0.58.5
+ '@unocss/rule-utils': 0.58.5
css-tree: 2.3.1
fast-glob: 3.3.2
- magic-string: 0.30.5
- postcss: 8.4.32
+ magic-string: 0.30.7
+ postcss: 8.4.35
dev: false
- /@unocss/preset-attributify@0.53.4:
- resolution: {integrity: sha512-/lYH0SHFEkROOMHJ5td3txHnR93RRt/ZtsJ4brH3ptJixiEiShl5oNGS8cHBV/jV/KYsBW4gqeVomzUGCGWu9w==}
+ /@unocss/preset-attributify@0.58.5:
+ resolution: {integrity: sha512-OR4gUHamHCb4/LB/zZHlibaraTyILfFvRIzgmJnEb6lITGApQUl86qaJcTbTyfTfLVRufLG/JVeuz2HLUBPRXw==}
dependencies:
- '@unocss/core': 0.53.4
+ '@unocss/core': 0.58.5
dev: false
- /@unocss/preset-icons@0.53.4:
- resolution: {integrity: sha512-PSc1svzDq/o7lKLrZohFIMf0ZqOypYdBY1Wvfp+Gd6Zc4uybnCTVme3pnlgYIcjSO24ilt/PeWgx3SxD8ypMcw==}
+ /@unocss/preset-icons@0.58.5:
+ resolution: {integrity: sha512-LDNXavHtWaIvMvBezT9O8yiqHJChVCEfTRO6YFVY0yy+wo5jHiuMh6iKeHVcwbYdn3NqHYmpi7b/hrXPMtODzA==}
dependencies:
- '@iconify/utils': 2.1.7
- '@unocss/core': 0.53.4
+ '@iconify/utils': 2.1.22
+ '@unocss/core': 0.58.5
ofetch: 1.3.3
transitivePeerDependencies:
- supports-color
dev: false
- /@unocss/preset-mini@0.53.4:
- resolution: {integrity: sha512-m9SMA9m1VhC0xAXtw07lke9GltuLTZONWlad79KkYi/2YaywZsJAk8Y4+MVo4B4azh1Jxz2LOtEEBgqIYhbqJg==}
+ /@unocss/preset-mini@0.58.5:
+ resolution: {integrity: sha512-WqD31fKUAN28OCUOyi1uremmLk0eTMqtCizjbbXsY/DP6RKYUT7trFAtppTcHWFhSQcknb4FURfAZppACsTVQQ==}
dependencies:
- '@unocss/core': 0.53.4
- '@unocss/extractor-arbitrary-variants': 0.53.4
+ '@unocss/core': 0.58.5
+ '@unocss/extractor-arbitrary-variants': 0.58.5
+ '@unocss/rule-utils': 0.58.5
dev: false
- /@unocss/preset-tagify@0.53.4:
- resolution: {integrity: sha512-ucdYjSdop2MZcnZ56+ViQweVaZatYaAAnD33C++nJn8d/GK2e96PHZJjtpq5/Oh00izr7/5bQJ5c4uhKAmSmUA==}
+ /@unocss/preset-tagify@0.58.5:
+ resolution: {integrity: sha512-UB9IXi8vA/SzmmRLMWR7bzeBpxpiRo7y9xk3ruvDddYlsyiwIeDIMwG23YtcA6q41FDQvkrmvTxUEH9LFlv6aA==}
dependencies:
- '@unocss/core': 0.53.4
+ '@unocss/core': 0.58.5
dev: false
- /@unocss/preset-typography@0.53.4:
- resolution: {integrity: sha512-I15PCD7gomoewyub8iVt7x6hCXiPk/2Qt6QeWC4r0UgSq8wtQQlHm2T9E6jv03F00ISwMB5VYYivnHOxnrmm8w==}
+ /@unocss/preset-typography@0.58.5:
+ resolution: {integrity: sha512-rFny4a9yxgY34XOom5euCqQaOLV8PpbTg0Pn+5FelUMG4OfMevTwBCe9JttFJcUc3cNTL2enkzIdMa3l66114g==}
dependencies:
- '@unocss/core': 0.53.4
- '@unocss/preset-mini': 0.53.4
+ '@unocss/core': 0.58.5
+ '@unocss/preset-mini': 0.58.5
dev: false
- /@unocss/preset-uno@0.53.4:
- resolution: {integrity: sha512-3VWdc0kOZnOO1HGHwVbIzRjUvn4IfxZPwdohgCpISeUCIGI1ohYRsrzlJgSrHXD4BmD9UInRZHymb1ytrKRLgA==}
+ /@unocss/preset-uno@0.58.5:
+ resolution: {integrity: sha512-vgq/R4f7RDmdROy+pX+PeE38I3SgYKd4LL7Wb1HJUaVwz7PkF0XHCynOTbwrPXnK1kp1cnZYYEww7/RiYp+IQQ==}
dependencies:
- '@unocss/core': 0.53.4
- '@unocss/preset-mini': 0.53.4
- '@unocss/preset-wind': 0.53.4
+ '@unocss/core': 0.58.5
+ '@unocss/preset-mini': 0.58.5
+ '@unocss/preset-wind': 0.58.5
+ '@unocss/rule-utils': 0.58.5
dev: false
- /@unocss/preset-web-fonts@0.53.4:
- resolution: {integrity: sha512-4qqhUjzP5NbLNnRU9WaN2SLBjwY+qtvN4JN2vKD1o9HOPauIzGWq3SyaR8VoviQ9D8vg/L80Fl/pqGAvV/xvaw==}
+ /@unocss/preset-web-fonts@0.58.5:
+ resolution: {integrity: sha512-WKZ5raSClFXhqzfAhApef3+fuMq6cjKBxvhJ1FBIxFKcSOvN8e2czty2iGQVl02yMsxBWMv0Bpfm7np+cCoI1w==}
dependencies:
- '@unocss/core': 0.53.4
+ '@unocss/core': 0.58.5
ofetch: 1.3.3
dev: false
- /@unocss/preset-wind@0.53.4:
- resolution: {integrity: sha512-8PF3wZW8MvzjN562wOCfZzxlhqyd9f4Ay/wQborYY+P3BfIm5ORZ6GIdXsA7do+CE+yXytQ5NmtkBdd5eHdMdA==}
+ /@unocss/preset-wind@0.58.5:
+ resolution: {integrity: sha512-54RkjLmlqMUlC8o8nDCVzB25D1zzK4eth+/3uQzt739qU0U92NxuZKY21ADj9Rp/mVhKBV5FKuXPjmYc6yTQRQ==}
dependencies:
- '@unocss/core': 0.53.4
- '@unocss/preset-mini': 0.53.4
+ '@unocss/core': 0.58.5
+ '@unocss/preset-mini': 0.58.5
+ '@unocss/rule-utils': 0.58.5
dev: false
/@unocss/reset@0.50.8:
resolution: {integrity: sha512-2WoM6O9VyuHDPAnvCXr7LBJQ8ZRHDnuQAFsL1dWXp561Iq2l9whdNtPuMcozLGJGUUrFfVBXIrHY4sfxxScgWg==}
dev: true
- /@unocss/reset@0.53.4:
- resolution: {integrity: sha512-NMqntd9CE9EpdtI2ELGCZg9Z2ySMdo/ljepP8QwfRmWbYaXUf3T/GJsOTqewbhNgJUGYinbs1OtiN0yG5xZjJQ==}
+ /@unocss/reset@0.58.5:
+ resolution: {integrity: sha512-2wMrkCj3SSb5hrx9TKs5jZa34QIRkHv9FotbJutAPo7o8hx+XXn56ogzdoUrcFPJZJUx2R2nyOVbSlGMIjtFtw==}
dev: false
- /@unocss/scope@0.53.4:
- resolution: {integrity: sha512-vomyjd6i27V5G2awPoo9FoUit6qYyDyO0kroLzYPPNgq5M5jQFrZuQYc24dQ+JeJAQ3hlCGl8VM2v3Aj0PyUFg==}
- dev: false
-
- /@unocss/transformer-attributify-jsx-babel@0.53.4:
- resolution: {integrity: sha512-XR+u21GoZsdUDZXMgToH087uJCPJMIGLEv+ISb3fE40wOTiah+4wzTSjJpjzj8ReNG9lvrw5H6NBQcX0db1XCQ==}
+ /@unocss/rule-utils@0.58.5:
+ resolution: {integrity: sha512-w0sGJoeUGwMWLVFLEE9PDiv/fQcQqZnTIIQLYNCjTdqXDRlwTp9ACW0h47x/hAAIXdOtEOOBuTfjGD79GznUmA==}
+ engines: {node: '>=14'}
dependencies:
- '@unocss/core': 0.53.4
+ '@unocss/core': 0.58.5
+ magic-string: 0.30.7
dev: false
- /@unocss/transformer-attributify-jsx@0.53.4:
- resolution: {integrity: sha512-JYhwv3bZnFldXLfNKq7bmOLqNkFbvG/FyCojUz9G8+oj9jhQicwE33hDGddtbmoBUO660sBtqqLOtp8DlIY/oA==}
- dependencies:
- '@unocss/core': 0.53.4
+ /@unocss/scope@0.58.5:
+ resolution: {integrity: sha512-vSentagAwYTnThGRCjzZ6eNSSRuzdWBl21L1BbvVNM91Ss/FugQnZ1hd0m3TrVvvStYXnFVHMQ/MjCAEJ4cMYg==}
dev: false
- /@unocss/transformer-compile-class@0.53.4:
- resolution: {integrity: sha512-Eq9dD7eWbhNpOF5WY69uYtfGSKlBWjTN2+m+KpOBvtxwe++VIHoRXHwDWC0gKEPaWTvhfRa+RdSCXVRLOygYFg==}
+ /@unocss/transformer-attributify-jsx-babel@0.58.5:
+ resolution: {integrity: sha512-IAWSSKN3V0D87DE8bqaaPrZBWOdWQ06QNfi9vRuQJfRWOui87ezi9+NffjcnQw/ap9xMk1O6z74/WOW3zo6uYA==}
dependencies:
- '@unocss/core': 0.53.4
+ '@babel/core': 7.23.9
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.9)
+ '@babel/preset-typescript': 7.23.3(@babel/core@7.23.9)
+ '@unocss/core': 0.58.5
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@unocss/transformer-directives@0.53.4:
- resolution: {integrity: sha512-21dCt3u0WHqXFMfRkkPgjKGyDtghhqItCInr/vB9uKnJFLUdFWlqJu/wRHCUDVypeykwtaLVeCPwpvphCP+VHg==}
+ /@unocss/transformer-attributify-jsx@0.58.5:
+ resolution: {integrity: sha512-sItEALyvAt3PZLd9Q1tlIATjaj3kWbS/qI3otUVsYBdZjP4UudzJ3D1fcWNL2WPlgz8KtlVzRUuxob8TQ4ibZg==}
dependencies:
- '@unocss/core': 0.53.4
+ '@unocss/core': 0.58.5
+ dev: false
+
+ /@unocss/transformer-compile-class@0.58.5:
+ resolution: {integrity: sha512-4MaxjaZo1rf5uHvDGa2mbnXxAYVYoj1+oRNpL4fE3FoExS1Ka2CiNGQn/S4bHMF51vmXMSWtOzurJpPD4BaJUQ==}
+ dependencies:
+ '@unocss/core': 0.58.5
+ dev: false
+
+ /@unocss/transformer-directives@0.58.5:
+ resolution: {integrity: sha512-allspF5TlT1B2bJSZ1houHScXOTaTPlatLiEmgQKzr/m93rCvktokaO5J6qeN2VXQdpTIsxdA5B8//7UkfTuIA==}
+ dependencies:
+ '@unocss/core': 0.58.5
+ '@unocss/rule-utils': 0.58.5
css-tree: 2.3.1
dev: false
- /@unocss/transformer-variant-group@0.53.4:
- resolution: {integrity: sha512-ir3FMZV1PQ1oUZU0mYTZ5kIrsn68vwUJtOiCcqq2XMSAM4NK8EBdqRqd0mg7he3AjhPzd//Rdx8XpfVFbw7EVw==}
+ /@unocss/transformer-variant-group@0.58.5:
+ resolution: {integrity: sha512-SjUwGzKK5CVqn7Gg+3v3hV47ZUll7GcGu0vR3RCLO4gqEfFlZWMTHml1Sl2sY1WAca2iVcDRu+dp0RLxRG/dUA==}
dependencies:
- '@unocss/core': 0.53.4
+ '@unocss/core': 0.58.5
dev: false
- /@unocss/vite@0.53.4(rollup@2.79.1)(vite@4.5.0):
- resolution: {integrity: sha512-s2t7Es2L788MSyPAJUksUaiTLBGyISiyESelyGxBwDpAR6ddHiKB9LU2MVLTU289rmnhebWHFvw7lbE+Trs/Dw==}
+ /@unocss/vite@0.58.5(rollup@4.6.0)(vite@5.1.4):
+ resolution: {integrity: sha512-p4o1XNX1rvjmoUqSSdua8XyWNg/d+YUChDd2L/xEty+6j2qv0wUaohs3UQ87vWlv632/UmgdX+2MbrgtqthCtw==}
peerDependencies:
- vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0
+ vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
dependencies:
'@ampproject/remapping': 2.2.1
- '@rollup/pluginutils': 5.1.0(rollup@2.79.1)
- '@unocss/config': 0.53.4
- '@unocss/core': 0.53.4
- '@unocss/inspector': 0.53.4
- '@unocss/scope': 0.53.4
- '@unocss/transformer-directives': 0.53.4
- chokidar: 3.5.3
+ '@rollup/pluginutils': 5.1.0(rollup@4.6.0)
+ '@unocss/config': 0.58.5
+ '@unocss/core': 0.58.5
+ '@unocss/inspector': 0.58.5
+ '@unocss/scope': 0.58.5
+ '@unocss/transformer-directives': 0.58.5
+ chokidar: 3.6.0
fast-glob: 3.3.2
- magic-string: 0.30.5
- vite: 4.5.0
+ magic-string: 0.30.7
+ vite: 5.1.4
transitivePeerDependencies:
- rollup
dev: false
- /@unocss/webpack@0.53.4(rollup@2.79.1)(webpack@5.89.0):
- resolution: {integrity: sha512-Cxpkw8PhJDvHgodgLM8WX6x37tnraHtssCmOk7waG7gSvKelZmXB/0BqWJ73vl4+cai24DE5txpqmOwNdtdDZw==}
+ /@unocss/webpack@0.58.5(rollup@4.6.0)(webpack@5.89.0):
+ resolution: {integrity: sha512-FR17fZRZA+dHJtk7mmUUOlWuuhAxahhsQlTG0WSHh1FVDtpHGwGKDqWHrfmhFRi0XOcV+5bkVc6cp05yjfYqdA==}
peerDependencies:
webpack: ^4 || ^5
dependencies:
'@ampproject/remapping': 2.2.1
- '@rollup/pluginutils': 5.1.0(rollup@2.79.1)
- '@unocss/config': 0.53.4
- '@unocss/core': 0.53.4
- chokidar: 3.5.3
+ '@rollup/pluginutils': 5.1.0(rollup@4.6.0)
+ '@unocss/config': 0.58.5
+ '@unocss/core': 0.58.5
+ chokidar: 3.6.0
fast-glob: 3.3.2
- magic-string: 0.30.5
- unplugin: 1.5.1
+ magic-string: 0.30.7
+ unplugin: 1.7.1
webpack: 5.89.0
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -5153,7 +5207,7 @@ packages:
dependencies:
'@mapbox/node-pre-gyp': 1.0.10
'@rollup/pluginutils': 4.2.1
- acorn: 8.11.2
+ acorn: 8.11.3
async-sema: 3.1.1
bindings: 1.5.0
estree-walker: 2.0.2
@@ -5166,59 +5220,59 @@ packages:
- encoding
- supports-color
- /@vitejs/plugin-vue-jsx@3.1.0(vite@4.5.0)(vue@3.4.19):
+ /@vitejs/plugin-vue-jsx@3.1.0(vite@5.1.4)(vue@3.4.19):
resolution: {integrity: sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: ^4.0.0 || ^5.0.0
vue: ^3.4.19
dependencies:
- '@babel/core': 7.23.5
- '@babel/plugin-transform-typescript': 7.23.5(@babel/core@7.23.5)
- '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.5)
- vite: 4.5.0
- vue: 3.4.19(typescript@5.1.6)
+ '@babel/core': 7.23.9
+ '@babel/plugin-transform-typescript': 7.23.5(@babel/core@7.23.9)
+ '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.9)
+ vite: 5.1.4
+ vue: 3.4.19(typescript@5.3.3)
transitivePeerDependencies:
- supports-color
- /@vitejs/plugin-vue@4.5.0(vite@4.5.0)(vue@3.4.19):
- resolution: {integrity: sha512-a2WSpP8X8HTEww/U00bU4mX1QpLINNuz/2KMNpLsdu3BzOpak3AGI1CJYBTXcc4SPhaD0eNRUp7IyQK405L5dQ==}
- engines: {node: ^14.18.0 || >=16.0.0}
+ /@vitejs/plugin-vue@5.0.4(vite@5.1.4)(vue@3.4.19):
+ resolution: {integrity: sha512-WS3hevEszI6CEVEx28F8RjTX97k3KsrcY6kvTg7+Whm5y3oYvcqzVeGCU3hxSAn4uY2CLCkeokkGKpoctccilQ==}
+ engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
- vite: ^4.0.0 || ^5.0.0
+ vite: ^5.0.0
vue: ^3.4.19
dependencies:
- vite: 4.5.0
- vue: 3.4.19(typescript@5.1.6)
+ vite: 5.1.4
+ vue: 3.4.19(typescript@5.3.3)
- /@vitest/expect@1.3.0:
- resolution: {integrity: sha512-7bWt0vBTZj08B+Ikv70AnLRicohYwFgzNjFqo9SxxqHHxSlUJGSXmCRORhOnRMisiUryKMdvsi1n27Bc6jL9DQ==}
+ /@vitest/expect@1.3.1:
+ resolution: {integrity: sha512-xofQFwIzfdmLLlHa6ag0dPV8YsnKOCP1KdAeVVh34vSjN2dcUiXYCD9htu/9eM7t8Xln4v03U9HLxLpPlsXdZw==}
dependencies:
- '@vitest/spy': 1.3.0
- '@vitest/utils': 1.3.0
+ '@vitest/spy': 1.3.1
+ '@vitest/utils': 1.3.1
chai: 4.3.10
- /@vitest/runner@1.3.0:
- resolution: {integrity: sha512-1Jb15Vo/Oy7mwZ5bXi7zbgszsdIBNjc4IqP8Jpr/8RdBC4nF1CTzIAn2dxYvpF1nGSseeL39lfLQ2uvs5u1Y9A==}
+ /@vitest/runner@1.3.1:
+ resolution: {integrity: sha512-5FzF9c3jG/z5bgCnjr8j9LNq/9OxV2uEBAITOXfoe3rdZJTdO7jzThth7FXv/6b+kdY65tpRQB7WaKhNZwX+Kg==}
dependencies:
- '@vitest/utils': 1.3.0
+ '@vitest/utils': 1.3.1
p-limit: 5.0.0
- pathe: 1.1.1
+ pathe: 1.1.2
- /@vitest/snapshot@1.3.0:
- resolution: {integrity: sha512-swmktcviVVPYx9U4SEQXLV6AEY51Y6bZ14jA2yo6TgMxQ3h+ZYiO0YhAHGJNp0ohCFbPAis1R9kK0cvN6lDPQA==}
+ /@vitest/snapshot@1.3.1:
+ resolution: {integrity: sha512-EF++BZbt6RZmOlE3SuTPu/NfwBF6q4ABS37HHXzs2LUVPBLx2QoY/K0fKpRChSo8eLiuxcbCVfqKgx/dplCDuQ==}
dependencies:
- magic-string: 0.30.5
- pathe: 1.1.1
+ magic-string: 0.30.7
+ pathe: 1.1.2
pretty-format: 29.7.0
- /@vitest/spy@1.3.0:
- resolution: {integrity: sha512-AkCU0ThZunMvblDpPKgjIi025UxR8V7MZ/g/EwmAGpjIujLVV2X6rGYGmxE2D4FJbAy0/ijdROHMWa2M/6JVMw==}
+ /@vitest/spy@1.3.1:
+ resolution: {integrity: sha512-xAcW+S099ylC9VLU7eZfdT9myV67Nor9w9zhf0mGCYJSO+zM2839tOeROTdikOi/8Qeusffvxb/MyBSOja1Uig==}
dependencies:
tinyspy: 2.2.0
- /@vitest/utils@1.3.0:
- resolution: {integrity: sha512-/LibEY/fkaXQufi4GDlQZhikQsPO2entBKtfuyIpr1jV4DpaeasqkeHjhdOhU24vSHshcSuEyVlWdzvv2XmYCw==}
+ /@vitest/utils@1.3.1:
+ resolution: {integrity: sha512-d3Waie/299qqRyHTm2DjADeTaNdNSVsnwHPWrs20JMpjh6eiVq7ggggweO8rc4arhf6rRkWuHKwvxGvejUXZZQ==}
dependencies:
diff-sequences: 29.6.3
estree-walker: 3.0.3
@@ -5229,6 +5283,12 @@ packages:
resolution: {integrity: sha512-ddyWwSYqcbEZNFHm+Z3NZd6M7Ihjcwl/9B5cZd8kECdimVXUFdFi60XHWD27nrWtUQIsUYIG7Ca1WBwV2u2LSQ==}
dependencies:
'@volar/source-map': 1.10.0
+ dev: false
+
+ /@volar/language-core@1.11.1:
+ resolution: {integrity: sha512-dOcNn3i9GgZAcJt43wuaEykSluAuOkQgzni1cuxLxTV0nJKanQztp7FxyswdRILaKH+P2XZMPRp2S4MV/pElCw==}
+ dependencies:
+ '@volar/source-map': 1.11.1
/@volar/language-core@1.4.1:
resolution: {integrity: sha512-EIY+Swv+TjsWpxOxujjMf1ZXqOjg9MT2VMXZ+1dKva0wD8W0L6EtptFFcCJdBbcKmGMFkr57Qzz9VNMWhs3jXQ==}
@@ -5236,16 +5296,16 @@ packages:
'@volar/source-map': 1.4.1
dev: true
- /@volar/language-core@1.7.10:
- resolution: {integrity: sha512-18Gmth5M0UI3hDDqhZngjMnb6WCslcfglkOdepRIhGxRYe7xR7DRRzciisYDMZsvOQxDYme+uaohg0dKUxLV2Q==}
- dependencies:
- '@volar/source-map': 1.7.10
- dev: true
-
/@volar/source-map@1.10.0:
resolution: {integrity: sha512-/ibWdcOzDGiq/GM1JU2eX8fH1bvAhl66hfe8yEgLEzg9txgr6qb5sQ/DEz5PcDL75tF5H5sCRRwn8Eu8ezi9mw==}
dependencies:
muggle-string: 0.3.1
+ dev: false
+
+ /@volar/source-map@1.11.1:
+ resolution: {integrity: sha512-hJnOnwZ4+WT5iupLRnuzbULZ42L7BWWPMmruzwtLhJfpDVoZLjNBxHDi2sY2bgZXCKlpU5XcsMFoYrsQmPhfZg==}
+ dependencies:
+ muggle-string: 0.3.1
/@volar/source-map@1.4.1:
resolution: {integrity: sha512-bZ46ad72dsbzuOWPUtJjBXkzSQzzSejuR3CT81+GvTEI2E994D8JPXzM3tl98zyCNnjgs4OkRyliImL1dvJ5BA==}
@@ -5253,54 +5313,31 @@ packages:
muggle-string: 0.2.2
dev: true
- /@volar/source-map@1.7.10:
- resolution: {integrity: sha512-FBpLEOKJpRxeh2nYbw1mTI5sZOPXYU8LlsCz6xuBY3yNtAizDTTIZtBHe1V8BaMpoSMgRysZe4gVxMEi3rDGVA==}
+ /@volar/typescript@1.11.1:
+ resolution: {integrity: sha512-iU+t2mas/4lYierSnoFOeRFQUhAEMgsFuQxoxvwn5EdQopw43j+J27a4lt9LMInx1gLJBC6qL14WYGlgymaSMQ==}
dependencies:
- muggle-string: 0.3.1
- dev: true
-
- /@volar/typescript@1.10.0:
- resolution: {integrity: sha512-OtqGtFbUKYC0pLNIk3mHQp5xWnvL1CJIUc9VE39VdZ/oqpoBh5jKfb9uJ45Y4/oP/WYTrif/Uxl1k8VTPz66Gg==}
- dependencies:
- '@volar/language-core': 1.10.0
-
- /@volar/typescript@1.7.10:
- resolution: {integrity: sha512-yqIov4wndLU3GE1iE25bU5W6T+P+exPePcE1dFPPBKzQIBki1KvmdQN5jBlJp3Wo+wp7UIxa/RsdNkXT+iFBjg==}
- dependencies:
- '@volar/language-core': 1.7.10
- dev: true
+ '@volar/language-core': 1.11.1
+ path-browserify: 1.0.1
/@volar/vue-language-core@1.6.5:
resolution: {integrity: sha512-IF2b6hW4QAxfsLd5mePmLgtkXzNi+YnH6ltCd80gb7+cbdpFMjM1I+w+nSg2kfBTyfu+W8useCZvW89kPTBpzg==}
dependencies:
'@volar/language-core': 1.4.1
'@volar/source-map': 1.4.1
- '@vue/compiler-dom': 3.3.9
- '@vue/compiler-sfc': 3.3.9
- '@vue/reactivity': 3.3.9
- '@vue/shared': 3.3.9
+ '@vue/compiler-dom': 3.4.19
+ '@vue/compiler-sfc': 3.4.19
+ '@vue/reactivity': 3.4.19
+ '@vue/shared': 3.4.19
minimatch: 9.0.3
muggle-string: 0.2.2
vue-template-compiler: 2.7.14
dev: true
- /@vue-macros/api@0.8.3(rollup@2.79.1)(vue@3.4.19):
- resolution: {integrity: sha512-qpKB+2YnhRBMoz/FaDEJZfH2x7t3M72lHFdfrjIVeGvQzhOO5wMNY3fNjmRRB9tGJM8SSGd1gUYPZHK0ZSOVIw==}
- engines: {node: '>=16.14.0'}
- dependencies:
- '@babel/types': 7.23.5
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- resolve.exports: 2.0.2
- transitivePeerDependencies:
- - rollup
- - vue
- dev: false
-
/@vue-macros/api@0.8.3(rollup@3.29.4)(vue@3.4.19):
resolution: {integrity: sha512-qpKB+2YnhRBMoz/FaDEJZfH2x7t3M72lHFdfrjIVeGvQzhOO5wMNY3fNjmRRB9tGJM8SSGd1gUYPZHK0ZSOVIw==}
engines: {node: '>=16.14.0'}
dependencies:
- '@babel/types': 7.23.5
+ '@babel/types': 7.23.9
'@vue-macros/common': 1.7.0(rollup@3.29.4)(vue@3.4.19)
resolve.exports: 2.0.2
transitivePeerDependencies:
@@ -5308,60 +5345,52 @@ packages:
- vue
dev: false
- /@vue-macros/better-define@1.6.9(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/api@0.8.3(rollup@4.6.0)(vue@3.4.19):
+ resolution: {integrity: sha512-qpKB+2YnhRBMoz/FaDEJZfH2x7t3M72lHFdfrjIVeGvQzhOO5wMNY3fNjmRRB9tGJM8SSGd1gUYPZHK0ZSOVIw==}
+ engines: {node: '>=16.14.0'}
+ dependencies:
+ '@babel/types': 7.23.9
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ resolve.exports: 2.0.2
+ transitivePeerDependencies:
+ - rollup
+ - vue
+ dev: false
+
+ /@vue-macros/better-define@1.6.9(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-3D4P+J7BX0UKckMC1Fbz+JmgTTJ/hKC0RrhHZIMqfjgjVQI1UDxLMb8a02gBSVyI+4OyX1KotHnahYAtwj7plw==}
engines: {node: '>=16.14.0'}
dependencies:
- '@vue-macros/api': 0.8.3(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- unplugin: 1.5.1
+ '@vue-macros/api': 0.8.3(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ unplugin: 1.7.1
transitivePeerDependencies:
- rollup
- vue
dev: false
- /@vue-macros/boolean-prop@0.1.1(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/boolean-prop@0.1.1(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-mjqWQPEK0LJS9d0R4Qg05WuF3BYPl4j8aqmlHfcFETOe9vFwXyx0PNGaRtJy15yUkUNhP6O5t96Q9HeAZm2AUw==}
engines: {node: '>=16.14.0'}
dependencies:
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- '@vue/compiler-core': 3.3.9
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ '@vue/compiler-core': 3.4.19
transitivePeerDependencies:
- rollup
- vue
dev: false
- /@vue-macros/chain-call@0.1.3(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/chain-call@0.1.3(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-5AZ6duwVecJ0FDg1LiwMt1sjOiPERSup4mF1v+X4CzQIqmG/0XkntbeLgJLVstXw87fgyZNOXkzoeXf9n0OPyw==}
engines: {node: '>=16.14.0'}
dependencies:
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- unplugin: 1.5.1
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ unplugin: 1.7.1
transitivePeerDependencies:
- rollup
- vue
dev: false
- /@vue-macros/common@1.7.0(rollup@2.79.1)(vue@3.4.19):
- resolution: {integrity: sha512-177tzAjvEiFxAsOM+zd8EWCfAdneePoZroGg6R5QhMcycC28r+2k4wyzrjupjkDBgx7KAZkJ/KzkSfuEi31U0A==}
- engines: {node: '>=16.14.0'}
- peerDependencies:
- vue: ^3.4.19
- peerDependenciesMeta:
- vue:
- optional: true
- dependencies:
- '@babel/types': 7.23.5
- '@rollup/pluginutils': 5.1.0(rollup@2.79.1)
- '@vue/compiler-sfc': 3.3.9
- ast-kit: 0.9.5(rollup@2.79.1)
- local-pkg: 0.4.3
- magic-string-ast: 0.3.0
- vue: 3.4.19(typescript@5.1.6)
- transitivePeerDependencies:
- - rollup
- dev: false
-
/@vue-macros/common@1.7.0(rollup@3.29.4)(vue@3.4.19):
resolution: {integrity: sha512-177tzAjvEiFxAsOM+zd8EWCfAdneePoZroGg6R5QhMcycC28r+2k4wyzrjupjkDBgx7KAZkJ/KzkSfuEi31U0A==}
engines: {node: '>=16.14.0'}
@@ -5371,18 +5400,38 @@ packages:
vue:
optional: true
dependencies:
- '@babel/types': 7.23.5
+ '@babel/types': 7.23.9
'@rollup/pluginutils': 5.1.0(rollup@3.29.4)
- '@vue/compiler-sfc': 3.3.9
+ '@vue/compiler-sfc': 3.4.19
ast-kit: 0.9.5(rollup@3.29.4)
local-pkg: 0.4.3
magic-string-ast: 0.3.0
- vue: 3.4.19(typescript@5.1.6)
+ vue: 3.4.19(typescript@5.3.3)
transitivePeerDependencies:
- rollup
dev: false
- /@vue-macros/common@1.7.2(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/common@1.7.0(rollup@4.6.0)(vue@3.4.19):
+ resolution: {integrity: sha512-177tzAjvEiFxAsOM+zd8EWCfAdneePoZroGg6R5QhMcycC28r+2k4wyzrjupjkDBgx7KAZkJ/KzkSfuEi31U0A==}
+ engines: {node: '>=16.14.0'}
+ peerDependencies:
+ vue: ^3.4.19
+ peerDependenciesMeta:
+ vue:
+ optional: true
+ dependencies:
+ '@babel/types': 7.23.9
+ '@rollup/pluginutils': 5.1.0(rollup@4.6.0)
+ '@vue/compiler-sfc': 3.4.19
+ ast-kit: 0.9.5(rollup@4.6.0)
+ local-pkg: 0.4.3
+ magic-string-ast: 0.3.0
+ vue: 3.4.19(typescript@5.3.3)
+ transitivePeerDependencies:
+ - rollup
+ dev: false
+
+ /@vue-macros/common@1.7.2(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-0/2A4kWLTCNEx+DDQKLvs7zXpfjgAbGBZ58SIvDN1DjGXhG4WaIUZtgMqzA6bvc5dNN7RaOatZYubkVumwmjWA==}
engines: {node: '>=16.14.0'}
peerDependencies:
@@ -5391,36 +5440,17 @@ packages:
vue:
optional: true
dependencies:
- '@babel/types': 7.23.5
- '@rollup/pluginutils': 5.1.0(rollup@2.79.1)
- '@vue/compiler-sfc': 3.3.9
- ast-kit: 0.10.0(rollup@2.79.1)
+ '@babel/types': 7.23.9
+ '@rollup/pluginutils': 5.1.0(rollup@4.6.0)
+ '@vue/compiler-sfc': 3.4.19
+ ast-kit: 0.10.0(rollup@4.6.0)
local-pkg: 0.4.3
magic-string-ast: 0.3.0
- vue: 3.4.19(typescript@5.1.6)
+ vue: 3.4.19(typescript@5.3.3)
transitivePeerDependencies:
- rollup
dev: false
- /@vue-macros/common@1.8.0(rollup@2.79.1)(vue@3.4.19):
- resolution: {integrity: sha512-auDJJzE0z3uRe3867e0DsqcseKImktNf5ojCZgUKqiVxb2yTlwlgOVAYCgoep9oITqxkXQymSvFeKhedi8PhaA==}
- engines: {node: '>=16.14.0'}
- peerDependencies:
- vue: ^3.4.19
- peerDependenciesMeta:
- vue:
- optional: true
- dependencies:
- '@babel/types': 7.23.5
- '@rollup/pluginutils': 5.1.0(rollup@2.79.1)
- '@vue/compiler-sfc': 3.3.9
- ast-kit: 0.11.2(rollup@2.79.1)
- local-pkg: 0.4.3
- magic-string-ast: 0.3.0
- vue: 3.4.19(typescript@5.1.6)
- transitivePeerDependencies:
- - rollup
-
/@vue-macros/common@1.8.0(rollup@3.29.4)(vue@3.4.19):
resolution: {integrity: sha512-auDJJzE0z3uRe3867e0DsqcseKImktNf5ojCZgUKqiVxb2yTlwlgOVAYCgoep9oITqxkXQymSvFeKhedi8PhaA==}
engines: {node: '>=16.14.0'}
@@ -5430,17 +5460,36 @@ packages:
vue:
optional: true
dependencies:
- '@babel/types': 7.23.5
+ '@babel/types': 7.23.9
'@rollup/pluginutils': 5.1.0(rollup@3.29.4)
- '@vue/compiler-sfc': 3.3.9
+ '@vue/compiler-sfc': 3.4.19
ast-kit: 0.11.2(rollup@3.29.4)
local-pkg: 0.4.3
magic-string-ast: 0.3.0
- vue: 3.4.19(typescript@5.1.6)
+ vue: 3.4.19(typescript@5.3.3)
transitivePeerDependencies:
- rollup
dev: true
+ /@vue-macros/common@1.8.0(rollup@4.6.0)(vue@3.4.19):
+ resolution: {integrity: sha512-auDJJzE0z3uRe3867e0DsqcseKImktNf5ojCZgUKqiVxb2yTlwlgOVAYCgoep9oITqxkXQymSvFeKhedi8PhaA==}
+ engines: {node: '>=16.14.0'}
+ peerDependencies:
+ vue: ^3.4.19
+ peerDependenciesMeta:
+ vue:
+ optional: true
+ dependencies:
+ '@babel/types': 7.23.9
+ '@rollup/pluginutils': 5.1.0(rollup@4.6.0)
+ '@vue/compiler-sfc': 3.4.19
+ ast-kit: 0.11.2(rollup@4.6.0)
+ local-pkg: 0.4.3
+ magic-string-ast: 0.3.0
+ vue: 3.4.19(typescript@5.3.3)
+ transitivePeerDependencies:
+ - rollup
+
/@vue-macros/define-emit@0.1.13(vue@3.4.19):
resolution: {integrity: sha512-D0QWYOzsDXWiXYIxCHoHTWtfYVk/mmKWliE2e/WIKlSOUpQB8pdwFOw8FksLRgXBCQq3pGnKauf6mG43C+AiiQ==}
engines: {node: '>=16.14.0'}
@@ -5450,11 +5499,11 @@ packages:
'@vue-macros/api': 0.8.3(rollup@3.29.4)(vue@3.4.19)
'@vue-macros/common': 1.7.0(rollup@3.29.4)(vue@3.4.19)
rollup: 3.29.4
- unplugin: 1.5.1
- vue: 3.4.19(typescript@5.1.6)
+ unplugin: 1.7.1
+ vue: 3.4.19(typescript@5.3.3)
dev: false
- /@vue-macros/define-models@1.0.13(@vueuse/core@10.2.1)(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/define-models@1.0.13(@vueuse/core@10.8.0)(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-1GphMtJsR5+Dqcarm3f8pKYMHSigEiqGqijPp4njQT6O+H+i5Ja6kcqtqre5N1/fNRRgxe4l2KGKyk44IstmMA==}
engines: {node: '>=16.14.0'}
peerDependencies:
@@ -5463,10 +5512,10 @@ packages:
'@vueuse/core':
optional: true
dependencies:
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- '@vueuse/core': 10.2.1(vue@3.4.19)
- ast-walker-scope: 0.5.0(rollup@2.79.1)
- unplugin: 1.5.1
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ '@vueuse/core': 10.8.0(vue@3.4.19)
+ ast-walker-scope: 0.5.0(rollup@4.6.0)
+ unplugin: 1.7.1
transitivePeerDependencies:
- rollup
- vue
@@ -5481,80 +5530,80 @@ packages:
'@vue-macros/api': 0.8.3(rollup@3.29.4)(vue@3.4.19)
'@vue-macros/common': 1.7.0(rollup@3.29.4)(vue@3.4.19)
rollup: 3.29.4
- unplugin: 1.5.1
- vue: 3.4.19(typescript@5.1.6)
+ unplugin: 1.7.1
+ vue: 3.4.19(typescript@5.3.3)
dev: false
- /@vue-macros/define-props-refs@1.1.7(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/define-props-refs@1.1.7(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-EO0V/mJa38KySRKB9k1zVcCplSim/wSNZlBJEkSSO+s1LATPmb26NFGLa5vIOzfUdYbGZ3gqTFINa+lWorPf6g==}
engines: {node: '>=16.14.0'}
peerDependencies:
vue: ^3.4.19
dependencies:
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- unplugin: 1.5.1
- vue: 3.4.19(typescript@5.1.6)
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ unplugin: 1.7.1
+ vue: 3.4.19(typescript@5.3.3)
transitivePeerDependencies:
- rollup
dev: false
- /@vue-macros/define-props@1.0.17(@vue-macros/reactivity-transform@0.3.19)(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/define-props@1.0.17(@vue-macros/reactivity-transform@0.3.19)(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-vHan0LXzl+igYLEQKntvaXH7bfGMZTFp3kTgRpj40nohcYIgDWw53s9wwsTJebo49eFHNXWSZDR4UXdye+Akeg==}
engines: {node: '>=16.14.0'}
peerDependencies:
'@vue-macros/reactivity-transform': ^0.3.19
vue: ^3.4.19
dependencies:
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/reactivity-transform': 0.3.19(rollup@2.79.1)(vue@3.4.19)
- unplugin: 1.5.1
- vue: 3.4.19(typescript@5.1.6)
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/reactivity-transform': 0.3.19(rollup@4.6.0)(vue@3.4.19)
+ unplugin: 1.7.1
+ vue: 3.4.19(typescript@5.3.3)
transitivePeerDependencies:
- rollup
dev: false
- /@vue-macros/define-props@1.0.17(@vue-macros/reactivity-transform@0.3.23)(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/define-props@1.0.17(@vue-macros/reactivity-transform@0.3.23)(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-vHan0LXzl+igYLEQKntvaXH7bfGMZTFp3kTgRpj40nohcYIgDWw53s9wwsTJebo49eFHNXWSZDR4UXdye+Akeg==}
engines: {node: '>=16.14.0'}
peerDependencies:
'@vue-macros/reactivity-transform': ^0.3.19
vue: ^3.4.19
dependencies:
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/reactivity-transform': 0.3.23(rollup@2.79.1)(vue@3.4.19)
- unplugin: 1.5.1
- vue: 3.4.19(typescript@5.1.6)
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/reactivity-transform': 0.3.23(rollup@4.6.0)(vue@3.4.19)
+ unplugin: 1.7.1
+ vue: 3.4.19(typescript@5.3.3)
transitivePeerDependencies:
- rollup
dev: false
- /@vue-macros/define-render@1.4.0(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/define-render@1.4.0(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-RLETg7Lu8BQx0ArYTLF14nS1UB/a1dGwbe/yyJLVmmwW1On/TbGzfR2ibSJNe7B6kNWfxN8cPxqLID8IehTP2w==}
engines: {node: '>=16.14.0'}
peerDependencies:
vue: ^3.4.19
dependencies:
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- unplugin: 1.5.1
- vue: 3.4.19(typescript@5.1.6)
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ unplugin: 1.7.1
+ vue: 3.4.19(typescript@5.3.3)
transitivePeerDependencies:
- rollup
dev: false
- /@vue-macros/define-slots@1.0.12(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/define-slots@1.0.12(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-q7zW5hj3QxFbAzl7as5CjPzILAjM9nKk7dpirgF18YT/gWVnIEwapx9HFyvw/L6CxIA5ErBcMWRKTyYL68mDgg==}
engines: {node: '>=16.14.0'}
peerDependencies:
vue: ^3.4.19
dependencies:
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- unplugin: 1.5.1
- vue: 3.4.19(typescript@5.1.6)
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ unplugin: 1.7.1
+ vue: 3.4.19(typescript@5.3.3)
transitivePeerDependencies:
- rollup
dev: false
- /@vue-macros/devtools@0.1.3(typescript@5.1.6)(vite@4.5.0):
+ /@vue-macros/devtools@0.1.3(typescript@5.3.3)(vite@5.1.4):
resolution: {integrity: sha512-aQRC9/TfmQajTMbZZ1BJn61rrraQztJqf64JdXRIpotbGR+xufLY/KIyTTB4SgL1pE1eW/ar5FaZTSjMqyVGIg==}
engines: {node: '>=16.14.0'}
peerDependencies:
@@ -5563,87 +5612,87 @@ packages:
vite:
optional: true
dependencies:
- sirv: 2.0.3
- vite: 4.5.0
- vue: 3.4.19(typescript@5.1.6)
+ sirv: 2.0.4
+ vite: 5.1.4
+ vue: 3.4.19(typescript@5.3.3)
transitivePeerDependencies:
- typescript
dev: false
- /@vue-macros/export-expose@0.0.10(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/export-expose@0.0.10(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-ZlFwS6gWxtbmmOA1Lb3+9ehCxDRwcBL+2XjXaeD8gjct8dvsnWXMO5TRU0sKYO09unj3bkQd3mSF050/R27DYw==}
engines: {node: '>=16.14.0'}
peerDependencies:
vue: ^3.4.19
dependencies:
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- '@vue/compiler-sfc': 3.3.9
- unplugin: 1.5.1
- vue: 3.4.19(typescript@5.1.6)
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ '@vue/compiler-sfc': 3.4.19
+ unplugin: 1.7.1
+ vue: 3.4.19(typescript@5.3.3)
transitivePeerDependencies:
- rollup
dev: false
- /@vue-macros/export-props@0.3.15(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/export-props@0.3.15(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-a0bhLt0lhmshuEsiPpaCn1kw6Qv/f7iQsEFTSnMgNvFXRrziv/YcEHoz9PZ79f4HAKwLgsj9AQfRyABJl3B9wg==}
engines: {node: '>=16.14.0'}
peerDependencies:
vue: ^3.4.19
dependencies:
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- unplugin: 1.5.1
- vue: 3.4.19(typescript@5.1.6)
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ unplugin: 1.7.1
+ vue: 3.4.19(typescript@5.3.3)
transitivePeerDependencies:
- rollup
dev: false
- /@vue-macros/hoist-static@1.4.9(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/hoist-static@1.4.9(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-STxtEXmGFoERW/jvDw/uS7Ds5tR9U8dlTsTu1m3LTQKiWANzu33WICRFifVI39cUL5TVFujN3yEcdIGvtfbRqw==}
engines: {node: '>=16.14.0'}
dependencies:
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- unplugin: 1.5.1
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ unplugin: 1.7.1
transitivePeerDependencies:
- rollup
- vue
dev: false
- /@vue-macros/jsx-directive@0.3.0(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/jsx-directive@0.3.0(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-VO6szhFjgH0dQJcZ5FyjeFouJ/fsta7OoaVnM7ux2xDpVdIlW+ozyJ+J4e7eylA0RLJOE7zzHFUBnmhJUqxn2A==}
engines: {node: '>=16.14.0'}
dependencies:
- '@vue-macros/common': 1.7.2(rollup@2.79.1)(vue@3.4.19)
- unplugin: 1.5.1
+ '@vue-macros/common': 1.7.2(rollup@4.6.0)(vue@3.4.19)
+ unplugin: 1.7.1
transitivePeerDependencies:
- rollup
- vue
dev: false
- /@vue-macros/named-template@0.3.16(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/named-template@0.3.16(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-/VCHjs6teUa7YntAEY7Iz1f+EvrVcG2KkzlUPS8EB/g8lM8Z2inyFEB3ohD8c4gGM6hKg3LtwUsWaWGaFHEmDg==}
engines: {node: '>=16.14.0'}
dependencies:
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- '@vue/compiler-dom': 3.3.9
- unplugin: 1.5.1
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ '@vue/compiler-dom': 3.4.19
+ unplugin: 1.7.1
transitivePeerDependencies:
- rollup
- vue
dev: false
- /@vue-macros/nuxt@1.6.0(@vue-macros/reactivity-transform@0.3.23)(@vueuse/core@10.2.1)(nuxt@3.8.2)(rollup@2.79.1)(typescript@5.1.6)(vite@4.5.0)(vue-tsc@1.8.8)(vue@3.4.19)(webpack@5.89.0):
+ /@vue-macros/nuxt@1.6.0(@vue-macros/reactivity-transform@0.3.23)(@vueuse/core@10.8.0)(nuxt@3.10.3)(rollup@4.6.0)(typescript@5.3.3)(vite@5.1.4)(vue-tsc@1.8.27)(vue@3.4.19)(webpack@5.89.0):
resolution: {integrity: sha512-tRi1p+k09pkZLq8y8UuNLtQH7x/F8EOyj1kcUunQqQFonzakdQfBkSQpOq7CG6hOiA7bS8FgGjBtCf/h4tRZZQ==}
engines: {node: '>=16.14.0'}
peerDependencies:
nuxt: ^3.0.0
dependencies:
- '@nuxt/kit': 3.8.2(rollup@2.79.1)
- '@vue-macros/boolean-prop': 0.1.1(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/common': 1.7.2(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/short-vmodel': 1.2.15(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/volar': 0.13.3(@vue-macros/reactivity-transform@0.3.23)(rollup@2.79.1)(typescript@5.1.6)(vue-tsc@1.8.8)(vue@3.4.19)
- nuxt: 3.8.2(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@2.79.1)(typescript@5.1.6)(vite@4.5.0)(vue-tsc@1.8.8)
- unplugin-vue-macros: 2.4.4(@vueuse/core@10.2.1)(rollup@2.79.1)(typescript@5.1.6)(vite@4.5.0)(vue@3.4.19)(webpack@5.89.0)
+ '@nuxt/kit': 3.10.3(rollup@4.6.0)
+ '@vue-macros/boolean-prop': 0.1.1(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/common': 1.7.2(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/short-vmodel': 1.2.15(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/volar': 0.13.3(@vue-macros/reactivity-transform@0.3.23)(rollup@4.6.0)(typescript@5.3.3)(vue-tsc@1.8.27)(vue@3.4.19)
+ nuxt: 3.10.3(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@4.6.0)(typescript@5.3.3)(vite@5.1.4)(vue-tsc@1.8.27)
+ unplugin-vue-macros: 2.4.4(@vueuse/core@10.8.0)(rollup@4.6.0)(typescript@5.3.3)(vite@5.1.4)(vue@3.4.19)(webpack@5.89.0)
transitivePeerDependencies:
- '@vue-macros/reactivity-transform'
- '@vueuse/core'
@@ -5657,97 +5706,97 @@ packages:
- webpack
dev: false
- /@vue-macros/reactivity-transform@0.3.19(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/reactivity-transform@0.3.19(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-HUqMu8GyGJG89K3a64OxZJknT/Jii8sTcA1fB6ommTU2T7eSGkBalipsSRvbJAhAkl4SYcVLJk0HX18hv+GA+g==}
engines: {node: '>=16.14.0'}
peerDependencies:
vue: ^3.4.19
dependencies:
- '@babel/parser': 7.23.5
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- '@vue/compiler-core': 3.3.9
- '@vue/shared': 3.3.9
- magic-string: 0.30.5
- unplugin: 1.5.1
- vue: 3.4.19(typescript@5.1.6)
+ '@babel/parser': 7.23.9
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ '@vue/compiler-core': 3.4.19
+ '@vue/shared': 3.4.19
+ magic-string: 0.30.7
+ unplugin: 1.7.1
+ vue: 3.4.19(typescript@5.3.3)
transitivePeerDependencies:
- rollup
dev: false
- /@vue-macros/reactivity-transform@0.3.23(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/reactivity-transform@0.3.23(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-SubIg1GsNpQdIDJusrcA2FWBgwSY+4jmL0j6SJ6PU85r3rlS+uDhn6AUkqxeZRAdmJnrbGHXDyWUdygOZmWrSg==}
engines: {node: '>=16.14.0'}
peerDependencies:
vue: ^3.4.19
dependencies:
- '@babel/parser': 7.23.5
- '@vue-macros/common': 1.8.0(rollup@2.79.1)(vue@3.4.19)
- '@vue/compiler-core': 3.3.9
- '@vue/shared': 3.3.9
- magic-string: 0.30.5
- unplugin: 1.5.1
- vue: 3.4.19(typescript@5.1.6)
+ '@babel/parser': 7.23.9
+ '@vue-macros/common': 1.8.0(rollup@4.6.0)(vue@3.4.19)
+ '@vue/compiler-core': 3.4.19
+ '@vue/shared': 3.4.19
+ magic-string: 0.30.7
+ unplugin: 1.7.1
+ vue: 3.4.19(typescript@5.3.3)
transitivePeerDependencies:
- rollup
dev: false
- /@vue-macros/setup-block@0.2.15(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/setup-block@0.2.15(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-rhbJrxXFJ+GRqrR5NnqU8pMELLbAz80xc/+USGu4KzsuVyiklyQpy7jVEKRXDrm9rqlL09ia/sLrn375eCQDtA==}
engines: {node: '>=16.14.0'}
dependencies:
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- '@vue/compiler-dom': 3.3.9
- unplugin: 1.5.1
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ '@vue/compiler-dom': 3.4.19
+ unplugin: 1.7.1
transitivePeerDependencies:
- rollup
- vue
dev: false
- /@vue-macros/setup-component@0.16.16(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/setup-component@0.16.16(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-oscrS6MlCAbvmtXxhgQdKRPNoa+5cCaNM43XUjvMb84OGtzFRB3rvRlDOVh+ylW3EdGkuqAIlpS0ZBHdntlw5Q==}
engines: {node: '>=16.14.0'}
dependencies:
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- unplugin: 1.5.1
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ unplugin: 1.7.1
transitivePeerDependencies:
- rollup
- vue
dev: false
- /@vue-macros/setup-sfc@0.16.0(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/setup-sfc@0.16.0(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-H/bOmDXYGA4sFQRQmCAw8oCkgthdc8i6/VjLgQGngwAFGNUYf8Fin3mQs6r8L1N3jXsnu7nfnUFDsc8JYyOllg==}
engines: {node: '>=16.14.0'}
dependencies:
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- unplugin: 1.5.1
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ unplugin: 1.7.1
transitivePeerDependencies:
- rollup
- vue
dev: false
- /@vue-macros/short-emits@1.4.7(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/short-emits@1.4.7(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-yWrQO2g+VTrWXeaG7bcwQh+T5AvirFAyAyDS3fzzfa17HRI2Oj9d8t584xqBpr4u+m3rjs/wLgR4S3U0EZd1Mg==}
engines: {node: '>=16.14.0'}
dependencies:
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- unplugin: 1.5.1
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ unplugin: 1.7.1
transitivePeerDependencies:
- rollup
- vue
dev: false
- /@vue-macros/short-vmodel@1.2.15(rollup@2.79.1)(vue@3.4.19):
+ /@vue-macros/short-vmodel@1.2.15(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-mcTaoRUgiM9exCvzxkOJC7JQgfiDs2kcWxF4XoI9d24GBCcldpIoLNmJ71OPihGg9LvJUR7Lgr2F6c4ewaxkiQ==}
engines: {node: '>=16.14.0'}
dependencies:
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- '@vue/compiler-core': 3.3.9
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ '@vue/compiler-core': 3.4.19
transitivePeerDependencies:
- rollup
- vue
dev: false
- /@vue-macros/volar@0.13.3(@vue-macros/reactivity-transform@0.3.23)(rollup@2.79.1)(typescript@5.1.6)(vue-tsc@1.8.8)(vue@3.4.19):
+ /@vue-macros/volar@0.13.3(@vue-macros/reactivity-transform@0.3.23)(rollup@4.6.0)(typescript@5.3.3)(vue-tsc@1.8.27)(vue@3.4.19):
resolution: {integrity: sha512-gvM3UVnV1I0MIMJoY8o0c3ZWjfbX7n3ilEXUdy5kgASwu57yREjUTVWgihKBDqEuBszy2H49SYJgFziuhZ1r1Q==}
engines: {node: '>=16.14.0'}
peerDependencies:
@@ -5756,13 +5805,13 @@ packages:
vue-tsc:
optional: true
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@2.79.1)
+ '@rollup/pluginutils': 5.1.0(rollup@4.6.0)
'@volar/language-core': 1.10.0
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/define-props': 1.0.17(@vue-macros/reactivity-transform@0.3.23)(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/short-vmodel': 1.2.15(rollup@2.79.1)(vue@3.4.19)
- '@vue/language-core': 1.8.8(typescript@5.1.6)
- vue-tsc: 1.8.8(typescript@5.1.6)
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/define-props': 1.0.17(@vue-macros/reactivity-transform@0.3.23)(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/short-vmodel': 1.2.15(rollup@4.6.0)(vue@3.4.19)
+ '@vue/language-core': 1.8.8(typescript@5.3.3)
+ vue-tsc: 1.8.27(typescript@5.3.3)
transitivePeerDependencies:
- '@vue-macros/reactivity-transform'
- rollup
@@ -5773,17 +5822,17 @@ packages:
/@vue/babel-helper-vue-transform-on@1.1.5:
resolution: {integrity: sha512-SgUymFpMoAyWeYWLAY+MkCK3QEROsiUnfaw5zxOVD/M64KQs8D/4oK6Q5omVA2hnvEOE0SCkH2TZxs/jnnUj7w==}
- /@vue/babel-plugin-jsx@1.1.5(@babel/core@7.23.5):
+ /@vue/babel-plugin-jsx@1.1.5(@babel/core@7.23.9):
resolution: {integrity: sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
'@babel/helper-module-imports': 7.22.15
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.5)
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.5
- '@babel/types': 7.23.5
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.9)
+ '@babel/template': 7.23.9
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
'@vue/babel-helper-vue-transform-on': 1.1.5
camelcase: 6.3.0
html-tags: 3.3.1
@@ -5791,14 +5840,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@vue/compiler-core@3.3.9:
- resolution: {integrity: sha512-+/Lf68Vr/nFBA6ol4xOtJrW+BQWv3QWKfRwGSm70jtXwfhZNF4R/eRgyVJYoxFRhdCTk/F6g99BP0ffPgZihfQ==}
- dependencies:
- '@babel/parser': 7.23.5
- '@vue/shared': 3.3.9
- estree-walker: 2.0.2
- source-map-js: 1.0.2
-
/@vue/compiler-core@3.4.19:
resolution: {integrity: sha512-gj81785z0JNzRcU0Mq98E56e4ltO1yf8k5PQ+tV/7YHnbZkrM0fyFyuttnN8ngJZjbpofWE/m4qjKBiLl8Ju4w==}
dependencies:
@@ -5808,32 +5849,12 @@ packages:
estree-walker: 2.0.2
source-map-js: 1.0.2
- /@vue/compiler-dom@3.3.9:
- resolution: {integrity: sha512-nfWubTtLXuT4iBeDSZ5J3m218MjOy42Vp2pmKVuBKo2/BLcrFUX8nCSr/bKRFiJ32R8qbdnnnBgRn9AdU5v0Sg==}
- dependencies:
- '@vue/compiler-core': 3.3.9
- '@vue/shared': 3.3.9
-
/@vue/compiler-dom@3.4.19:
resolution: {integrity: sha512-vm6+cogWrshjqEHTzIDCp72DKtea8Ry/QVpQRYoyTIg9k7QZDX6D8+HGURjtmatfgM8xgCFtJJaOlCaRYRK3QA==}
dependencies:
'@vue/compiler-core': 3.4.19
'@vue/shared': 3.4.19
- /@vue/compiler-sfc@3.3.9:
- resolution: {integrity: sha512-wy0CNc8z4ihoDzjASCOCsQuzW0A/HP27+0MDSSICMjVIFzk/rFViezkR3dzH+miS2NDEz8ywMdbjO5ylhOLI2A==}
- dependencies:
- '@babel/parser': 7.23.5
- '@vue/compiler-core': 3.3.9
- '@vue/compiler-dom': 3.3.9
- '@vue/compiler-ssr': 3.3.9
- '@vue/reactivity-transform': 3.3.9
- '@vue/shared': 3.3.9
- estree-walker: 2.0.2
- magic-string: 0.30.5
- postcss: 8.4.32
- source-map-js: 1.0.2
-
/@vue/compiler-sfc@3.4.19:
resolution: {integrity: sha512-LQ3U4SN0DlvV0xhr1lUsgLCYlwQfUfetyPxkKYu7dkfvx7g3ojrGAkw0AERLOKYXuAGnqFsEuytkdcComei3Yg==}
dependencies:
@@ -5847,41 +5868,35 @@ packages:
postcss: 8.4.35
source-map-js: 1.0.2
- /@vue/compiler-ssr@3.3.9:
- resolution: {integrity: sha512-NO5oobAw78R0G4SODY5A502MGnDNiDjf6qvhn7zD7TJGc8XDeIEw4fg6JU705jZ/YhuokBKz0A5a/FL/XZU73g==}
- dependencies:
- '@vue/compiler-dom': 3.3.9
- '@vue/shared': 3.3.9
-
/@vue/compiler-ssr@3.4.19:
resolution: {integrity: sha512-P0PLKC4+u4OMJ8sinba/5Z/iDT84uMRRlrWzadgLA69opCpI1gG4N55qDSC+dedwq2fJtzmGald05LWR5TFfLw==}
dependencies:
'@vue/compiler-dom': 3.4.19
'@vue/shared': 3.4.19
- /@vue/devtools-api@6.5.0:
- resolution: {integrity: sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==}
+ /@vue/devtools-api@6.6.1:
+ resolution: {integrity: sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA==}
- /@vue/language-core@1.8.3(typescript@5.1.6):
- resolution: {integrity: sha512-AzhvMYoQkK/tg8CpAAttO19kx1zjS3+weYIr2AhlH/M5HebVzfftQoq4jZNFifjq+hyLKi8j9FiDMS8oqA89+A==}
+ /@vue/language-core@1.8.27(typescript@5.3.3):
+ resolution: {integrity: sha512-L8Kc27VdQserNaCUNiSFdDl9LWT24ly8Hpwf1ECy3aFb9m6bDhBGQYOujDm21N7EW3moKIOKEanQwe1q5BK+mA==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@volar/language-core': 1.7.10
- '@volar/source-map': 1.7.10
- '@vue/compiler-dom': 3.3.9
- '@vue/reactivity': 3.3.9
- '@vue/shared': 3.3.9
+ '@volar/language-core': 1.11.1
+ '@volar/source-map': 1.11.1
+ '@vue/compiler-dom': 3.4.19
+ '@vue/shared': 3.4.19
+ computeds: 0.0.1
minimatch: 9.0.3
muggle-string: 0.3.1
- typescript: 5.1.6
+ path-browserify: 1.0.1
+ typescript: 5.3.3
vue-template-compiler: 2.7.14
- dev: true
- /@vue/language-core@1.8.8(typescript@5.1.6):
+ /@vue/language-core@1.8.8(typescript@5.3.3):
resolution: {integrity: sha512-i4KMTuPazf48yMdYoebTkgSOJdFraE4pQf0B+FTOFkbB+6hAfjrSou/UmYWRsWyZV6r4Rc6DDZdI39CJwL0rWw==}
peerDependencies:
typescript: '*'
@@ -5891,27 +5906,14 @@ packages:
dependencies:
'@volar/language-core': 1.10.0
'@volar/source-map': 1.10.0
- '@vue/compiler-dom': 3.3.9
- '@vue/reactivity': 3.3.9
- '@vue/shared': 3.3.9
+ '@vue/compiler-dom': 3.4.19
+ '@vue/reactivity': 3.4.19
+ '@vue/shared': 3.4.19
minimatch: 9.0.3
muggle-string: 0.3.1
- typescript: 5.1.6
+ typescript: 5.3.3
vue-template-compiler: 2.7.14
-
- /@vue/reactivity-transform@3.3.9:
- resolution: {integrity: sha512-HnUFm7Ry6dFa4Lp63DAxTixUp8opMtQr6RxQCpDI1vlh12rkGIeYqMvJtK+IKyEfEOa2I9oCkD1mmsPdaGpdVg==}
- dependencies:
- '@babel/parser': 7.23.5
- '@vue/compiler-core': 3.3.9
- '@vue/shared': 3.3.9
- estree-walker: 2.0.2
- magic-string: 0.30.5
-
- /@vue/reactivity@3.3.9:
- resolution: {integrity: sha512-VmpIqlNp+aYDg2X0xQhJqHx9YguOmz2UxuUJDckBdQCNkipJvfk9yA75woLWElCa0Jtyec3lAAt49GO0izsphw==}
- dependencies:
- '@vue/shared': 3.3.9
+ dev: false
/@vue/reactivity@3.4.19:
resolution: {integrity: sha512-+VcwrQvLZgEclGZRHx4O2XhyEEcKaBi50WbxdVItEezUf4fqRh838Ix6amWTdX0CNb/b6t3Gkz3eOebfcSt+UA==}
@@ -5938,16 +5940,13 @@ packages:
dependencies:
'@vue/compiler-ssr': 3.4.19
'@vue/shared': 3.4.19
- vue: 3.4.19(typescript@5.1.6)
-
- /@vue/shared@3.3.9:
- resolution: {integrity: sha512-ZE0VTIR0LmYgeyhurPTpy4KzKsuDyQbMSdM49eKkMnT5X4VfFBLysMzjIZhLEFQYjjOVVfbvUDHckwjDFiO2eA==}
+ vue: 3.4.19(typescript@5.3.3)
/@vue/shared@3.4.19:
resolution: {integrity: sha512-/KliRRHMF6LoiThEy+4c1Z4KB/gbPrGjWwJR+crg2otgrf/egKzRaCPvJ51S5oetgsgXLfc4Rm5ZgrKHZrtMSw==}
- /@vue/test-utils@2.4.3(vue@3.4.19):
- resolution: {integrity: sha512-F4K7mF+ad++VlTrxMJVRnenKSJmO6fkQt2wpRDiKDesQMkfpniGWsqEi/JevxGBo2qEkwwjvTUAoiGJLNx++CA==}
+ /@vue/test-utils@2.4.4(vue@3.4.19):
+ resolution: {integrity: sha512-8jkRxz8pNhClAf4Co4ZrpAoFISdvT3nuSkUlY6Ys6rmTpw3DMWG/X3mw3gQ7QJzgCZO9f+zuE2kW57fi09MW7Q==}
peerDependencies:
'@vue/server-renderer': ^3.0.1
vue: ^3.4.19
@@ -5956,24 +5955,16 @@ packages:
optional: true
dependencies:
js-beautify: 1.14.9
- vue: 3.4.19(typescript@5.1.6)
- vue-component-type-helpers: 1.8.25
+ vue: 3.4.19(typescript@5.3.3)
+ vue-component-type-helpers: 1.8.27
- /@vue/typescript@1.8.8(typescript@5.1.6):
- resolution: {integrity: sha512-jUnmMB6egu5wl342eaUH236v8tdcEPXXkPgj+eI/F6JwW/lb+yAU6U07ZbQ3MVabZRlupIlPESB7ajgAGixhow==}
+ /@vueuse/core@10.8.0(vue@3.4.19):
+ resolution: {integrity: sha512-G9Ok9fjx10TkNIPn8V1dJmK1NcdJCtYmDRyYiTMUyJ1p0Tywc1zmOoCQ2xhHYyz8ULBU4KjIJQ9n+Lrty74iVw==}
dependencies:
- '@volar/typescript': 1.10.0
- '@vue/language-core': 1.8.8(typescript@5.1.6)
- transitivePeerDependencies:
- - typescript
-
- /@vueuse/core@10.2.1(vue@3.4.19):
- resolution: {integrity: sha512-c441bfMbkAwTNwVRHQ0zdYZNETK//P84rC01aP2Uy/aRFCiie9NE/k9KdIXbno0eDYP5NPUuWv0aA/I4Unr/7w==}
- dependencies:
- '@types/web-bluetooth': 0.0.17
- '@vueuse/metadata': 10.2.1
- '@vueuse/shared': 10.2.1(vue@3.4.19)
- vue-demi: 0.14.5(vue@3.4.19)
+ '@types/web-bluetooth': 0.0.20
+ '@vueuse/metadata': 10.8.0
+ '@vueuse/shared': 10.8.0(vue@3.4.19)
+ vue-demi: 0.14.7(vue@3.4.19)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -5984,7 +5975,7 @@ packages:
'@types/web-bluetooth': 0.0.16
'@vueuse/metadata': 9.13.0
'@vueuse/shared': 9.13.0(vue@3.4.19)
- vue-demi: 0.14.5(vue@3.4.19)
+ vue-demi: 0.14.7(vue@3.4.19)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -6002,12 +5993,24 @@ packages:
chokidar: 3.6.0
consola: 3.2.3
upath: 2.0.1
- vue: 3.4.19(typescript@5.1.6)
- vue-demi: 0.14.5(vue@3.4.19)
+ vue: 3.4.19(typescript@5.3.3)
+ vue-demi: 0.14.7(vue@3.4.19)
dev: false
- /@vueuse/integrations@10.2.1(focus-trap@7.5.2)(fuse.js@6.6.2)(idb-keyval@6.2.1)(vue@3.4.19):
- resolution: {integrity: sha512-FDP5lni+z9FjHE9H3xuvwSjoRV9U8jmDvJpmHPCBjUgPGYRynwb60eHWXCFJXLUtb4gSIHy0e+iaEbrKdalCkQ==}
+ /@vueuse/head@2.0.0(vue@3.4.19):
+ resolution: {integrity: sha512-ykdOxTGs95xjD4WXE4na/umxZea2Itl0GWBILas+O4oqS7eXIods38INvk3XkJKjqMdWPcpCyLX/DioLQxU1KA==}
+ peerDependencies:
+ vue: ^3.4.19
+ dependencies:
+ '@unhead/dom': 1.8.10
+ '@unhead/schema': 1.8.10
+ '@unhead/ssr': 1.8.10
+ '@unhead/vue': 1.8.10(vue@3.4.19)
+ vue: 3.4.19(typescript@5.3.3)
+ dev: true
+
+ /@vueuse/integrations@10.8.0(focus-trap@7.5.4)(fuse.js@6.6.2)(idb-keyval@6.2.1)(vue@3.4.19):
+ resolution: {integrity: sha512-sw3P/7cXOfNLQfERp7P0IJ2ODjLE2C3BGXpBQJQkS309c1jbJak9yu4EnY70WaZjkj53aeWSFU6BbHrUxXJ7SA==}
peerDependencies:
async-validator: '*'
axios: '*'
@@ -6047,82 +6050,64 @@ packages:
universal-cookie:
optional: true
dependencies:
- '@vueuse/core': 10.2.1(vue@3.4.19)
- '@vueuse/shared': 10.2.1(vue@3.4.19)
- focus-trap: 7.5.2
+ '@vueuse/core': 10.8.0(vue@3.4.19)
+ '@vueuse/shared': 10.8.0(vue@3.4.19)
+ focus-trap: 7.5.4
fuse.js: 6.6.2
idb-keyval: 6.2.1
- vue-demi: 0.14.5(vue@3.4.19)
+ vue-demi: 0.14.7(vue@3.4.19)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- /@vueuse/math@10.2.1(vue@3.4.19):
- resolution: {integrity: sha512-5mOoPhezfgcRhBT0E2FXPEjCbrLWG9hjhGlg574yWYmwhcLKLtN993CsL3AucD8ULCmWZJJ/J03K4fLyPyaEzw==}
+ /@vueuse/math@10.8.0(vue@3.4.19):
+ resolution: {integrity: sha512-BDuYmR/2D6T/REl9i6m0jYRpCr/901Jo/B1edkIhwqMeHgHxwHUlq47I4QXdQv0aYHoPADLuiB02cP7uJK7rkg==}
dependencies:
- '@vueuse/shared': 10.2.1(vue@3.4.19)
- vue-demi: 0.14.5(vue@3.4.19)
+ '@vueuse/shared': 10.8.0(vue@3.4.19)
+ vue-demi: 0.14.7(vue@3.4.19)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
dev: false
- /@vueuse/metadata@10.2.1:
- resolution: {integrity: sha512-3Gt68mY/i6bQvFqx7cuGBzrCCQu17OBaGWS5JdwISpMsHnMKKjC2FeB5OAfMcCQ0oINfADP3i9A4PPRo0peHdQ==}
+ /@vueuse/metadata@10.8.0:
+ resolution: {integrity: sha512-Nim/Vle5OgXcXhAvGOgkJQXB1Yb+Kq/fMbLuv3YYDYbiQrwr39ljuD4k9fPeq4yUyokYRo2RaNQmbbIMWB/9+w==}
/@vueuse/metadata@9.13.0:
resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==}
dev: true
- /@vueuse/motion@2.0.0(rollup@2.79.1)(vue@3.4.19):
- resolution: {integrity: sha512-V3TAlbt1OPmb9DZFoFCz9WC3Oue54t9VHlavSWm+VU1JNimYcd+pc6aGR/hgaHUAU9tOPRHoDTleSrv2zrdIsw==}
+ /@vueuse/motion@2.1.0(rollup@4.6.0)(vue@3.4.19):
+ resolution: {integrity: sha512-n8RtzTQa22kt2OPOQxjHteD+3rnjoAqCd6xiYdQMgFW4HcYMSdemiKcUwRx+hVUFe0zOyLDaTrySYVcHb5HgHA==}
peerDependencies:
vue: ^3.4.19
dependencies:
- '@vueuse/core': 10.2.1(vue@3.4.19)
- '@vueuse/shared': 10.2.1(vue@3.4.19)
- csstype: 3.1.2
+ '@vueuse/core': 10.8.0(vue@3.4.19)
+ '@vueuse/shared': 10.8.0(vue@3.4.19)
+ csstype: 3.1.3
framesync: 6.1.2
popmotion: 11.0.5
style-value-types: 5.1.2
- vue: 3.4.19(typescript@5.1.6)
+ vue: 3.4.19(typescript@5.3.3)
optionalDependencies:
- '@nuxt/kit': 3.8.2(rollup@2.79.1)
+ '@nuxt/kit': 3.10.3(rollup@4.6.0)
transitivePeerDependencies:
- '@vue/composition-api'
- rollup
- supports-color
dev: false
- /@vueuse/nuxt@10.2.1(nuxt@3.8.2)(rollup@2.79.1)(vue@3.4.19):
- resolution: {integrity: sha512-01iDXnjZFDaGZnEL0nvlmSTNV0EG6WY+VSFyWnBji9lbxdQwOn4DHvLou3ePe8ipaoQVtY58WcL0OHIFa4+fBA==}
+ /@vueuse/nuxt@10.8.0(nuxt@3.10.3)(rollup@3.29.4)(vue@3.4.19):
+ resolution: {integrity: sha512-7b1S52exryoJoAgwH/4GRjtCjr7j8Fc5/H/orAt1DxZuiOGYEOCo7zaoM6twiURSzyiBiUemdvaRJqYzV37W6A==}
peerDependencies:
nuxt: ^3.0.0
dependencies:
- '@nuxt/kit': 3.8.2(rollup@2.79.1)
- '@vueuse/core': 10.2.1(vue@3.4.19)
- '@vueuse/metadata': 10.2.1
- local-pkg: 0.4.3
- nuxt: 3.8.2(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@2.79.1)(typescript@5.1.6)(vite@4.5.0)(vue-tsc@1.8.8)
- vue-demi: 0.14.5(vue@3.4.19)
- transitivePeerDependencies:
- - '@vue/composition-api'
- - rollup
- - supports-color
- - vue
- dev: false
-
- /@vueuse/nuxt@10.2.1(nuxt@3.8.2)(rollup@3.29.4)(vue@3.4.19):
- resolution: {integrity: sha512-01iDXnjZFDaGZnEL0nvlmSTNV0EG6WY+VSFyWnBji9lbxdQwOn4DHvLou3ePe8ipaoQVtY58WcL0OHIFa4+fBA==}
- peerDependencies:
- nuxt: ^3.0.0
- dependencies:
- '@nuxt/kit': 3.8.2(rollup@3.29.4)
- '@vueuse/core': 10.2.1(vue@3.4.19)
- '@vueuse/metadata': 10.2.1
- local-pkg: 0.4.3
- nuxt: 3.8.2(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@3.29.4)(typescript@5.1.6)(vite@4.5.0)(vue-tsc@1.8.8)
- vue-demi: 0.14.5(vue@3.4.19)
+ '@nuxt/kit': 3.10.3(rollup@3.29.4)
+ '@vueuse/core': 10.8.0(vue@3.4.19)
+ '@vueuse/metadata': 10.8.0
+ local-pkg: 0.5.0
+ nuxt: 3.10.3(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@3.29.4)(typescript@5.3.3)(vite@5.1.4)(vue-tsc@1.8.27)
+ vue-demi: 0.14.7(vue@3.4.19)
transitivePeerDependencies:
- '@vue/composition-api'
- rollup
@@ -6130,10 +6115,28 @@ packages:
- vue
dev: true
- /@vueuse/shared@10.2.1(vue@3.4.19):
- resolution: {integrity: sha512-QWHq2bSuGptkcxx4f4M/fBYC3Y8d3M2UYyLsyzoPgEoVzJURQ0oJeWXu79OiLlBb8gTKkqe4mO85T/sf39mmiw==}
+ /@vueuse/nuxt@10.8.0(nuxt@3.10.3)(rollup@4.6.0)(vue@3.4.19):
+ resolution: {integrity: sha512-7b1S52exryoJoAgwH/4GRjtCjr7j8Fc5/H/orAt1DxZuiOGYEOCo7zaoM6twiURSzyiBiUemdvaRJqYzV37W6A==}
+ peerDependencies:
+ nuxt: ^3.0.0
dependencies:
- vue-demi: 0.14.5(vue@3.4.19)
+ '@nuxt/kit': 3.10.3(rollup@4.6.0)
+ '@vueuse/core': 10.8.0(vue@3.4.19)
+ '@vueuse/metadata': 10.8.0
+ local-pkg: 0.5.0
+ nuxt: 3.10.3(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@4.6.0)(typescript@5.3.3)(vite@5.1.4)(vue-tsc@1.8.27)
+ vue-demi: 0.14.7(vue@3.4.19)
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - rollup
+ - supports-color
+ - vue
+ dev: false
+
+ /@vueuse/shared@10.8.0(vue@3.4.19):
+ resolution: {integrity: sha512-dUdy6zwHhULGxmr9YUg8e+EnB39gcM4Fe2oKBSrh3cOsV30JcMPtsyuspgFCUo5xxFNaeMf/W2yyKfST7Bg8oQ==}
+ dependencies:
+ vue-demi: 0.14.7(vue@3.4.19)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -6141,7 +6144,7 @@ packages:
/@vueuse/shared@9.13.0(vue@3.4.19):
resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==}
dependencies:
- vue-demi: 0.14.5(vue@3.4.19)
+ vue-demi: 0.14.7(vue@3.4.19)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -6264,41 +6267,27 @@ packages:
/abbrev@1.1.1:
resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
- /acorn-import-assertions@1.9.0(acorn@8.11.2):
+ /acorn-import-assertions@1.9.0(acorn@8.11.3):
resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==}
peerDependencies:
acorn: ^8
dependencies:
- acorn: 8.11.2
+ acorn: 8.11.3
dev: false
- /acorn-jsx@5.3.2(acorn@7.4.1):
+ /acorn-jsx@5.3.2(acorn@8.11.3):
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- acorn: 7.4.1
- dev: false
-
- /acorn-jsx@5.3.2(acorn@8.11.2):
- resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
- peerDependencies:
- acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- dependencies:
- acorn: 8.11.2
+ acorn: 8.11.3
/acorn-walk@8.3.2:
resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
engines: {node: '>=0.4.0'}
- /acorn@7.4.1:
- resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
- engines: {node: '>=0.4.0'}
- hasBin: true
- dev: false
-
- /acorn@8.11.2:
- resolution: {integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==}
+ /acorn@8.11.3:
+ resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -6406,6 +6395,10 @@ packages:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
engines: {node: '>=12'}
+ /any-promise@1.3.0:
+ resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
+ dev: false
+
/anymatch@3.1.3:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
@@ -6416,9 +6409,6 @@ packages:
/aproba@2.0.0:
resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==}
- /arch@2.2.0:
- resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==}
-
/archiver-utils@4.0.1:
resolution: {integrity: sha512-Q4Q99idbvzmgCTEAAhi32BkOyq8iVI5EwdO0PmBDSGIzzjYNdcFn7Q7k3OzbLy4kLUPXfJtG6fO2RjftXbobBg==}
engines: {node: '>= 12.0.0'}
@@ -6488,45 +6478,35 @@ packages:
/assertion-error@1.1.0:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
- /ast-kit@0.10.0(rollup@2.79.1):
+ /ast-kit@0.10.0(rollup@4.6.0):
resolution: {integrity: sha512-8y01XClpURgvxTJmM4AY2oHa1B/6iysALB9yJM1j4ak3Z2ZsnU0ewjDZzqOHdbNdit6hC0DGZNrBqNuCrv51fQ==}
engines: {node: '>=16.14.0'}
dependencies:
- '@babel/parser': 7.23.5
- '@rollup/pluginutils': 5.1.0(rollup@2.79.1)
- pathe: 1.1.1
+ '@babel/parser': 7.23.9
+ '@rollup/pluginutils': 5.1.0(rollup@4.6.0)
+ pathe: 1.1.2
transitivePeerDependencies:
- rollup
dev: false
- /ast-kit@0.11.2(rollup@2.79.1):
- resolution: {integrity: sha512-Q0DjXK4ApbVoIf9GLyCo252tUH44iTnD/hiJ2TQaJeydYWSpKk0sI34+WMel8S9Wt5pbLgG02oJ+gkgX5DV3sQ==}
- engines: {node: '>=16.14.0'}
- dependencies:
- '@babel/parser': 7.23.5
- '@rollup/pluginutils': 5.1.0(rollup@2.79.1)
- pathe: 1.1.1
- transitivePeerDependencies:
- - rollup
-
/ast-kit@0.11.2(rollup@3.29.4):
resolution: {integrity: sha512-Q0DjXK4ApbVoIf9GLyCo252tUH44iTnD/hiJ2TQaJeydYWSpKk0sI34+WMel8S9Wt5pbLgG02oJ+gkgX5DV3sQ==}
engines: {node: '>=16.14.0'}
dependencies:
- '@babel/parser': 7.23.5
+ '@babel/parser': 7.23.9
'@rollup/pluginutils': 5.1.0(rollup@3.29.4)
- pathe: 1.1.1
+ pathe: 1.1.2
transitivePeerDependencies:
- rollup
dev: true
- /ast-kit@0.9.5(rollup@2.79.1):
- resolution: {integrity: sha512-kbL7ERlqjXubdDd+szuwdlQ1xUxEz9mCz1+m07ftNVStgwRb2RWw+U6oKo08PAvOishMxiqz1mlJyLl8yQx2Qg==}
+ /ast-kit@0.11.2(rollup@4.6.0):
+ resolution: {integrity: sha512-Q0DjXK4ApbVoIf9GLyCo252tUH44iTnD/hiJ2TQaJeydYWSpKk0sI34+WMel8S9Wt5pbLgG02oJ+gkgX5DV3sQ==}
engines: {node: '>=16.14.0'}
dependencies:
- '@babel/parser': 7.23.5
- '@rollup/pluginutils': 5.1.0(rollup@2.79.1)
- pathe: 1.1.1
+ '@babel/parser': 7.23.9
+ '@rollup/pluginutils': 5.1.0(rollup@4.6.0)
+ pathe: 1.1.2
transitivePeerDependencies:
- rollup
@@ -6534,9 +6514,19 @@ packages:
resolution: {integrity: sha512-kbL7ERlqjXubdDd+szuwdlQ1xUxEz9mCz1+m07ftNVStgwRb2RWw+U6oKo08PAvOishMxiqz1mlJyLl8yQx2Qg==}
engines: {node: '>=16.14.0'}
dependencies:
- '@babel/parser': 7.23.5
+ '@babel/parser': 7.23.9
'@rollup/pluginutils': 5.1.0(rollup@3.29.4)
- pathe: 1.1.1
+ pathe: 1.1.2
+ transitivePeerDependencies:
+ - rollup
+
+ /ast-kit@0.9.5(rollup@4.6.0):
+ resolution: {integrity: sha512-kbL7ERlqjXubdDd+szuwdlQ1xUxEz9mCz1+m07ftNVStgwRb2RWw+U6oKo08PAvOishMxiqz1mlJyLl8yQx2Qg==}
+ engines: {node: '>=16.14.0'}
+ dependencies:
+ '@babel/parser': 7.23.9
+ '@rollup/pluginutils': 5.1.0(rollup@4.6.0)
+ pathe: 1.1.2
transitivePeerDependencies:
- rollup
@@ -6547,25 +6537,25 @@ packages:
tslib: 2.6.0
dev: true
- /ast-walker-scope@0.5.0(rollup@2.79.1):
- resolution: {integrity: sha512-NsyHMxBh4dmdEHjBo1/TBZvCKxffmZxRYhmclfu0PP6Aftre47jOHYaYaNqJcV0bxihxFXhDkzLHUwHc0ocd0Q==}
- engines: {node: '>=16.14.0'}
- dependencies:
- '@babel/parser': 7.23.5
- ast-kit: 0.9.5(rollup@2.79.1)
- transitivePeerDependencies:
- - rollup
-
/ast-walker-scope@0.5.0(rollup@3.29.4):
resolution: {integrity: sha512-NsyHMxBh4dmdEHjBo1/TBZvCKxffmZxRYhmclfu0PP6Aftre47jOHYaYaNqJcV0bxihxFXhDkzLHUwHc0ocd0Q==}
engines: {node: '>=16.14.0'}
dependencies:
- '@babel/parser': 7.23.5
+ '@babel/parser': 7.23.9
ast-kit: 0.9.5(rollup@3.29.4)
transitivePeerDependencies:
- rollup
dev: true
+ /ast-walker-scope@0.5.0(rollup@4.6.0):
+ resolution: {integrity: sha512-NsyHMxBh4dmdEHjBo1/TBZvCKxffmZxRYhmclfu0PP6Aftre47jOHYaYaNqJcV0bxihxFXhDkzLHUwHc0ocd0Q==}
+ engines: {node: '>=16.14.0'}
+ dependencies:
+ '@babel/parser': 7.23.9
+ ast-kit: 0.9.5(rollup@4.6.0)
+ transitivePeerDependencies:
+ - rollup
+
/async-sema@3.1.1:
resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==}
@@ -6581,19 +6571,19 @@ packages:
engines: {node: '>= 4.0.0'}
dev: false
- /autoprefixer@10.4.16(postcss@8.4.32):
- resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==}
+ /autoprefixer@10.4.17(postcss@8.4.35):
+ resolution: {integrity: sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.22.1
- caniuse-lite: 1.0.30001550
- fraction.js: 4.3.6
+ browserslist: 4.23.0
+ caniuse-lite: 1.0.30001589
+ fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.32
+ postcss: 8.4.35
postcss-value-parser: 4.2.0
/available-typed-arrays@1.0.5:
@@ -6603,48 +6593,49 @@ packages:
/b4a@1.6.4:
resolution: {integrity: sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==}
- /babel-merge@3.0.0(@babel/core@7.23.5):
+ /babel-merge@3.0.0(@babel/core@7.23.9):
resolution: {integrity: sha512-eBOBtHnzt9xvnjpYNI5HmaPp/b2vMveE5XggzqHnQeHJ8mFIBrBv6WZEVIj5jJ2uwTItkqKo9gWzEEcBxEq0yw==}
+ deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.23.9
deepmerge: 2.2.1
object.omit: 3.0.0
dev: false
- /babel-plugin-polyfill-corejs2@0.4.3(@babel/core@7.23.5):
+ /babel-plugin-polyfill-corejs2@0.4.3(@babel/core@7.23.9):
resolution: {integrity: sha512-bM3gHc337Dta490gg+/AseNB9L4YLHxq1nGKZZSHbhXv4aTYU2MD2cjza1Ru4S6975YLTaL1K8uJf6ukJhhmtw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.23.5
- '@babel/helper-define-polyfill-provider': 0.4.0(@babel/core@7.23.5)
+ '@babel/compat-data': 7.23.5
+ '@babel/core': 7.23.9
+ '@babel/helper-define-polyfill-provider': 0.4.0(@babel/core@7.23.9)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: false
- /babel-plugin-polyfill-corejs3@0.8.1(@babel/core@7.23.5):
+ /babel-plugin-polyfill-corejs3@0.8.1(@babel/core@7.23.9):
resolution: {integrity: sha512-ikFrZITKg1xH6pLND8zT14UPgjKHiGLqex7rGEZCH2EvhsneJaJPemmpQaIZV5AL03II+lXylw3UmddDK8RU5Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-define-polyfill-provider': 0.4.0(@babel/core@7.23.5)
+ '@babel/core': 7.23.9
+ '@babel/helper-define-polyfill-provider': 0.4.0(@babel/core@7.23.9)
core-js-compat: 3.31.0
transitivePeerDependencies:
- supports-color
dev: false
- /babel-plugin-polyfill-regenerator@0.5.0(@babel/core@7.23.5):
+ /babel-plugin-polyfill-regenerator@0.5.0(@babel/core@7.23.9):
resolution: {integrity: sha512-hDJtKjMLVa7Z+LwnTCxoDLQj6wdc+B8dun7ayF2fYieI6OzfuvcLMB32ihJZ4UhCBwNYGl5bg/x/P9cMdnkc2g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-define-polyfill-provider': 0.4.0(@babel/core@7.23.5)
+ '@babel/core': 7.23.9
+ '@babel/helper-define-polyfill-provider': 0.4.0(@babel/core@7.23.9)
transitivePeerDependencies:
- supports-color
dev: false
@@ -6667,10 +6658,6 @@ packages:
safe-buffer: 5.1.2
dev: false
- /big-integer@1.6.51:
- resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==}
- engines: {node: '>=0.6'}
-
/binary-extensions@2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
@@ -6698,12 +6685,6 @@ packages:
/boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
- /bplist-parser@0.2.0:
- resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==}
- engines: {node: '>= 5.10.0'}
- dependencies:
- big-integer: 1.6.51
-
/brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
dependencies:
@@ -6721,19 +6702,19 @@ packages:
dependencies:
fill-range: 7.0.1
- /browser-fs-access@0.34.1:
- resolution: {integrity: sha512-HPaRf2yimp8kWSuWJXc8Mi78dPbDzfduA+Gyq14H4jlMvd6XNfIRm36Y2yRLaa4x0gwcGuepj4zf14oiTlxrxQ==}
+ /browser-fs-access@0.35.0:
+ resolution: {integrity: sha512-sLoadumpRfsjprP8XzVjpQc0jK8yqHBx0PtUTGYj2fftT+P/t+uyDAQdMgGAPKD011in/O+YYGh7fIs0oG/viw==}
dev: false
- /browserslist@4.22.1:
- resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==}
+ /browserslist@4.23.0:
+ resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001550
- electron-to-chromium: 1.4.557
- node-releases: 2.0.13
- update-browserslist-db: 1.0.13(browserslist@4.22.1)
+ caniuse-lite: 1.0.30001589
+ electron-to-chromium: 1.4.681
+ node-releases: 2.0.14
+ update-browserslist-db: 1.0.13(browserslist@4.23.0)
/buffer-crc32@0.2.13:
resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
@@ -6755,7 +6736,7 @@ packages:
/builtins@5.0.1:
resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==}
dependencies:
- semver: 7.5.4
+ semver: 7.6.0
/bumpp@9.2.0:
resolution: {integrity: sha512-pgp7y3jp33QTaXFVDrE0IKuZF5Y8EsIz+ywZXFALW2nD+ZD+4crxJe/GypBQBoJuZrr5dc6TGrR3wl7fk3+C6w==}
@@ -6763,37 +6744,34 @@ packages:
hasBin: true
dependencies:
'@jsdevtools/ez-spawn': 3.0.4
- c12: 1.5.1
+ c12: 1.9.0
cac: 6.7.14
fast-glob: 3.3.2
prompts: 2.4.2
- semver: 7.5.4
- transitivePeerDependencies:
- - supports-color
+ semver: 7.6.0
dev: true
- /bundle-name@3.0.0:
- resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==}
- engines: {node: '>=12'}
+ /bundle-name@4.1.0:
+ resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
+ engines: {node: '>=18'}
dependencies:
- run-applescript: 5.0.0
+ run-applescript: 7.0.0
- /c12@1.5.1:
- resolution: {integrity: sha512-BWZRJgDEveT8uI+cliCwvYSSSSvb4xKoiiu5S0jaDbKBopQLQF7E+bq9xKk1pTcG+mUa3yXuFO7bD9d8Lr9Xxg==}
+ /c12@1.9.0:
+ resolution: {integrity: sha512-7KTCZXdIbOA2hLRQ+1KzJ15Qp9Wn58one74dkihMVp2H6EzKTa3OYBy0BSfS1CCcmxYyqeX8L02m40zjQ+dstg==}
dependencies:
- chokidar: 3.5.3
- defu: 6.1.3
- dotenv: 16.3.1
- giget: 1.1.3
+ chokidar: 3.6.0
+ confbox: 0.1.3
+ defu: 6.1.4
+ dotenv: 16.4.5
+ giget: 1.2.1
jiti: 1.21.0
- mlly: 1.4.2
+ mlly: 1.6.1
ohash: 1.1.3
- pathe: 1.1.1
+ pathe: 1.1.2
perfect-debounce: 1.0.0
pkg-types: 1.0.3
rc9: 2.1.1
- transitivePeerDependencies:
- - supports-color
/cac@6.7.14:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
@@ -6805,7 +6783,7 @@ packages:
dependencies:
'@npmcli/fs': 3.1.0
fs-minipass: 3.0.2
- glob: 10.3.1
+ glob: 10.3.10
lru-cache: 7.18.3
minipass: 5.0.0
minipass-collect: 1.0.2
@@ -6822,8 +6800,8 @@ packages:
dependencies:
'@npmcli/fs': 3.1.0
fs-minipass: 3.0.2
- glob: 10.3.1
- lru-cache: 10.0.1
+ glob: 10.3.10
+ lru-cache: 10.2.0
minipass: 7.0.4
minipass-collect: 1.0.2
minipass-flush: 1.0.5
@@ -6860,13 +6838,13 @@ packages:
/caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
- browserslist: 4.22.1
- caniuse-lite: 1.0.30001550
+ browserslist: 4.23.0
+ caniuse-lite: 1.0.30001589
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- /caniuse-lite@1.0.30001550:
- resolution: {integrity: sha512-p82WjBYIypO0ukTsd/FG3Xxs+4tFeaY9pfT4amQL8KWtYH7H9nYwReGAbMTJ0hsmRO8IfDtsS6p3ZWj8+1c2RQ==}
+ /caniuse-lite@1.0.30001589:
+ resolution: {integrity: sha512-vNQWS6kI+q6sBlHbh71IIeC+sRwK2N3EDySc/updIGhIee2x5z00J4c1242/5/d6EpEMdOnk/m+6tuk4/tcsqg==}
/capital-case@1.0.4:
resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
@@ -6935,7 +6913,6 @@ packages:
/char-regex@1.0.2:
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
engines: {node: '>=10'}
- dev: false
/char-regex@2.0.1:
resolution: {integrity: sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==}
@@ -6979,20 +6956,6 @@ packages:
dependencies:
get-func-name: 2.0.2
- /chokidar@3.5.3:
- resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
- engines: {node: '>= 8.10.0'}
- dependencies:
- anymatch: 3.1.3
- braces: 3.0.2
- glob-parent: 5.1.2
- is-binary-path: 2.1.0
- is-glob: 4.0.3
- normalize-path: 3.0.0
- readdirp: 3.6.0
- optionalDependencies:
- fsevents: 2.3.3
-
/chokidar@3.6.0:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
@@ -7006,7 +6969,6 @@ packages:
readdirp: 3.6.0
optionalDependencies:
fsevents: 2.3.3
- dev: false
/chownr@1.1.4:
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
@@ -7027,6 +6989,11 @@ packages:
/ci-info@3.8.0:
resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==}
engines: {node: '>=8'}
+ dev: true
+
+ /ci-info@4.0.0:
+ resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==}
+ engines: {node: '>=8'}
/citty@0.1.5:
resolution: {integrity: sha512-AS7n5NSc0OQVMV9v6wt3ByujNIrne0/cTjiC2MYqhvao57VNfiuVksTSr2p17nVOhEr2KtqiAkGwHcgMC/qUuQ==}
@@ -7066,13 +7033,13 @@ packages:
string-width: 5.1.2
dev: true
- /clipboardy@3.0.0:
- resolution: {integrity: sha512-Su+uU5sr1jkUy1sGRpLKjKrvEOVXgSgiSInwa/qeID6aJ07yh+5NWc3h2QfjHjBnfX4LhtFcuAWKUsJ3r+fjbg==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ /clipboardy@4.0.0:
+ resolution: {integrity: sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==}
+ engines: {node: '>=18'}
dependencies:
- arch: 2.2.0
- execa: 5.1.1
- is-wsl: 2.2.0
+ execa: 8.0.1
+ is-wsl: 3.1.0
+ is64bit: 2.0.0
/cliui@8.0.1:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
@@ -7153,6 +7120,11 @@ packages:
/commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
+ /commander@4.1.1:
+ resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
+ engines: {node: '>= 6'}
+ dev: false
+
/commander@7.2.0:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
@@ -7161,8 +7133,8 @@ packages:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
- /comment-parser@1.4.0:
- resolution: {integrity: sha512-QLyTNiZ2KDOibvFPlZ6ZngVsZ/0gYnE6uTXi5aoDg8ed3AkJAz4sEje3Y8a29hQ1s6A99MZXe47fLAXQ1rTqaw==}
+ /comment-parser@1.4.1:
+ resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==}
engines: {node: '>= 12.0.0'}
dev: true
@@ -7183,9 +7155,15 @@ packages:
normalize-path: 3.0.0
readable-stream: 3.6.2
+ /computeds@0.0.1:
+ resolution: {integrity: sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==}
+
/concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
+ /confbox@0.1.3:
+ resolution: {integrity: sha512-eH3ZxAihl1PhKfpr4VfEN6/vUd87fmgb6JkldHgg/YR6aEBhW63qUDgzP2Y6WM0UumdsYp5H3kibalXAdHfbgg==}
+
/config-chain@1.1.13:
resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
dependencies:
@@ -7213,17 +7191,13 @@ packages:
/convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
- /cookie-es@0.5.0:
- resolution: {integrity: sha512-RyZrFi6PNpBFbIaQjXDlFIhFVqV42QeKSZX1yQIl6ihImq6vcHNGMtqQ/QzY3RMPuYSkvsRwtnt5M9NeYxKt0g==}
- dev: false
-
/cookie-es@1.0.0:
resolution: {integrity: sha512-mWYvfOLrfEc996hlKcdABeIiPHUPC6DM2QYZdGGOvhOTbA3tjm2eBwqlJpoFdjC89NI4Qt6h0Pu06Mp+1Pj5OQ==}
/core-js-compat@3.31.0:
resolution: {integrity: sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==}
dependencies:
- browserslist: 4.22.1
+ browserslist: 4.23.0
dev: false
/core-util-is@1.0.3:
@@ -7256,6 +7230,9 @@ packages:
shebang-command: 2.0.0
which: 2.0.2
+ /crossws@0.1.1:
+ resolution: {integrity: sha512-c9c/o7bS3OjsdpSkvexpka0JNlesBF2JU9B2V1yNsYGwRbAafxhJQ7VI9b48D5bpONz/oxbPGMzBojy9sXoQIQ==}
+
/crypt@0.0.2:
resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==}
dev: false
@@ -7268,13 +7245,13 @@ packages:
engines: {node: '>=8'}
dev: false
- /css-declaration-sorter@6.4.0(postcss@8.4.32):
- resolution: {integrity: sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==}
- engines: {node: ^10 || ^12 || >=14}
+ /css-declaration-sorter@7.1.1(postcss@8.4.35):
+ resolution: {integrity: sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==}
+ engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.0.9
dependencies:
- postcss: 8.4.32
+ postcss: 8.4.35
/css-select@5.1.0:
resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
@@ -7315,60 +7292,60 @@ packages:
resolution: {integrity: sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==}
dev: false
- /cssnano-preset-default@6.0.1(postcss@8.4.32):
- resolution: {integrity: sha512-7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ==}
+ /cssnano-preset-default@6.0.5(postcss@8.4.35):
+ resolution: {integrity: sha512-M+qRDEr5QZrfNl0B2ySdbTLGyNb8kBcSjuwR7WBamYBOEREH9t2efnB/nblekqhdGLZdkf4oZNetykG2JWRdZQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- css-declaration-sorter: 6.4.0(postcss@8.4.32)
- cssnano-utils: 4.0.0(postcss@8.4.32)
- postcss: 8.4.32
- postcss-calc: 9.0.1(postcss@8.4.32)
- postcss-colormin: 6.0.0(postcss@8.4.32)
- postcss-convert-values: 6.0.0(postcss@8.4.32)
- postcss-discard-comments: 6.0.0(postcss@8.4.32)
- postcss-discard-duplicates: 6.0.0(postcss@8.4.32)
- postcss-discard-empty: 6.0.0(postcss@8.4.32)
- postcss-discard-overridden: 6.0.0(postcss@8.4.32)
- postcss-merge-longhand: 6.0.0(postcss@8.4.32)
- postcss-merge-rules: 6.0.1(postcss@8.4.32)
- postcss-minify-font-values: 6.0.0(postcss@8.4.32)
- postcss-minify-gradients: 6.0.0(postcss@8.4.32)
- postcss-minify-params: 6.0.0(postcss@8.4.32)
- postcss-minify-selectors: 6.0.0(postcss@8.4.32)
- postcss-normalize-charset: 6.0.0(postcss@8.4.32)
- postcss-normalize-display-values: 6.0.0(postcss@8.4.32)
- postcss-normalize-positions: 6.0.0(postcss@8.4.32)
- postcss-normalize-repeat-style: 6.0.0(postcss@8.4.32)
- postcss-normalize-string: 6.0.0(postcss@8.4.32)
- postcss-normalize-timing-functions: 6.0.0(postcss@8.4.32)
- postcss-normalize-unicode: 6.0.0(postcss@8.4.32)
- postcss-normalize-url: 6.0.0(postcss@8.4.32)
- postcss-normalize-whitespace: 6.0.0(postcss@8.4.32)
- postcss-ordered-values: 6.0.0(postcss@8.4.32)
- postcss-reduce-initial: 6.0.0(postcss@8.4.32)
- postcss-reduce-transforms: 6.0.0(postcss@8.4.32)
- postcss-svgo: 6.0.0(postcss@8.4.32)
- postcss-unique-selectors: 6.0.0(postcss@8.4.32)
+ css-declaration-sorter: 7.1.1(postcss@8.4.35)
+ cssnano-utils: 4.0.1(postcss@8.4.35)
+ postcss: 8.4.35
+ postcss-calc: 9.0.1(postcss@8.4.35)
+ postcss-colormin: 6.0.3(postcss@8.4.35)
+ postcss-convert-values: 6.0.4(postcss@8.4.35)
+ postcss-discard-comments: 6.0.1(postcss@8.4.35)
+ postcss-discard-duplicates: 6.0.2(postcss@8.4.35)
+ postcss-discard-empty: 6.0.2(postcss@8.4.35)
+ postcss-discard-overridden: 6.0.1(postcss@8.4.35)
+ postcss-merge-longhand: 6.0.3(postcss@8.4.35)
+ postcss-merge-rules: 6.0.4(postcss@8.4.35)
+ postcss-minify-font-values: 6.0.2(postcss@8.4.35)
+ postcss-minify-gradients: 6.0.2(postcss@8.4.35)
+ postcss-minify-params: 6.0.3(postcss@8.4.35)
+ postcss-minify-selectors: 6.0.2(postcss@8.4.35)
+ postcss-normalize-charset: 6.0.1(postcss@8.4.35)
+ postcss-normalize-display-values: 6.0.1(postcss@8.4.35)
+ postcss-normalize-positions: 6.0.1(postcss@8.4.35)
+ postcss-normalize-repeat-style: 6.0.1(postcss@8.4.35)
+ postcss-normalize-string: 6.0.1(postcss@8.4.35)
+ postcss-normalize-timing-functions: 6.0.1(postcss@8.4.35)
+ postcss-normalize-unicode: 6.0.3(postcss@8.4.35)
+ postcss-normalize-url: 6.0.1(postcss@8.4.35)
+ postcss-normalize-whitespace: 6.0.1(postcss@8.4.35)
+ postcss-ordered-values: 6.0.1(postcss@8.4.35)
+ postcss-reduce-initial: 6.0.3(postcss@8.4.35)
+ postcss-reduce-transforms: 6.0.1(postcss@8.4.35)
+ postcss-svgo: 6.0.2(postcss@8.4.35)
+ postcss-unique-selectors: 6.0.2(postcss@8.4.35)
- /cssnano-utils@4.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==}
+ /cssnano-utils@4.0.1(postcss@8.4.35):
+ resolution: {integrity: sha512-6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- postcss: 8.4.32
+ postcss: 8.4.35
- /cssnano@6.0.1(postcss@8.4.32):
- resolution: {integrity: sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg==}
+ /cssnano@6.0.5(postcss@8.4.35):
+ resolution: {integrity: sha512-tpTp/ukgrElwu3ESFY4IvWnGn8eTt8cJhC2aAbtA3lvUlxp6t6UPv8YCLjNnEGiFreT1O0LiOM1U3QyTBVFl2A==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- cssnano-preset-default: 6.0.1(postcss@8.4.32)
- lilconfig: 2.1.0
- postcss: 8.4.32
+ cssnano-preset-default: 6.0.5(postcss@8.4.35)
+ lilconfig: 3.1.1
+ postcss: 8.4.35
/csso@5.0.5:
resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==}
@@ -7376,9 +7353,6 @@ packages:
dependencies:
css-tree: 2.2.1
- /csstype@3.1.2:
- resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
-
/csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
@@ -7478,21 +7452,16 @@ packages:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
- /default-browser-id@3.0.0:
- resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==}
- engines: {node: '>=12'}
- dependencies:
- bplist-parser: 0.2.0
- untildify: 4.0.0
+ /default-browser-id@5.0.0:
+ resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==}
+ engines: {node: '>=18'}
- /default-browser@4.0.0:
- resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==}
- engines: {node: '>=14.16'}
+ /default-browser@5.2.1:
+ resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==}
+ engines: {node: '>=18'}
dependencies:
- bundle-name: 3.0.0
- default-browser-id: 3.0.0
- execa: 7.2.0
- titleize: 3.0.0
+ bundle-name: 4.1.0
+ default-browser-id: 5.0.0
/define-lazy-prop@2.0.0:
resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
@@ -7509,8 +7478,8 @@ packages:
has-property-descriptors: 1.0.0
object-keys: 1.1.1
- /defu@6.1.3:
- resolution: {integrity: sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==}
+ /defu@6.1.4:
+ resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
/delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
@@ -7533,8 +7502,8 @@ packages:
engines: {node: '>=6'}
dev: true
- /destr@2.0.2:
- resolution: {integrity: sha512-65AlobnZMiCET00KaFFjUefxDX0khFA/E4myqZ7a6Sq1yZtR8+FVIvilVX66vF2uobSumxooYZChiRPCKNqhmg==}
+ /destr@2.0.3:
+ resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==}
/destroy@1.2.0:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
@@ -7556,6 +7525,12 @@ packages:
/devalue@4.3.2:
resolution: {integrity: sha512-KqFl6pOgOW+Y6wJgu80rHpo2/3H07vr8ntR9rkkFIRETewbf5GaYYcakYfiKz89K+sLsuPkQIZaXDMjUObZwWg==}
+ /devlop@1.1.0:
+ resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
+ dependencies:
+ dequal: 2.0.3
+ dev: true
+
/diff-sequences@29.6.3:
resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7619,8 +7594,8 @@ packages:
dependencies:
type-fest: 3.13.1
- /dotenv@16.3.1:
- resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==}
+ /dotenv@16.4.5:
+ resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
engines: {node: '>=12'}
/duplexer@0.1.2:
@@ -7641,7 +7616,7 @@ packages:
'@one-ini/wasm': 0.1.1
commander: 10.0.1
minimatch: 9.0.1
- semver: 7.5.4
+ semver: 7.6.0
/ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
@@ -7654,8 +7629,8 @@ packages:
jake: 10.8.7
dev: false
- /electron-to-chromium@1.4.557:
- resolution: {integrity: sha512-6x0zsxyMXpnMJnHrondrD3SuAeKcwij9S+83j2qHAQPXbGTDDfgImzzwgGlzrIcXbHQ42tkG4qA6U860cImNhw==}
+ /electron-to-chromium@1.4.681:
+ resolution: {integrity: sha512-1PpuqJUFWoXZ1E54m8bsLPVYwIVCRzvaL+n5cjigGga4z854abDnFRc+cTa2th4S79kyGqya/1xoR7h+Y5G5lg==}
/emoji-mart@5.5.2:
resolution: {integrity: sha512-Sqc/nso4cjxhOwWJsp9xkVm8OF5c+mJLZJFoFfzRuKO+yWiN7K8c96xmtughYb0d/fZ8UC6cLIQ/p4BR6Pv3/A==}
@@ -7669,7 +7644,6 @@ packages:
/emojilib@2.4.0:
resolution: {integrity: sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==}
- dev: false
/emoticon@4.0.1:
resolution: {integrity: sha512-dqx7eA9YaqyvYtUhJwT4rC1HIp82j5ybS1/vQ42ur+jBe17dJMwZE4+gvL1XadSFfxaPFFGt3Xsw+Y8akThDlw==}
@@ -7692,12 +7666,12 @@ packages:
once: 1.4.0
dev: true
- /engine.io-client@6.5.1:
- resolution: {integrity: sha512-hE5wKXH8Ru4L19MbM1GgYV/2Qo54JSMh1rlJbfpa40bEWkCKNo3ol2eOtGmowcr+ysgbI7+SGL+by42Q3pt/Ng==}
+ /engine.io-client@6.5.3:
+ resolution: {integrity: sha512-9Z0qLB0NIisTRt1DZ/8U2k12RJn8yls/nXMZLn+/N8hANT3TcYjKFKcwbw5zFQiN4NTde3TSY9zb79e1ij6j9Q==}
dependencies:
'@socket.io/component-emitter': 3.1.0
debug: 4.3.4
- engine.io-parser: 5.1.0
+ engine.io-parser: 5.2.2
ws: 8.11.0
xmlhttprequest-ssl: 2.0.0
transitivePeerDependencies:
@@ -7706,8 +7680,8 @@ packages:
- utf-8-validate
dev: true
- /engine.io-parser@5.1.0:
- resolution: {integrity: sha512-enySgNiK5tyZFynt3z7iqBR+Bto9EVVVvDFuTT0ioHCGbzirZVGDGiQjZzEp8hWl6hd5FSVytJGuScX1C1C35w==}
+ /engine.io-parser@5.2.2:
+ resolution: {integrity: sha512-RcyUFKA93/CXH20l4SoVvzZfrSDMOTUS3bWVpTt2FuFP+XYrL8i8oonHP7WInRyVHXh0n/ORtoeiE1os+8qkSw==}
engines: {node: '>=10.0.0'}
dev: true
@@ -7839,63 +7813,65 @@ packages:
'@esbuild/win32-x64': 0.17.19
dev: true
- /esbuild@0.18.20:
- resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
+ /esbuild@0.19.12:
+ resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
- '@esbuild/android-arm': 0.18.20
- '@esbuild/android-arm64': 0.18.20
- '@esbuild/android-x64': 0.18.20
- '@esbuild/darwin-arm64': 0.18.20
- '@esbuild/darwin-x64': 0.18.20
- '@esbuild/freebsd-arm64': 0.18.20
- '@esbuild/freebsd-x64': 0.18.20
- '@esbuild/linux-arm': 0.18.20
- '@esbuild/linux-arm64': 0.18.20
- '@esbuild/linux-ia32': 0.18.20
- '@esbuild/linux-loong64': 0.18.20
- '@esbuild/linux-mips64el': 0.18.20
- '@esbuild/linux-ppc64': 0.18.20
- '@esbuild/linux-riscv64': 0.18.20
- '@esbuild/linux-s390x': 0.18.20
- '@esbuild/linux-x64': 0.18.20
- '@esbuild/netbsd-x64': 0.18.20
- '@esbuild/openbsd-x64': 0.18.20
- '@esbuild/sunos-x64': 0.18.20
- '@esbuild/win32-arm64': 0.18.20
- '@esbuild/win32-ia32': 0.18.20
- '@esbuild/win32-x64': 0.18.20
+ '@esbuild/aix-ppc64': 0.19.12
+ '@esbuild/android-arm': 0.19.12
+ '@esbuild/android-arm64': 0.19.12
+ '@esbuild/android-x64': 0.19.12
+ '@esbuild/darwin-arm64': 0.19.12
+ '@esbuild/darwin-x64': 0.19.12
+ '@esbuild/freebsd-arm64': 0.19.12
+ '@esbuild/freebsd-x64': 0.19.12
+ '@esbuild/linux-arm': 0.19.12
+ '@esbuild/linux-arm64': 0.19.12
+ '@esbuild/linux-ia32': 0.19.12
+ '@esbuild/linux-loong64': 0.19.12
+ '@esbuild/linux-mips64el': 0.19.12
+ '@esbuild/linux-ppc64': 0.19.12
+ '@esbuild/linux-riscv64': 0.19.12
+ '@esbuild/linux-s390x': 0.19.12
+ '@esbuild/linux-x64': 0.19.12
+ '@esbuild/netbsd-x64': 0.19.12
+ '@esbuild/openbsd-x64': 0.19.12
+ '@esbuild/sunos-x64': 0.19.12
+ '@esbuild/win32-arm64': 0.19.12
+ '@esbuild/win32-ia32': 0.19.12
+ '@esbuild/win32-x64': 0.19.12
- /esbuild@0.19.8:
- resolution: {integrity: sha512-l7iffQpT2OrZfH2rXIp7/FkmaeZM0vxbxN9KfiCwGYuZqzMg/JdvX26R31Zxn/Pxvsrg3Y9N6XTcnknqDyyv4w==}
+ /esbuild@0.20.1:
+ resolution: {integrity: sha512-OJwEgrpWm/PCMsLVWXKqvcjme3bHNpOgN7Tb6cQnR5n0TPbQx1/Xrn7rqM+wn17bYeT6MGB5sn1Bh5YiGi70nA==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
- '@esbuild/android-arm': 0.19.8
- '@esbuild/android-arm64': 0.19.8
- '@esbuild/android-x64': 0.19.8
- '@esbuild/darwin-arm64': 0.19.8
- '@esbuild/darwin-x64': 0.19.8
- '@esbuild/freebsd-arm64': 0.19.8
- '@esbuild/freebsd-x64': 0.19.8
- '@esbuild/linux-arm': 0.19.8
- '@esbuild/linux-arm64': 0.19.8
- '@esbuild/linux-ia32': 0.19.8
- '@esbuild/linux-loong64': 0.19.8
- '@esbuild/linux-mips64el': 0.19.8
- '@esbuild/linux-ppc64': 0.19.8
- '@esbuild/linux-riscv64': 0.19.8
- '@esbuild/linux-s390x': 0.19.8
- '@esbuild/linux-x64': 0.19.8
- '@esbuild/netbsd-x64': 0.19.8
- '@esbuild/openbsd-x64': 0.19.8
- '@esbuild/sunos-x64': 0.19.8
- '@esbuild/win32-arm64': 0.19.8
- '@esbuild/win32-ia32': 0.19.8
- '@esbuild/win32-x64': 0.19.8
+ '@esbuild/aix-ppc64': 0.20.1
+ '@esbuild/android-arm': 0.20.1
+ '@esbuild/android-arm64': 0.20.1
+ '@esbuild/android-x64': 0.20.1
+ '@esbuild/darwin-arm64': 0.20.1
+ '@esbuild/darwin-x64': 0.20.1
+ '@esbuild/freebsd-arm64': 0.20.1
+ '@esbuild/freebsd-x64': 0.20.1
+ '@esbuild/linux-arm': 0.20.1
+ '@esbuild/linux-arm64': 0.20.1
+ '@esbuild/linux-ia32': 0.20.1
+ '@esbuild/linux-loong64': 0.20.1
+ '@esbuild/linux-mips64el': 0.20.1
+ '@esbuild/linux-ppc64': 0.20.1
+ '@esbuild/linux-riscv64': 0.20.1
+ '@esbuild/linux-s390x': 0.20.1
+ '@esbuild/linux-x64': 0.20.1
+ '@esbuild/netbsd-x64': 0.20.1
+ '@esbuild/openbsd-x64': 0.20.1
+ '@esbuild/sunos-x64': 0.20.1
+ '@esbuild/win32-arm64': 0.20.1
+ '@esbuild/win32-ia32': 0.20.1
+ '@esbuild/win32-x64': 0.20.1
/escalade@3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
@@ -7916,6 +7892,18 @@ packages:
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
engines: {node: '>=12'}
+ /escodegen@2.1.0:
+ resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==}
+ engines: {node: '>=6.0'}
+ hasBin: true
+ dependencies:
+ esprima: 4.0.1
+ estraverse: 5.3.0
+ esutils: 2.0.3
+ optionalDependencies:
+ source-map: 0.6.1
+ dev: false
+
/eslint-import-resolver-node@0.3.9:
resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
dependencies:
@@ -7926,7 +7914,7 @@ packages:
- supports-color
dev: true
- /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.7.0)(eslint-import-resolver-node@0.3.9)(eslint@8.49.0):
+ /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint@8.49.0):
resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
engines: {node: '>=4'}
peerDependencies:
@@ -7947,7 +7935,7 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 6.7.0(eslint@8.49.0)(typescript@5.1.6)
+ '@typescript-eslint/parser': 6.21.0(eslint@8.49.0)(typescript@5.3.3)
debug: 3.2.7
eslint: 8.49.0
eslint-import-resolver-node: 0.3.9
@@ -7955,10 +7943,10 @@ packages:
- supports-color
dev: true
- /eslint-plugin-antfu@0.41.3(eslint@8.49.0)(typescript@5.1.6):
- resolution: {integrity: sha512-gaYjQJkB6JI+an0MKPqzK5APdDXLlBT7/oIQY5Vaz/a27HaFSnqKyE6mEWsU7GoiEyaeze5PdaHt6JzfgDY00Q==}
+ /eslint-plugin-antfu@0.43.1(eslint@8.49.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-Nak+Qpy5qEK10dCXtVaabPTUmLBPLhsVKAFXAtxYGYRlY/SuuZUBhW2YIsLsixNROiICGuov8sN+eNOCC7Wb5g==}
dependencies:
- '@typescript-eslint/utils': 6.7.0(eslint@8.49.0)(typescript@5.1.6)
+ '@typescript-eslint/utils': 6.21.0(eslint@8.49.0)(typescript@5.3.3)
transitivePeerDependencies:
- eslint
- supports-color
@@ -7984,7 +7972,7 @@ packages:
dependencies:
escape-string-regexp: 1.0.5
eslint: 8.49.0
- ignore: 5.3.0
+ ignore: 5.3.1
dev: true
/eslint-plugin-html@7.1.0:
@@ -7993,7 +7981,7 @@ packages:
htmlparser2: 8.0.2
dev: true
- /eslint-plugin-i@2.28.1(@typescript-eslint/parser@6.7.0)(eslint@8.49.0):
+ /eslint-plugin-i@2.28.1(@typescript-eslint/parser@6.21.0)(eslint@8.49.0):
resolution: {integrity: sha512-a4oVt0j3ixNhGhvV4XF6NS7OWRFK2rrJ0Q5C4S2dSRb8FxZi31J0uUd5WJLL58wnVJ/OiQ1BxiXnFA4dWQO1Cg==}
engines: {node: '>=12'}
peerDependencies:
@@ -8003,12 +7991,12 @@ packages:
doctrine: 2.1.0
eslint: 8.49.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.7.0)(eslint-import-resolver-node@0.3.9)(eslint@8.49.0)
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint@8.49.0)
get-tsconfig: 4.7.2
is-glob: 4.0.3
minimatch: 3.1.2
resolve: 1.22.8
- semver: 7.5.4
+ semver: 7.6.0
transitivePeerDependencies:
- '@typescript-eslint/parser'
- eslint-import-resolver-typescript
@@ -8016,11 +8004,11 @@ packages:
- supports-color
dev: true
- /eslint-plugin-jest@27.2.3(@typescript-eslint/eslint-plugin@6.7.0)(eslint@8.49.0)(typescript@5.1.6):
- resolution: {integrity: sha512-sRLlSCpICzWuje66Gl9zvdF6mwD5X86I4u55hJyFBsxYOsBCmT5+kSUjf+fkFWVMMgpzNEupjW8WzUqi83hJAQ==}
+ /eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.49.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-QIT7FH7fNmd9n4se7FFKHbsLKGQiw885Ds6Y/sxKgCZ6natwCsXdgPOADnYVxN2QrRweF0FZWbJ6S7Rsn7llug==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
- '@typescript-eslint/eslint-plugin': ^5.0.0 || ^6.0.0
+ '@typescript-eslint/eslint-plugin': ^5.0.0 || ^6.0.0 || ^7.0.0
eslint: ^7.0.0 || ^8.0.0
jest: '*'
peerDependenciesMeta:
@@ -8029,30 +8017,30 @@ packages:
jest:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 6.7.0(@typescript-eslint/parser@6.7.0)(eslint@8.49.0)(typescript@5.1.6)
- '@typescript-eslint/utils': 5.61.0(eslint@8.49.0)(typescript@5.1.6)
+ '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.49.0)(typescript@5.3.3)
+ '@typescript-eslint/utils': 5.61.0(eslint@8.49.0)(typescript@5.3.3)
eslint: 8.49.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /eslint-plugin-jsdoc@46.6.0(eslint@8.49.0):
- resolution: {integrity: sha512-T/1gzsvnX45qABzyPEonEhFDttkTn7Igm/X89TXIkTLBOsNl2GYtyBqQPZGXZZ8J5VBzEhiCMvI2P2kXX4dnFw==}
+ /eslint-plugin-jsdoc@46.10.1(eslint@8.49.0):
+ resolution: {integrity: sha512-x8wxIpv00Y50NyweDUpa+58ffgSAI5sqe+zcZh33xphD0AVh+1kqr1ombaTRb7Fhpove1zfUuujlX9DWWBP5ag==}
engines: {node: '>=16'}
peerDependencies:
- eslint: ^7.0.0 || ^8.0.0
+ eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
dependencies:
- '@es-joy/jsdoccomment': 0.40.1
+ '@es-joy/jsdoccomment': 0.41.0
are-docs-informative: 0.0.2
- comment-parser: 1.4.0
+ comment-parser: 1.4.1
debug: 4.3.4
escape-string-regexp: 4.0.0
eslint: 8.49.0
esquery: 1.5.0
is-builtin-module: 3.2.1
- semver: 7.5.4
- spdx-expression-parse: 3.0.1
+ semver: 7.6.0
+ spdx-expression-parse: 4.0.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -8092,11 +8080,11 @@ packages:
eslint: 8.49.0
eslint-plugin-es-x: 7.1.0(eslint@8.49.0)
get-tsconfig: 4.7.2
- ignore: 5.3.0
+ ignore: 5.3.1
is-core-module: 2.13.0
minimatch: 3.1.2
resolve: 1.22.8
- semver: 7.5.4
+ semver: 7.6.0
dev: true
/eslint-plugin-no-only-tests@3.1.0:
@@ -8133,11 +8121,11 @@ packages:
read-pkg-up: 7.0.1
regexp-tree: 0.1.27
regjsparser: 0.10.0
- semver: 7.5.4
+ semver: 7.6.0
strip-indent: 3.0.0
dev: true
- /eslint-plugin-unused-imports@3.0.0(@typescript-eslint/eslint-plugin@6.7.0)(eslint@8.49.0):
+ /eslint-plugin-unused-imports@3.0.0(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.49.0):
resolution: {integrity: sha512-sduiswLJfZHeeBJ+MQaG+xYzSWdRXoSw61DpU13mzWumCkR0ufD0HmO4kdNokjrkluMHpj/7PJeN35pgbhW3kw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -8147,7 +8135,7 @@ packages:
'@typescript-eslint/eslint-plugin':
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 6.7.0(@typescript-eslint/parser@6.7.0)(eslint@8.49.0)(typescript@5.1.6)
+ '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.49.0)(typescript@5.3.3)
eslint: 8.49.0
eslint-rule-composer: 0.3.0
dev: true
@@ -8162,8 +8150,8 @@ packages:
eslint: 8.49.0
natural-compare: 1.4.0
nth-check: 2.1.1
- postcss-selector-parser: 6.0.13
- semver: 7.5.4
+ postcss-selector-parser: 6.0.15
+ semver: 7.6.0
vue-eslint-parser: 9.3.1(eslint@8.49.0)
xml-name-validator: 4.0.0
transitivePeerDependencies:
@@ -8204,18 +8192,6 @@ packages:
esrecurse: 4.3.0
estraverse: 5.3.0
- /eslint-utils@2.1.0:
- resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==}
- engines: {node: '>=6'}
- dependencies:
- eslint-visitor-keys: 1.3.0
- dev: false
-
- /eslint-visitor-keys@1.3.0:
- resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==}
- engines: {node: '>=4'}
- dev: false
-
/eslint-visitor-keys@3.4.3:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -8249,7 +8225,7 @@ packages:
glob-parent: 6.0.2
globals: 13.20.0
graphemer: 1.4.0
- ignore: 5.3.0
+ ignore: 5.3.1
imurmurhash: 0.1.4
is-glob: 4.0.3
is-path-inside: 3.0.3
@@ -8265,28 +8241,18 @@ packages:
transitivePeerDependencies:
- supports-color
- /espree@6.2.1:
- resolution: {integrity: sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==}
- engines: {node: '>=6.0.0'}
- dependencies:
- acorn: 7.4.1
- acorn-jsx: 5.3.2(acorn@7.4.1)
- eslint-visitor-keys: 1.3.0
- dev: false
-
/espree@9.6.1:
resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- acorn: 8.11.2
- acorn-jsx: 5.3.2(acorn@8.11.2)
+ acorn: 8.11.3
+ acorn-jsx: 5.3.2(acorn@8.11.3)
eslint-visitor-keys: 3.4.3
/esprima@4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
engines: {node: '>=4'}
hasBin: true
- dev: true
/esquery@1.5.0:
resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
@@ -8358,6 +8324,7 @@ packages:
onetime: 5.1.2
signal-exit: 3.0.7
strip-final-newline: 2.0.0
+ dev: false
/execa@7.2.0:
resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==}
@@ -8403,12 +8370,12 @@ packages:
resolution: {integrity: sha512-LyExtJWKxtgVzmgtEHyQtLFpw1KFhQphF9nTG8TpAIVkiI/xQ3FJh75tRFLYl4hkn7BNIIdLJInuDAavX35pMw==}
dependencies:
enhanced-resolve: 5.15.0
- mlly: 1.4.2
- pathe: 1.1.1
- ufo: 1.3.2
+ mlly: 1.6.1
+ pathe: 1.1.2
+ ufo: 1.4.0
- /fake-indexeddb@5.0.1:
- resolution: {integrity: sha512-vxybH29Owtc6khV/Usy47B1g+eKwyhFiX8nwpCC4td320jvwrKQDH6vNtcJZgUzVxmfsSIlHzLKQzT76JMCO7A==}
+ /fake-indexeddb@5.0.2:
+ resolution: {integrity: sha512-cB507r5T3D55DfclY01GLkninZLfU7HXV/mhVRTnTRm5k2u+fY7Fof2dBkr80p5t7G7dlA/G5dI87QiMdPpMCQ==}
engines: {node: '>=18'}
dev: false
@@ -8498,11 +8465,17 @@ packages:
resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
hasBin: true
+ /flat@6.0.1:
+ resolution: {integrity: sha512-/3FfIa8mbrg3xE7+wAhWeV+bd7L2Mof+xtZb5dRDKZ+wDvYJK4WDYeIOuOhre5Yv5aQObZrlbRmk3RTSiuQBtw==}
+ engines: {node: '>=18'}
+ hasBin: true
+ dev: true
+
/flatted@3.2.9:
resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
- /floating-vue@2.0.0-beta.24(vue@3.4.19):
- resolution: {integrity: sha512-URSzP6YXaF4u1oZ9XGL8Sn8puuM7ivp5jkOUrpy5Q1mfo9BfGppJOn+ierTmsSUfJEeHBae8KT7r5DeI3vQIEw==}
+ /floating-vue@5.2.2(vue@3.4.19):
+ resolution: {integrity: sha512-afW+h2CFafo+7Y9Lvw/xsqjaQlKLdJV7h1fCHfcYQ1C4SVMlu7OAekqWgu5d4SgvkBVU0pVpLlVsrSTBURFRkg==}
peerDependencies:
'@nuxt/kit': ^3.2.0
vue: ^3.4.19
@@ -8511,12 +8484,12 @@ packages:
optional: true
dependencies:
'@floating-ui/dom': 1.1.1
- vue: 3.4.19(typescript@5.1.6)
+ vue: 3.4.19(typescript@5.3.3)
vue-resize: 2.0.0-alpha.1(vue@3.4.19)
dev: false
- /focus-trap@7.5.2:
- resolution: {integrity: sha512-p6vGNNWLDGwJCiEjkSK6oERj/hEyI9ITsSwIUICBoKLlWiTWXJRfQibCwcoi50rTZdbi87qDtUlMCmQwsGSgPw==}
+ /focus-trap@7.5.4:
+ resolution: {integrity: sha512-N7kHdlgsO/v+iD/dMoJKtsSqs5Dz/dXZVebRgJw23LDk+jMi/974zyiOYDziY2JPp8xivq9BmUGwIJMiuSBi7w==}
dependencies:
tabbable: 6.2.0
@@ -8541,8 +8514,8 @@ packages:
mime-types: 2.1.35
dev: false
- /fraction.js@4.3.6:
- resolution: {integrity: sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg==}
+ /fraction.js@4.3.7:
+ resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
/framesync@6.1.2:
resolution: {integrity: sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==}
@@ -8669,8 +8642,8 @@ packages:
resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==}
dev: false
- /get-port-please@3.1.1:
- resolution: {integrity: sha512-3UBAyM3u4ZBVYDsxOQfJDxEa6XTbpBDrOjp4mf7ExFRt5BKs/QywQQiJsh2B+hxcZLSapWqCRvElUe8DnKcFHA==}
+ /get-port-please@3.1.2:
+ resolution: {integrity: sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==}
/get-stream@6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
@@ -8694,19 +8667,18 @@ packages:
resolve-pkg-maps: 1.0.0
dev: true
- /giget@1.1.3:
- resolution: {integrity: sha512-zHuCeqtfgqgDwvXlR84UNgnJDuUHQcNI5OqWqFxxuk2BshuKbYhJWdxBsEo4PvKqoGh23lUAIvBNpChMLv7/9Q==}
+ /giget@1.2.1:
+ resolution: {integrity: sha512-4VG22mopWtIeHwogGSy1FViXVo0YT+m6BrqZfz0JJFwbSsePsCdOzdLIIli5BtMp7Xe8f/o2OmBpQX2NBOC24g==}
hasBin: true
dependencies:
- colorette: 2.0.20
- defu: 6.1.3
- https-proxy-agent: 7.0.2
- mri: 1.2.0
- node-fetch-native: 1.4.1
- pathe: 1.1.1
+ citty: 0.1.5
+ consola: 3.2.3
+ defu: 6.1.4
+ node-fetch-native: 1.6.2
+ nypm: 0.3.6
+ ohash: 1.1.3
+ pathe: 1.1.2
tar: 6.2.0
- transitivePeerDependencies:
- - supports-color
/git-config-path@2.0.0:
resolution: {integrity: sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==}
@@ -8718,11 +8690,17 @@ packages:
is-ssh: 1.4.0
parse-url: 8.1.0
- /git-url-parse@13.1.0:
- resolution: {integrity: sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==}
+ /git-url-parse@13.1.1:
+ resolution: {integrity: sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==}
dependencies:
git-up: 7.0.0
+ /git-url-parse@14.0.0:
+ resolution: {integrity: sha512-NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ==}
+ dependencies:
+ git-up: 7.0.0
+ dev: true
+
/github-from-package@0.0.0:
resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
dev: true
@@ -8751,16 +8729,16 @@ packages:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
dev: false
- /glob@10.3.1:
- resolution: {integrity: sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==}
+ /glob@10.3.10:
+ resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
dependencies:
foreground-child: 3.1.1
- jackspeak: 2.2.1
+ jackspeak: 2.3.6
minimatch: 9.0.3
- minipass: 5.0.0
- path-scurry: 1.10.0
+ minipass: 7.0.4
+ path-scurry: 1.10.1
/glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
@@ -8812,7 +8790,7 @@ packages:
array-union: 2.1.0
dir-glob: 3.0.1
fast-glob: 3.3.2
- ignore: 5.3.0
+ ignore: 5.3.1
merge2: 1.4.1
slash: 3.0.0
dev: true
@@ -8823,18 +8801,18 @@ packages:
dependencies:
dir-glob: 3.0.1
fast-glob: 3.3.2
- ignore: 5.3.0
+ ignore: 5.3.1
merge2: 1.4.1
slash: 4.0.0
dev: true
- /globby@14.0.0:
- resolution: {integrity: sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==}
+ /globby@14.0.1:
+ resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==}
engines: {node: '>=18'}
dependencies:
- '@sindresorhus/merge-streams': 1.0.0
+ '@sindresorhus/merge-streams': 2.3.0
fast-glob: 3.3.2
- ignore: 5.3.0
+ ignore: 5.3.1
path-type: 5.0.0
slash: 5.1.0
unicorn-magic: 0.1.0
@@ -8863,17 +8841,18 @@ packages:
dependencies:
duplexer: 0.1.2
- /h3@1.9.0:
- resolution: {integrity: sha512-+F3ZqrNV/CFXXfZ2lXBINHi+rM4Xw3CDC5z2CDK3NMPocjonKipGLLDSkrqY9DOrioZNPTIdDMWfQKm//3X2DA==}
+ /h3@1.10.2:
+ resolution: {integrity: sha512-r1iNNcFGL4G9pL3lgYxwX0O2ZmqdKqhILAJsnlw5icn5I1QHnADM4TgVdYRtHUqy+NntVpHIEFwnw/XCbebICg==}
dependencies:
cookie-es: 1.0.0
- defu: 6.1.3
- destr: 2.0.2
+ defu: 6.1.4
+ destr: 2.0.3
iron-webcrypto: 1.0.0
+ ohash: 1.1.3
radix3: 1.1.0
- ufo: 1.3.2
+ ufo: 1.4.0
uncrypto: 0.1.3
- unenv: 1.8.0
+ unenv: 1.9.0
/happy-dom@10.5.2:
resolution: {integrity: sha512-dTA1cDcLOPIkAdykLd9Wo1k8Ly36Hh2OdKGkWEHWuAHb89KcVVRLSj1OFev7ir90xhRLSGCGrEdDvS6u9l13kg==}
@@ -8927,81 +8906,80 @@ packages:
/hash-sum@2.0.0:
resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==}
- /hast-util-from-parse5@7.1.2:
- resolution: {integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==}
+ /hast-util-from-parse5@8.0.1:
+ resolution: {integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==}
dependencies:
- '@types/hast': 2.3.4
- '@types/unist': 2.0.6
- hastscript: 7.2.0
- property-information: 6.2.0
- vfile: 5.3.7
- vfile-location: 4.1.0
+ '@types/hast': 3.0.4
+ '@types/unist': 3.0.2
+ devlop: 1.1.0
+ hastscript: 8.0.0
+ property-information: 6.4.1
+ vfile: 6.0.1
+ vfile-location: 5.0.2
web-namespaces: 2.0.1
dev: true
- /hast-util-has-property@2.0.1:
- resolution: {integrity: sha512-X2+RwZIMTMKpXUzlotatPzWj8bspCymtXH3cfG3iQKV+wPF53Vgaqxi/eLqGck0wKq1kS9nvoB1wchbCPEL8sg==}
+ /hast-util-heading-rank@3.0.0:
+ resolution: {integrity: sha512-EJKb8oMUXVHcWZTDepnr+WNbfnXKFNf9duMesmr4S8SXTJBJ9M4Yok08pu9vxdJwdlGRhVumk9mEhkEvKGifwA==}
+ dependencies:
+ '@types/hast': 3.0.4
dev: true
- /hast-util-heading-rank@2.1.1:
- resolution: {integrity: sha512-iAuRp+ESgJoRFJbSyaqsfvJDY6zzmFoEnL1gtz1+U8gKtGGj1p0CVlysuUAUjq95qlZESHINLThwJzNGmgGZxA==}
+ /hast-util-is-element@3.0.0:
+ resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==}
dependencies:
- '@types/hast': 2.3.4
+ '@types/hast': 3.0.4
dev: true
- /hast-util-is-element@2.1.3:
- resolution: {integrity: sha512-O1bKah6mhgEq2WtVMk+Ta5K7pPMqsBBlmzysLdcwKVrqzZQ0CHqUPiIVspNhAG1rvxpvJjtGee17XfauZYKqVA==}
+ /hast-util-parse-selector@4.0.0:
+ resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==}
dependencies:
- '@types/hast': 2.3.4
- '@types/unist': 2.0.6
+ '@types/hast': 3.0.4
dev: true
- /hast-util-parse-selector@3.1.1:
- resolution: {integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==}
+ /hast-util-raw@9.0.2:
+ resolution: {integrity: sha512-PldBy71wO9Uq1kyaMch9AHIghtQvIwxBUkv823pKmkTM3oV1JxtsTNYdevMxvUHqcnOAuO65JKU2+0NOxc2ksA==}
dependencies:
- '@types/hast': 2.3.4
- dev: true
-
- /hast-util-raw@7.2.3:
- resolution: {integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==}
- dependencies:
- '@types/hast': 2.3.4
- '@types/parse5': 6.0.3
- hast-util-from-parse5: 7.1.2
- hast-util-to-parse5: 7.1.0
- html-void-elements: 2.0.1
- parse5: 6.0.1
- unist-util-position: 4.0.4
- unist-util-visit: 4.1.2
- vfile: 5.3.7
+ '@types/hast': 3.0.4
+ '@types/unist': 3.0.2
+ '@ungap/structured-clone': 1.2.0
+ hast-util-from-parse5: 8.0.1
+ hast-util-to-parse5: 8.0.0
+ html-void-elements: 3.0.0
+ mdast-util-to-hast: 13.1.0
+ parse5: 7.1.2
+ unist-util-position: 5.0.0
+ unist-util-visit: 5.0.0
+ vfile: 6.0.1
web-namespaces: 2.0.1
zwitch: 2.0.4
dev: true
- /hast-util-to-parse5@7.1.0:
- resolution: {integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==}
+ /hast-util-to-parse5@8.0.0:
+ resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==}
dependencies:
- '@types/hast': 2.3.4
+ '@types/hast': 3.0.4
comma-separated-tokens: 2.0.3
- property-information: 6.2.0
+ devlop: 1.1.0
+ property-information: 6.4.1
space-separated-tokens: 2.0.2
web-namespaces: 2.0.1
zwitch: 2.0.4
dev: true
- /hast-util-to-string@2.0.0:
- resolution: {integrity: sha512-02AQ3vLhuH3FisaMM+i/9sm4OXGSq1UhOOCpTLLQtHdL3tZt7qil69r8M8iDkZYyC0HCFylcYoP+8IO7ddta1A==}
+ /hast-util-to-string@3.0.0:
+ resolution: {integrity: sha512-OGkAxX1Ua3cbcW6EJ5pT/tslVb90uViVkcJ4ZZIMW/R33DX/AkcJcRrPebPwJkHYwlDHXz4aIwvAAaAdtrACFA==}
dependencies:
- '@types/hast': 2.3.4
+ '@types/hast': 3.0.4
dev: true
- /hastscript@7.2.0:
- resolution: {integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==}
+ /hastscript@8.0.0:
+ resolution: {integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==}
dependencies:
- '@types/hast': 2.3.4
+ '@types/hast': 3.0.4
comma-separated-tokens: 2.0.3
- hast-util-parse-selector: 3.1.1
- property-information: 6.2.0
+ hast-util-parse-selector: 4.0.0
+ property-information: 6.4.1
space-separated-tokens: 2.0.2
dev: true
@@ -9030,14 +9008,14 @@ packages:
resolution: {integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- lru-cache: 10.0.1
+ lru-cache: 10.2.0
/html-tags@3.3.1:
resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
engines: {node: '>=8'}
- /html-void-elements@2.0.1:
- resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==}
+ /html-void-elements@3.0.0:
+ resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
dev: true
/htmlparser2@8.0.2:
@@ -9109,6 +9087,7 @@ packages:
/human-signals@2.1.0:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
+ dev: false
/human-signals@4.3.1:
resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
@@ -9155,8 +9134,8 @@ packages:
dependencies:
minimatch: 9.0.3
- /ignore@5.3.0:
- resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==}
+ /ignore@5.3.1:
+ resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
engines: {node: '>= 4'}
/image-meta@0.2.0:
@@ -9299,11 +9278,6 @@ packages:
resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
dev: false
- /is-buffer@2.0.5:
- resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
- engines: {node: '>=4'}
- dev: true
-
/is-builtin-module@3.2.1:
resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==}
engines: {node: '>=6'}
@@ -9497,6 +9471,7 @@ packages:
/is-stream@2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
+ dev: false
/is-stream@3.0.0:
resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
@@ -9538,6 +9513,18 @@ packages:
dependencies:
is-docker: 2.2.1
+ /is-wsl@3.1.0:
+ resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
+ engines: {node: '>=16'}
+ dependencies:
+ is-inside-container: 1.0.0
+
+ /is64bit@2.0.0:
+ resolution: {integrity: sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==}
+ engines: {node: '>=18'}
+ dependencies:
+ system-architecture: 0.1.0
+
/isarray@1.0.0:
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
@@ -9558,16 +9545,16 @@ packages:
engines: {node: '>=0.10.0'}
dev: false
- /isomorphic-ws@5.0.0(ws@8.15.1):
+ /isomorphic-ws@5.0.0(ws@8.16.0):
resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==}
peerDependencies:
ws: '*'
dependencies:
- ws: 8.15.1
+ ws: 8.16.0
dev: false
- /jackspeak@2.2.1:
- resolution: {integrity: sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==}
+ /jackspeak@2.3.6:
+ resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
engines: {node: '>=14'}
dependencies:
'@isaacs/cliui': 8.0.2
@@ -9617,11 +9604,6 @@ packages:
glob: 8.1.0
nopt: 6.0.0
- /js-cookie@3.0.5:
- resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==}
- engines: {node: '>=14'}
- dev: false
-
/js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
requiresBuild: true
@@ -9681,26 +9663,14 @@ packages:
engines: {node: '>=6'}
hasBin: true
- /jsonc-eslint-parser@1.4.1:
- resolution: {integrity: sha512-hXBrvsR1rdjmB2kQmUjf1rEIa+TqHBGMge8pwi++C+Si1ad7EjZrJcpgwym+QGK/pqTx+K7keFAtLlVNdLRJOg==}
- engines: {node: '>=8.10.0'}
- dependencies:
- acorn: 7.4.1
- eslint-utils: 2.1.0
- eslint-visitor-keys: 1.3.0
- espree: 6.2.1
- semver: 6.3.1
- dev: false
-
/jsonc-eslint-parser@2.3.0:
resolution: {integrity: sha512-9xZPKVYp9DxnM3sd1yAsh/d59iIaswDkai8oTxbursfKYbg/ibjX0IzFt35+VZ8iEW453TVTXztnRvYUQlAfUQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- acorn: 8.11.2
+ acorn: 8.11.3
eslint-visitor-keys: 3.4.3
espree: 9.6.1
- semver: 7.5.4
- dev: true
+ semver: 7.6.0
/jsonc-parser@3.2.0:
resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
@@ -9729,11 +9699,6 @@ packages:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
- /kleur@4.1.5:
- resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
- engines: {node: '>=6'}
- dev: true
-
/klona@2.0.6:
resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
@@ -9771,6 +9736,11 @@ packages:
/lilconfig@2.1.0:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
+ dev: true
+
+ /lilconfig@3.1.1:
+ resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==}
+ engines: {node: '>=14'}
/limiter@2.1.0:
resolution: {integrity: sha512-361TYz6iay6n+9KvUUImqdLuFigK+K79qrUtBsXhJTLdH4rIt/r1y8r1iozwh8KbZNpujbFTSh74mJ7bwbAMOw==}
@@ -9780,7 +9750,6 @@ packages:
/lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- dev: true
/linkify-it@4.0.1:
resolution: {integrity: sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==}
@@ -9808,26 +9777,27 @@ packages:
- supports-color
dev: true
- /listhen@1.5.5:
- resolution: {integrity: sha512-LXe8Xlyh3gnxdv4tSjTjscD1vpr/2PRpzq8YIaMJgyKzRG8wdISlWVWnGThJfHnlJ6hmLt2wq1yeeix0TEbuoA==}
+ /listhen@1.6.0:
+ resolution: {integrity: sha512-z0RcEXVX5oTpY1bO02SKoTU/kmZSrFSngNNzHRM6KICR17PTq7ANush6AE6ztGJwJD4RLpBrVHd9GnV51J7s3w==}
hasBin: true
dependencies:
- '@parcel/watcher': 2.3.0
- '@parcel/watcher-wasm': 2.3.0
+ '@parcel/watcher': 2.4.1
+ '@parcel/watcher-wasm': 2.4.0
citty: 0.1.5
- clipboardy: 3.0.0
+ clipboardy: 4.0.0
consola: 3.2.3
- defu: 6.1.3
- get-port-please: 3.1.1
- h3: 1.9.0
+ crossws: 0.1.1
+ defu: 6.1.4
+ get-port-please: 3.1.2
+ h3: 1.10.2
http-shutdown: 1.2.2
jiti: 1.21.0
- mlly: 1.4.2
+ mlly: 1.6.1
node-forge: 1.3.1
- pathe: 1.1.1
- std-env: 3.6.0
- ufo: 1.3.2
- untun: 0.1.2
+ pathe: 1.1.2
+ std-env: 3.7.0
+ ufo: 1.4.0
+ untun: 0.1.3
uqr: 0.1.2
/listr2@6.6.1:
@@ -9860,7 +9830,7 @@ packages:
resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==}
engines: {node: '>=14'}
dependencies:
- mlly: 1.4.2
+ mlly: 1.6.1
pkg-types: 1.0.3
/locate-path@5.0.0:
@@ -9888,6 +9858,7 @@ packages:
/lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
+ dev: false
/lodash.defaults@4.2.0:
resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==}
@@ -9901,9 +9872,6 @@ packages:
/lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
- /lodash.pick@4.4.0:
- resolution: {integrity: sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==}
-
/lodash.sortby@4.7.0:
resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
dev: false
@@ -9950,8 +9918,8 @@ packages:
dependencies:
tslib: 2.6.0
- /lru-cache@10.0.1:
- resolution: {integrity: sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==}
+ /lru-cache@10.2.0:
+ resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==}
engines: {node: 14 || >=16.14}
/lru-cache@5.1.1:
@@ -9973,7 +9941,7 @@ packages:
resolution: {integrity: sha512-0shqecEPgdFpnI3AP90epXyxZy9g6CRZ+SZ7BcqFwYmtFEnZ1jpevcV5HoyVnlDS9gCnc1UIg3Rsvp3Ci7r8OA==}
engines: {node: '>=16.14.0'}
dependencies:
- magic-string: 0.30.5
+ magic-string: 0.30.7
/magic-string@0.25.9:
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
@@ -9986,12 +9954,7 @@ packages:
engines: {node: '>=12'}
dependencies:
'@jridgewell/sourcemap-codec': 1.4.15
-
- /magic-string@0.30.5:
- resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==}
- engines: {node: '>=12'}
- dependencies:
- '@jridgewell/sourcemap-codec': 1.4.15
+ dev: true
/magic-string@0.30.7:
resolution: {integrity: sha512-8vBuFF/I/+OSLRmdf2wwFCJCz+nSn0m6DPvGH1fS/KiQoSaR+sETbov0eIk9KhEKy8CYqIkIAnbohxT/4H0kuA==}
@@ -10002,8 +9965,8 @@ packages:
/magicast@0.3.2:
resolution: {integrity: sha512-Fjwkl6a0syt9TFN0JSYpOybxiMCkYNEeOTnOTNRbjphirLakznZXAqrXgj/7GG3D1dvETONNwrBfinvAbpunDg==}
dependencies:
- '@babel/parser': 7.23.5
- '@babel/types': 7.23.5
+ '@babel/parser': 7.23.9
+ '@babel/types': 7.23.9
source-map-js: 1.0.2
/make-dir@3.1.0:
@@ -10076,9 +10039,9 @@ packages:
dependencies:
change-case: 4.1.2
events-to-async: 2.0.1
- isomorphic-ws: 5.0.0(ws@8.15.1)
+ isomorphic-ws: 5.0.0(ws@8.16.0)
ts-custom-error: 3.3.1
- ws: 8.15.1
+ ws: 8.16.0
transitivePeerDependencies:
- bufferutil
- utf-8-validate
@@ -10092,28 +10055,13 @@ packages:
is-buffer: 1.1.6
dev: false
- /mdast-squeeze-paragraphs@5.2.1:
- resolution: {integrity: sha512-npINYQrt0E5AvSvM7ZxIIyrG/7DX+g8jKWcJMudrcjI+b1eNOKbbu+wTo6cKvy5IzH159IPfpWoRVH7kwEmnug==}
+ /mdast-util-find-and-replace@3.0.1:
+ resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==}
dependencies:
- '@types/mdast': 3.0.11
- unist-util-visit: 4.1.2
- dev: true
-
- /mdast-util-definitions@5.1.2:
- resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==}
- dependencies:
- '@types/mdast': 3.0.11
- '@types/unist': 2.0.6
- unist-util-visit: 4.1.2
- dev: true
-
- /mdast-util-find-and-replace@2.2.2:
- resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==}
- dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 4.0.3
escape-string-regexp: 5.0.0
- unist-util-is: 5.2.1
- unist-util-visit-parents: 5.1.3
+ unist-util-is: 6.0.0
+ unist-util-visit-parents: 6.0.1
dev: true
/mdast-util-from-markdown@0.8.5:
@@ -10128,111 +10076,125 @@ packages:
- supports-color
dev: true
- /mdast-util-from-markdown@1.3.1:
- resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==}
+ /mdast-util-from-markdown@2.0.0:
+ resolution: {integrity: sha512-n7MTOr/z+8NAX/wmhhDji8O3bRvPTV/U0oTCaZJkjhPSKTPhS3xufVhKGF8s1pJ7Ox4QgoIU7KHseh09S+9rTA==}
dependencies:
- '@types/mdast': 3.0.11
- '@types/unist': 2.0.6
+ '@types/mdast': 4.0.3
+ '@types/unist': 3.0.2
decode-named-character-reference: 1.0.2
- mdast-util-to-string: 3.2.0
- micromark: 3.2.0
- micromark-util-decode-numeric-character-reference: 1.1.0
- micromark-util-decode-string: 1.1.0
- micromark-util-normalize-identifier: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- unist-util-stringify-position: 3.0.3
- uvu: 0.5.6
+ devlop: 1.1.0
+ mdast-util-to-string: 4.0.0
+ micromark: 4.0.0
+ micromark-util-decode-numeric-character-reference: 2.0.1
+ micromark-util-decode-string: 2.0.0
+ micromark-util-normalize-identifier: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ unist-util-stringify-position: 4.0.0
transitivePeerDependencies:
- supports-color
dev: true
- /mdast-util-gfm-autolink-literal@1.0.3:
- resolution: {integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==}
+ /mdast-util-gfm-autolink-literal@2.0.0:
+ resolution: {integrity: sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 4.0.3
ccount: 2.0.1
- mdast-util-find-and-replace: 2.2.2
- micromark-util-character: 1.2.0
+ devlop: 1.1.0
+ mdast-util-find-and-replace: 3.0.1
+ micromark-util-character: 2.1.0
dev: true
- /mdast-util-gfm-footnote@1.0.2:
- resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==}
+ /mdast-util-gfm-footnote@2.0.0:
+ resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==}
dependencies:
- '@types/mdast': 3.0.11
- mdast-util-to-markdown: 1.5.0
- micromark-util-normalize-identifier: 1.1.0
+ '@types/mdast': 4.0.3
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.0
+ mdast-util-to-markdown: 2.1.0
+ micromark-util-normalize-identifier: 2.0.0
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /mdast-util-gfm-strikethrough@1.0.3:
- resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==}
+ /mdast-util-gfm-strikethrough@2.0.0:
+ resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==}
dependencies:
- '@types/mdast': 3.0.11
- mdast-util-to-markdown: 1.5.0
+ '@types/mdast': 4.0.3
+ mdast-util-from-markdown: 2.0.0
+ mdast-util-to-markdown: 2.1.0
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /mdast-util-gfm-table@1.0.7:
- resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==}
+ /mdast-util-gfm-table@2.0.0:
+ resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 4.0.3
+ devlop: 1.1.0
markdown-table: 3.0.3
- mdast-util-from-markdown: 1.3.1
- mdast-util-to-markdown: 1.5.0
+ mdast-util-from-markdown: 2.0.0
+ mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
dev: true
- /mdast-util-gfm-task-list-item@1.0.2:
- resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==}
+ /mdast-util-gfm-task-list-item@2.0.0:
+ resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==}
dependencies:
- '@types/mdast': 3.0.11
- mdast-util-to-markdown: 1.5.0
- dev: true
-
- /mdast-util-gfm@2.0.2:
- resolution: {integrity: sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==}
- dependencies:
- mdast-util-from-markdown: 1.3.1
- mdast-util-gfm-autolink-literal: 1.0.3
- mdast-util-gfm-footnote: 1.0.2
- mdast-util-gfm-strikethrough: 1.0.3
- mdast-util-gfm-table: 1.0.7
- mdast-util-gfm-task-list-item: 1.0.2
- mdast-util-to-markdown: 1.5.0
+ '@types/mdast': 4.0.3
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.0
+ mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
dev: true
- /mdast-util-phrasing@3.0.1:
- resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==}
+ /mdast-util-gfm@3.0.0:
+ resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==}
dependencies:
- '@types/mdast': 3.0.11
- unist-util-is: 5.2.1
+ mdast-util-from-markdown: 2.0.0
+ mdast-util-gfm-autolink-literal: 2.0.0
+ mdast-util-gfm-footnote: 2.0.0
+ mdast-util-gfm-strikethrough: 2.0.0
+ mdast-util-gfm-table: 2.0.0
+ mdast-util-gfm-task-list-item: 2.0.0
+ mdast-util-to-markdown: 2.1.0
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /mdast-util-to-hast@12.3.0:
- resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==}
+ /mdast-util-phrasing@4.1.0:
+ resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
dependencies:
- '@types/hast': 2.3.4
- '@types/mdast': 3.0.11
- mdast-util-definitions: 5.1.2
- micromark-util-sanitize-uri: 1.2.0
+ '@types/mdast': 4.0.3
+ unist-util-is: 6.0.0
+ dev: true
+
+ /mdast-util-to-hast@13.1.0:
+ resolution: {integrity: sha512-/e2l/6+OdGp/FB+ctrJ9Avz71AN/GRH3oi/3KAx/kMnoUsD6q0woXlDT8lLEeViVKE7oZxE7RXzvO3T8kF2/sA==}
+ dependencies:
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.3
+ '@ungap/structured-clone': 1.2.0
+ devlop: 1.1.0
+ micromark-util-sanitize-uri: 2.0.0
trim-lines: 3.0.1
- unist-util-generated: 2.0.1
- unist-util-position: 4.0.4
- unist-util-visit: 4.1.2
+ unist-util-position: 5.0.0
+ unist-util-visit: 5.0.0
+ vfile: 6.0.1
dev: true
- /mdast-util-to-markdown@1.5.0:
- resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==}
+ /mdast-util-to-markdown@2.1.0:
+ resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==}
dependencies:
- '@types/mdast': 3.0.11
- '@types/unist': 2.0.6
+ '@types/mdast': 4.0.3
+ '@types/unist': 3.0.2
longest-streak: 3.1.0
- mdast-util-phrasing: 3.0.1
- mdast-util-to-string: 3.2.0
- micromark-util-decode-string: 1.1.0
- unist-util-visit: 4.1.2
+ mdast-util-phrasing: 4.1.0
+ mdast-util-to-string: 4.0.0
+ micromark-util-decode-string: 2.0.0
+ unist-util-visit: 5.0.0
zwitch: 2.0.4
dev: true
@@ -10240,10 +10202,10 @@ packages:
resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==}
dev: true
- /mdast-util-to-string@3.2.0:
- resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==}
+ /mdast-util-to-string@4.0.0:
+ resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 4.0.3
dev: true
/mdn-data@2.0.28:
@@ -10254,6 +10216,11 @@ packages:
/mdurl@1.0.1:
resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==}
+ dev: false
+
+ /mdurl@2.0.0:
+ resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
+ dev: true
/memory-cache@0.2.0:
resolution: {integrity: sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA==}
@@ -10266,227 +10233,227 @@ packages:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- /micromark-core-commonmark@1.1.0:
- resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==}
+ /micromark-core-commonmark@2.0.0:
+ resolution: {integrity: sha512-jThOz/pVmAYUtkroV3D5c1osFXAMv9e0ypGDOIZuCeAe91/sD6BoE2Sjzt30yuXtwOYUmySOhMas/PVyh02itA==}
dependencies:
decode-named-character-reference: 1.0.2
- micromark-factory-destination: 1.1.0
- micromark-factory-label: 1.1.0
- micromark-factory-space: 1.1.0
- micromark-factory-title: 1.1.0
- micromark-factory-whitespace: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-chunked: 1.1.0
- micromark-util-classify-character: 1.1.0
- micromark-util-html-tag-name: 1.2.0
- micromark-util-normalize-identifier: 1.1.0
- micromark-util-resolve-all: 1.1.0
- micromark-util-subtokenize: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
+ devlop: 1.1.0
+ micromark-factory-destination: 2.0.0
+ micromark-factory-label: 2.0.0
+ micromark-factory-space: 2.0.0
+ micromark-factory-title: 2.0.0
+ micromark-factory-whitespace: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-chunked: 2.0.0
+ micromark-util-classify-character: 2.0.0
+ micromark-util-html-tag-name: 2.0.0
+ micromark-util-normalize-identifier: 2.0.0
+ micromark-util-resolve-all: 2.0.0
+ micromark-util-subtokenize: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
dev: true
- /micromark-extension-gfm-autolink-literal@1.0.5:
- resolution: {integrity: sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==}
+ /micromark-extension-gfm-autolink-literal@2.0.0:
+ resolution: {integrity: sha512-rTHfnpt/Q7dEAK1Y5ii0W8bhfJlVJFnJMHIPisfPK3gpVNuOP0VnRl96+YJ3RYWV/P4gFeQoGKNlT3RhuvpqAg==}
dependencies:
- micromark-util-character: 1.2.0
- micromark-util-sanitize-uri: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
+ micromark-util-character: 2.1.0
+ micromark-util-sanitize-uri: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
dev: true
- /micromark-extension-gfm-footnote@1.1.2:
- resolution: {integrity: sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==}
+ /micromark-extension-gfm-footnote@2.0.0:
+ resolution: {integrity: sha512-6Rzu0CYRKDv3BfLAUnZsSlzx3ak6HAoI85KTiijuKIz5UxZxbUI+pD6oHgw+6UtQuiRwnGRhzMmPRv4smcz0fg==}
dependencies:
- micromark-core-commonmark: 1.1.0
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-normalize-identifier: 1.1.0
- micromark-util-sanitize-uri: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
+ devlop: 1.1.0
+ micromark-core-commonmark: 2.0.0
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-normalize-identifier: 2.0.0
+ micromark-util-sanitize-uri: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
dev: true
- /micromark-extension-gfm-strikethrough@1.0.7:
- resolution: {integrity: sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==}
+ /micromark-extension-gfm-strikethrough@2.0.0:
+ resolution: {integrity: sha512-c3BR1ClMp5fxxmwP6AoOY2fXO9U8uFMKs4ADD66ahLTNcwzSCyRVU4k7LPV5Nxo/VJiR4TdzxRQY2v3qIUceCw==}
dependencies:
- micromark-util-chunked: 1.1.0
- micromark-util-classify-character: 1.1.0
- micromark-util-resolve-all: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
+ devlop: 1.1.0
+ micromark-util-chunked: 2.0.0
+ micromark-util-classify-character: 2.0.0
+ micromark-util-resolve-all: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
dev: true
- /micromark-extension-gfm-table@1.0.7:
- resolution: {integrity: sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==}
+ /micromark-extension-gfm-table@2.0.0:
+ resolution: {integrity: sha512-PoHlhypg1ItIucOaHmKE8fbin3vTLpDOUg8KAr8gRCF1MOZI9Nquq2i/44wFvviM4WuxJzc3demT8Y3dkfvYrw==}
dependencies:
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
+ devlop: 1.1.0
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
dev: true
- /micromark-extension-gfm-tagfilter@1.0.2:
- resolution: {integrity: sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==}
+ /micromark-extension-gfm-tagfilter@2.0.0:
+ resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==}
dependencies:
- micromark-util-types: 1.1.0
+ micromark-util-types: 2.0.0
dev: true
- /micromark-extension-gfm-task-list-item@1.0.5:
- resolution: {integrity: sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==}
+ /micromark-extension-gfm-task-list-item@2.0.1:
+ resolution: {integrity: sha512-cY5PzGcnULaN5O7T+cOzfMoHjBW7j+T9D2sucA5d/KbsBTPcYdebm9zUd9zzdgJGCwahV+/W78Z3nbulBYVbTw==}
dependencies:
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
+ devlop: 1.1.0
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
dev: true
- /micromark-extension-gfm@2.0.3:
- resolution: {integrity: sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==}
+ /micromark-extension-gfm@3.0.0:
+ resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==}
dependencies:
- micromark-extension-gfm-autolink-literal: 1.0.5
- micromark-extension-gfm-footnote: 1.1.2
- micromark-extension-gfm-strikethrough: 1.0.7
- micromark-extension-gfm-table: 1.0.7
- micromark-extension-gfm-tagfilter: 1.0.2
- micromark-extension-gfm-task-list-item: 1.0.5
- micromark-util-combine-extensions: 1.1.0
- micromark-util-types: 1.1.0
+ micromark-extension-gfm-autolink-literal: 2.0.0
+ micromark-extension-gfm-footnote: 2.0.0
+ micromark-extension-gfm-strikethrough: 2.0.0
+ micromark-extension-gfm-table: 2.0.0
+ micromark-extension-gfm-tagfilter: 2.0.0
+ micromark-extension-gfm-task-list-item: 2.0.1
+ micromark-util-combine-extensions: 2.0.0
+ micromark-util-types: 2.0.0
dev: true
- /micromark-factory-destination@1.1.0:
- resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==}
+ /micromark-factory-destination@2.0.0:
+ resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==}
dependencies:
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
dev: true
- /micromark-factory-label@1.1.0:
- resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==}
+ /micromark-factory-label@2.0.0:
+ resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==}
dependencies:
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
+ devlop: 1.1.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
dev: true
- /micromark-factory-space@1.1.0:
- resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==}
+ /micromark-factory-space@2.0.0:
+ resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==}
dependencies:
- micromark-util-character: 1.2.0
- micromark-util-types: 1.1.0
+ micromark-util-character: 2.1.0
+ micromark-util-types: 2.0.0
dev: true
- /micromark-factory-title@1.1.0:
- resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==}
+ /micromark-factory-title@2.0.0:
+ resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==}
dependencies:
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
dev: true
- /micromark-factory-whitespace@1.1.0:
- resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==}
+ /micromark-factory-whitespace@2.0.0:
+ resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==}
dependencies:
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
dev: true
- /micromark-util-character@1.2.0:
- resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==}
+ /micromark-util-character@2.1.0:
+ resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==}
dependencies:
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
dev: true
- /micromark-util-chunked@1.1.0:
- resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==}
+ /micromark-util-chunked@2.0.0:
+ resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==}
dependencies:
- micromark-util-symbol: 1.1.0
+ micromark-util-symbol: 2.0.0
dev: true
- /micromark-util-classify-character@1.1.0:
- resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==}
+ /micromark-util-classify-character@2.0.0:
+ resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==}
dependencies:
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
dev: true
- /micromark-util-combine-extensions@1.1.0:
- resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==}
+ /micromark-util-combine-extensions@2.0.0:
+ resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==}
dependencies:
- micromark-util-chunked: 1.1.0
- micromark-util-types: 1.1.0
+ micromark-util-chunked: 2.0.0
+ micromark-util-types: 2.0.0
dev: true
- /micromark-util-decode-numeric-character-reference@1.1.0:
- resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==}
+ /micromark-util-decode-numeric-character-reference@2.0.1:
+ resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==}
dependencies:
- micromark-util-symbol: 1.1.0
+ micromark-util-symbol: 2.0.0
dev: true
- /micromark-util-decode-string@1.1.0:
- resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==}
+ /micromark-util-decode-string@2.0.0:
+ resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==}
dependencies:
decode-named-character-reference: 1.0.2
- micromark-util-character: 1.2.0
- micromark-util-decode-numeric-character-reference: 1.1.0
- micromark-util-symbol: 1.1.0
+ micromark-util-character: 2.1.0
+ micromark-util-decode-numeric-character-reference: 2.0.1
+ micromark-util-symbol: 2.0.0
dev: true
- /micromark-util-encode@1.1.0:
- resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==}
+ /micromark-util-encode@2.0.0:
+ resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==}
dev: true
- /micromark-util-html-tag-name@1.2.0:
- resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==}
+ /micromark-util-html-tag-name@2.0.0:
+ resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==}
dev: true
- /micromark-util-normalize-identifier@1.1.0:
- resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==}
+ /micromark-util-normalize-identifier@2.0.0:
+ resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==}
dependencies:
- micromark-util-symbol: 1.1.0
+ micromark-util-symbol: 2.0.0
dev: true
- /micromark-util-resolve-all@1.1.0:
- resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==}
+ /micromark-util-resolve-all@2.0.0:
+ resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==}
dependencies:
- micromark-util-types: 1.1.0
+ micromark-util-types: 2.0.0
dev: true
- /micromark-util-sanitize-uri@1.2.0:
- resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==}
+ /micromark-util-sanitize-uri@2.0.0:
+ resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==}
dependencies:
- micromark-util-character: 1.2.0
- micromark-util-encode: 1.1.0
- micromark-util-symbol: 1.1.0
+ micromark-util-character: 2.1.0
+ micromark-util-encode: 2.0.0
+ micromark-util-symbol: 2.0.0
dev: true
- /micromark-util-subtokenize@1.1.0:
- resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==}
+ /micromark-util-subtokenize@2.0.0:
+ resolution: {integrity: sha512-vc93L1t+gpR3p8jxeVdaYlbV2jTYteDje19rNSS/H5dlhxUYll5Fy6vJ2cDwP8RnsXi818yGty1ayP55y3W6fg==}
dependencies:
- micromark-util-chunked: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
+ devlop: 1.1.0
+ micromark-util-chunked: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
dev: true
- /micromark-util-symbol@1.1.0:
- resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==}
+ /micromark-util-symbol@2.0.0:
+ resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==}
dev: true
- /micromark-util-types@1.1.0:
- resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==}
+ /micromark-util-types@2.0.0:
+ resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==}
dev: true
/micromark@2.11.4:
@@ -10498,26 +10465,26 @@ packages:
- supports-color
dev: true
- /micromark@3.2.0:
- resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==}
+ /micromark@4.0.0:
+ resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==}
dependencies:
'@types/debug': 4.1.8
debug: 4.3.4
decode-named-character-reference: 1.0.2
- micromark-core-commonmark: 1.1.0
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-chunked: 1.1.0
- micromark-util-combine-extensions: 1.1.0
- micromark-util-decode-numeric-character-reference: 1.1.0
- micromark-util-encode: 1.1.0
- micromark-util-normalize-identifier: 1.1.0
- micromark-util-resolve-all: 1.1.0
- micromark-util-sanitize-uri: 1.2.0
- micromark-util-subtokenize: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
+ devlop: 1.1.0
+ micromark-core-commonmark: 2.0.0
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-chunked: 2.0.0
+ micromark-util-combine-extensions: 2.0.0
+ micromark-util-decode-numeric-character-reference: 2.0.1
+ micromark-util-encode: 2.0.0
+ micromark-util-normalize-identifier: 2.0.0
+ micromark-util-resolve-all: 2.0.0
+ micromark-util-sanitize-uri: 2.0.0
+ micromark-util-subtokenize: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -10650,6 +10617,10 @@ packages:
resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==}
engines: {node: '>=16 || 14 >=14.17'}
+ /minisearch@6.3.0:
+ resolution: {integrity: sha512-ihFnidEeU8iXzcVHy74dhkxh/dn8Dc08ERl0xwoMMGqp4+LvRSCgicb+zGqWthVokQKvCSxITlh3P08OzdTYCQ==}
+ dev: true
+
/minizlib@2.1.2:
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
engines: {node: '>= 8'}
@@ -10670,7 +10641,7 @@ packages:
engines: {node: '>=10'}
hasBin: true
- /mkdist@1.2.0(typescript@5.1.6):
+ /mkdist@1.2.0(typescript@5.3.3):
resolution: {integrity: sha512-UTqu/bXmIk/+VKNVgufAeMyjUcNy1dn9Bl7wL1zZlCKVrpDgj/VllmZBeh3ZCC/2HWqUrt6frNFTKt9TRZbNvQ==}
hasBin: true
peerDependencies:
@@ -10682,31 +10653,31 @@ packages:
typescript:
optional: true
dependencies:
- defu: 6.1.3
+ defu: 6.1.4
esbuild: 0.17.19
fs-extra: 11.2.0
globby: 13.2.2
jiti: 1.21.0
- mlly: 1.4.2
+ mlly: 1.6.1
mri: 1.2.0
- pathe: 1.1.1
- typescript: 5.1.6
+ pathe: 1.1.2
+ typescript: 5.3.3
dev: true
- /mlly@1.4.2:
- resolution: {integrity: sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==}
+ /mlly@1.6.1:
+ resolution: {integrity: sha512-vLgaHvaeunuOXHSmEbZ9izxPx3USsk8KCQ8iC+aTlp5sKRSoZvwhHh5L9VbKSaVC6sJDqbyohIS76E2VmHIPAA==}
dependencies:
- acorn: 8.11.2
- pathe: 1.1.1
+ acorn: 8.11.3
+ pathe: 1.1.2
pkg-types: 1.0.3
- ufo: 1.3.2
+ ufo: 1.4.0
/mri@1.2.0:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
- /mrmime@1.0.1:
- resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==}
+ /mrmime@2.0.0:
+ resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
engines: {node: '>=10'}
/ms@2.0.0:
@@ -10725,6 +10696,14 @@ packages:
/muggle-string@0.3.1:
resolution: {integrity: sha512-ckmWDJjphvd/FvZawgygcUeQCxzvohjFO5RxTjj4eq8kw359gFF3E1brjfI+viLMxss5JrHTDRHZvu2/tuy0Qg==}
+ /mz@2.7.0:
+ resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
+ dependencies:
+ any-promise: 1.3.0
+ object-assign: 4.1.1
+ thenify-all: 1.6.0
+ dev: false
+
/nanoid@3.3.7:
resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
@@ -10739,9 +10718,6 @@ packages:
resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==}
dev: true
- /napi-wasm@1.1.0:
- resolution: {integrity: sha512-lHwIAJbmLSjF9VDRm9GoVOy9AGp3aIvkjv+Kvz9h16QR3uSVYH78PNQUnT2U4X53mhlnV2M7wrhibQ3GHicDmg==}
-
/natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
@@ -10777,56 +10753,56 @@ packages:
'@types/http-proxy': 1.17.14
'@vercel/nft': 0.24.3
archiver: 6.0.1
- c12: 1.5.1
+ c12: 1.9.0
chalk: 5.3.0
- chokidar: 3.5.3
+ chokidar: 3.6.0
citty: 0.1.5
consola: 3.2.3
cookie-es: 1.0.0
- defu: 6.1.3
- destr: 2.0.2
+ defu: 6.1.4
+ destr: 2.0.3
dot-prop: 8.0.2
- esbuild: 0.19.8
+ esbuild: 0.19.12
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
etag: 1.8.1
fs-extra: 11.2.0
- globby: 14.0.0
+ globby: 14.0.1
gzip-size: 7.0.0
- h3: 1.9.0
+ h3: 1.10.2
hookable: 5.5.3
httpxy: 0.1.5
is-primitive: 3.0.1
jiti: 1.21.0
klona: 2.0.6
knitwork: 1.0.0
- listhen: 1.5.5
- magic-string: 0.30.5
+ listhen: 1.6.0
+ magic-string: 0.30.7
mime: 3.0.0
- mlly: 1.4.2
+ mlly: 1.6.1
mri: 1.2.0
- node-fetch-native: 1.4.1
+ node-fetch-native: 1.6.2
ofetch: 1.3.3
ohash: 1.1.3
openapi-typescript: 6.7.1
- pathe: 1.1.1
+ pathe: 1.1.2
perfect-debounce: 1.0.0
pkg-types: 1.0.3
pretty-bytes: 6.1.1
radix3: 1.1.0
rollup: 4.6.0
- rollup-plugin-visualizer: 5.9.3(rollup@4.6.0)
- scule: 1.1.0
- semver: 7.5.4
+ rollup-plugin-visualizer: 5.12.0(rollup@4.6.0)
+ scule: 1.3.0
+ semver: 7.6.0
serve-placeholder: 2.0.1
serve-static: 1.15.0
- std-env: 3.6.0
- ufo: 1.3.2
+ std-env: 3.7.0
+ ufo: 1.4.0
uncrypto: 0.1.3
unctx: 2.3.1
- unenv: 1.8.0
- unimport: 3.6.0(rollup@4.6.0)
- unstorage: 1.9.0(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)
+ unenv: 1.9.0
+ unimport: 3.7.1(rollup@4.6.0)
+ unstorage: 1.10.1(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -10835,6 +10811,7 @@ packages:
- '@azure/keyvault-secrets'
- '@azure/storage-blob'
- '@capacitor/preferences'
+ - '@netlify/blobs'
- '@planetscale/database'
- '@upstash/redis'
- '@vercel/kv'
@@ -10852,7 +10829,7 @@ packages:
resolution: {integrity: sha512-iwXuFrMAcFVi/ZoZiqq8BzAdsLw9kxDfTC0HMyjXfSL/6CSDAGD5UmR7azrAgWV1zKYq7dUUMj4owusBWKLsiQ==}
engines: {node: '>=10'}
dependencies:
- semver: 7.5.4
+ semver: 7.6.0
dev: true
/node-addon-api@6.1.0:
@@ -10862,12 +10839,6 @@ packages:
/node-addon-api@7.0.0:
resolution: {integrity: sha512-vgbBJTS4m5/KkE16t5Ly0WW9hz46swAstv0hYYwMtbG7AznRhNyfLRe8HZAiWIpcHzoO7HxhLuBQj9rJ/Ho0ZA==}
- /node-emoji@1.11.0:
- resolution: {integrity: sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==}
- dependencies:
- lodash: 4.17.21
- dev: true
-
/node-emoji@2.1.3:
resolution: {integrity: sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==}
engines: {node: '>=18'}
@@ -10876,10 +10847,9 @@ packages:
char-regex: 1.0.2
emojilib: 2.4.0
skin-tone: 2.0.0
- dev: false
- /node-fetch-native@1.4.1:
- resolution: {integrity: sha512-NsXBU0UgBxo2rQLOeWNZqS3fvflWePMECr8CoSWoSTqCqGbVVsvl9vZu1HfQicYN0g5piV9Gh8RTEvo/uP752w==}
+ /node-fetch-native@1.6.2:
+ resolution: {integrity: sha512-69mtXOFZ6hSkYiXAVB5SqaRvrbITC/NPyqv7yuu/qw0nmgPyYbIMYYNIDhNtwPrzk0ptrimrLz/hhjvm4w5Z+w==}
/node-fetch@2.6.12:
resolution: {integrity: sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==}
@@ -10913,14 +10883,14 @@ packages:
nopt: 6.0.0
npmlog: 6.0.2
rimraf: 3.0.2
- semver: 7.5.4
+ semver: 7.6.0
tar: 6.2.0
which: 2.0.2
transitivePeerDependencies:
- supports-color
- /node-releases@2.0.13:
- resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
+ /node-releases@2.0.14:
+ resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
/nopt@5.0.0:
resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==}
@@ -10951,7 +10921,7 @@ packages:
dependencies:
hosted-git-info: 7.0.1
is-core-module: 2.13.0
- semver: 7.5.4
+ semver: 7.6.0
validate-npm-package-license: 3.0.4
/normalize-path@3.0.0:
@@ -10972,7 +10942,7 @@ packages:
resolution: {integrity: sha512-dH3GmQL4vsPtld59cOn8uY0iOqRmqKvV+DLGwNXV/Q7MDgD2QfOADWd/mFXcIE5LVhYYGjA3baz6W9JneqnuCw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
- semver: 7.5.4
+ semver: 7.6.0
/npm-normalize-package-bin@3.0.1:
resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==}
@@ -10984,7 +10954,7 @@ packages:
dependencies:
hosted-git-info: 7.0.1
proc-log: 3.0.0
- semver: 7.5.4
+ semver: 7.6.0
validate-npm-package-name: 5.0.0
/npm-packlist@8.0.0:
@@ -11000,7 +10970,7 @@ packages:
npm-install-checks: 6.1.1
npm-normalize-package-bin: 3.0.1
npm-package-arg: 11.0.1
- semver: 7.5.4
+ semver: 7.6.0
/npm-registry-fetch@16.1.0:
resolution: {integrity: sha512-PQCELXKt8Azvxnt5Y85GseQDJJlglTFM9L9U9gkv2y4e9s0k3GVDdOx3YoB6gm2Do0hlkzC39iCGXby+Wve1Bw==}
@@ -11050,20 +11020,22 @@ packages:
dependencies:
boolbase: 1.0.0
- /nuxi@3.10.0:
- resolution: {integrity: sha512-veZXw2NuaQ1PrpvHrnQ1dPgkAjv0WqPlvFReg5Iubum0QVGWdJJvGuNsltDQyPcZ7X7mhMXq9SLIpokK4kpvKA==}
+ /nuxi@3.10.1:
+ resolution: {integrity: sha512-ZNt858+FOZDIiKKFJkXO7uJAnALytDdn1XbLgtZAqbtWNMayHbOnWcnxh+WSOE4H9uOi2+loWXEqKElmNWLgcQ==}
engines: {node: ^14.18.0 || >=16.10.0}
hasBin: true
optionalDependencies:
fsevents: 2.3.3
- /nuxt-component-meta@0.5.3(rollup@3.29.4):
- resolution: {integrity: sha512-+MHUrESdr+Si9PdbkxQrzQv+X6RdRd/ffmFWVVsZAHA7X9vGoNAYxwvoB1Pbs15TaPtFBWA1P5a4VGqtp+bhAg==}
+ /nuxt-component-meta@0.6.3(rollup@3.29.4):
+ resolution: {integrity: sha512-GdqnSMC1vqabry7WSj3GWA2LZ1gBiWeS2lj943c9TjkL9SN/rABEFXVZA6RO4sOTKF1qV947UGi27PdRd7u+tA==}
+ hasBin: true
dependencies:
- '@nuxt/kit': 3.8.2(rollup@3.29.4)
- scule: 1.1.0
- typescript: 5.1.6
- vue-component-meta: 1.8.3(typescript@5.1.6)
+ '@nuxt/kit': 3.10.3(rollup@3.29.4)
+ citty: 0.1.5
+ scule: 1.3.0
+ typescript: 5.3.3
+ vue-component-meta: 1.8.27(typescript@5.3.3)
transitivePeerDependencies:
- rollup
- supports-color
@@ -11072,21 +11044,21 @@ packages:
/nuxt-config-schema@0.4.6(rollup@3.29.4):
resolution: {integrity: sha512-kHLWJFynj5QrxVZ1MjY2xmDaTSN1BCMLGExA+hMMLoCb3wn9TJlDVqnE/nSdUJPMRkNn/NQ5WP9NLA9vlAXRUw==}
dependencies:
- '@nuxt/kit': 3.8.2(rollup@3.29.4)
- defu: 6.1.3
+ '@nuxt/kit': 3.10.3(rollup@3.29.4)
+ defu: 6.1.4
jiti: 1.21.0
- pathe: 1.1.1
- untyped: 1.4.0
+ pathe: 1.1.2
+ untyped: 1.4.2
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /nuxt-csurf@1.2.0(rollup@2.79.1):
+ /nuxt-csurf@1.2.0(rollup@4.6.0):
resolution: {integrity: sha512-sO8Hm3fR+GB3DMc0y1Slzt+f9LiUKpvF/qvUUZBWz1ZknfTRTYemZkfSNcoYf0/hoL2Wb9O0c8pFtzj0hs8Spw==}
dependencies:
- '@nuxt/kit': 3.8.2(rollup@2.79.1)
- defu: 6.1.3
+ '@nuxt/kit': 3.10.3(rollup@4.6.0)
+ defu: 6.1.4
transitivePeerDependencies:
- rollup
- supports-color
@@ -11096,7 +11068,7 @@ packages:
resolution: {integrity: sha512-KdhJAigBGTP8/YIFZ3orwetk40AgLq6VQ5HRYuDLmv5hiDptor9Ro+WIdZggHw7nciRxZvDdQkEwi9B5G/jrkQ==}
dependencies:
'@iconify/vue': 4.1.1(vue@3.4.19)
- '@nuxt/kit': 3.8.2(rollup@3.29.4)
+ '@nuxt/kit': 3.10.3(rollup@3.29.4)
nuxt-config-schema: 0.4.6(rollup@3.29.4)
transitivePeerDependencies:
- rollup
@@ -11104,16 +11076,16 @@ packages:
- vue
dev: true
- /nuxt-security@0.13.1(patch_hash=bd6cmp7ukwwiwrxafbbotwkihe)(rollup@2.79.1):
+ /nuxt-security@0.13.1(patch_hash=bd6cmp7ukwwiwrxafbbotwkihe)(rollup@4.6.0):
resolution: {integrity: sha512-ZqO9Eu2LmB43U/NK+kAQtTcEO+7swu6WhgZBjvHwSCvg5cDvruhfEjLOffF4nuhvyVpKnt5HRfeRao8ABIe3ug==}
dependencies:
- '@nuxt/kit': 3.8.2(rollup@2.79.1)
+ '@nuxt/kit': 3.10.3(rollup@4.6.0)
basic-auth: 2.0.1
- defu: 6.1.3
+ defu: 6.1.4
limiter: 2.1.0
memory-cache: 0.2.0
- nuxt-csurf: 1.2.0(rollup@2.79.1)
- pathe: 1.1.1
+ nuxt-csurf: 1.2.0(rollup@4.6.0)
+ pathe: 1.1.2
xss: 1.0.14
transitivePeerDependencies:
- rollup
@@ -11121,8 +11093,8 @@ packages:
dev: false
patched: true
- /nuxt@3.8.2(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@2.79.1)(typescript@5.1.6)(vite@4.5.0)(vue-tsc@1.8.8):
- resolution: {integrity: sha512-HUAyifmqTs2zcQBGvcby3KNs2pBAk+l7ZbLjD1oCNqQQ+wBuZ1qgLC4Ebu++y4g3o3Y8WAWSvpafbKRLQZziPw==}
+ /nuxt@3.10.3(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@3.29.4)(typescript@5.3.3)(vite@5.1.4)(vue-tsc@1.8.27):
+ resolution: {integrity: sha512-NchGNiiz9g/ErJAb462W/lpX2NqcXYb9hugySKWvLXNdrjeAPiJ2/7mhgwUSiZA9MpjuQg3saiEajr1zlRIOCg==}
engines: {node: ^14.18.0 || >=16.10.0}
hasBin: true
peerDependencies:
@@ -11135,163 +11107,60 @@ packages:
optional: true
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.0.4(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)(nuxt@3.8.2)(rollup@2.79.1)(vite@4.5.0)
- '@nuxt/kit': 3.8.2(rollup@2.79.1)
- '@nuxt/schema': 3.8.2(rollup@2.79.1)
- '@nuxt/telemetry': 2.5.2(rollup@2.79.1)
+ '@nuxt/devtools': 1.0.8(nuxt@3.10.3)(rollup@3.29.4)(vite@5.1.4)
+ '@nuxt/kit': 3.10.3(rollup@3.29.4)
+ '@nuxt/schema': 3.10.3(rollup@3.29.4)
+ '@nuxt/telemetry': 2.5.3(rollup@3.29.4)
'@nuxt/ui-templates': 1.3.1
- '@nuxt/vite-builder': 3.8.2(eslint@8.49.0)(rollup@2.79.1)(typescript@5.1.6)(vue-tsc@1.8.8)(vue@3.4.19)
- '@unhead/dom': 1.8.8
- '@unhead/ssr': 1.8.8
- '@unhead/vue': 1.8.8(vue@3.4.19)
- '@vue/shared': 3.3.9
- acorn: 8.11.2
- c12: 1.5.1
- chokidar: 3.5.3
+ '@nuxt/vite-builder': 3.10.3(eslint@8.49.0)(rollup@3.29.4)(typescript@5.3.3)(vue-tsc@1.8.27)(vue@3.4.19)
+ '@unhead/dom': 1.8.10
+ '@unhead/ssr': 1.8.10
+ '@unhead/vue': 1.8.10(vue@3.4.19)
+ '@vue/shared': 3.4.19
+ acorn: 8.11.3
+ c12: 1.9.0
+ chokidar: 3.6.0
cookie-es: 1.0.0
- defu: 6.1.3
- destr: 2.0.2
+ defu: 6.1.4
+ destr: 2.0.3
devalue: 4.3.2
- esbuild: 0.19.8
+ esbuild: 0.20.1
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
fs-extra: 11.2.0
- globby: 14.0.0
- h3: 1.9.0
+ globby: 14.0.1
+ h3: 1.10.2
hookable: 5.5.3
jiti: 1.21.0
klona: 2.0.6
knitwork: 1.0.0
- magic-string: 0.30.5
- mlly: 1.4.2
+ magic-string: 0.30.7
+ mlly: 1.6.1
nitropack: 2.8.1(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)
- nuxi: 3.10.0
- nypm: 0.3.3
+ nuxi: 3.10.1
+ nypm: 0.3.6
ofetch: 1.3.3
ohash: 1.1.3
- pathe: 1.1.1
+ pathe: 1.1.2
perfect-debounce: 1.0.0
pkg-types: 1.0.3
radix3: 1.1.0
- scule: 1.1.0
- std-env: 3.5.0
- strip-literal: 1.3.0
- ufo: 1.3.2
- ultrahtml: 1.5.2
+ scule: 1.3.0
+ std-env: 3.7.0
+ strip-literal: 2.0.0
+ ufo: 1.4.0
+ ultrahtml: 1.5.3
uncrypto: 0.1.3
unctx: 2.3.1
- unenv: 1.8.0
- unimport: 3.6.0(rollup@2.79.1)
- unplugin: 1.5.1
- unplugin-vue-router: 0.7.0(rollup@2.79.1)(vue-router@4.2.5)(vue@3.4.19)
- untyped: 1.4.0
- vue: 3.4.19(typescript@5.1.6)
+ unenv: 1.9.0
+ unimport: 3.7.1(rollup@3.29.4)
+ unplugin: 1.7.1
+ unplugin-vue-router: 0.7.0(rollup@3.29.4)(vue-router@4.3.0)(vue@3.4.19)
+ untyped: 1.4.2
+ vue: 3.4.19(typescript@5.3.3)
vue-bundle-renderer: 2.0.0
vue-devtools-stub: 0.1.0
- vue-router: 4.2.5(vue@3.4.19)
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@planetscale/database'
- - '@upstash/redis'
- - '@vercel/kv'
- - bluebird
- - bufferutil
- - encoding
- - eslint
- - idb-keyval
- - less
- - lightningcss
- - meow
- - optionator
- - rollup
- - sass
- - stylelint
- - stylus
- - sugarss
- - supports-color
- - terser
- - typescript
- - utf-8-validate
- - vite
- - vls
- - vti
- - vue-tsc
- - xml2js
-
- /nuxt@3.8.2(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@3.29.4)(typescript@5.1.6)(vite@4.5.0)(vue-tsc@1.8.8):
- resolution: {integrity: sha512-HUAyifmqTs2zcQBGvcby3KNs2pBAk+l7ZbLjD1oCNqQQ+wBuZ1qgLC4Ebu++y4g3o3Y8WAWSvpafbKRLQZziPw==}
- engines: {node: ^14.18.0 || >=16.10.0}
- hasBin: true
- peerDependencies:
- '@parcel/watcher': ^2.1.0
- '@types/node': ^14.18.0 || >=16.10.0
- peerDependenciesMeta:
- '@parcel/watcher':
- optional: true
- '@types/node':
- optional: true
- dependencies:
- '@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.0.4(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)(nuxt@3.8.2)(rollup@3.29.4)(vite@4.5.0)
- '@nuxt/kit': 3.8.2(rollup@3.29.4)
- '@nuxt/schema': 3.8.2(rollup@3.29.4)
- '@nuxt/telemetry': 2.5.2(rollup@3.29.4)
- '@nuxt/ui-templates': 1.3.1
- '@nuxt/vite-builder': 3.8.2(eslint@8.49.0)(rollup@3.29.4)(typescript@5.1.6)(vue-tsc@1.8.8)(vue@3.4.19)
- '@unhead/dom': 1.8.8
- '@unhead/ssr': 1.8.8
- '@unhead/vue': 1.8.8(vue@3.4.19)
- '@vue/shared': 3.3.9
- acorn: 8.11.2
- c12: 1.5.1
- chokidar: 3.5.3
- cookie-es: 1.0.0
- defu: 6.1.3
- destr: 2.0.2
- devalue: 4.3.2
- esbuild: 0.19.8
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- fs-extra: 11.2.0
- globby: 14.0.0
- h3: 1.9.0
- hookable: 5.5.3
- jiti: 1.21.0
- klona: 2.0.6
- knitwork: 1.0.0
- magic-string: 0.30.5
- mlly: 1.4.2
- nitropack: 2.8.1(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)
- nuxi: 3.10.0
- nypm: 0.3.3
- ofetch: 1.3.3
- ohash: 1.1.3
- pathe: 1.1.1
- perfect-debounce: 1.0.0
- pkg-types: 1.0.3
- radix3: 1.1.0
- scule: 1.1.0
- std-env: 3.5.0
- strip-literal: 1.3.0
- ufo: 1.3.2
- ultrahtml: 1.5.2
- uncrypto: 0.1.3
- unctx: 2.3.1
- unenv: 1.8.0
- unimport: 3.6.0(rollup@3.29.4)
- unplugin: 1.5.1
- unplugin-vue-router: 0.7.0(rollup@3.29.4)(vue-router@4.2.5)(vue@3.4.19)
- untyped: 1.4.0
- vue: 3.4.19(typescript@5.1.6)
- vue-bundle-renderer: 2.0.0
- vue-devtools-stub: 0.1.0
- vue-router: 4.2.5(vue@3.4.19)
+ vue-router: 4.3.0(vue@3.4.19)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -11300,6 +11169,7 @@ packages:
- '@azure/keyvault-secrets'
- '@azure/storage-blob'
- '@capacitor/preferences'
+ - '@netlify/blobs'
- '@planetscale/database'
- '@upstash/redis'
- '@vercel/kv'
@@ -11328,15 +11198,119 @@ packages:
- xml2js
dev: true
- /nypm@0.3.3:
- resolution: {integrity: sha512-FHoxtTscAE723e80d2M9cJRb4YVjL82Ra+ZV+YqC6rfNZUWahi+ZhPF+krnR+bdMvibsfHCtgKXnZf5R6kmEPA==}
+ /nuxt@3.10.3(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(eslint@8.49.0)(idb-keyval@6.2.1)(rollup@4.6.0)(typescript@5.3.3)(vite@5.1.4)(vue-tsc@1.8.27):
+ resolution: {integrity: sha512-NchGNiiz9g/ErJAb462W/lpX2NqcXYb9hugySKWvLXNdrjeAPiJ2/7mhgwUSiZA9MpjuQg3saiEajr1zlRIOCg==}
+ engines: {node: ^14.18.0 || >=16.10.0}
+ hasBin: true
+ peerDependencies:
+ '@parcel/watcher': ^2.1.0
+ '@types/node': ^14.18.0 || >=16.10.0
+ peerDependenciesMeta:
+ '@parcel/watcher':
+ optional: true
+ '@types/node':
+ optional: true
+ dependencies:
+ '@nuxt/devalue': 2.0.2
+ '@nuxt/devtools': 1.0.8(nuxt@3.10.3)(rollup@4.6.0)(vite@5.1.4)
+ '@nuxt/kit': 3.10.3(rollup@4.6.0)
+ '@nuxt/schema': 3.10.3(rollup@4.6.0)
+ '@nuxt/telemetry': 2.5.3(rollup@4.6.0)
+ '@nuxt/ui-templates': 1.3.1
+ '@nuxt/vite-builder': 3.10.3(eslint@8.49.0)(rollup@4.6.0)(typescript@5.3.3)(vue-tsc@1.8.27)(vue@3.4.19)
+ '@unhead/dom': 1.8.10
+ '@unhead/ssr': 1.8.10
+ '@unhead/vue': 1.8.10(vue@3.4.19)
+ '@vue/shared': 3.4.19
+ acorn: 8.11.3
+ c12: 1.9.0
+ chokidar: 3.6.0
+ cookie-es: 1.0.0
+ defu: 6.1.4
+ destr: 2.0.3
+ devalue: 4.3.2
+ esbuild: 0.20.1
+ escape-string-regexp: 5.0.0
+ estree-walker: 3.0.3
+ fs-extra: 11.2.0
+ globby: 14.0.1
+ h3: 1.10.2
+ hookable: 5.5.3
+ jiti: 1.21.0
+ klona: 2.0.6
+ knitwork: 1.0.0
+ magic-string: 0.30.7
+ mlly: 1.6.1
+ nitropack: 2.8.1(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1)
+ nuxi: 3.10.1
+ nypm: 0.3.6
+ ofetch: 1.3.3
+ ohash: 1.1.3
+ pathe: 1.1.2
+ perfect-debounce: 1.0.0
+ pkg-types: 1.0.3
+ radix3: 1.1.0
+ scule: 1.3.0
+ std-env: 3.7.0
+ strip-literal: 2.0.0
+ ufo: 1.4.0
+ ultrahtml: 1.5.3
+ uncrypto: 0.1.3
+ unctx: 2.3.1
+ unenv: 1.9.0
+ unimport: 3.7.1(rollup@4.6.0)
+ unplugin: 1.7.1
+ unplugin-vue-router: 0.7.0(rollup@4.6.0)(vue-router@4.3.0)(vue@3.4.19)
+ untyped: 1.4.2
+ vue: 3.4.19(typescript@5.3.3)
+ vue-bundle-renderer: 2.0.0
+ vue-devtools-stub: 0.1.0
+ vue-router: 4.3.0(vue@3.4.19)
+ transitivePeerDependencies:
+ - '@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'
+ - bluebird
+ - bufferutil
+ - encoding
+ - eslint
+ - idb-keyval
+ - less
+ - lightningcss
+ - meow
+ - optionator
+ - rollup
+ - sass
+ - stylelint
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - typescript
+ - utf-8-validate
+ - vite
+ - vls
+ - vti
+ - vue-tsc
+ - xml2js
+
+ /nypm@0.3.6:
+ resolution: {integrity: sha512-2CATJh3pd6CyNfU5VZM7qSwFu0ieyabkEdnogE30Obn1czrmOYiZ8DOZLe1yBdLKWoyD3Mcy2maUs+0MR3yVjQ==}
engines: {node: ^14.16.0 || >=16.10.0}
hasBin: true
dependencies:
citty: 0.1.5
execa: 8.0.1
- pathe: 1.1.1
- ufo: 1.3.2
+ pathe: 1.1.2
+ ufo: 1.4.0
/object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
@@ -11385,9 +11359,9 @@ packages:
/ofetch@1.3.3:
resolution: {integrity: sha512-s1ZCMmQWXy4b5K/TW9i/DtiN8Ku+xCiHcjQ6/J/nDdssirrQNOoB165Zu8EqLMA2lln1JUth9a0aW9Ap2ctrUg==}
dependencies:
- destr: 2.0.2
- node-fetch-native: 1.4.1
- ufo: 1.3.2
+ destr: 2.0.3
+ node-fetch-native: 1.6.2
+ ufo: 1.4.0
/ohash@1.1.3:
resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==}
@@ -11415,6 +11389,15 @@ packages:
dependencies:
mimic-fn: 4.0.0
+ /open@10.0.3:
+ resolution: {integrity: sha512-dtbI5oW7987hwC9qjJTyABldTaa19SuyJse1QboWv3b0qCcrrLNVDqBx1XgELAjh9QTVQaP/C5b1nhQebd1H2A==}
+ engines: {node: '>=18'}
+ dependencies:
+ default-browser: 5.2.1
+ define-lazy-prop: 3.0.0
+ is-inside-container: 1.0.0
+ is-wsl: 3.1.0
+
/open@8.4.2:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
@@ -11423,15 +11406,6 @@ packages:
is-docker: 2.2.1
is-wsl: 2.2.0
- /open@9.1.0:
- resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==}
- engines: {node: '>=14.16'}
- dependencies:
- default-browser: 4.0.0
- define-lazy-prop: 3.0.0
- is-inside-container: 1.0.0
- is-wsl: 2.2.0
-
/openapi-typescript@6.7.1:
resolution: {integrity: sha512-Q3Ltt0KUm2smcPrsaR8qKmSwQ1KM4yGDJVoQdpYa0yvKPeN8huDx5utMT7DvwvJastHHzUxajjivK3WN2+fobg==}
hasBin: true
@@ -11515,8 +11489,8 @@ packages:
engines: {node: '>=6'}
dev: true
- /pacote@17.0.4:
- resolution: {integrity: sha512-eGdLHrV/g5b5MtD5cTPyss+JxOlaOloSMG3UwPMAvL8ywaLJ6beONPF40K4KKl/UI6q5hTKCJq5rCu8tkF+7Dg==}
+ /pacote@17.0.6:
+ resolution: {integrity: sha512-cJKrW21VRE8vVTRskJo78c/RCvwJCn1f4qgfxL4w77SOWrTCRcmfkYHlHtS0gqpgjv3zhXflRtgsrUCX5xwNnQ==}
engines: {node: ^16.14.0 || >=18.0.0}
hasBin: true
dependencies:
@@ -11535,7 +11509,7 @@ packages:
promise-retry: 2.0.1
read-package-json: 7.0.0
read-package-json-fast: 3.0.2
- sigstore: 2.1.0
+ sigstore: 2.2.2
ssri: 10.0.4
tar: 6.2.0
transitivePeerDependencies:
@@ -11550,7 +11524,7 @@ packages:
resolution: {integrity: sha512-SZfJe/y9fbpeXZU+Kf7cSG2G7rnGP50hUYzCvcWyhp7hYzA3YXGthpkGfv6NSt0oo6QbcRyKwycg/6dpG5p8aw==}
deprecated: Please migrate to https://github.com/unjs/magicast
dependencies:
- '@babel/parser': 7.23.5
+ '@babel/parser': 7.23.9
'@types/estree': 1.0.3
recast: 0.22.0
dev: true
@@ -11618,8 +11592,10 @@ packages:
dependencies:
parse-path: 7.0.0
- /parse5@6.0.1:
- resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
+ /parse5@7.1.2:
+ resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
+ dependencies:
+ entities: 4.5.0
dev: true
/parseurl@1.3.3:
@@ -11632,6 +11608,9 @@ packages:
no-case: 3.0.4
tslib: 2.6.0
+ /path-browserify@1.0.1:
+ resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
+
/path-case@3.0.4:
resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==}
dependencies:
@@ -11662,12 +11641,12 @@ packages:
/path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- /path-scurry@1.10.0:
- resolution: {integrity: sha512-tZFEaRQbMLjwrsmidsGJ6wDMv0iazJWk6SfIKnY4Xru8auXgmJkOBa5DUbYFcFD2Rzk2+KDlIiF0GVXNCbgC7g==}
+ /path-scurry@1.10.1:
+ resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
- lru-cache: 10.0.1
- minipass: 5.0.0
+ lru-cache: 10.2.0
+ minipass: 7.0.4
/path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
@@ -11678,8 +11657,8 @@ packages:
resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==}
engines: {node: '>=12'}
- /pathe@1.1.1:
- resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==}
+ /pathe@1.1.2:
+ resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
/pathval@1.1.1:
resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
@@ -11700,37 +11679,37 @@ packages:
hasBin: true
dev: true
- /pinceau@0.18.9(postcss@8.4.32):
+ /pinceau@0.18.9(postcss@8.4.35):
resolution: {integrity: sha512-GJ+l8a5Y+7PP/diwuajJhd2QONTIFkk2YXjrVTh7QKC3sMQEphpLH6ZJfXSeeSonQ0/BnhrrMi9a5e14mmqXug==}
dependencies:
'@unocss/reset': 0.50.8
'@volar/vue-language-core': 1.6.5
- acorn: 8.11.2
+ acorn: 8.11.3
chroma-js: 2.4.2
consola: 3.2.3
- csstype: 3.1.2
- defu: 6.1.3
- magic-string: 0.30.5
+ csstype: 3.1.3
+ defu: 6.1.4
+ magic-string: 0.30.7
nanoid: 4.0.2
ohash: 1.1.3
paneer: 0.1.0
- pathe: 1.1.1
- postcss-custom-properties: 13.1.4(postcss@8.4.32)
- postcss-dark-theme-class: 0.7.3(postcss@8.4.32)
- postcss-nested: 6.0.1(postcss@8.4.32)
+ pathe: 1.1.2
+ postcss-custom-properties: 13.1.4(postcss@8.4.35)
+ postcss-dark-theme-class: 0.7.3(postcss@8.4.35)
+ postcss-nested: 6.0.1(postcss@8.4.35)
recast: 0.22.0
- scule: 1.1.0
+ scule: 1.3.0
style-dictionary-esm: 1.3.7
unbuild: 1.2.1
- unplugin: 1.5.1
+ unplugin: 1.7.1
transitivePeerDependencies:
- postcss
- sass
- supports-color
dev: true
- /pinia@2.1.4(typescript@5.1.6)(vue@3.4.19):
- resolution: {integrity: sha512-vYlnDu+Y/FXxv1ABo1vhjC+IbqvzUdiUC3sfDRrRyY2CQSrqqaa+iiHmqtARFxJVqWQMCJfXx1PBvFs9aJVLXQ==}
+ /pinia@2.1.7(typescript@5.3.3)(vue@3.4.19):
+ resolution: {integrity: sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ==}
peerDependencies:
'@vue/composition-api': ^1.4.0
typescript: '>=4.4.4'
@@ -11741,18 +11720,23 @@ packages:
typescript:
optional: true
dependencies:
- '@vue/devtools-api': 6.5.0
- typescript: 5.1.6
- vue: 3.4.19(typescript@5.1.6)
- vue-demi: 0.14.5(vue@3.4.19)
+ '@vue/devtools-api': 6.6.1
+ typescript: 5.3.3
+ vue: 3.4.19(typescript@5.3.3)
+ vue-demi: 0.14.7(vue@3.4.19)
+ dev: false
+
+ /pirates@4.0.6:
+ resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
+ engines: {node: '>= 6'}
dev: false
/pkg-types@1.0.3:
resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==}
dependencies:
jsonc-parser: 3.2.0
- mlly: 1.4.2
- pathe: 1.1.1
+ mlly: 1.6.1
+ pathe: 1.1.2
/pluralize@8.0.0:
resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
@@ -11768,39 +11752,39 @@ packages:
tslib: 2.4.0
dev: false
- /postcss-calc@9.0.1(postcss@8.4.32):
+ /postcss-calc@9.0.1(postcss@8.4.35):
resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.2
dependencies:
- postcss: 8.4.32
- postcss-selector-parser: 6.0.13
+ postcss: 8.4.35
+ postcss-selector-parser: 6.0.15
postcss-value-parser: 4.2.0
- /postcss-colormin@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-EuO+bAUmutWoZYgHn2T1dG1pPqHU6L4TjzPlu4t1wZGXQ/fxV16xg2EJmYi0z+6r+MGV1yvpx1BHkUaRrPa2bw==}
+ /postcss-colormin@6.0.3(postcss@8.4.35):
+ resolution: {integrity: sha512-ECpkS+UZRyAtu/kjive2/1mihP+GNtgC8kcdU8ueWZi1ZVxMNnRziCLdhrWECJhEtSWijfX2Cl9XTTCK/hjGaA==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- browserslist: 4.22.1
+ browserslist: 4.23.0
caniuse-api: 3.0.0
colord: 2.9.3
- postcss: 8.4.32
+ postcss: 8.4.35
postcss-value-parser: 4.2.0
- /postcss-convert-values@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw==}
+ /postcss-convert-values@6.0.4(postcss@8.4.35):
+ resolution: {integrity: sha512-YT2yrGzPXoQD3YeA2kBo/696qNwn7vI+15AOS2puXWEvSWqdCqlOyDWRy5GNnOc9ACRGOkuQ4ESQEqPJBWt/GA==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- browserslist: 4.22.1
- postcss: 8.4.32
+ browserslist: 4.23.0
+ postcss: 8.4.35
postcss-value-parser: 4.2.0
- /postcss-custom-properties@13.1.4(postcss@8.4.32):
+ /postcss-custom-properties@13.1.4(postcss@8.4.35):
resolution: {integrity: sha512-iSAdaZrM3KMec8cOSzeTUNXPYDlhqsMJHpt62yrjwG6nAnMtRHPk5JdMzGosBJtqEahDolvD5LNbcq+EZ78o5g==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -11809,269 +11793,261 @@ packages:
'@csstools/cascade-layer-name-parser': 1.0.3(@csstools/css-parser-algorithms@2.3.0)(@csstools/css-tokenizer@2.1.1)
'@csstools/css-parser-algorithms': 2.3.0(@csstools/css-tokenizer@2.1.1)
'@csstools/css-tokenizer': 2.1.1
- postcss: 8.4.32
+ postcss: 8.4.35
postcss-value-parser: 4.2.0
dev: true
- /postcss-dark-theme-class@0.7.3(postcss@8.4.32):
+ /postcss-dark-theme-class@0.7.3(postcss@8.4.35):
resolution: {integrity: sha512-M9vtfh8ORzQsVdT9BWb+xpEDAzC7nHBn7wVc988/JkEVLPupKcUnV0jw7RZ8sSj0ovpqN1POf6PLdt19JCHfhQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
dependencies:
- postcss: 8.4.32
+ postcss: 8.4.35
dev: true
- /postcss-discard-comments@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-p2skSGqzPMZkEQvJsgnkBhCn8gI7NzRH2683EEjrIkoMiwRELx68yoUJ3q3DGSGuQ8Ug9Gsn+OuDr46yfO+eFw==}
+ /postcss-discard-comments@6.0.1(postcss@8.4.35):
+ resolution: {integrity: sha512-f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- postcss: 8.4.32
+ postcss: 8.4.35
- /postcss-discard-duplicates@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-bU1SXIizMLtDW4oSsi5C/xHKbhLlhek/0/yCnoMQany9k3nPBq+Ctsv/9oMmyqbR96HYHxZcHyK2HR5P/mqoGA==}
+ /postcss-discard-duplicates@6.0.2(postcss@8.4.35):
+ resolution: {integrity: sha512-U2rsj4w6pAGROCCcD13LP2eBIi1whUsXs4kgE6xkIuGfkbxCBSKhkCTWyowFd66WdVlLv0uM1euJKIgmdmZObg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- postcss: 8.4.32
+ postcss: 8.4.35
- /postcss-discard-empty@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ==}
+ /postcss-discard-empty@6.0.2(postcss@8.4.35):
+ resolution: {integrity: sha512-rj6pVC2dVCJrP0Y2RkYTQEbYaCf4HEm+R/2StQgJqGHxAa3+KcYslNQhcRqjLHtl/4wpzipJluaJLqBj6d5eDQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- postcss: 8.4.32
+ postcss: 8.4.35
- /postcss-discard-overridden@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw==}
+ /postcss-discard-overridden@6.0.1(postcss@8.4.35):
+ resolution: {integrity: sha512-qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- postcss: 8.4.32
+ postcss: 8.4.35
- /postcss-merge-longhand@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg==}
+ /postcss-merge-longhand@6.0.3(postcss@8.4.35):
+ resolution: {integrity: sha512-kF/y3DU8CRt+SX3tP/aG+2gkZI2Z7OXDsPU7FgxIJmuyhQQ1EHceIYcsp/alvzCm2P4c37Sfdu8nNrHc+YeyLg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- postcss: 8.4.32
+ postcss: 8.4.35
postcss-value-parser: 4.2.0
- stylehacks: 6.0.0(postcss@8.4.32)
+ stylehacks: 6.0.3(postcss@8.4.35)
- /postcss-merge-rules@6.0.1(postcss@8.4.32):
- resolution: {integrity: sha512-a4tlmJIQo9SCjcfiCcCMg/ZCEe0XTkl/xK0XHBs955GWg9xDX3NwP9pwZ78QUOWB8/0XCjZeJn98Dae0zg6AAw==}
+ /postcss-merge-rules@6.0.4(postcss@8.4.35):
+ resolution: {integrity: sha512-97iF3UJ5v8N1BWy38y+0l+Z8o5/9uGlEgtWic2PJPzoRrLB6Gxg8TVG93O0EK52jcLeMsywre26AUlX1YAYeHA==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- browserslist: 4.22.1
+ browserslist: 4.23.0
caniuse-api: 3.0.0
- cssnano-utils: 4.0.0(postcss@8.4.32)
- postcss: 8.4.32
- postcss-selector-parser: 6.0.13
+ cssnano-utils: 4.0.1(postcss@8.4.35)
+ postcss: 8.4.35
+ postcss-selector-parser: 6.0.15
- /postcss-minify-font-values@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-zNRAVtyh5E8ndZEYXA4WS8ZYsAp798HiIQ1V2UF/C/munLp2r1UGHwf1+6JFu7hdEhJFN+W1WJQKBrtjhFgEnA==}
+ /postcss-minify-font-values@6.0.2(postcss@8.4.35):
+ resolution: {integrity: sha512-IedzbVMoX0a7VZWjSYr5qJ6C37rws8kl8diPBeMZLJfWKkgXuMFY5R/OxPegn/q9tK9ztd0XRH3aR0u2t+A7uQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- postcss: 8.4.32
+ postcss: 8.4.35
postcss-value-parser: 4.2.0
- /postcss-minify-gradients@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-wO0F6YfVAR+K1xVxF53ueZJza3L+R3E6cp0VwuXJQejnNUH0DjcAFe3JEBeTY1dLwGa0NlDWueCA1VlEfiKgAA==}
+ /postcss-minify-gradients@6.0.2(postcss@8.4.35):
+ resolution: {integrity: sha512-vP5mF7iI6/5fcpv+rSfwWQekOE+8I1i7/7RjZPGuIjj6eUaZVeG4XZYZrroFuw1WQd51u2V32wyQFZ+oYdE7CA==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
colord: 2.9.3
- cssnano-utils: 4.0.0(postcss@8.4.32)
- postcss: 8.4.32
+ cssnano-utils: 4.0.1(postcss@8.4.35)
+ postcss: 8.4.35
postcss-value-parser: 4.2.0
- /postcss-minify-params@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-Fz/wMQDveiS0n5JPcvsMeyNXOIMrwF88n7196puSuQSWSa+/Ofc1gDOSY2xi8+A4PqB5dlYCKk/WfqKqsI+ReQ==}
+ /postcss-minify-params@6.0.3(postcss@8.4.35):
+ resolution: {integrity: sha512-j4S74d3AAeCK5eGdQndXSrkxusV2ekOxbXGnlnZthMyZBBvSDiU34CihTASbJxuVB3bugudmwolS7+Dgs5OyOQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- browserslist: 4.22.1
- cssnano-utils: 4.0.0(postcss@8.4.32)
- postcss: 8.4.32
+ browserslist: 4.23.0
+ cssnano-utils: 4.0.1(postcss@8.4.35)
+ postcss: 8.4.35
postcss-value-parser: 4.2.0
- /postcss-minify-selectors@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-ec/q9JNCOC2CRDNnypipGfOhbYPuUkewGwLnbv6omue/PSASbHSU7s6uSQ0tcFRVv731oMIx8k0SP4ZX6be/0g==}
+ /postcss-minify-selectors@6.0.2(postcss@8.4.35):
+ resolution: {integrity: sha512-0b+m+w7OAvZejPQdN2GjsXLv5o0jqYHX3aoV0e7RBKPCsB7TYG5KKWBFhGnB/iP3213Ts8c5H4wLPLMm7z28Sg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- postcss: 8.4.32
- postcss-selector-parser: 6.0.13
+ postcss: 8.4.35
+ postcss-selector-parser: 6.0.15
- /postcss-nested@6.0.1(postcss@8.4.32):
+ /postcss-nested@6.0.1(postcss@8.4.35):
resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
dependencies:
- postcss: 8.4.32
- postcss-selector-parser: 6.0.13
+ postcss: 8.4.35
+ postcss-selector-parser: 6.0.15
- /postcss-normalize-charset@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-cqundwChbu8yO/gSWkuFDmKrCZ2vJzDAocheT2JTd0sFNA4HMGoKMfbk2B+J0OmO0t5GUkiAkSM5yF2rSLUjgQ==}
+ /postcss-normalize-charset@6.0.1(postcss@8.4.35):
+ resolution: {integrity: sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- postcss: 8.4.32
+ postcss: 8.4.35
- /postcss-normalize-display-values@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-Qyt5kMrvy7dJRO3OjF7zkotGfuYALETZE+4lk66sziWSPzlBEt7FrUshV6VLECkI4EN8Z863O6Nci4NXQGNzYw==}
+ /postcss-normalize-display-values@6.0.1(postcss@8.4.35):
+ resolution: {integrity: sha512-mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- postcss: 8.4.32
+ postcss: 8.4.35
postcss-value-parser: 4.2.0
- /postcss-normalize-positions@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-mPCzhSV8+30FZyWhxi6UoVRYd3ZBJgTRly4hOkaSifo0H+pjDYcii/aVT4YE6QpOil15a5uiv6ftnY3rm0igPg==}
+ /postcss-normalize-positions@6.0.1(postcss@8.4.35):
+ resolution: {integrity: sha512-HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- postcss: 8.4.32
+ postcss: 8.4.35
postcss-value-parser: 4.2.0
- /postcss-normalize-repeat-style@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-50W5JWEBiOOAez2AKBh4kRFm2uhrT3O1Uwdxz7k24aKtbD83vqmcVG7zoIwo6xI2FZ/HDlbrCopXhLeTpQib1A==}
+ /postcss-normalize-repeat-style@6.0.1(postcss@8.4.35):
+ resolution: {integrity: sha512-Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- postcss: 8.4.32
+ postcss: 8.4.35
postcss-value-parser: 4.2.0
- /postcss-normalize-string@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-KWkIB7TrPOiqb8ZZz6homet2KWKJwIlysF5ICPZrXAylGe2hzX/HSf4NTX2rRPJMAtlRsj/yfkrWGavFuB+c0w==}
+ /postcss-normalize-string@6.0.1(postcss@8.4.35):
+ resolution: {integrity: sha512-5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- postcss: 8.4.32
+ postcss: 8.4.35
postcss-value-parser: 4.2.0
- /postcss-normalize-timing-functions@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-tpIXWciXBp5CiFs8sem90IWlw76FV4oi6QEWfQwyeREVwUy39VSeSqjAT7X0Qw650yAimYW5gkl2Gd871N5SQg==}
+ /postcss-normalize-timing-functions@6.0.1(postcss@8.4.35):
+ resolution: {integrity: sha512-4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- postcss: 8.4.32
+ postcss: 8.4.35
postcss-value-parser: 4.2.0
- /postcss-normalize-unicode@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-ui5crYkb5ubEUDugDc786L/Me+DXp2dLg3fVJbqyAl0VPkAeALyAijF2zOsnZyaS1HyfPuMH0DwyY18VMFVNkg==}
+ /postcss-normalize-unicode@6.0.3(postcss@8.4.35):
+ resolution: {integrity: sha512-T2Bb3gXz0ASgc3ori2dzjv6j/P2IantreaC6fT8tWjqYUiqMAh5jGIkdPwEV2FaucjQlCLeFJDJh2BeSugE1ig==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- browserslist: 4.22.1
- postcss: 8.4.32
+ browserslist: 4.23.0
+ postcss: 8.4.35
postcss-value-parser: 4.2.0
- /postcss-normalize-url@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-98mvh2QzIPbb02YDIrYvAg4OUzGH7s1ZgHlD3fIdTHLgPLRpv1ZTKJDnSAKr4Rt21ZQFzwhGMXxpXlfrUBKFHw==}
+ /postcss-normalize-url@6.0.1(postcss@8.4.35):
+ resolution: {integrity: sha512-jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- postcss: 8.4.32
+ postcss: 8.4.35
postcss-value-parser: 4.2.0
- /postcss-normalize-whitespace@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw==}
+ /postcss-normalize-whitespace@6.0.1(postcss@8.4.35):
+ resolution: {integrity: sha512-76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- postcss: 8.4.32
+ postcss: 8.4.35
postcss-value-parser: 4.2.0
- /postcss-ordered-values@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg==}
+ /postcss-ordered-values@6.0.1(postcss@8.4.35):
+ resolution: {integrity: sha512-XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- cssnano-utils: 4.0.0(postcss@8.4.32)
- postcss: 8.4.32
+ cssnano-utils: 4.0.1(postcss@8.4.35)
+ postcss: 8.4.35
postcss-value-parser: 4.2.0
- /postcss-reduce-initial@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-s2UOnidpVuXu6JiiI5U+fV2jamAw5YNA9Fdi/GRK0zLDLCfXmSGqQtzpUPtfN66RtCbb9fFHoyZdQaxOB3WxVA==}
+ /postcss-reduce-initial@6.0.3(postcss@8.4.35):
+ resolution: {integrity: sha512-w4QIR9pEa1N4xMx3k30T1vLZl6udVK2RmNqrDXhBXX9L0mBj2a8ADs8zkbaEH7eUy1m30Wyr5EBgHN31Yq1JvA==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- browserslist: 4.22.1
+ browserslist: 4.23.0
caniuse-api: 3.0.0
- postcss: 8.4.32
+ postcss: 8.4.35
- /postcss-reduce-transforms@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w==}
+ /postcss-reduce-transforms@6.0.1(postcss@8.4.35):
+ resolution: {integrity: sha512-fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- postcss: 8.4.32
+ postcss: 8.4.35
postcss-value-parser: 4.2.0
- /postcss-selector-parser@6.0.13:
- resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==}
+ /postcss-selector-parser@6.0.15:
+ resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==}
engines: {node: '>=4'}
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- /postcss-svgo@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-r9zvj/wGAoAIodn84dR/kFqwhINp5YsJkLoujybWG59grR/IHx+uQ2Zo+IcOwM0jskfYX3R0mo+1Kip1VSNcvw==}
+ /postcss-svgo@6.0.2(postcss@8.4.35):
+ resolution: {integrity: sha512-IH5R9SjkTkh0kfFOQDImyy1+mTCb+E830+9SV1O+AaDcoHTvfsvt6WwJeo7KwcHbFnevZVCsXhDmjFiGVuwqFQ==}
engines: {node: ^14 || ^16 || >= 18}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- postcss: 8.4.32
+ postcss: 8.4.35
postcss-value-parser: 4.2.0
- svgo: 3.0.2
+ svgo: 3.2.0
- /postcss-unique-selectors@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-EPQzpZNxOxP7777t73RQpZE5e9TrnCrkvp7AH7a0l89JmZiPnS82y216JowHXwpBCQitfyxrof9TK3rYbi7/Yw==}
+ /postcss-unique-selectors@6.0.2(postcss@8.4.35):
+ resolution: {integrity: sha512-8IZGQ94nechdG7Y9Sh9FlIY2b4uS8/k8kdKRX040XHsS3B6d1HrJAkXrBSsSu4SuARruSsUjW3nlSw8BHkaAYQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- postcss: 8.4.32
- postcss-selector-parser: 6.0.13
+ postcss: 8.4.35
+ postcss-selector-parser: 6.0.15
/postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss@8.4.32:
- resolution: {integrity: sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==}
- engines: {node: ^10 || ^12 || >=14}
- dependencies:
- nanoid: 3.3.7
- picocolors: 1.0.0
- source-map-js: 1.0.2
-
/postcss@8.4.35:
resolution: {integrity: sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==}
engines: {node: ^10 || ^12 || >=14}
@@ -12155,8 +12131,8 @@ packages:
kleur: 3.0.3
sisteransi: 1.0.5
- /property-information@6.2.0:
- resolution: {integrity: sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==}
+ /property-information@6.4.1:
+ resolution: {integrity: sha512-OHYtXfu5aI2sS2LWFSN5rgJjrQ4pCy8i1jubJLe2QvMF8JJ++HXTUIVWFLfXJoaOfvYYjk2SN8J2wFUWIGXT4w==}
dev: true
/prosemirror-changeset@2.2.1:
@@ -12196,7 +12172,7 @@ packages:
prosemirror-view: 1.32.7
dev: false
- /prosemirror-highlight@0.5.0(prosemirror-model@1.19.4)(prosemirror-state@1.4.3)(prosemirror-view@1.32.7)(shiki@1.1.2):
+ /prosemirror-highlight@0.5.0(prosemirror-model@1.19.4)(prosemirror-state@1.4.3)(prosemirror-view@1.32.7)(shiki@1.1.7):
resolution: {integrity: sha512-jGj2E3WHoh6N85nlCyjjpFNsv3a6pvMXVpiz9hJfHDYmUtnSyWZNXB0rQabHOKdBYfynsbhy1SUiRRNdni0woA==}
peerDependencies:
'@types/hast': ^3.0.0
@@ -12234,7 +12210,7 @@ packages:
prosemirror-model: 1.19.4
prosemirror-state: 1.4.3
prosemirror-view: 1.32.7
- shiki: 1.1.2
+ shiki: 1.1.7
dev: false
/prosemirror-history@1.3.2:
@@ -12384,8 +12360,8 @@ packages:
/rc9@2.1.1:
resolution: {integrity: sha512-lNeOl38Ws0eNxpO3+wD1I9rkHGQyj1NU1jlzv4go2CtEnEQEUfqnIvZG7W+bC/aXdJ27n5x/yUjb6RoT9tko+Q==}
dependencies:
- defu: 6.1.3
- destr: 2.0.2
+ defu: 6.1.4
+ destr: 2.0.3
flat: 5.0.2
/rc@1.2.8:
@@ -12412,7 +12388,7 @@ packages:
resolution: {integrity: sha512-uL4Z10OKV4p6vbdvIXB+OzhInYtIozl/VxUBPgNkBuUi2DeRonnuspmaVAMcrkmfjKGNmRndyQAbE7/AmzGwFg==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- glob: 10.3.1
+ glob: 10.3.10
json-parse-even-better-errors: 3.0.0
normalize-package-data: 6.0.0
npm-normalize-package-bin: 3.0.1
@@ -12548,121 +12524,126 @@ packages:
jsesc: 0.5.0
dev: false
- /rehype-external-links@2.1.0:
- resolution: {integrity: sha512-2YMJZVM1hxZnwl9IPkbN5Pjn78kXkAX7lq9VEtlaGA29qIls25vZN+ucNIJdbQUe+9NNFck17BiOhGmsD6oLIg==}
+ /rehype-external-links@3.0.0:
+ resolution: {integrity: sha512-yp+e5N9V3C6bwBeAC4n796kc86M4gJCdlVhiMTxIrJG5UHDMh+PJANf9heqORJbt1nrCbDwIlAZKjANIaVBbvw==}
dependencies:
- '@types/hast': 2.3.4
- extend: 3.0.2
- hast-util-is-element: 2.1.3
+ '@types/hast': 3.0.4
+ '@ungap/structured-clone': 1.2.0
+ hast-util-is-element: 3.0.0
is-absolute-url: 4.0.1
space-separated-tokens: 2.0.2
- unified: 10.1.2
- unist-util-visit: 4.1.2
+ unist-util-visit: 5.0.0
dev: true
- /rehype-raw@6.1.1:
- resolution: {integrity: sha512-d6AKtisSRtDRX4aSPsJGTfnzrX2ZkHQLE5kiUuGOeEoLpbEulFF4hj0mLPbsa+7vmguDKOVVEQdHKDSwoaIDsQ==}
+ /rehype-raw@7.0.0:
+ resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==}
dependencies:
- '@types/hast': 2.3.4
- hast-util-raw: 7.2.3
- unified: 10.1.2
+ '@types/hast': 3.0.4
+ hast-util-raw: 9.0.2
+ vfile: 6.0.1
dev: true
- /rehype-slug@5.1.0:
- resolution: {integrity: sha512-Gf91dJoXneiorNEnn+Phx97CO7oRMrpi+6r155tTxzGuLtm+QrI4cTwCa9e1rtePdL4i9tSO58PeSS6HWfgsiw==}
+ /rehype-slug@6.0.0:
+ resolution: {integrity: sha512-lWyvf/jwu+oS5+hL5eClVd3hNdmwM1kAC0BUvEGD19pajQMIzcNUd/k9GsfQ+FfECvX+JE+e9/btsKH0EjJT6A==}
dependencies:
- '@types/hast': 2.3.4
+ '@types/hast': 3.0.4
github-slugger: 2.0.0
- hast-util-has-property: 2.0.1
- hast-util-heading-rank: 2.1.1
- hast-util-to-string: 2.0.0
- unified: 10.1.2
- unist-util-visit: 4.1.2
+ hast-util-heading-rank: 3.0.0
+ hast-util-to-string: 3.0.0
+ unist-util-visit: 5.0.0
dev: true
- /rehype-sort-attribute-values@4.0.0:
- resolution: {integrity: sha512-+Y3OWTbbxSIutbXMVY7+aWFmcRyEvdz6HkghXAyVPjee1Y8HUi+/vryBL1UdEI9VknVBiGvphXAf5n6MDNOXOA==}
+ /rehype-sort-attribute-values@5.0.0:
+ resolution: {integrity: sha512-dQdHdCIRnpiU+BkrLSqH+aM4lWJyLqGzv49KvH4gHj+JxYwNqvGhoTXckS3AJu4V9ZutwsTcawP0pC7PhwX0tQ==}
dependencies:
- '@types/hast': 2.3.4
- hast-util-is-element: 2.1.3
- unified: 10.1.2
- unist-util-visit: 4.1.2
+ '@types/hast': 3.0.4
+ hast-util-is-element: 3.0.0
+ unist-util-visit: 5.0.0
dev: true
- /rehype-sort-attributes@4.0.0:
- resolution: {integrity: sha512-sCT58e12F+fJL8ZmvpEP2vAK7cpYffUAf0cMQjNfLIewWjMHMGo0Io+H8eztJoI1S9dvEm2XZT5zzchqe8gYJw==}
+ /rehype-sort-attributes@5.0.0:
+ resolution: {integrity: sha512-6tJUH4xHFcdO85CZRwAcEtHNCzjZ9V9S0VZLgo1pzbN04qy8jiVCZ3oAxDmBVG3Rth5b1xFTDet5WG/UYZeJLQ==}
dependencies:
- '@types/hast': 2.3.4
- unified: 10.1.2
- unist-util-visit: 4.1.2
+ '@types/hast': 3.0.4
+ unist-util-visit: 5.0.0
dev: true
- /remark-emoji@3.1.2:
- resolution: {integrity: sha512-QwhAzNk27Ol64uV4z/3n55MKrNz9bhr8wg+mO5aGqIYDS+jUarS1d8Y0ZIeEBVhfGkXj6gGYM+727sOgAPvV/A==}
+ /remark-emoji@4.0.1:
+ resolution: {integrity: sha512-fHdvsTR1dHkWKev9eNyhTo4EFwbUvJ8ka9SgeWkMPYFX4WoI7ViVBms3PjlQYgw5TLvNQso3GUB/b/8t3yo+dg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
+ '@types/mdast': 4.0.3
emoticon: 4.0.1
- mdast-util-find-and-replace: 2.2.2
- node-emoji: 1.11.0
+ mdast-util-find-and-replace: 3.0.1
+ node-emoji: 2.1.3
+ unified: 11.0.4
dev: true
- /remark-gfm@3.0.1:
- resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==}
+ /remark-gfm@4.0.0:
+ resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==}
dependencies:
- '@types/mdast': 3.0.11
- mdast-util-gfm: 2.0.2
- micromark-extension-gfm: 2.0.3
- unified: 10.1.2
+ '@types/mdast': 4.0.3
+ mdast-util-gfm: 3.0.0
+ micromark-extension-gfm: 3.0.0
+ remark-parse: 11.0.0
+ remark-stringify: 11.0.0
+ unified: 11.0.4
transitivePeerDependencies:
- supports-color
dev: true
- /remark-mdc@1.1.3:
- resolution: {integrity: sha512-ilYSkkQJhu5cUCEE2CJEncoMDoarP32ugfJpFWghXbnv3sWI3j2HtJuArc9tZzxN4ID6fngio3d8N87QfQAnRQ==}
+ /remark-mdc@3.0.2:
+ resolution: {integrity: sha512-HoCaTwIkvYp1Kj9EiKMNpfAjLO53PwiaeA5J2o+uIBfCHjcOWai3oDmCkEZVCIHbHgU/qSZ8JeiQftksnVKTeQ==}
dependencies:
- flat: 5.0.2
+ '@types/mdast': 4.0.3
+ '@types/unist': 3.0.2
+ flat: 6.0.1
js-yaml: 4.1.0
- mdast-util-from-markdown: 1.3.1
- mdast-util-to-markdown: 1.5.0
- micromark: 3.2.0
- micromark-core-commonmark: 1.1.0
- micromark-factory-space: 1.1.0
- micromark-factory-whitespace: 1.1.0
- micromark-util-character: 1.2.0
+ mdast-util-from-markdown: 2.0.0
+ mdast-util-to-markdown: 2.1.0
+ micromark: 4.0.0
+ micromark-core-commonmark: 2.0.0
+ micromark-factory-space: 2.0.0
+ micromark-factory-whitespace: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-types: 2.0.0
parse-entities: 4.0.1
- scule: 1.1.0
+ scule: 1.3.0
stringify-entities: 4.0.3
- unist-util-visit: 4.1.2
- unist-util-visit-parents: 5.1.3
+ unified: 11.0.4
+ unist-util-visit: 5.0.0
+ unist-util-visit-parents: 6.0.1
transitivePeerDependencies:
- supports-color
dev: true
- /remark-parse@10.0.2:
- resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==}
+ /remark-parse@11.0.0:
+ resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
dependencies:
- '@types/mdast': 3.0.11
- mdast-util-from-markdown: 1.3.1
- unified: 10.1.2
+ '@types/mdast': 4.0.3
+ mdast-util-from-markdown: 2.0.0
+ micromark-util-types: 2.0.0
+ unified: 11.0.4
transitivePeerDependencies:
- supports-color
dev: true
- /remark-rehype@10.1.0:
- resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==}
+ /remark-rehype@11.1.0:
+ resolution: {integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==}
dependencies:
- '@types/hast': 2.3.4
- '@types/mdast': 3.0.11
- mdast-util-to-hast: 12.3.0
- unified: 10.1.2
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.3
+ mdast-util-to-hast: 13.1.0
+ unified: 11.0.4
+ vfile: 6.0.1
dev: true
- /remark-squeeze-paragraphs@5.0.1:
- resolution: {integrity: sha512-VWPAoa1bAAtU/aQfSLRZ7vOrwH9I02RhZTSo+e0LT3fVO9RKNCq/bwobIEBhxvNCt00JoQ7GwR3sYGhmD2/y6Q==}
+ /remark-stringify@11.0.0:
+ resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==}
dependencies:
- '@types/mdast': 3.0.11
- mdast-squeeze-paragraphs: 5.2.1
- unified: 10.1.2
+ '@types/mdast': 4.0.3
+ mdast-util-to-markdown: 2.1.0
+ unified: 11.0.4
dev: true
/require-directory@2.1.1:
@@ -12725,16 +12706,16 @@ packages:
dependencies:
glob: 7.2.3
- /rollup-plugin-dts@5.3.0(rollup@3.29.4)(typescript@5.1.6):
+ /rollup-plugin-dts@5.3.0(rollup@3.29.4)(typescript@5.3.3):
resolution: {integrity: sha512-8FXp0ZkyZj1iU5klkIJYLjIq/YZSwBoERu33QBDxm/1yw5UU4txrEtcmMkrq+ZiKu3Q4qvPCNqc3ovX6rjqzbQ==}
engines: {node: '>=v14'}
peerDependencies:
rollup: ^3.0.0
typescript: ^4.1 || ^5.0
dependencies:
- magic-string: 0.30.5
+ magic-string: 0.30.7
rollup: 3.29.4
- typescript: 5.1.6
+ typescript: 5.3.3
optionalDependencies:
'@babel/code-frame': 7.23.5
dev: true
@@ -12767,24 +12748,8 @@ packages:
terser: 5.22.0
dev: false
- /rollup-plugin-visualizer@5.9.3(rollup@2.79.1):
- resolution: {integrity: sha512-ieGM5UAbMVqThX67GCuFHu/GkaSXIUZwFKJsSzE+7+k9fibU/6gbUz7SL+9BBzNtv5bIFHj7kEu0TWcqEnT/sQ==}
- engines: {node: '>=14'}
- hasBin: true
- peerDependencies:
- rollup: 2.x || 3.x || 4.x
- peerDependenciesMeta:
- rollup:
- optional: true
- dependencies:
- open: 8.4.2
- picomatch: 2.3.1
- rollup: 2.79.1
- source-map: 0.7.4
- yargs: 17.7.2
-
- /rollup-plugin-visualizer@5.9.3(rollup@3.29.4):
- resolution: {integrity: sha512-ieGM5UAbMVqThX67GCuFHu/GkaSXIUZwFKJsSzE+7+k9fibU/6gbUz7SL+9BBzNtv5bIFHj7kEu0TWcqEnT/sQ==}
+ /rollup-plugin-visualizer@5.12.0(rollup@3.29.4):
+ resolution: {integrity: sha512-8/NU9jXcHRs7Nnj07PF2o4gjxmm9lXIrZ8r175bT9dK8qoLlvKTwRMArRCMgpMGlq8CTLugRvEmyMeMXIU2pNQ==}
engines: {node: '>=14'}
hasBin: true
peerDependencies:
@@ -12800,8 +12765,8 @@ packages:
yargs: 17.7.2
dev: true
- /rollup-plugin-visualizer@5.9.3(rollup@4.6.0):
- resolution: {integrity: sha512-ieGM5UAbMVqThX67GCuFHu/GkaSXIUZwFKJsSzE+7+k9fibU/6gbUz7SL+9BBzNtv5bIFHj7kEu0TWcqEnT/sQ==}
+ /rollup-plugin-visualizer@5.12.0(rollup@4.6.0):
+ resolution: {integrity: sha512-8/NU9jXcHRs7Nnj07PF2o4gjxmm9lXIrZ8r175bT9dK8qoLlvKTwRMArRCMgpMGlq8CTLugRvEmyMeMXIU2pNQ==}
engines: {node: '>=14'}
hasBin: true
peerDependencies:
@@ -12828,6 +12793,7 @@ packages:
hasBin: true
optionalDependencies:
fsevents: 2.3.3
+ dev: false
/rollup@3.29.4:
resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==}
@@ -12859,24 +12825,15 @@ packages:
resolution: {integrity: sha512-UT5EDe2cu2E/6O4igUr5PSFs23nvvukicWHx6GnOPlHAiiYbzNuCRQCuiUdHJQcqKalLKlrYJnjY0ySGsXNQXQ==}
dev: false
- /run-applescript@5.0.0:
- resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==}
- engines: {node: '>=12'}
- dependencies:
- execa: 5.1.1
+ /run-applescript@7.0.0:
+ resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
+ engines: {node: '>=18'}
/run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
queue-microtask: 1.2.3
- /sade@1.8.1:
- resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
- engines: {node: '>=6'}
- dependencies:
- mri: 1.2.0
- dev: true
-
/safe-buffer@5.1.2:
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
@@ -12903,8 +12860,8 @@ packages:
ajv-keywords: 3.5.2(ajv@6.12.6)
dev: false
- /scule@1.1.0:
- resolution: {integrity: sha512-vRUjqhyM/YWYzT+jsMk6tnl3NkY4A4soJ8uyh3O6Um+JXEQL9ozUCe7pqrxn3CSKokw0hw3nFStfskzpgYwR0g==}
+ /scule@1.3.0:
+ resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
/semver@5.7.2:
resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
@@ -12915,8 +12872,8 @@ packages:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- /semver@7.5.4:
- resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
+ /semver@7.6.0:
+ resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
engines: {node: '>=10'}
hasBin: true
dependencies:
@@ -12963,7 +12920,7 @@ packages:
/serve-placeholder@2.0.1:
resolution: {integrity: sha512-rUzLlXk4uPFnbEaIz3SW8VISTxMuONas88nYWjAWaM2W9VDbt9tyFOr3lq8RhVOFrT3XISoBw8vni5una8qMnQ==}
dependencies:
- defu: 6.1.3
+ defu: 6.1.4
/serve-static@1.15.0:
resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
@@ -12987,11 +12944,11 @@ packages:
dependencies:
decode-ico: 0.4.1
ico-endec: 0.1.6
- sharp: 0.32.5
+ sharp: 0.32.6
dev: true
- /sharp@0.32.5:
- resolution: {integrity: sha512-0dap3iysgDkNaPOaOL4X/0akdu0ma62GcdC2NBQ+93eqpePdDdr2/LM0sFdDSMmN7yS+odyZtPsb7tx/cYBKnQ==}
+ /sharp@0.32.6:
+ resolution: {integrity: sha512-KyLTWwgcR9Oe4d9HwCwNM2l7+J0dUQwn/yf7S0EnTtb0eVS4RxO0eUSvxPtzT4F3SY+C4K6fqdv/DO27sJ/v/w==}
engines: {node: '>=14.15.0'}
requiresBuild: true
dependencies:
@@ -12999,7 +12956,7 @@ packages:
detect-libc: 2.0.2
node-addon-api: 6.1.0
prebuild-install: 7.1.1
- semver: 7.5.4
+ semver: 7.6.0
simple-get: 4.0.1
tar-fs: 3.0.4
tunnel-agent: 0.6.0
@@ -13018,15 +12975,10 @@ packages:
/shell-quote@1.8.1:
resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
- /shiki-es@0.14.0:
- resolution: {integrity: sha512-e+/aueHx0YeIEut6RXC6K8gSf0PykwZiHD7q7AHtpTW8Kd8TpFUIWqTwhAnrGjOyOMyrwv+syr5WPagMpDpVYQ==}
- dev: true
-
- /shiki@1.1.2:
- resolution: {integrity: sha512-qNzFwTv5uhEDNUIwp7wHjsrffVeLbmOgWnM5mZZhoiz7G2qAUvqVfUzuWfieD45/YAKipzCtdV9SndacKtABow==}
+ /shiki@1.1.7:
+ resolution: {integrity: sha512-9kUTMjZtcPH3i7vHunA6EraTPpPOITYTdA5uMrvsJRexktqP0s7P3s9HVK80b4pP42FRVe03D7fT3NmJv2yYhw==}
dependencies:
- '@shikijs/core': 1.1.2
- dev: false
+ '@shikijs/core': 1.1.7
/side-channel@1.0.4:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
@@ -13046,14 +12998,16 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- /sigstore@2.1.0:
- resolution: {integrity: sha512-kPIj+ZLkyI3QaM0qX8V/nSsweYND3W448pwkDgS6CQ74MfhEkIR8ToK5Iyx46KJYRjseVcD3Rp9zAmUAj6ZjPw==}
+ /sigstore@2.2.2:
+ resolution: {integrity: sha512-2A3WvXkQurhuMgORgT60r6pOWiCOO5LlEqY2ADxGBDGVYLSo5HN0uLtb68YpVpuL/Vi8mLTe7+0Dx2Fq8lLqEg==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- '@sigstore/bundle': 2.1.0
- '@sigstore/protobuf-specs': 0.2.1
- '@sigstore/sign': 2.1.0
- '@sigstore/tuf': 2.2.0
+ '@sigstore/bundle': 2.2.0
+ '@sigstore/core': 1.0.0
+ '@sigstore/protobuf-specs': 0.3.0
+ '@sigstore/sign': 2.2.3
+ '@sigstore/tuf': 2.3.1
+ '@sigstore/verify': 1.1.0
transitivePeerDependencies:
- supports-color
@@ -13075,8 +13029,8 @@ packages:
requiresBuild: true
dev: true
- /simple-git@3.21.0:
- resolution: {integrity: sha512-oTzw9248AF5bDTMk9MrxsRzEzivMlY+DWH0yWS4VYpMhNLhDWnN06pCtaUyPnqv/FpsdeNmRqmZugMABHRPdDA==}
+ /simple-git@3.22.0:
+ resolution: {integrity: sha512-6JujwSs0ac82jkGjMHiCnTifvf1crOiY/+tfs/Pqih6iow7VrpNKRRNdWm6RtaXpvvv/JGNYhlUtLhGFqHF+Yw==}
dependencies:
'@kwsites/file-exists': 1.1.1
'@kwsites/promise-deferred': 1.1.1
@@ -13090,12 +13044,12 @@ packages:
is-arrayish: 0.3.2
dev: true
- /sirv@2.0.3:
- resolution: {integrity: sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==}
+ /sirv@2.0.4:
+ resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
engines: {node: '>= 10'}
dependencies:
- '@polka/url': 1.0.0-next.21
- mrmime: 1.0.1
+ '@polka/url': 1.0.0-next.24
+ mrmime: 2.0.0
totalist: 3.0.1
/sisteransi@1.0.5:
@@ -13106,7 +13060,6 @@ packages:
engines: {node: '>=8'}
dependencies:
unicode-emoji-modifier-base: 1.0.0
- dev: false
/slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
@@ -13134,7 +13087,7 @@ packages:
peerDependencies:
vue: ^3.4.19
dependencies:
- vue: 3.4.19(typescript@5.1.6)
+ vue: 3.4.19(typescript@5.3.3)
dev: false
/slugify@1.6.6:
@@ -13155,13 +13108,13 @@ packages:
dot-case: 3.0.4
tslib: 2.6.0
- /socket.io-client@4.7.1:
- resolution: {integrity: sha512-Qk3Xj8ekbnzKu3faejo4wk2MzXA029XppiXtTF/PkbTg+fcwaTw1PlDrTrrrU4mKoYC4dvlApOnSeyLCKwek2w==}
+ /socket.io-client@4.7.4:
+ resolution: {integrity: sha512-wh+OkeF0rAVCrABWQBaEjLfb7DVPotMbu0cgWgyR0v6eA4EoVnAwcIeIbcdTE3GT/H3kbdLl7OoH2+asoDRIIg==}
engines: {node: '>=10.0.0'}
dependencies:
'@socket.io/component-emitter': 3.1.0
debug: 4.3.4
- engine.io-client: 6.5.1
+ engine.io-client: 6.5.3
socket.io-parser: 4.2.4
transitivePeerDependencies:
- bufferutil
@@ -13255,6 +13208,13 @@ packages:
spdx-exceptions: 2.3.0
spdx-license-ids: 3.0.13
+ /spdx-expression-parse@4.0.0:
+ resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==}
+ dependencies:
+ spdx-exceptions: 2.3.0
+ spdx-license-ids: 3.0.13
+ dev: true
+
/spdx-license-ids@3.0.13:
resolution: {integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==}
@@ -13273,7 +13233,7 @@ packages:
hasBin: true
peerDependencies:
'@nuxt/kit': ^3.0.0
- '@nuxt/schema': 3.8.2
+ '@nuxt/schema': ^3.0.0
peerDependenciesMeta:
'@nuxt/kit':
optional: true
@@ -13294,11 +13254,8 @@ packages:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
- /std-env@3.5.0:
- resolution: {integrity: sha512-JGUEaALvL0Mf6JCfYnJOTcobY+Nc7sG/TemDRBqCA0wEr4DER7zDchaaixTlmOxAjG1uRJmX82EQcxwTQTkqVA==}
-
- /std-env@3.6.0:
- resolution: {integrity: sha512-aFZ19IgVmhdB2uX599ve2kE6BIE3YMnQ6Gp6BURhW/oIzpXGKr878TQfAQZn1+i0Flcc/UKUy1gOlcfaUBCryg==}
+ /std-env@3.7.0:
+ resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
/streamx@2.15.0:
resolution: {integrity: sha512-HcxY6ncGjjklGs1xsP1aR71INYcsXFJet5CU1CHqihQ2J5nOsbd4OjgjHO42w/4QNv9gZb3BueV+Vxok5pLEXg==}
@@ -13419,6 +13376,7 @@ packages:
/strip-final-newline@2.0.0:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
+ dev: false
/strip-final-newline@3.0.0:
resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
@@ -13443,7 +13401,7 @@ packages:
/strip-literal@1.3.0:
resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==}
dependencies:
- acorn: 8.11.2
+ acorn: 8.11.3
/strip-literal@2.0.0:
resolution: {integrity: sha512-f9vHgsCWBq2ugHAkGMiiYY+AYG0D/cbloKKg0nhaaaSNsujdGIpVXCNsrJpCKr5M0f4aI31mr13UjY6GAuXCKA==}
@@ -13474,15 +13432,29 @@ packages:
tslib: 2.4.0
dev: false
- /stylehacks@6.0.0(postcss@8.4.32):
- resolution: {integrity: sha512-+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw==}
+ /stylehacks@6.0.3(postcss@8.4.35):
+ resolution: {integrity: sha512-KzBqjnqktc8/I0ERCb+lGq06giF/JxDbw2r9kEVhen9noHeIDRtMWUp9r62sOk+/2bbX6sFG1GhsS7ToXG0PEg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
dependencies:
- browserslist: 4.22.1
- postcss: 8.4.32
- postcss-selector-parser: 6.0.13
+ browserslist: 4.23.0
+ postcss: 8.4.35
+ postcss-selector-parser: 6.0.15
+
+ /sucrase@3.35.0:
+ resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
+ engines: {node: '>=16 || 14 >=14.17'}
+ hasBin: true
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.3
+ commander: 4.1.1
+ glob: 10.3.10
+ lines-and-columns: 1.2.4
+ mz: 2.7.0
+ pirates: 4.0.6
+ ts-interface-checker: 0.1.13
+ dev: false
/supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
@@ -13515,8 +13487,8 @@ packages:
/svg-tags@1.0.0:
resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
- /svgo@3.0.2:
- resolution: {integrity: sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==}
+ /svgo@3.2.0:
+ resolution: {integrity: sha512-4PP6CMW/V7l/GmKRKzsLR8xxjdHTV4IMvhTnpuHwwBazSIlw5W/5SmPjN8Dwyt7lKbSJrRDgp4t9ph0HgChFBQ==}
engines: {node: '>=14.0.0'}
hasBin: true
dependencies:
@@ -13524,9 +13496,14 @@ packages:
commander: 7.2.0
css-select: 5.1.0
css-tree: 2.3.1
+ css-what: 6.1.0
csso: 5.0.5
picocolors: 1.0.0
+ /system-architecture@0.1.0:
+ resolution: {integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==}
+ engines: {node: '>=18'}
+
/tabbable@6.2.0:
resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
@@ -13625,15 +13602,15 @@ packages:
hasBin: true
dependencies:
'@jridgewell/source-map': 0.3.5
- acorn: 8.11.2
+ acorn: 8.11.3
commander: 2.20.3
source-map-support: 0.5.21
/text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
- /theme-colors@0.0.5:
- resolution: {integrity: sha512-EAxGOASXbsrhcaFxEWsCRZb29sHhII/cs8a+Cn3a3AI/FT9uCqNM8rMQBf10jtgqIdl8kxg2rQXz5I2JLHuplA==}
+ /theme-colors@0.1.0:
+ resolution: {integrity: sha512-6gTEHQqWlQNiOEGHCSSQmU//E5SnXHJ4H7oHQOD8x77CvNYNQAmt73dqR71mzw5ULV87zaHLxK5pIBnsToFuZw==}
dev: false
/theme-vitesse@0.7.2:
@@ -13641,6 +13618,19 @@ packages:
engines: {vscode: ^1.43.0}
dev: false
+ /thenify-all@1.6.0:
+ resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
+ engines: {node: '>=0.8'}
+ dependencies:
+ thenify: 3.3.1
+ dev: false
+
+ /thenify@3.3.1:
+ resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
+ dependencies:
+ any-promise: 1.3.0
+ dev: false
+
/throttle-debounce@3.0.1:
resolution: {integrity: sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==}
engines: {node: '>=10'}
@@ -13676,10 +13666,6 @@ packages:
'@popperjs/core': 2.11.8
dev: false
- /titleize@3.0.0:
- resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==}
- engines: {node: '>=12'}
-
/to-data-view@1.1.0:
resolution: {integrity: sha512-1eAdufMg6mwgmlojAx3QeMnzB/BTVp7Tbndi3U7ftcT2zCZadjxkkmLmd97zmaxWi+sgGcgWrokmpEoy0Dn0vQ==}
dev: true
@@ -13698,6 +13684,11 @@ packages:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
+ /tosource@2.0.0-alpha.3:
+ resolution: {integrity: sha512-KAB2lrSS48y91MzFPFuDg4hLbvDiyTjOVgaK7Erw+5AmZXNq4sFRVn8r6yxSLuNs15PaokrDRpS61ERY9uZOug==}
+ engines: {node: '>=10'}
+ dev: false
+
/totalist@3.0.1:
resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
engines: {node: '>=6'}
@@ -13719,13 +13710,13 @@ packages:
resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==}
dev: true
- /ts-api-utils@1.0.1(typescript@5.1.6):
+ /ts-api-utils@1.0.1(typescript@5.3.3):
resolution: {integrity: sha512-lC/RGlPmwdrIBFTX59wwNzqh7aR2otPNPR/5brHZm/XKFYKsfqxihXUe9pU3JI+3vGkl+vyCoNNnPhJn3aLK1A==}
engines: {node: '>=16.13.0'}
peerDependencies:
typescript: '>=4.2.0'
dependencies:
- typescript: 5.1.6
+ typescript: 5.3.3
dev: true
/ts-custom-error@3.3.1:
@@ -13733,6 +13724,10 @@ packages:
engines: {node: '>=14.0.0'}
dev: false
+ /ts-interface-checker@0.1.13:
+ resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
+ dev: false
+
/tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
dev: true
@@ -13744,29 +13739,29 @@ packages:
/tslib@2.6.0:
resolution: {integrity: sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==}
- /tsutils@3.21.0(typescript@5.1.6):
+ /tsutils@3.21.0(typescript@5.3.3):
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
dependencies:
tslib: 1.14.1
- typescript: 5.1.6
+ typescript: 5.3.3
dev: true
- /tsx@3.12.8:
- resolution: {integrity: sha512-Lt9KYaRGF023tlLInPj8rgHwsZU8qWLBj4iRXNWxTfjIkU7canGL806AqKear1j722plHuiYNcL2ZCo6uS9UJA==}
+ /tsx@4.7.1:
+ resolution: {integrity: sha512-8d6VuibXHtlN5E3zFkgY8u4DX7Y3Z27zvvPKVmLon/D4AjuKzarkUBTLDBgj9iTQ0hg5xM7c/mYiRVM+HETf0g==}
+ engines: {node: '>=18.0.0'}
hasBin: true
dependencies:
- '@esbuild-kit/cjs-loader': 2.4.2
- '@esbuild-kit/core-utils': 3.2.2
- '@esbuild-kit/esm-loader': 2.5.5
+ esbuild: 0.19.12
+ get-tsconfig: 4.7.2
optionalDependencies:
fsevents: 2.3.3
dev: true
- /tuf-js@2.1.0:
- resolution: {integrity: sha512-eD7YPPjVlMzdggrOeE8zwoegUaG/rt6Bt3jwoQPunRiNVzgcCE009UDFJKJjG+Gk9wFu6W/Vi+P5d/5QpdD9jA==}
+ /tuf-js@2.2.0:
+ resolution: {integrity: sha512-ZSDngmP1z6zw+FIkIBjvOp/II/mIub/O7Pp12j1WNsiCpg5R5wAc//i555bBQsE44O94btLt0xM/Zr2LQjwdCg==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
'@tufjs/models': 2.0.0
@@ -13836,12 +13831,8 @@ packages:
is-typed-array: 1.1.10
dev: false
- /typesafe-path@0.2.2:
- resolution: {integrity: sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA==}
- dev: true
-
- /typescript@5.1.6:
- resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==}
+ /typescript@5.3.3:
+ resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==}
engines: {node: '>=14.17'}
hasBin: true
@@ -13849,11 +13840,11 @@ packages:
resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==}
dev: false
- /ufo@1.3.2:
- resolution: {integrity: sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==}
+ /ufo@1.4.0:
+ resolution: {integrity: sha512-Hhy+BhRBleFjpJ2vchUNN40qgkh0366FWJGqVLYBHev0vpHTrXSA0ryT+74UiW6KWsldNurQMKGqCm1M2zBciQ==}
- /ultrahtml@1.5.2:
- resolution: {integrity: sha512-qh4mBffhlkiXwDAOxvSGxhL0QEQsTbnP9BozOK3OYPEGvPvdWzvAUaXNtUSMdNsKDtuyjEbyVUPFZ52SSLhLqw==}
+ /ultrahtml@1.5.3:
+ resolution: {integrity: sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==}
/unbox-primitive@1.0.2:
resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
@@ -13876,34 +13867,35 @@ packages:
'@rollup/pluginutils': 5.1.0(rollup@3.29.4)
chalk: 5.3.0
consola: 3.2.3
- defu: 6.1.3
+ defu: 6.1.4
esbuild: 0.17.19
globby: 13.2.2
hookable: 5.5.3
jiti: 1.21.0
- magic-string: 0.30.5
- mkdist: 1.2.0(typescript@5.1.6)
- mlly: 1.4.2
+ magic-string: 0.30.7
+ mkdist: 1.2.0(typescript@5.3.3)
+ mlly: 1.6.1
mri: 1.2.0
- pathe: 1.1.1
+ pathe: 1.1.2
pkg-types: 1.0.3
pretty-bytes: 6.1.1
rollup: 3.29.4
- rollup-plugin-dts: 5.3.0(rollup@3.29.4)(typescript@5.1.6)
- scule: 1.1.0
- typescript: 5.1.6
- untyped: 1.4.0
+ rollup-plugin-dts: 5.3.0(rollup@3.29.4)(typescript@5.3.3)
+ scule: 1.3.0
+ typescript: 5.3.3
+ untyped: 1.4.2
transitivePeerDependencies:
- sass
- supports-color
dev: true
- /unconfig@0.3.9:
- resolution: {integrity: sha512-8yhetFd48M641mxrkWA+C/lZU4N0rCOdlo3dFsyFPnBHBjMJfjT/3eAZBRT2RxCRqeBMAKBVgikejdS6yeBjMw==}
+ /unconfig@0.3.11:
+ resolution: {integrity: sha512-bV/nqePAKv71v3HdVUn6UefbsDKQWRX+bJIkiSm0+twIds6WiD2bJLWWT3i214+J/B4edufZpG2w7Y63Vbwxow==}
dependencies:
- '@antfu/utils': 0.7.6
- defu: 6.1.3
+ '@antfu/utils': 0.7.7
+ defu: 6.1.4
jiti: 1.21.0
+ mlly: 1.6.1
dev: false
/uncrypto@0.1.3:
@@ -13912,10 +13904,10 @@ packages:
/unctx@2.3.1:
resolution: {integrity: sha512-PhKke8ZYauiqh3FEMVNm7ljvzQiph0Mt3GBRve03IJm7ukfaON2OBK795tLwhbyfzknuRRkW0+Ze+CQUmzOZ+A==}
dependencies:
- acorn: 8.11.2
+ acorn: 8.11.3
estree-walker: 3.0.3
- magic-string: 0.30.5
- unplugin: 1.5.1
+ magic-string: 0.30.7
+ unplugin: 1.7.1
/undici-types@5.25.3:
resolution: {integrity: sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==}
@@ -13926,21 +13918,21 @@ packages:
dependencies:
'@fastify/busboy': 2.1.0
- /unenv@1.8.0:
- resolution: {integrity: sha512-uIGbdCWZfhRRmyKj1UioCepQ0jpq638j/Cf0xFTn4zD1nGJ2lSdzYHLzfdXN791oo/0juUiSWW1fBklXMTsuqg==}
+ /unenv@1.9.0:
+ resolution: {integrity: sha512-QKnFNznRxmbOF1hDgzpqrlIf6NC5sbZ2OJ+5Wl3OX8uM+LUJXbj4TXvLJCtwbPTmbMHCLIz6JLKNinNsMShK9g==}
dependencies:
consola: 3.2.3
- defu: 6.1.3
+ defu: 6.1.4
mime: 3.0.0
- node-fetch-native: 1.4.1
- pathe: 1.1.1
+ node-fetch-native: 1.6.2
+ pathe: 1.1.2
- /unhead@1.8.8:
- resolution: {integrity: sha512-SfUJ2kjz1NcfvdM+uEAlN11h31wHqMg0HZ5jriuRPjMCj5O7lPs4uSMdBUYh3KEo0uLKrW76FM85ONXkyZfm3g==}
+ /unhead@1.8.10:
+ resolution: {integrity: sha512-dth8FvZkLriO5ZWWOBIYBNSfGiwJtKcqpPWpSOk/Z0e2jdlgwoZEWZHFyte0EKvmbZxKcsWNMqIuv7dEmS5yZQ==}
dependencies:
- '@unhead/dom': 1.8.8
- '@unhead/schema': 1.8.8
- '@unhead/shared': 1.8.8
+ '@unhead/dom': 1.8.10
+ '@unhead/schema': 1.8.10
+ '@unhead/shared': 1.8.10
hookable: 5.5.3
/unicode-canonical-property-names-ecmascript@2.0.0:
@@ -13951,7 +13943,6 @@ packages:
/unicode-emoji-modifier-base@1.0.0:
resolution: {integrity: sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==}
engines: {node: '>=4'}
- dev: false
/unicode-match-property-ecmascript@2.0.0:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
@@ -13975,67 +13966,54 @@ packages:
resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
engines: {node: '>=18'}
- /unified@10.1.2:
- resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==}
+ /unified@11.0.4:
+ resolution: {integrity: sha512-apMPnyLjAX+ty4OrNap7yumyVAMlKx5IWU2wlzzUdYJO9A8f1p9m/gywF/GM2ZDFcjQPrx59Mc90KwmxsoklxQ==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 3.0.2
bail: 2.0.2
+ devlop: 1.1.0
extend: 3.0.2
- is-buffer: 2.0.5
is-plain-obj: 4.1.0
trough: 2.1.0
- vfile: 5.3.7
+ vfile: 6.0.1
dev: true
- /unimport@3.6.0(rollup@2.79.1):
- resolution: {integrity: sha512-yXW3Z30yk1vX8fxO8uHlq9wY9K+L56LHp4Hlbv8i7tW+NENSOv8AaFJUPtOQchxlT7/JBAzCtkrBtcVjKIr1VQ==}
- dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@2.79.1)
- escape-string-regexp: 5.0.0
- fast-glob: 3.3.2
- local-pkg: 0.5.0
- magic-string: 0.30.5
- mlly: 1.4.2
- pathe: 1.1.1
- pkg-types: 1.0.3
- scule: 1.1.0
- strip-literal: 1.3.0
- unplugin: 1.5.1
- transitivePeerDependencies:
- - rollup
-
- /unimport@3.6.0(rollup@3.29.4):
- resolution: {integrity: sha512-yXW3Z30yk1vX8fxO8uHlq9wY9K+L56LHp4Hlbv8i7tW+NENSOv8AaFJUPtOQchxlT7/JBAzCtkrBtcVjKIr1VQ==}
+ /unimport@3.7.1(rollup@3.29.4):
+ resolution: {integrity: sha512-V9HpXYfsZye5bPPYUgs0Otn3ODS1mDUciaBlXljI4C2fTwfFpvFZRywmlOu943puN9sncxROMZhsZCjNXEpzEQ==}
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@3.29.4)
+ acorn: 8.11.3
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.5
- mlly: 1.4.2
- pathe: 1.1.1
+ magic-string: 0.30.7
+ mlly: 1.6.1
+ pathe: 1.1.2
pkg-types: 1.0.3
- scule: 1.1.0
+ scule: 1.3.0
strip-literal: 1.3.0
- unplugin: 1.5.1
+ unplugin: 1.7.1
transitivePeerDependencies:
- rollup
dev: true
- /unimport@3.6.0(rollup@4.6.0):
- resolution: {integrity: sha512-yXW3Z30yk1vX8fxO8uHlq9wY9K+L56LHp4Hlbv8i7tW+NENSOv8AaFJUPtOQchxlT7/JBAzCtkrBtcVjKIr1VQ==}
+ /unimport@3.7.1(rollup@4.6.0):
+ resolution: {integrity: sha512-V9HpXYfsZye5bPPYUgs0Otn3ODS1mDUciaBlXljI4C2fTwfFpvFZRywmlOu943puN9sncxROMZhsZCjNXEpzEQ==}
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.6.0)
+ acorn: 8.11.3
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.5
- mlly: 1.4.2
- pathe: 1.1.1
+ magic-string: 0.30.7
+ mlly: 1.6.1
+ pathe: 1.1.2
pkg-types: 1.0.3
- scule: 1.1.0
+ scule: 1.3.0
strip-literal: 1.3.0
- unplugin: 1.5.1
+ unplugin: 1.7.1
transitivePeerDependencies:
- rollup
@@ -14061,35 +14039,19 @@ packages:
/unist-builder@4.0.0:
resolution: {integrity: sha512-wmRFnH+BLpZnTKpc5L7O67Kac89s9HMrtELpnNaE6TAobq5DTZZs5YaTQfAZBA9bFPECx2uVAPO31c+GVug8mg==}
dependencies:
- '@types/unist': 3.0.0
- dev: true
-
- /unist-util-generated@2.0.1:
- resolution: {integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==}
- dev: true
-
- /unist-util-is@5.2.1:
- resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==}
- dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 3.0.2
dev: true
/unist-util-is@6.0.0:
resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
dependencies:
- '@types/unist': 3.0.0
- dev: true
-
- /unist-util-position@4.0.4:
- resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==}
- dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 3.0.2
dev: true
/unist-util-position@5.0.0:
resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
dependencies:
- '@types/unist': 3.0.0
+ '@types/unist': 3.0.2
dev: true
/unist-util-stringify-position@2.0.3:
@@ -14098,44 +14060,23 @@ packages:
'@types/unist': 2.0.6
dev: true
- /unist-util-stringify-position@3.0.3:
- resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==}
- dependencies:
- '@types/unist': 2.0.6
- dev: true
-
/unist-util-stringify-position@4.0.0:
resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
dependencies:
- '@types/unist': 3.0.0
- dev: true
-
- /unist-util-visit-parents@5.1.3:
- resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==}
- dependencies:
- '@types/unist': 2.0.6
- unist-util-is: 5.2.1
+ '@types/unist': 3.0.2
dev: true
/unist-util-visit-parents@6.0.1:
resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==}
dependencies:
- '@types/unist': 3.0.0
+ '@types/unist': 3.0.2
unist-util-is: 6.0.0
dev: true
- /unist-util-visit@4.1.2:
- resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==}
- dependencies:
- '@types/unist': 2.0.6
- unist-util-is: 5.2.1
- unist-util-visit-parents: 5.1.3
- dev: true
-
/unist-util-visit@5.0.0:
resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
dependencies:
- '@types/unist': 3.0.0
+ '@types/unist': 3.0.2
unist-util-is: 6.0.0
unist-util-visit-parents: 6.0.1
dev: true
@@ -14144,50 +14085,53 @@ packages:
resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
engines: {node: '>= 10.0.0'}
- /unlazy@0.9.3:
- resolution: {integrity: sha512-Nv5XvDrw/H7jB0At+7TnikCARa5Ke3aEGVXtBJ8oCsjJNlBIHHCAv2UCZbJYN/EGLk9WI8w8vkB7/5x6E8L9Kg==}
+ /unlazy@0.11.1:
+ resolution: {integrity: sha512-X4EiJUXpqehX0ERViCllo4sSzYY1THvB/GaPmFcdm8ioTAx68xcFMCCiATERbI1Hy8slCkTtnIK0/WRNVHl7mA==}
dependencies:
- '@unlazy/core': 0.9.3
+ '@unlazy/core': 0.11.1
dev: true
- /unocss@0.53.4(@unocss/webpack@0.53.4)(postcss@8.4.32)(rollup@2.79.1)(vite@4.5.0):
- resolution: {integrity: sha512-UUEi+oh1rngHHP0DVESRS+ScoKMRF8q6GIQrElHb67gqG7GDEGpy3oocIA/6+1t71I4FFvnnxLMGIo9qAD0TEw==}
+ /unocss@0.58.5(@unocss/webpack@0.58.5)(postcss@8.4.35)(rollup@4.6.0)(vite@5.1.4):
+ resolution: {integrity: sha512-0g4P6jLgRRNnhscxw7nQ9RHGrKJ1UPPiHPet+YT3TXUcmy4mTiYgo9+kGQf5bjyrzsELJ10cT6Qz2y6g9Tls4g==}
engines: {node: '>=14'}
peerDependencies:
- '@unocss/webpack': 0.53.4
+ '@unocss/webpack': 0.58.5
+ vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
peerDependenciesMeta:
'@unocss/webpack':
optional: true
+ vite:
+ optional: true
dependencies:
- '@unocss/astro': 0.53.4(rollup@2.79.1)(vite@4.5.0)
- '@unocss/cli': 0.53.4(rollup@2.79.1)
- '@unocss/core': 0.53.4
- '@unocss/extractor-arbitrary-variants': 0.53.4
- '@unocss/postcss': 0.53.4(postcss@8.4.32)
- '@unocss/preset-attributify': 0.53.4
- '@unocss/preset-icons': 0.53.4
- '@unocss/preset-mini': 0.53.4
- '@unocss/preset-tagify': 0.53.4
- '@unocss/preset-typography': 0.53.4
- '@unocss/preset-uno': 0.53.4
- '@unocss/preset-web-fonts': 0.53.4
- '@unocss/preset-wind': 0.53.4
- '@unocss/reset': 0.53.4
- '@unocss/transformer-attributify-jsx': 0.53.4
- '@unocss/transformer-attributify-jsx-babel': 0.53.4
- '@unocss/transformer-compile-class': 0.53.4
- '@unocss/transformer-directives': 0.53.4
- '@unocss/transformer-variant-group': 0.53.4
- '@unocss/vite': 0.53.4(rollup@2.79.1)(vite@4.5.0)
- '@unocss/webpack': 0.53.4(rollup@2.79.1)(webpack@5.89.0)
+ '@unocss/astro': 0.58.5(rollup@4.6.0)(vite@5.1.4)
+ '@unocss/cli': 0.58.5(rollup@4.6.0)
+ '@unocss/core': 0.58.5
+ '@unocss/extractor-arbitrary-variants': 0.58.5
+ '@unocss/postcss': 0.58.5(postcss@8.4.35)
+ '@unocss/preset-attributify': 0.58.5
+ '@unocss/preset-icons': 0.58.5
+ '@unocss/preset-mini': 0.58.5
+ '@unocss/preset-tagify': 0.58.5
+ '@unocss/preset-typography': 0.58.5
+ '@unocss/preset-uno': 0.58.5
+ '@unocss/preset-web-fonts': 0.58.5
+ '@unocss/preset-wind': 0.58.5
+ '@unocss/reset': 0.58.5
+ '@unocss/transformer-attributify-jsx': 0.58.5
+ '@unocss/transformer-attributify-jsx-babel': 0.58.5
+ '@unocss/transformer-compile-class': 0.58.5
+ '@unocss/transformer-directives': 0.58.5
+ '@unocss/transformer-variant-group': 0.58.5
+ '@unocss/vite': 0.58.5(rollup@4.6.0)(vite@5.1.4)
+ '@unocss/webpack': 0.58.5(rollup@4.6.0)(webpack@5.89.0)
+ vite: 5.1.4
transitivePeerDependencies:
- postcss
- rollup
- supports-color
- - vite
dev: false
- /unplugin-combine@0.7.0(rollup@2.79.1)(vite@4.5.0)(webpack@5.89.0):
+ /unplugin-combine@0.7.0(rollup@4.6.0)(vite@5.1.4)(webpack@5.89.0):
resolution: {integrity: sha512-Pxa8ovANAUN/bz/pzGN8xnTqFfSJndIJAttXS4/BdVq7mxtKB65RVa2UxAnLmEzgwvtefXAjZgyx9fk5Bv0vEA==}
engines: {node: '>=14.19.0'}
peerDependencies:
@@ -14205,56 +14149,56 @@ packages:
webpack:
optional: true
dependencies:
- '@antfu/utils': 0.7.6
- rollup: 2.79.1
- unplugin: 1.5.1
- vite: 4.5.0
+ '@antfu/utils': 0.7.7
+ rollup: 4.6.0
+ unplugin: 1.7.1
+ vite: 5.1.4
webpack: 5.89.0
dev: false
- /unplugin-vue-define-options@1.3.15(rollup@2.79.1)(vue@3.4.19):
+ /unplugin-vue-define-options@1.3.15(rollup@4.6.0)(vue@3.4.19):
resolution: {integrity: sha512-SrNVpWtQXHxnLEpkCvEdhLdVepBIVFuj5Y8qY2bq45NdgBA4Obsq+8NtEP2lzdr0AlQlhgqUE8dxhuqu1mYEzw==}
engines: {node: '>=16.14.0'}
dependencies:
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
- ast-walker-scope: 0.5.0(rollup@2.79.1)
- unplugin: 1.5.1
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
+ ast-walker-scope: 0.5.0(rollup@4.6.0)
+ unplugin: 1.7.1
transitivePeerDependencies:
- rollup
- vue
dev: false
- /unplugin-vue-macros@2.4.4(@vueuse/core@10.2.1)(rollup@2.79.1)(typescript@5.1.6)(vite@4.5.0)(vue@3.4.19)(webpack@5.89.0):
+ /unplugin-vue-macros@2.4.4(@vueuse/core@10.8.0)(rollup@4.6.0)(typescript@5.3.3)(vite@5.1.4)(vue@3.4.19)(webpack@5.89.0):
resolution: {integrity: sha512-f7L8GnSOhtLNXU5PSyA8svIIjP68ij+TdM9Jhq409M31szSsW9ug6hZ5oTBwNcvapFV1I3ZvK4LKqXeY5FcIhA==}
engines: {node: '>=16.14.0'}
peerDependencies:
vue: ^3.4.19
dependencies:
- '@vue-macros/better-define': 1.6.9(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/chain-call': 0.1.3(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/common': 1.7.0(rollup@2.79.1)(vue@3.4.19)
+ '@vue-macros/better-define': 1.6.9(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/chain-call': 0.1.3(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/common': 1.7.0(rollup@4.6.0)(vue@3.4.19)
'@vue-macros/define-emit': 0.1.13(vue@3.4.19)
- '@vue-macros/define-models': 1.0.13(@vueuse/core@10.2.1)(rollup@2.79.1)(vue@3.4.19)
+ '@vue-macros/define-models': 1.0.13(@vueuse/core@10.8.0)(rollup@4.6.0)(vue@3.4.19)
'@vue-macros/define-prop': 0.2.4(vue@3.4.19)
- '@vue-macros/define-props': 1.0.17(@vue-macros/reactivity-transform@0.3.19)(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/define-props-refs': 1.1.7(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/define-render': 1.4.0(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/define-slots': 1.0.12(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/devtools': 0.1.3(typescript@5.1.6)(vite@4.5.0)
- '@vue-macros/export-expose': 0.0.10(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/export-props': 0.3.15(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/hoist-static': 1.4.9(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/jsx-directive': 0.3.0(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/named-template': 0.3.16(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/reactivity-transform': 0.3.19(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/setup-block': 0.2.15(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/setup-component': 0.16.16(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/setup-sfc': 0.16.0(rollup@2.79.1)(vue@3.4.19)
- '@vue-macros/short-emits': 1.4.7(rollup@2.79.1)(vue@3.4.19)
- unplugin: 1.5.1
- unplugin-combine: 0.7.0(rollup@2.79.1)(vite@4.5.0)(webpack@5.89.0)
- unplugin-vue-define-options: 1.3.15(rollup@2.79.1)(vue@3.4.19)
- vue: 3.4.19(typescript@5.1.6)
+ '@vue-macros/define-props': 1.0.17(@vue-macros/reactivity-transform@0.3.19)(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/define-props-refs': 1.1.7(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/define-render': 1.4.0(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/define-slots': 1.0.12(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/devtools': 0.1.3(typescript@5.3.3)(vite@5.1.4)
+ '@vue-macros/export-expose': 0.0.10(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/export-props': 0.3.15(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/hoist-static': 1.4.9(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/jsx-directive': 0.3.0(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/named-template': 0.3.16(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/reactivity-transform': 0.3.19(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/setup-block': 0.2.15(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/setup-component': 0.16.16(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/setup-sfc': 0.16.0(rollup@4.6.0)(vue@3.4.19)
+ '@vue-macros/short-emits': 1.4.7(rollup@4.6.0)(vue@3.4.19)
+ unplugin: 1.7.1
+ unplugin-combine: 0.7.0(rollup@4.6.0)(vite@5.1.4)(webpack@5.89.0)
+ unplugin-vue-define-options: 1.3.15(rollup@4.6.0)(vue@3.4.19)
+ vue: 3.4.19(typescript@5.3.3)
transitivePeerDependencies:
- '@vueuse/core'
- esbuild
@@ -14264,7 +14208,7 @@ packages:
- webpack
dev: false
- /unplugin-vue-router@0.7.0(rollup@2.79.1)(vue-router@4.2.5)(vue@3.4.19):
+ /unplugin-vue-router@0.7.0(rollup@3.29.4)(vue-router@4.3.0)(vue@3.4.19):
resolution: {integrity: sha512-ddRreGq0t5vlSB7OMy4e4cfU1w2AwBQCwmvW3oP/0IHQiokzbx4hd3TpwBu3eIAFVuhX2cwNQwp1U32UybTVCw==}
peerDependencies:
vue-router: ^4.1.0
@@ -14272,72 +14216,73 @@ packages:
vue-router:
optional: true
dependencies:
- '@babel/types': 7.23.5
- '@rollup/pluginutils': 5.1.0(rollup@2.79.1)
- '@vue-macros/common': 1.8.0(rollup@2.79.1)(vue@3.4.19)
- ast-walker-scope: 0.5.0(rollup@2.79.1)
- chokidar: 3.5.3
- fast-glob: 3.3.2
- json5: 2.2.3
- local-pkg: 0.4.3
- mlly: 1.4.2
- pathe: 1.1.1
- scule: 1.1.0
- unplugin: 1.5.1
- vue-router: 4.2.5(vue@3.4.19)
- yaml: 2.3.2
- transitivePeerDependencies:
- - rollup
- - vue
-
- /unplugin-vue-router@0.7.0(rollup@3.29.4)(vue-router@4.2.5)(vue@3.4.19):
- resolution: {integrity: sha512-ddRreGq0t5vlSB7OMy4e4cfU1w2AwBQCwmvW3oP/0IHQiokzbx4hd3TpwBu3eIAFVuhX2cwNQwp1U32UybTVCw==}
- peerDependencies:
- vue-router: ^4.1.0
- peerDependenciesMeta:
- vue-router:
- optional: true
- dependencies:
- '@babel/types': 7.23.5
+ '@babel/types': 7.23.9
'@rollup/pluginutils': 5.1.0(rollup@3.29.4)
'@vue-macros/common': 1.8.0(rollup@3.29.4)(vue@3.4.19)
ast-walker-scope: 0.5.0(rollup@3.29.4)
- chokidar: 3.5.3
+ chokidar: 3.6.0
fast-glob: 3.3.2
json5: 2.2.3
local-pkg: 0.4.3
- mlly: 1.4.2
- pathe: 1.1.1
- scule: 1.1.0
- unplugin: 1.5.1
- vue-router: 4.2.5(vue@3.4.19)
+ mlly: 1.6.1
+ pathe: 1.1.2
+ scule: 1.3.0
+ unplugin: 1.7.1
+ vue-router: 4.3.0(vue@3.4.19)
yaml: 2.3.2
transitivePeerDependencies:
- rollup
- vue
dev: true
- /unplugin@1.5.1:
- resolution: {integrity: sha512-0QkvG13z6RD+1L1FoibQqnvTwVBXvS4XSPwAyinVgoOCl2jAgwzdUKmEj05o4Lt8xwQI85Hb6mSyYkcAGwZPew==}
+ /unplugin-vue-router@0.7.0(rollup@4.6.0)(vue-router@4.3.0)(vue@3.4.19):
+ resolution: {integrity: sha512-ddRreGq0t5vlSB7OMy4e4cfU1w2AwBQCwmvW3oP/0IHQiokzbx4hd3TpwBu3eIAFVuhX2cwNQwp1U32UybTVCw==}
+ peerDependencies:
+ vue-router: ^4.1.0
+ peerDependenciesMeta:
+ vue-router:
+ optional: true
dependencies:
- acorn: 8.11.2
- chokidar: 3.5.3
+ '@babel/types': 7.23.9
+ '@rollup/pluginutils': 5.1.0(rollup@4.6.0)
+ '@vue-macros/common': 1.8.0(rollup@4.6.0)(vue@3.4.19)
+ ast-walker-scope: 0.5.0(rollup@4.6.0)
+ chokidar: 3.6.0
+ fast-glob: 3.3.2
+ json5: 2.2.3
+ local-pkg: 0.4.3
+ mlly: 1.6.1
+ pathe: 1.1.2
+ scule: 1.3.0
+ unplugin: 1.7.1
+ vue-router: 4.3.0(vue@3.4.19)
+ yaml: 2.3.2
+ transitivePeerDependencies:
+ - rollup
+ - vue
+
+ /unplugin@1.7.1:
+ resolution: {integrity: sha512-JqzORDAPxxs8ErLV4x+LL7bk5pk3YlcWqpSNsIkAZj972KzFZLClc/ekppahKkOczGkwIG6ElFgdOgOlK4tXZw==}
+ dependencies:
+ acorn: 8.11.3
+ chokidar: 3.6.0
webpack-sources: 3.2.3
webpack-virtual-modules: 0.6.1
- /unstorage@1.9.0(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1):
- resolution: {integrity: sha512-VpD8ZEYc/le8DZCrny3bnqKE4ZjioQxBRnWE+j5sGNvziPjeDlaS1NaFFHzl/kkXaO3r7UaF8MGQrs14+1B4pQ==}
+ /unstorage@1.10.1(@upstash/redis@1.27.1)(@vercel/kv@1.0.1)(idb-keyval@6.2.1):
+ resolution: {integrity: sha512-rWQvLRfZNBpF+x8D3/gda5nUCQL2PgXy2jNG4U7/Rc9BGEv9+CAJd0YyGCROUBKs9v49Hg8huw3aih5Bf5TAVw==}
peerDependencies:
'@azure/app-configuration': ^1.4.1
- '@azure/cosmos': ^3.17.3
+ '@azure/cosmos': ^4.0.0
'@azure/data-tables': ^13.2.2
- '@azure/identity': ^3.2.3
+ '@azure/identity': ^3.3.2
'@azure/keyvault-secrets': ^4.7.0
- '@azure/storage-blob': ^12.14.0
- '@capacitor/preferences': ^5.0.0
- '@planetscale/database': ^1.8.0
- '@upstash/redis': ^1.22.0
- '@vercel/kv': ^0.2.2
+ '@azure/storage-blob': ^12.16.0
+ '@capacitor/preferences': ^5.0.6
+ '@netlify/blobs': ^6.2.0
+ '@planetscale/database': ^1.11.0
+ '@upstash/redis': ^1.23.4
+ '@vercel/kv': ^0.2.3
idb-keyval: ^6.2.1
peerDependenciesMeta:
'@azure/app-configuration':
@@ -14354,6 +14299,8 @@ packages:
optional: true
'@capacitor/preferences':
optional: true
+ '@netlify/blobs':
+ optional: true
'@planetscale/database':
optional: true
'@upstash/redis':
@@ -14366,46 +14313,52 @@ packages:
'@upstash/redis': 1.27.1
'@vercel/kv': 1.0.1
anymatch: 3.1.3
- chokidar: 3.5.3
- destr: 2.0.2
- h3: 1.9.0
+ chokidar: 3.6.0
+ destr: 2.0.3
+ h3: 1.10.2
idb-keyval: 6.2.1
ioredis: 5.3.2
- listhen: 1.5.5
- lru-cache: 10.0.1
+ listhen: 1.6.0
+ lru-cache: 10.2.0
mri: 1.2.0
- node-fetch-native: 1.4.1
+ node-fetch-native: 1.6.2
ofetch: 1.3.3
- ufo: 1.3.2
+ ufo: 1.4.0
transitivePeerDependencies:
- supports-color
- /untildify@4.0.0:
- resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
- engines: {node: '>=8'}
-
- /untun@0.1.2:
- resolution: {integrity: sha512-wLAMWvxfqyTiBODA1lg3IXHQtjggYLeTK7RnSfqtOXixWJ3bAa2kK/HHmOOg19upteqO3muLvN6O/icbyQY33Q==}
+ /untun@0.1.3:
+ resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==}
hasBin: true
dependencies:
citty: 0.1.5
consola: 3.2.3
- pathe: 1.1.1
+ pathe: 1.1.2
- /untyped@1.4.0:
- resolution: {integrity: sha512-Egkr/s4zcMTEuulcIb7dgURS6QpN7DyqQYdf+jBtiaJvQ+eRsrtWUoX84SbvQWuLkXsOjM+8sJC9u6KoMK/U7Q==}
+ /untyped@1.4.2:
+ resolution: {integrity: sha512-nC5q0DnPEPVURPhfPQLahhSTnemVtPzdx7ofiRxXpOB2SYnb3MfdU3DVGyJdS8Lx+tBWeAePO8BfU/3EgksM7Q==}
hasBin: true
dependencies:
- '@babel/core': 7.23.5
- '@babel/standalone': 7.22.15
- '@babel/types': 7.23.5
- defu: 6.1.3
+ '@babel/core': 7.23.9
+ '@babel/standalone': 7.23.10
+ '@babel/types': 7.23.9
+ defu: 6.1.4
jiti: 1.21.0
mri: 1.2.0
- scule: 1.1.0
+ scule: 1.3.0
transitivePeerDependencies:
- supports-color
+ /unwasm@0.3.7:
+ resolution: {integrity: sha512-+s4iWvHHYnLuwNo+9mqVFLBmBzGc3gIuzkVZ8fdMN9K/kWopCnfaUVnDagd2OX3It5nRR5EenI5nSQb8FOd0fA==}
+ dependencies:
+ magic-string: 0.30.7
+ mlly: 1.6.1
+ pathe: 1.1.2
+ pkg-types: 1.0.3
+ unplugin: 1.7.1
+ dev: true
+
/upath@1.2.0:
resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==}
engines: {node: '>=4'}
@@ -14416,13 +14369,13 @@ packages:
engines: {node: '>=4'}
dev: false
- /update-browserslist-db@1.0.13(browserslist@4.22.1):
+ /update-browserslist-db@1.0.13(browserslist@4.23.0):
resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
- browserslist: 4.22.1
+ browserslist: 4.23.0
escalade: 3.1.1
picocolors: 1.0.0
@@ -14460,17 +14413,6 @@ packages:
which-typed-array: 1.1.9
dev: true
- /uvu@0.5.6:
- resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==}
- engines: {node: '>=8'}
- hasBin: true
- dependencies:
- dequal: 2.0.3
- diff: 5.1.0
- kleur: 4.1.5
- sade: 1.8.1
- dev: true
-
/validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
dependencies:
@@ -14483,60 +14425,38 @@ packages:
dependencies:
builtins: 5.0.1
- /vfile-location@4.1.0:
- resolution: {integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==}
+ /vfile-location@5.0.2:
+ resolution: {integrity: sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==}
dependencies:
- '@types/unist': 2.0.6
- vfile: 5.3.7
+ '@types/unist': 3.0.2
+ vfile: 6.0.1
dev: true
- /vfile-message@3.1.4:
- resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==}
+ /vfile-message@4.0.2:
+ resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==}
dependencies:
- '@types/unist': 2.0.6
- unist-util-stringify-position: 3.0.3
+ '@types/unist': 3.0.2
+ unist-util-stringify-position: 4.0.0
dev: true
- /vfile@5.3.7:
- resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==}
+ /vfile@6.0.1:
+ resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==}
dependencies:
- '@types/unist': 2.0.6
- is-buffer: 2.0.5
- unist-util-stringify-position: 3.0.3
- vfile-message: 3.1.4
+ '@types/unist': 3.0.2
+ unist-util-stringify-position: 4.0.0
+ vfile-message: 4.0.2
dev: true
- /vite-node@0.33.0:
- resolution: {integrity: sha512-19FpHYbwWWxDr73ruNahC+vtEdza52kA90Qb3La98yZ0xULqV8A5JLNPUff0f5zID4984tW7l3DH2przTJUZSw==}
- engines: {node: '>=v14.18.0'}
- hasBin: true
- dependencies:
- cac: 6.7.14
- debug: 4.3.4
- mlly: 1.4.2
- pathe: 1.1.1
- picocolors: 1.0.0
- vite: 4.5.0
- transitivePeerDependencies:
- - '@types/node'
- - less
- - lightningcss
- - sass
- - stylus
- - sugarss
- - supports-color
- - terser
-
- /vite-node@1.3.0:
- resolution: {integrity: sha512-D/oiDVBw75XMnjAXne/4feCkCEwcbr2SU1bjAhCcfI5Bq3VoOHji8/wCPAfUkDIeohJ5nSZ39fNxM3dNZ6OBOA==}
+ /vite-node@1.3.1:
+ resolution: {integrity: sha512-azbRrqRxlWTJEVbzInZCTchx0X69M/XPTCz4H+TLvlTcR/xH/3hkRqhOakT41fMJCMzXTu4UvegkZiEoJAWvng==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
dependencies:
cac: 6.7.14
debug: 4.3.4
- pathe: 1.1.1
+ pathe: 1.1.2
picocolors: 1.0.0
- vite: 5.0.7
+ vite: 5.1.4
transitivePeerDependencies:
- '@types/node'
- less
@@ -14547,8 +14467,8 @@ packages:
- supports-color
- terser
- /vite-plugin-checker@0.6.2(eslint@8.49.0)(typescript@5.1.6)(vite@4.5.0)(vue-tsc@1.8.8):
- resolution: {integrity: sha512-YvvvQ+IjY09BX7Ab+1pjxkELQsBd4rPhWNw8WLBeFVxu/E7O+n6VYAqNsKdK/a2luFlX/sMpoWdGFfg4HvwdJQ==}
+ /vite-plugin-checker@0.6.4(eslint@8.49.0)(typescript@5.3.3)(vite@5.1.4)(vue-tsc@1.8.27):
+ resolution: {integrity: sha512-2zKHH5oxr+ye43nReRbC2fny1nyARwhxdm0uNYp/ERy4YvU9iZpNOsueoi/luXw5gnpqRSvjcEPxXbS153O2wA==}
engines: {node: '>=14.16'}
peerDependencies:
eslint: '>=7'
@@ -14581,27 +14501,25 @@ packages:
'@babel/code-frame': 7.23.5
ansi-escapes: 4.3.2
chalk: 4.1.2
- chokidar: 3.5.3
+ chokidar: 3.6.0
commander: 8.3.0
eslint: 8.49.0
fast-glob: 3.3.2
fs-extra: 11.2.0
- lodash.debounce: 4.0.8
- lodash.pick: 4.4.0
npm-run-path: 4.0.1
- semver: 7.5.4
+ semver: 7.6.0
strip-ansi: 6.0.1
tiny-invariant: 1.3.1
- typescript: 5.1.6
- vite: 4.5.0
+ typescript: 5.3.3
+ vite: 5.1.4
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
vscode-languageserver-textdocument: 1.0.8
vscode-uri: 3.0.7
- vue-tsc: 1.8.8(typescript@5.1.6)
+ vue-tsc: 1.8.27(typescript@5.3.3)
- /vite-plugin-inspect@0.7.42(@nuxt/kit@3.8.2)(rollup@2.79.1)(vite@4.5.0):
- resolution: {integrity: sha512-JCyX86wr3siQc+p9Kd0t8VkFHAJag0RaQVIpdFGSv5FEaePEVB6+V/RGtz2dQkkGSXQzRWrPs4cU3dRKg32bXw==}
+ /vite-plugin-inspect@0.8.3(@nuxt/kit@3.10.3)(rollup@3.29.4)(vite@5.1.4):
+ resolution: {integrity: sha512-SBVzOIdP/kwe6hjkt7LSW4D0+REqqe58AumcnCfRNw4Kt3mbS9pEBkch+nupu2PBxv2tQi69EQHQ1ZA1vgB/Og==}
engines: {node: '>=14'}
peerDependencies:
'@nuxt/kit': '*'
@@ -14610,117 +14528,89 @@ packages:
'@nuxt/kit':
optional: true
dependencies:
- '@antfu/utils': 0.7.6
- '@nuxt/kit': 3.8.2(rollup@2.79.1)
- '@rollup/pluginutils': 5.1.0(rollup@2.79.1)
- debug: 4.3.4
- error-stack-parser-es: 0.1.1
- fs-extra: 11.2.0
- open: 9.1.0
- picocolors: 1.0.0
- sirv: 2.0.3
- vite: 4.5.0
- transitivePeerDependencies:
- - rollup
- - supports-color
-
- /vite-plugin-inspect@0.7.42(@nuxt/kit@3.8.2)(rollup@3.29.4)(vite@4.5.0):
- resolution: {integrity: sha512-JCyX86wr3siQc+p9Kd0t8VkFHAJag0RaQVIpdFGSv5FEaePEVB6+V/RGtz2dQkkGSXQzRWrPs4cU3dRKg32bXw==}
- engines: {node: '>=14'}
- peerDependencies:
- '@nuxt/kit': '*'
- vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0
- peerDependenciesMeta:
- '@nuxt/kit':
- optional: true
- dependencies:
- '@antfu/utils': 0.7.6
- '@nuxt/kit': 3.8.2(rollup@3.29.4)
+ '@antfu/utils': 0.7.7
+ '@nuxt/kit': 3.10.3(rollup@3.29.4)
'@rollup/pluginutils': 5.1.0(rollup@3.29.4)
debug: 4.3.4
error-stack-parser-es: 0.1.1
fs-extra: 11.2.0
- open: 9.1.0
+ open: 10.0.3
+ perfect-debounce: 1.0.0
picocolors: 1.0.0
- sirv: 2.0.3
- vite: 4.5.0
+ sirv: 2.0.4
+ vite: 5.1.4
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /vite-plugin-pwa@0.16.4(vite@4.5.0)(workbox-build@7.0.0)(workbox-window@7.0.0):
- resolution: {integrity: sha512-lmwHFIs9zI2H9bXJld/zVTbCqCQHZ9WrpyDMqosICDV0FVnCJwniX1NMDB79HGTIZzOQkY4gSZaVTJTw6maz/Q==}
+ /vite-plugin-inspect@0.8.3(@nuxt/kit@3.10.3)(rollup@4.6.0)(vite@5.1.4):
+ resolution: {integrity: sha512-SBVzOIdP/kwe6hjkt7LSW4D0+REqqe58AumcnCfRNw4Kt3mbS9pEBkch+nupu2PBxv2tQi69EQHQ1ZA1vgB/Og==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@nuxt/kit': '*'
+ vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0
+ peerDependenciesMeta:
+ '@nuxt/kit':
+ optional: true
+ dependencies:
+ '@antfu/utils': 0.7.7
+ '@nuxt/kit': 3.10.3(rollup@4.6.0)
+ '@rollup/pluginutils': 5.1.0(rollup@4.6.0)
+ debug: 4.3.4
+ error-stack-parser-es: 0.1.1
+ fs-extra: 11.2.0
+ open: 10.0.3
+ perfect-debounce: 1.0.0
+ picocolors: 1.0.0
+ sirv: 2.0.4
+ vite: 5.1.4
+ transitivePeerDependencies:
+ - rollup
+ - supports-color
+
+ /vite-plugin-pwa@0.19.0(vite@5.1.4)(workbox-build@7.0.0)(workbox-window@7.0.0):
+ resolution: {integrity: sha512-Unfb4Jk/ka4HELtpMLIPCmGcW4LFT+CL7Ri1/Of1544CVKXS2ftP91kUkNzkzeI1sGpOdVGuxprVLB9NjMoCAA==}
engines: {node: '>=16.0.0'}
peerDependencies:
- vite: ^3.1.0 || ^4.0.0
+ '@vite-pwa/assets-generator': ^0.2.4
+ vite: ^3.1.0 || ^4.0.0 || ^5.0.0
workbox-build: ^7.0.0
workbox-window: ^7.0.0
+ peerDependenciesMeta:
+ '@vite-pwa/assets-generator':
+ optional: true
dependencies:
debug: 4.3.4
fast-glob: 3.3.2
pretty-bytes: 6.1.1
- vite: 4.5.0
+ vite: 5.1.4
workbox-build: 7.0.0
workbox-window: 7.0.0
transitivePeerDependencies:
- supports-color
dev: false
- /vite-plugin-vue-inspector@4.0.0(vite@4.5.0):
- resolution: {integrity: sha512-xNjMbRj3YrebuuInTvlC8ghPtzT+3LjMIQPeeR/5CaFd+WcbA9wBnECZmlcP3GITCVED0SxGmTyoJ3iVKsK4vQ==}
+ /vite-plugin-vue-inspector@4.0.2(vite@5.1.4):
+ resolution: {integrity: sha512-KPvLEuafPG13T7JJuQbSm5PwSxKFnVS965+MP1we2xGw9BPkkc/+LPix5MMWenpKWqtjr0ws8THrR+KuoDC8hg==}
peerDependencies:
- vite: ^3.0.0-0 || ^4.0.0-0
+ vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/plugin-proposal-decorators': 7.23.0(@babel/core@7.23.5)
- '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.5)
- '@babel/plugin-transform-typescript': 7.23.5(@babel/core@7.23.5)
- '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.5)
- '@vue/compiler-dom': 3.3.9
+ '@babel/core': 7.23.9
+ '@babel/plugin-proposal-decorators': 7.23.0(@babel/core@7.23.9)
+ '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-typescript': 7.23.5(@babel/core@7.23.9)
+ '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.9)
+ '@vue/compiler-dom': 3.4.19
kolorist: 1.8.0
- magic-string: 0.30.5
- vite: 4.5.0
+ magic-string: 0.30.7
+ vite: 5.1.4
transitivePeerDependencies:
- supports-color
- /vite@4.5.0:
- resolution: {integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==}
- engines: {node: ^14.18.0 || >=16.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': '>= 14'
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- dependencies:
- esbuild: 0.18.20
- postcss: 8.4.32
- rollup: 3.29.4
- optionalDependencies:
- fsevents: 2.3.3
-
- /vite@5.0.7:
- resolution: {integrity: sha512-B4T4rJCDPihrQo2B+h1MbeGL/k/GMAHzhQ8S0LjQ142s6/+l3hHTT095ORvsshj4QCkoWu3Xtmob5mazvakaOw==}
+ /vite@5.1.4:
+ resolution: {integrity: sha512-n+MPqzq+d9nMVTKyewqw6kSt+R3CkvF9QAKY8obiQn8g1fwTscKxyfaYnC632HtBXAQGc1Yjomphwn1dtwGAHg==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -14747,17 +14637,18 @@ packages:
terser:
optional: true
dependencies:
- esbuild: 0.19.8
- postcss: 8.4.32
+ esbuild: 0.19.12
+ postcss: 8.4.35
rollup: 4.6.0
optionalDependencies:
fsevents: 2.3.3
- /vitest-environment-nuxt@1.0.0-alpha.1(@vue/test-utils@2.4.3)(h3@1.9.0)(happy-dom@10.5.2)(rollup@2.79.1)(vite@4.5.0)(vitest@1.3.0)(vue-router@4.2.5)(vue@3.4.19):
- resolution: {integrity: sha512-0/gfNcZNNqFRjocmGZN/R4PlZ0p4MlmmsTkplKf9FwgBadGxN4eYtxOqk1ubhz+qf8ZvPRER3toydmOASovMcg==}
+ /vitest-environment-nuxt@1.0.0(@vue/test-utils@2.4.4)(h3@1.10.2)(happy-dom@10.5.2)(rollup@4.6.0)(vite@5.1.4)(vitest@1.3.1)(vue-router@4.3.0)(vue@3.4.19):
+ resolution: {integrity: sha512-AWMO9h4HdbaFdPWZw34gALFI8gbBiOpvfbyeZwHIPfh4kWg/TwElYHvYMQ61WPUlCGaS5LebfHkaI0WPyb//Iw==}
dependencies:
- '@nuxt/test-utils': 3.9.0-alpha.1(@vue/test-utils@2.4.3)(h3@1.9.0)(happy-dom@10.5.2)(rollup@2.79.1)(vite@4.5.0)(vitest@1.3.0)(vue-router@4.2.5)(vue@3.4.19)
+ '@nuxt/test-utils': 3.11.0(@vue/test-utils@2.4.4)(h3@1.10.2)(happy-dom@10.5.2)(rollup@4.6.0)(vite@5.1.4)(vitest@1.3.1)(vue-router@4.3.0)(vue@3.4.19)
transitivePeerDependencies:
+ - '@cucumber/cucumber'
- '@jest/globals'
- '@testing-library/vue'
- '@vitest/ui'
@@ -14774,15 +14665,15 @@ packages:
- vue-router
dev: false
- /vitest@1.3.0(happy-dom@10.5.2):
- resolution: {integrity: sha512-V9qb276J1jjSx9xb75T2VoYXdO1UKi+qfflY7V7w93jzX7oA/+RtYE6TcifxksxsZvygSSMwu2Uw6di7yqDMwg==}
+ /vitest@1.3.1(happy-dom@10.5.2):
+ resolution: {integrity: sha512-/1QJqXs8YbCrfv/GPQ05wAZf2eakUPLPa18vkJAKE7RXOKfVHqMZZ1WlTjiwl6Gcn65M5vpNUB6EFLnEdRdEXQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': 1.3.0
- '@vitest/ui': 1.3.0
+ '@vitest/browser': 1.3.1
+ '@vitest/ui': 1.3.1
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -14799,26 +14690,26 @@ packages:
jsdom:
optional: true
dependencies:
- '@vitest/expect': 1.3.0
- '@vitest/runner': 1.3.0
- '@vitest/snapshot': 1.3.0
- '@vitest/spy': 1.3.0
- '@vitest/utils': 1.3.0
+ '@vitest/expect': 1.3.1
+ '@vitest/runner': 1.3.1
+ '@vitest/snapshot': 1.3.1
+ '@vitest/spy': 1.3.1
+ '@vitest/utils': 1.3.1
acorn-walk: 8.3.2
chai: 4.3.10
debug: 4.3.4
execa: 8.0.1
happy-dom: 10.5.2
local-pkg: 0.5.0
- magic-string: 0.30.5
- pathe: 1.1.1
+ magic-string: 0.30.7
+ pathe: 1.1.2
picocolors: 1.0.0
- std-env: 3.6.0
+ std-env: 3.7.0
strip-literal: 2.0.0
tinybench: 2.5.1
tinypool: 0.8.2
- vite: 5.0.7
- vite-node: 1.3.0
+ vite: 5.1.4
+ vite-node: 1.3.1
why-is-node-running: 2.2.2
transitivePeerDependencies:
- less
@@ -14838,7 +14729,7 @@ packages:
engines: {vscode: ^1.52.0}
dependencies:
minimatch: 3.1.2
- semver: 7.5.4
+ semver: 7.6.0
vscode-languageserver-protocol: 3.16.0
/vscode-languageserver-protocol@3.16.0:
@@ -14871,38 +14762,34 @@ packages:
classnames: 2.3.2
debounce: 1.2.1
easy-bem: 1.1.1
- vue: 3.4.19(typescript@5.1.6)
+ vue: 3.4.19(typescript@5.3.3)
dev: false
/vue-bundle-renderer@2.0.0:
resolution: {integrity: sha512-oYATTQyh8XVkUWe2kaKxhxKVuuzK2Qcehe+yr3bGiaQAhK3ry2kYE4FWOfL+KO3hVFwCdLmzDQTzYhTi9C+R2A==}
dependencies:
- ufo: 1.3.2
+ ufo: 1.4.0
- /vue-component-meta@1.8.3(typescript@5.1.6):
- resolution: {integrity: sha512-NjXVi1r4AVMGb5jiuefb+bpvUJmUddkkZNP3DB4TAjYuYoq6HVqppcqNUrYrbsnsGPAQko/WY+TvQ60BCYTwoA==}
+ /vue-component-meta@1.8.27(typescript@5.3.3):
+ resolution: {integrity: sha512-j3WJsyQHP4TDlvnjHc/eseo0/eVkf0FaCpkqGwez5zD+Tj31onBzWZEXTnWKs8xRj0n3dMNYdy3SpiS6NubSvg==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@volar/typescript': 1.7.10
- '@vue/language-core': 1.8.3(typescript@5.1.6)
- typesafe-path: 0.2.2
- typescript: 5.1.6
- vue-component-type-helpers: 1.8.3
+ '@volar/typescript': 1.11.1
+ '@vue/language-core': 1.8.27(typescript@5.3.3)
+ path-browserify: 1.0.1
+ typescript: 5.3.3
+ vue-component-type-helpers: 1.8.27
dev: true
- /vue-component-type-helpers@1.8.25:
- resolution: {integrity: sha512-NCA6sekiJIMnMs4DdORxATXD+/NRkQpS32UC+I1KQJUasx+Z7MZUb3Y+MsKsFmX+PgyTYSteb73JW77AibaCCw==}
+ /vue-component-type-helpers@1.8.27:
+ resolution: {integrity: sha512-0vOfAtI67UjeO1G6UiX5Kd76CqaQ67wrRZiOe7UAb9Jm6GzlUr/fC7CV90XfwapJRjpCMaZFhv1V0ajWRmE9Dg==}
- /vue-component-type-helpers@1.8.3:
- resolution: {integrity: sha512-+/nC0Ra571Jqe7QuZObo1WJbHcdHo8d1rcF8EDSuFAl+dQGlMB6zbM4dsrofJY1wIeky/rGkFE6pCmtHaEf/zw==}
- dev: true
-
- /vue-demi@0.13.11(vue@3.4.19):
- resolution: {integrity: sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==}
+ /vue-demi@0.14.7(vue@3.4.19):
+ resolution: {integrity: sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
@@ -14913,22 +14800,7 @@ packages:
'@vue/composition-api':
optional: true
dependencies:
- vue: 3.4.19(typescript@5.1.6)
- dev: false
-
- /vue-demi@0.14.5(vue@3.4.19):
- resolution: {integrity: sha512-o9NUVpl/YlsGJ7t+xuqJKx8EBGf1quRhCiT6D/J0pfwmk9zUwYkC7yrF4SZCe6fETvSM3UNL2edcbYrSyc4QHA==}
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- peerDependencies:
- '@vue/composition-api': ^1.0.0-rc.1
- vue: ^3.4.19
- peerDependenciesMeta:
- '@vue/composition-api':
- optional: true
- dependencies:
- vue: 3.4.19(typescript@5.1.6)
+ vue: 3.4.19(typescript@5.3.3)
/vue-devtools-stub@0.1.0:
resolution: {integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==}
@@ -14946,53 +14818,21 @@ packages:
espree: 9.6.1
esquery: 1.5.0
lodash: 4.17.21
- semver: 7.5.4
+ semver: 7.6.0
transitivePeerDependencies:
- supports-color
dev: true
- /vue-i18n-routing@0.12.2(vue-i18n@9.3.0-beta.16)(vue-router@4.2.5)(vue@3.4.19):
- resolution: {integrity: sha512-VzYUzbUJyPHUP74t973dN42/sJnZUzBwdcYX+TJgr9YHD08+9uouw5Ume2jHO2Pi8Nymu4cz/UiHWDPeMyc/bQ==}
- engines: {node: '>= 14.6'}
- peerDependencies:
- '@vue/composition-api': ^1.0.0-rc.1
- vue: ^3.4.19
- vue-i18n: ^8.26.1 || ^9.2.0 || ^9.3.0-beta.10
- vue-i18n-bridge: ^9.2.0 || ^9.3.0-beta.10
- vue-router: ^3.5.3 || ^3.6.0 || ^4.0.0
- peerDependenciesMeta:
- '@vue/composition-api':
- optional: true
- vue:
- optional: true
- vue-i18n:
- optional: true
- vue-i18n-bridge:
- optional: true
- vue-router:
- optional: true
- dependencies:
- '@intlify/shared': 9.4.1
- '@intlify/vue-i18n-bridge': 0.8.0(vue-i18n@9.3.0-beta.16)
- '@intlify/vue-router-bridge': 0.8.0(vue-router@4.2.5)(vue@3.4.19)
- ufo: 1.3.2
- vue: 3.4.19(typescript@5.1.6)
- vue-demi: 0.13.11(vue@3.4.19)
- vue-i18n: 9.3.0-beta.16(vue@3.4.19)
- vue-router: 4.2.5(vue@3.4.19)
- dev: false
-
- /vue-i18n@9.3.0-beta.16(vue@3.4.19):
- resolution: {integrity: sha512-huhBeRB0SEvv2gIgCS7Zo06nb8AAhbPQCoB/vwDfbDNs8F+giv9QCmhEed+TkLTih/54JGnXkxN6tw1VZqVY/w==}
- engines: {node: '>= 14'}
+ /vue-i18n@9.9.1(vue@3.4.19):
+ resolution: {integrity: sha512-xyQ4VspLdNSPTKBFBPWa1tvtj+9HuockZwgFeD2OhxxXuC2CWeNvV4seu2o9+vbQOyQbhAM5Ez56oxUrrnTWdw==}
+ engines: {node: '>= 16'}
peerDependencies:
vue: ^3.4.19
dependencies:
- '@intlify/core-base': 9.3.0-beta.16
- '@intlify/shared': 9.3.0-beta.16
- '@intlify/vue-devtools': 9.3.0-beta.16
- '@vue/devtools-api': 6.5.0
- vue: 3.4.19(typescript@5.1.6)
+ '@intlify/core-base': 9.9.1
+ '@intlify/shared': 9.9.1
+ '@vue/devtools-api': 6.6.1
+ vue: 3.4.19(typescript@5.3.3)
dev: false
/vue-observe-visibility@2.0.0-alpha.1(vue@3.4.19):
@@ -15000,7 +14840,7 @@ packages:
peerDependencies:
vue: ^3.4.19
dependencies:
- vue: 3.4.19(typescript@5.1.6)
+ vue: 3.4.19(typescript@5.3.3)
dev: false
/vue-resize@2.0.0-alpha.1(vue@3.4.19):
@@ -15008,16 +14848,16 @@ packages:
peerDependencies:
vue: ^3.4.19
dependencies:
- vue: 3.4.19(typescript@5.1.6)
+ vue: 3.4.19(typescript@5.3.3)
dev: false
- /vue-router@4.2.5(vue@3.4.19):
- resolution: {integrity: sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==}
+ /vue-router@4.3.0(vue@3.4.19):
+ resolution: {integrity: sha512-dqUcs8tUeG+ssgWhcPbjHvazML16Oga5w34uCUmsk7i0BcnskoLGwjpa15fqMr2Fa5JgVBrdL2MEgqz6XZ/6IQ==}
peerDependencies:
vue: ^3.4.19
dependencies:
- '@vue/devtools-api': 6.5.0
- vue: 3.4.19(typescript@5.1.6)
+ '@vue/devtools-api': 6.6.1
+ vue: 3.4.19(typescript@5.3.3)
/vue-template-compiler@2.7.14:
resolution: {integrity: sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==}
@@ -15025,16 +14865,16 @@ packages:
de-indent: 1.0.2
he: 1.2.0
- /vue-tsc@1.8.8(typescript@5.1.6):
- resolution: {integrity: sha512-bSydNFQsF7AMvwWsRXD7cBIXaNs/KSjvzWLymq/UtKE36697sboX4EccSHFVxvgdBlI1frYPc/VMKJNB7DFeDQ==}
+ /vue-tsc@1.8.27(typescript@5.3.3):
+ resolution: {integrity: sha512-WesKCAZCRAbmmhuGl3+VrdWItEvfoFIPXOvUJkjULi+x+6G/Dy69yO3TBRJDr9eUlmsNAwVmxsNZxvHKzbkKdg==}
hasBin: true
peerDependencies:
typescript: '*'
dependencies:
- '@vue/language-core': 1.8.8(typescript@5.1.6)
- '@vue/typescript': 1.8.8(typescript@5.1.6)
- semver: 7.5.4
- typescript: 5.1.6
+ '@volar/typescript': 1.11.1
+ '@vue/language-core': 1.8.27(typescript@5.3.3)
+ semver: 7.6.0
+ typescript: 5.3.3
/vue-virtual-scroller@2.0.0-beta.8(vue@3.4.19):
resolution: {integrity: sha512-b8/f5NQ5nIEBRTNi6GcPItE4s7kxNHw2AIHLtDp+2QvqdTjVN0FgONwX9cr53jWRgnu+HRLPaWDOR2JPI5MTfQ==}
@@ -15042,12 +14882,12 @@ packages:
vue: ^3.4.19
dependencies:
mitt: 2.1.0
- vue: 3.4.19(typescript@5.1.6)
+ vue: 3.4.19(typescript@5.3.3)
vue-observe-visibility: 2.0.0-alpha.1(vue@3.4.19)
vue-resize: 2.0.0-alpha.1(vue@3.4.19)
dev: false
- /vue@3.4.19(typescript@5.1.6):
+ /vue@3.4.19(typescript@5.3.3):
resolution: {integrity: sha512-W/7Fc9KUkajFU8dBeDluM4sRGc/aa4YJnOYck8dkjgZoXtVsn3OeTGni66FV1l3+nvPA7VBFYtPioaGKUmEADw==}
peerDependencies:
typescript: '*'
@@ -15060,7 +14900,7 @@ packages:
'@vue/runtime-dom': 3.4.19
'@vue/server-renderer': 3.4.19(vue@3.4.19)
'@vue/shared': 3.4.19
- typescript: 5.1.6
+ typescript: 5.3.3
/w3c-keyname@2.2.8:
resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==}
@@ -15111,9 +14951,9 @@ packages:
'@webassemblyjs/ast': 1.11.6
'@webassemblyjs/wasm-edit': 1.11.6
'@webassemblyjs/wasm-parser': 1.11.6
- acorn: 8.11.2
- acorn-import-assertions: 1.9.0(acorn@8.11.2)
- browserslist: 4.22.1
+ acorn: 8.11.3
+ acorn-import-assertions: 1.9.0(acorn@8.11.3)
+ browserslist: 4.23.0
chrome-trace-event: 1.0.3
enhanced-resolve: 5.15.0
es-module-lexer: 1.3.1
@@ -15233,10 +15073,10 @@ packages:
engines: {node: '>=16.0.0'}
dependencies:
'@apideck/better-ajv-errors': 0.3.6(ajv@8.12.0)
- '@babel/core': 7.23.5
- '@babel/preset-env': 7.22.5(@babel/core@7.23.5)
+ '@babel/core': 7.23.9
+ '@babel/preset-env': 7.22.5(@babel/core@7.23.9)
'@babel/runtime': 7.22.5
- '@rollup/plugin-babel': 5.3.1(@babel/core@7.23.5)(rollup@2.79.1)
+ '@rollup/plugin-babel': 5.3.1(@babel/core@7.23.9)(rollup@2.79.1)
'@rollup/plugin-node-resolve': 11.2.1(rollup@2.79.1)
'@rollup/plugin-replace': 2.4.2(rollup@2.79.1)
'@surma/rollup-plugin-off-main-thread': 2.2.3
@@ -15393,8 +15233,8 @@ packages:
optional: true
dev: true
- /ws@8.14.2:
- resolution: {integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==}
+ /ws@8.16.0:
+ resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -15405,19 +15245,6 @@ packages:
utf-8-validate:
optional: true
- /ws@8.15.1:
- resolution: {integrity: sha512-W5OZiCjXEmk0yZ66ZN82beM5Sz7l7coYxpRkzS+p9PP+ToQry8szKh+61eNktr7EA9DOwvFGhfC605jDHbP6QQ==}
- 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
- dev: false
-
/xml-name-validator@4.0.0:
resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
engines: {node: '>=12'}
@@ -15447,14 +15274,6 @@ packages:
/yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- /yaml-eslint-parser@0.3.2:
- resolution: {integrity: sha512-32kYO6kJUuZzqte82t4M/gB6/+11WAuHiEnK7FreMo20xsCKPeFH5tDBU7iWxR7zeJpNnMXfJyXwne48D0hGrg==}
- dependencies:
- eslint-visitor-keys: 1.3.0
- lodash: 4.17.21
- yaml: 1.10.2
- dev: false
-
/yaml-eslint-parser@1.2.2:
resolution: {integrity: sha512-pEwzfsKbTrB8G3xc/sN7aw1v6A6c/pKxLAkjclnAyo5g5qOh6eL9WGu0o3cSDQZKrTNk4KL4lQSwZW+nBkANEg==}
engines: {node: ^14.17.0 || >=16.0.0}
@@ -15462,12 +15281,6 @@ packages:
eslint-visitor-keys: 3.4.3
lodash: 4.17.21
yaml: 2.3.2
- dev: true
-
- /yaml@1.10.2:
- resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
- engines: {node: '>= 6'}
- dev: false
/yaml@2.3.1:
resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==}
diff --git a/scripts/cleanup-translations.ts b/scripts/cleanup-translations.ts
index 46f3cf99..240203a4 100644
--- a/scripts/cleanup-translations.ts
+++ b/scripts/cleanup-translations.ts
@@ -22,13 +22,12 @@ function merge(src: Record, dst: Record) {
}
}
-const sourceFiles: string[] = sourceLanguageLocale.files ? sourceLanguageLocale.files : [sourceLanguageLocale.file!]
-
+const sourceFiles = sourceLanguageLocale.files ? sourceLanguageLocale.files : [sourceLanguageLocale.file!]
const sourceTranslations: Record = {}
for (const file of sourceFiles) {
const data = JSON.parse(Buffer.from(
- await fs.readFile(resolver.resolve(`../locales/${file}`), 'utf-8'),
+ await fs.readFile(resolver.resolve(`../locales/${file as string}`), 'utf-8'),
).toString()) as Record
merge(flatten(data), sourceTranslations)
@@ -36,7 +35,7 @@ for (const file of sourceFiles) {
async function removeOutdatedTranslations() {
for (const locale of currentLocales.filter(l => l.code !== 'en-US')) {
- const files: string[] = locale.files ? locale.files : [locale.file!]
+ const files = locale.files ? locale.files as string[] : [locale.file as string]
for (const file of files) {
const path = resolver.resolve(`../locales/${file}`)
diff --git a/service-worker/tsconfig.json b/service-worker/tsconfig.json
index 8f10d1b3..98999a50 100644
--- a/service-worker/tsconfig.json
+++ b/service-worker/tsconfig.json
@@ -1,9 +1,9 @@
{
+ "extends": "../tsconfig.json",
"compilerOptions": {
"lib": ["ESNext", "WebWorker", "DOM.Iterable"],
"types": ["vite/client"]
},
"include": ["./"],
- "exclude": [],
- "extends": "../tsconfig.json"
+ "exclude": []
}
diff --git a/tests/nuxt/content-rich.test.ts b/tests/nuxt/content-rich.test.ts
index 1e52e672..04266de5 100644
--- a/tests/nuxt/content-rich.test.ts
+++ b/tests/nuxt/content-rich.test.ts
@@ -1,4 +1,4 @@
-import { describe, expect, it, vi } from 'vitest'
+import { beforeEach, describe, expect, it, vi } from 'vitest'
import { renderToString } from 'vue/server-renderer'
import { format } from 'prettier'
import type { mastodon } from 'masto'
@@ -6,6 +6,10 @@ import { mockComponent } from '@nuxt/test-utils/runtime'
import { contentToVNode } from '~/composables/content-render'
import type { ContentParseOptions } from '~/composables/content-parse'
+beforeEach(() => {
+ publicServer.value = useRuntimeConfig().public.defaultServer
+})
+
describe('content-rich', () => {
it('empty', async () => {
const { formatted } = await render('')
]