+
diff --git a/components/SettingsEditor.vue b/components/SettingsEditor.vue
index 6a92797a..0dbc9471 100644
--- a/components/SettingsEditor.vue
+++ b/components/SettingsEditor.vue
@@ -14,94 +14,101 @@ import {
} from '#root/src/store/modules/settings'
export default defineComponent({
+ setup() {
+ const { store } = useVuex()
+
+ return {
+ store,
+ }
+ },
computed: {
imagesEnabled: {
get() {
- return this.$store.state.settings.editor.images.enabled
+ return this.store.state.settings.editor.images.enabled
},
set(value: any) {
- this.$store.dispatch(SET_EDITOR_IMAGES_ENABLED, value)
+ this.store.dispatch(SET_EDITOR_IMAGES_ENABLED, value)
},
},
ligatures: {
get() {
- return this.$store.state.settings.editor.ligatures
+ return this.store.state.settings.editor.ligatures
},
set(value: any) {
- this.$store.commit(SET_EDITOR_LIGATURES, value)
+ this.store.commit(SET_EDITOR_LIGATURES, value)
},
},
listsEnabled: {
get() {
- return this.$store.state.settings.editor.lists.enabled
+ return this.store.state.settings.editor.lists.enabled
},
set(value: any) {
- this.$store.commit(SET_EDITOR_LISTS_ENABLED, value)
+ this.store.commit(SET_EDITOR_LISTS_ENABLED, value)
},
},
readabilityEnabled: {
get() {
- return this.$store.state.settings.editor.readability.enabled
+ return this.store.state.settings.editor.readability.enabled
},
set(value: any) {
- this.$store.commit(SET_EDITOR_READABILITY_ENABLED, value)
+ this.store.commit(SET_EDITOR_READABILITY_ENABLED, value)
},
},
readabilityMaxWidth: {
get() {
- return this.$store.state.settings.editor.readability.maxWidthInChars
+ return this.store.state.settings.editor.readability.maxWidthInChars
},
set(value: any) {
- this.$store.commit(SET_EDITOR_READABILITY_MAX_WIDTH, value)
+ this.store.commit(SET_EDITOR_READABILITY_MAX_WIDTH, value)
},
},
readabilityWordsPerMinute: {
get() {
- return this.$store.state.settings.editor.readability.wordsPerMinute
+ return this.store.state.settings.editor.readability.wordsPerMinute
},
set(value: any) {
- this.$store.commit(SET_EDITOR_READABILITY_WORDS_PER_MINUTE, value)
+ this.store.commit(SET_EDITOR_READABILITY_WORDS_PER_MINUTE, value)
},
},
showCaptions: {
get() {
- return this.$store.state.settings.editor.images.showCaptions
+ return this.store.state.settings.editor.images.showCaptions
},
set(value: any) {
- this.$store.dispatch(SET_EDITOR_IMAGES_SHOW_CAPTIONS, value)
+ this.store.dispatch(SET_EDITOR_IMAGES_SHOW_CAPTIONS, value)
},
},
spellcheck: {
get() {
- return this.$store.state.settings.editor.spellcheck
+ return this.store.state.settings.editor.spellcheck
},
set(value: any) {
- this.$store.commit(SET_EDITOR_SPELLCHECK, value)
+ this.store.commit(SET_EDITOR_SPELLCHECK, value)
},
},
tabSize: {
get(): number {
- return this.$store.state.settings.editor.tabSize
+ return this.store.state.settings.editor.tabSize
},
set(value: number) {
- this.$store.dispatch(SET_EDITOR_TAB_SIZE, value || 2)
+ this.store.dispatch(SET_EDITOR_TAB_SIZE, value || 2)
},
},
toolbar: {
get() {
- return this.$store.state.settings.editor.toolbar
+ return this.store.state.settings.editor.toolbar
},
set(value: any) {
- this.$store.commit(SET_EDITOR_TOOLBAR, value)
+ this.store.commit(SET_EDITOR_TOOLBAR, value)
},
},
vim: {
// Todo: Use a new setting for Vim.
get() {
- return this.$store.state.settings.editor.keyMap === 'vim'
+ return this.store.state.settings.editor.keyMap === 'vim'
},
set(value: any) {
- this.$store.dispatch(SET_EDITOR_KEY_MAP, value ? 'vim' : 'default')
+ this.store.dispatch(SET_EDITOR_KEY_MAP, value ? 'vim' : 'default')
},
},
},
diff --git a/components/settings/Appearance.vue b/components/settings/Appearance.vue
index 697777a7..fe3bdcbd 100644
--- a/components/settings/Appearance.vue
+++ b/components/settings/Appearance.vue
@@ -2,7 +2,7 @@
import { computed } from 'vue'
const { store } = useVuex()
-const { store: appearance } = useAppearance()
+const { storedValue: appearance } = useAppearance()
const experimental = computed(() => store.state.settings.experimental)
diff --git a/components/settings/Encryption.vue b/components/settings/Encryption.vue
index 2e0ea339..c760da5f 100644
--- a/components/settings/Encryption.vue
+++ b/components/settings/Encryption.vue
@@ -4,6 +4,13 @@ import { TOUCH_DOCUMENT } from '#root/src/store/actions'
import { SET_CRYPTO_ENABLED, SET_CRYPTO_KEYS } from '#root/src/store/modules/settings'
export default {
+ setup() {
+ const { store } = useVuex()
+
+ return {
+ store,
+ }
+ },
data() {
return {
togglingCrypto: false,
@@ -15,35 +22,35 @@ export default {
},
privateKey: {
get() {
- return this.$store.state.settings.crypto.privateKey ?? ''
+ return this.store.state.settings.crypto.privateKey ?? ''
},
set(value: string) {
- this.$store.commit(SET_CRYPTO_KEYS, {
+ this.store.commit(SET_CRYPTO_KEYS, {
privateKey: value.trim(),
})
},
},
publicKey: {
get() {
- return this.$store.state.settings.crypto.publicKey ?? ''
+ return this.store.state.settings.crypto.publicKey ?? ''
},
set(value: string) {
- this.$store.commit(SET_CRYPTO_KEYS, {
+ this.store.commit(SET_CRYPTO_KEYS, {
publicKey: value.trim(),
})
},
},
toggleCrypto: {
get() {
- return this.$store.state.settings.crypto.enabled
+ return this.store.state.settings.crypto.enabled
},
async set(value: boolean) {
this.togglingCrypto = true
- await this.$store.dispatch(SET_CRYPTO_ENABLED, value)
+ await this.store.dispatch(SET_CRYPTO_ENABLED, value)
await Promise.all(
- this.$store.getters.decrypted.map((doc: any) => {
- return this.$store.dispatch(TOUCH_DOCUMENT, doc)
+ this.store.getters.decrypted.map((doc: any) => {
+ return this.store.dispatch(TOUCH_DOCUMENT, doc)
}),
)
diff --git a/composables/useAppearance.ts b/composables/useAppearance.ts
index fbe901ff..2f7c4b37 100644
--- a/composables/useAppearance.ts
+++ b/composables/useAppearance.ts
@@ -1,25 +1,46 @@
+const valueToSystem = {
+ auto: 'auto',
+ custom: 'dark',
+ dark: 'dark',
+ light: 'light',
+} as const
+
+export type AppearanceValue = keyof typeof valueToSystem
+
const buildAppearance = () => {
- const { store, system: resolved } = useColorMode({
+ const storedValue = useLocalStorage
('vueuse-color-scheme', 'auto', {
initOnMounted: true,
- modes: {
- auto: 'auto',
- october: 'dark october',
- custom: 'custom',
+ })
+
+ watch(storedValue, () => {
+ if (!Object.keys(valueToSystem).includes(storedValue.value)) {
+ storedValue.value = 'auto'
+ }
+ })
+
+ useHead({
+ htmlAttrs: {
+ 'data-appearance': storedValue,
},
})
const system = computed(() => {
- if (store.value === 'custom') {
- // Todo: Remove this extra step by making the editor use CSS variables all the time.
+ // Todo: Remove this extra step by making the editor use CSS variables all the time.
+ if (storedValue.value === 'custom') {
return 'dark'
}
- if (store.value === 'october') {
+ if (storedValue.value === 'dark') {
return 'dark'
}
- return store.value
+ if (storedValue.value === 'light') {
+ return 'light'
+ }
+
+ return 'auto'
})
+
const isAuto = computed(() => system.value === 'auto')
const isDark = computed(() => system.value === 'dark')
const isLight = computed(() => system.value === 'light')
@@ -28,8 +49,7 @@ const buildAppearance = () => {
isAuto,
isDark,
isLight,
- resolved,
- store,
+ storedValue,
system,
}
}
@@ -40,15 +60,5 @@ export type SystemAppearance = 'auto' | 'dark' | 'light'
export const appearanceKey = Symbol('appearance') as InjectionKey
export const useAppearance = () => {
- const injected = inject(appearanceKey, undefined)
-
- if (injected) {
- return injected
- }
-
- const appearance = buildAppearance()
-
- provide(appearanceKey, appearance)
-
- return appearance
+ return injectOrProvide(appearanceKey, buildAppearance)
}
diff --git a/layouts/dashboard.vue b/layouts/dashboard.vue
index 8e1d6183..0b76244c 100644
--- a/layouts/dashboard.vue
+++ b/layouts/dashboard.vue
@@ -10,7 +10,7 @@ import { bindGlobal } from '#root/src/common/keybindings'
const { doc } = useDocs()
const { isZen, toggleZen } = useZen()
const { showMenu, showMeta, toggleMenu, toggleMeta } = useLayout()
-const { store: appearance, isAuto, isDark, isLight } = useAppearance()
+const { storedValue: appearance, isAuto, isDark, isLight } = useAppearance()
const isPrimaryGutterShowing = computed(() => !isZen.value && showMenu.value)
const isSecondaryGutterShowing = computed(() => !isZen.value && showMeta.value && !!doc.value)
diff --git a/nuxt.config.ts b/nuxt.config.ts
index 54b02249..2082e9da 100644
--- a/nuxt.config.ts
+++ b/nuxt.config.ts
@@ -26,10 +26,11 @@ export default defineNuxtConfig({
'#test': join(root, './test'),
'#test-utils': join(root, './test/utils'),
},
+
app: {
head: {
htmlAttrs: {
- class: 'auto scroll-smooth scroll-pt-4 layer-0',
+ class: 'scroll-smooth scroll-pt-4 layer-0',
lang: 'en',
},
link: [
@@ -59,24 +60,31 @@ export default defineNuxtConfig({
],
},
},
+
build: {
transpile: [
'rxjs',
],
},
+
+ compatibilityDate: '2024-09-06',
+
devServer: {
host: '127.0.0.1',
},
+
devtools: {
enabled: true,
timeline: {
enabled: true,
},
},
+
experimental: {
appManifest: true,
payloadExtraction: true,
},
+
hooks: {
'pages:extend': (pages) => {
pages.push({
@@ -86,18 +94,21 @@ export default defineNuxtConfig({
})
},
},
+
imports: {
dirs: [
'./helpers',
],
mergeExisting: true,
},
+
modules: [
'@nuxtjs/tailwindcss',
'@pinia/nuxt',
'@vite-pwa/nuxt',
'@vueuse/nuxt',
],
+
nitro: {
prerender: {
routes: [
@@ -120,6 +131,7 @@ export default defineNuxtConfig({
},
},
},
+
postcss: {
plugins: {
'@csstools/postcss-oklab-function': {
@@ -130,6 +142,7 @@ export default defineNuxtConfig({
'tailwindcss': {},
},
},
+
pwa: {
includeAssets: ['img/icons/favicon.ico'],
registerType: 'autoUpdate',
@@ -258,11 +271,13 @@ export default defineNuxtConfig({
scope: '/',
writePlugin: true,
},
+
router: {
options: {
strict: true,
},
},
+
runtimeConfig: {
public: {
appName: 'Octo',
@@ -303,11 +318,14 @@ export default defineNuxtConfig({
stripeMonthlyPrice: '',
},
},
+
sourcemap: true,
ssr: !process.env.DISABLE_SSR,
+
tailwindcss: {
configPath: '~/tailwind.config.cjs',
},
+
vite: {
plugins: [
nodePolyfills({
diff --git a/package.json b/package.json
index 346e287c..fab8574f 100644
--- a/package.json
+++ b/package.json
@@ -25,8 +25,8 @@
"typecheck:app": "nuxt typecheck"
},
"dependencies": {
- "@headlessui/tailwindcss": "^0.2.0",
- "@headlessui/vue": "^1.7.17",
+ "@headlessui/tailwindcss": "^0.2.1",
+ "@headlessui/vue": "^1.7.22",
"@mermaid-js/mermaid-mindmap": "^9.3.0",
"@tabler/icons-vue": "^3.11.0",
"codemirror-lang-mermaid": "^0.2.2",
@@ -56,11 +56,11 @@
},
"devDependencies": {
"@csstools/postcss-oklab-function": "^3.0.9",
- "@nuxtjs/tailwindcss": "^6.10.3",
+ "@nuxtjs/tailwindcss": "^6.12.1",
"@pinia/nuxt": "^0.4.11",
"@playwright/test": "^1.46.1",
"@tailwindcss/container-queries": "^0.1.1",
- "@tailwindcss/typography": "^0.5.10",
+ "@tailwindcss/typography": "^0.5.15",
"@types/culori": "^2.0.4",
"@types/file-saver": "^2.0.7",
"@types/lodash-es": "^4.17.12",
@@ -69,10 +69,10 @@
"@types/remarkable": "^2.0.8",
"@vite-pwa/nuxt": "^0.4.0",
"@vue/test-utils": "^2.4.3",
- "@vueuse/core": "^10.7.1",
- "@vueuse/head": "^1.3.1",
- "@vueuse/nuxt": "^9.13.0",
- "@vueuse/rxjs": "^10.7.1",
+ "@vueuse/core": "^11.0.3",
+ "@vueuse/head": "^2.0.0",
+ "@vueuse/nuxt": "^11.0.3",
+ "@vueuse/rxjs": "^11.0.3",
"autoprefixer": "^10.4.16",
"deepmerge-ts": "^4.3.0",
"eslint": "^8.56.0",
@@ -83,12 +83,12 @@
"lodash-es": "^4.17.21",
"micromark": "^3.1.0",
"npm-run-all": "^4.1.5",
- "nuxt": "^3.9.0",
+ "nuxt": "^3.13.1",
"postcss": "^8.4.32",
"remarkable-front-matter": "1.0.1-beta.1",
"rimraf": "^4.4.1",
"serve": "^14.2.1",
- "tailwindcss": "^3.4.0",
+ "tailwindcss": "^3.4.10",
"typescript": "^5.3.3",
"vercel": "^28.20.0",
"vite-plugin-node-polyfills": "^0.14.1",
diff --git a/pages/docs/[docId]/index.vue b/pages/docs/[docId]/index.vue
index 1c003e93..a4db54fb 100644
--- a/pages/docs/[docId]/index.vue
+++ b/pages/docs/[docId]/index.vue
@@ -31,6 +31,13 @@ export default defineComponent({
const header = computed(() => doc.value.headers[0])
const { public: { appTitle } } = useConfig()
+ watch(docId, () => {
+ // If we don't create a new placeholder, then the same placeholder id
+ // will be used when creating multiple docs back-to-back. This only
+ // happens when the editor is not unmounted between new doc creations.
+ placeholder.value = new Doc({ text: formatTags(store.state.context.tags, ' ') })
+ })
+
const onInput = async (text: string) => {
// Todo: Load a new doc before leaving the route so that Ink does not
// send a new input event (or figure out how to prevent it from sending
@@ -38,7 +45,7 @@ export default defineComponent({
if (text && (!docId.value || docId.value === 'new')) {
// When we receive input without an active doc, we should always create
// a new doc with a unique id.
- const newDoc = new Doc({ text })
+ const newDoc = new Doc({ id: placeholder.value.id, text })
store.commit(EDIT_DOCUMENT, newDoc)
diff --git a/pages/docs/[docId]/meta.vue b/pages/docs/[docId]/meta.vue
index 736ca682..74240899 100644
--- a/pages/docs/[docId]/meta.vue
+++ b/pages/docs/[docId]/meta.vue
@@ -39,7 +39,7 @@ export default {
return parseCodeblocks(this.doc.text)
},
createdAt() {
- if (this.$route.params.docId) {
+ if (this.docId) {
return moment(this.doc.createdAt).format('ddd, MMM Do, YYYY [at] h:mm A')
}
@@ -49,7 +49,10 @@ export default {
return moment(this.doc.discardedAt).format('ddd, MMM Do, YYYY [at] h:mm A')
},
doc() {
- return this.$store.getters.decrypted.find((doc) => doc.id === this.$route.params.docId)
+ return this.$store.getters.decrypted.find((doc) => doc.id === this.docId)
+ },
+ docId() {
+ return this.$router.currentRoute.value.params?.docId
},
hasCodeblocks() {
return this.codeblocks.length > 0
@@ -65,7 +68,7 @@ export default {
})
},
savedAt() {
- if (this.$route.params.docId) {
+ if (this.docId) {
if (this.now.diff(this.doc.updatedAt, 'seconds') < 5) {
return 'just now'
} else {
@@ -76,7 +79,7 @@ export default {
return 'Not yet saved'
},
updatedAt() {
- if (this.$route.params.docId) {
+ if (this.docId) {
return moment(this.doc.updatedAt).format('ddd, MMM Do, YYYY [at] h:mm A')
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index e9573af2..0a27d906 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -13,17 +13,17 @@ importers:
.:
dependencies:
'@headlessui/tailwindcss':
- specifier: ^0.2.0
- version: 0.2.0(tailwindcss@3.4.0(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3)))
+ specifier: ^0.2.1
+ version: 0.2.1(tailwindcss@3.4.10(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3)))
'@headlessui/vue':
- specifier: ^1.7.17
- version: 1.7.17(vue@3.4.21(typescript@5.3.3))
+ specifier: ^1.7.22
+ version: 1.7.22(vue@3.5.3(typescript@5.3.3))
'@mermaid-js/mermaid-mindmap':
specifier: ^9.3.0
version: 9.3.0
'@tabler/icons-vue':
specifier: ^3.11.0
- version: 3.11.0(vue@3.4.21(typescript@5.3.3))
+ version: 3.11.0(vue@3.5.3(typescript@5.3.3))
codemirror-lang-mermaid:
specifier: ^0.2.2
version: 0.2.2
@@ -50,7 +50,7 @@ importers:
version: 6.6.2
ink-mde:
specifier: ^0.33.0
- version: 0.33.0(vue@3.4.21(typescript@5.3.3))
+ version: 0.33.0(vue@3.5.3(typescript@5.3.3))
jszip:
specifier: ^3.10.1
version: 3.10.1
@@ -83,38 +83,38 @@ importers:
version: 2.10.0
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.3.3)(vue@3.4.21(typescript@5.3.3))
+ version: 2.1.7(typescript@5.3.3)(vue@3.5.3(typescript@5.3.3))
remarkable:
specifier: ^2.0.1
version: 2.0.1
vellma:
specifier: ^0.8.1
- version: 0.8.1(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(google-auth-library@8.9.0(encoding@0.1.13))(ignore@5.3.2)(playwright@1.46.1)
+ version: 0.8.1(axios@1.7.7)(encoding@0.1.13)(eslint@8.56.0)(google-auth-library@8.9.0(encoding@0.1.13))(ignore@5.3.2)(playwright@1.47.0)
vue3-mq:
specifier: ^3.1.3
- version: 3.1.3(vue@3.4.21(typescript@5.3.3))
+ version: 3.1.3(vue@3.5.3(typescript@5.3.3))
vuex:
specifier: ^4.1.0
- version: 4.1.0(vue@3.4.21(typescript@5.3.3))
+ version: 4.1.0(vue@3.5.3(typescript@5.3.3))
devDependencies:
'@csstools/postcss-oklab-function':
specifier: ^3.0.9
version: 3.0.9(postcss@8.4.45)
'@nuxtjs/tailwindcss':
- specifier: ^6.10.3
- version: 6.10.3(rollup@2.79.1)(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))
+ specifier: ^6.12.1
+ version: 6.12.1(magicast@0.3.5)(rollup@2.79.1)(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))(webpack-sources@3.2.3)
'@pinia/nuxt':
specifier: ^0.4.11
- version: 0.4.11(rollup@2.79.1)(typescript@5.3.3)(vue@3.4.21(typescript@5.3.3))
+ version: 0.4.11(magicast@0.3.5)(rollup@2.79.1)(typescript@5.3.3)(vue@3.5.3(typescript@5.3.3))(webpack-sources@3.2.3)
'@playwright/test':
specifier: ^1.46.1
version: 1.46.1
'@tailwindcss/container-queries':
specifier: ^0.1.1
- version: 0.1.1(tailwindcss@3.4.0(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3)))
+ version: 0.1.1(tailwindcss@3.4.10(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3)))
'@tailwindcss/typography':
- specifier: ^0.5.10
- version: 0.5.10(tailwindcss@3.4.0(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3)))
+ specifier: ^0.5.15
+ version: 0.5.15(tailwindcss@3.4.10(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3)))
'@types/culori':
specifier: ^2.0.4
version: 2.0.4
@@ -135,25 +135,25 @@ importers:
version: 2.0.8
'@vite-pwa/nuxt':
specifier: ^0.4.0
- version: 0.4.0(rollup@2.79.1)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))(workbox-build@6.6.0)(workbox-window@6.6.0)
+ version: 0.4.0(magicast@0.3.5)(rollup@2.79.1)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))(webpack-sources@3.2.3)(workbox-build@6.6.0)(workbox-window@6.6.0)
'@vue/test-utils':
specifier: ^2.4.3
- version: 2.4.3(@vue/server-renderer@3.4.27(vue@3.4.21(typescript@5.3.3)))(vue@3.4.21(typescript@5.3.3))
+ version: 2.4.3(@vue/server-renderer@3.5.3(vue@3.5.3(typescript@5.3.3)))(vue@3.5.3(typescript@5.3.3))
'@vueuse/core':
- specifier: ^10.7.1
- version: 10.7.1(vue@3.4.21(typescript@5.3.3))
+ specifier: ^11.0.3
+ version: 11.0.3(vue@3.5.3(typescript@5.3.3))
'@vueuse/head':
- specifier: ^1.3.1
- version: 1.3.1(vue@3.4.21(typescript@5.3.3))
+ specifier: ^2.0.0
+ version: 2.0.0(vue@3.5.3(typescript@5.3.3))
'@vueuse/nuxt':
- specifier: ^9.13.0
- version: 9.13.0(nuxt@3.9.0(@parcel/watcher@2.4.1)(@types/node@18.19.4)(encoding@0.1.13)(eslint@8.56.0)(optionator@0.9.4)(rollup@2.79.1)(terser@5.31.0)(typescript@5.3.3)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))(vue-tsc@1.8.27(typescript@5.3.3)))(rollup@2.79.1)(vue@3.4.21(typescript@5.3.3))
+ specifier: ^11.0.3
+ version: 11.0.3(magicast@0.3.5)(nuxt@3.13.1(@parcel/watcher@2.4.1)(@types/node@18.19.4)(encoding@0.1.13)(eslint@8.56.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@2.79.1)(terser@5.31.6)(typescript@5.3.3)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))(vue-tsc@1.8.27(typescript@5.3.3))(webpack-sources@3.2.3))(rollup@2.79.1)(vue@3.5.3(typescript@5.3.3))(webpack-sources@3.2.3)
'@vueuse/rxjs':
- specifier: ^10.7.1
- version: 10.7.1(rxjs@7.8.1)(vue@3.4.21(typescript@5.3.3))
+ specifier: ^11.0.3
+ version: 11.0.3(rxjs@7.8.1)(vue@3.5.3(typescript@5.3.3))
autoprefixer:
specifier: ^10.4.16
- version: 10.4.16(postcss@8.4.45)
+ version: 10.4.20(postcss@8.4.45)
deepmerge-ts:
specifier: ^4.3.0
version: 4.3.0
@@ -179,8 +179,8 @@ importers:
specifier: ^4.1.5
version: 4.1.5
nuxt:
- specifier: ^3.9.0
- version: 3.9.0(@parcel/watcher@2.4.1)(@types/node@18.19.4)(encoding@0.1.13)(eslint@8.56.0)(optionator@0.9.4)(rollup@2.79.1)(terser@5.31.0)(typescript@5.3.3)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))(vue-tsc@1.8.27(typescript@5.3.3))
+ specifier: ^3.13.1
+ version: 3.13.1(@parcel/watcher@2.4.1)(@types/node@18.19.4)(encoding@0.1.13)(eslint@8.56.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@2.79.1)(terser@5.31.6)(typescript@5.3.3)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))(vue-tsc@1.8.27(typescript@5.3.3))(webpack-sources@3.2.3)
postcss:
specifier: ^8.4.32
version: 8.4.45
@@ -194,23 +194,23 @@ importers:
specifier: ^14.2.1
version: 14.2.1
tailwindcss:
- specifier: ^3.4.0
- version: 3.4.0(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))
+ specifier: ^3.4.10
+ version: 3.4.10(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))
typescript:
specifier: ^5.3.3
version: 5.3.3
vercel:
specifier: ^28.20.0
- version: 28.20.0(@types/node@18.19.4)(encoding@0.1.13)(terser@5.31.0)(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))
+ version: 28.20.0(@types/node@18.19.4)(encoding@0.1.13)(terser@5.31.6)(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))
vite-plugin-node-polyfills:
specifier: ^0.14.1
- version: 0.14.1(rollup@2.79.1)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))
+ version: 0.14.1(rollup@2.79.1)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))
vite-svg-loader:
specifier: ^3.6.0
version: 3.6.0
vitest:
specifier: ^0.34.6
- version: 0.34.6(@edge-runtime/vm@3.2.0)(happy-dom@12.10.3)(playwright@1.46.1)(terser@5.31.0)
+ version: 0.34.6(@edge-runtime/vm@4.0.3)(happy-dom@12.10.3)(playwright@1.47.0)(terser@5.31.6)
vue-tsc:
specifier: ^1.8.27
version: 1.8.27(typescript@5.3.3)
@@ -252,8 +252,8 @@ packages:
peerDependencies:
eslint: '>=7.4.0'
- '@antfu/utils@0.7.7':
- resolution: {integrity: sha512-gFPqTG7otEJ8uP6wrhDv6mqwGWYZKNvAcCq6u9hOj0c+IKCEsY4L1oC9trPq2SaWIzAfHvqfBDxF591JkMf+kg==}
+ '@antfu/utils@0.7.10':
+ resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
'@anthropic-ai/sdk@0.4.4':
resolution: {integrity: sha512-Z/39nQi1sSUCeLII3lsAbL1u+0JF6cR2XmUEX9sLH0VtxmIjY6cjOUYjCkYh4oapTxOkhAFnVSAFJ6cxml2qXg==}
@@ -413,8 +413,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-proposal-decorators@7.23.7':
- resolution: {integrity: sha512-b1s5JyeMvqj7d9m9KhJNHKc18gEJiSyVzVX3bwbiPalQBQpuvfPh6lA9F7Kk/dWH0TIiXRpB9yicwijY6buPng==}
+ '@babel/plugin-proposal-decorators@7.24.7':
+ resolution: {integrity: sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -441,8 +441,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-decorators@7.23.3':
- resolution: {integrity: sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==}
+ '@babel/plugin-syntax-decorators@7.24.7':
+ resolution: {integrity: sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -866,8 +866,8 @@ packages:
resolution: {integrity: sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==}
engines: {node: '>=6.9.0'}
- '@babel/standalone@7.23.7':
- resolution: {integrity: sha512-AsO3aIh9I4qIqK61d6nPxPAdrSuWF4FmOLej3xNIkBIZj+8XJGArQQJw6DnuUkkqbsLp1fARkXOdKiuqWgac0Q==}
+ '@babel/standalone@7.25.6':
+ resolution: {integrity: sha512-Kf2ZcZVqsKbtYhlA7sP0z5A3q5hmCVYMKMWRWNK/5OVwHIve3JY1djVRmIVAx8FMueLIfZGKQDIILK2w8zO4mg==}
engines: {node: '>=6.9.0'}
'@babel/template@7.25.0':
@@ -885,8 +885,9 @@ packages:
'@braintree/sanitize-url@6.0.4':
resolution: {integrity: sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==}
- '@cloudflare/kv-asset-handler@0.3.0':
- resolution: {integrity: sha512-9CB/MKf/wdvbfkUdfrj+OkEwZ5b7rws0eogJ4293h+7b6KX5toPwym+VQKmILafNB9YiehqY0DlNrDcDhdWHSQ==}
+ '@cloudflare/kv-asset-handler@0.3.4':
+ resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==}
+ engines: {node: '>=16.13'}
'@codemirror/autocomplete@6.16.0':
resolution: {integrity: sha512-P/LeCTtZHRTCU4xQsa89vSKWecYv1ZqwzOd5topheGRf+qtacFgBeIMQi3eL8Kt/BUNvxUWkx+5qP2jlGoARrg==}
@@ -992,13 +993,6 @@ packages:
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
- '@csstools/cascade-layer-name-parser@1.0.7':
- resolution: {integrity: sha512-9J4aMRJ7A2WRjaRLvsMeWrL69FmEuijtiW1XlK/sG+V0UJiHVYUyvj9mY4WAXfU/hGIiGOgL8e0jJcRyaZTjDQ==}
- engines: {node: ^14 || ^16 || >=18}
- peerDependencies:
- '@csstools/css-parser-algorithms': ^2.5.0
- '@csstools/css-tokenizer': ^2.2.3
-
'@csstools/color-helpers@4.0.0':
resolution: {integrity: sha512-wjyXB22/h2OvxAr3jldPB7R7kjTUEzopvjitS8jWtyd8fN6xJ8vy1HnHu0ZNfEkqpBJgQ76Q+sBDshWcMvTa/w==}
engines: {node: ^14 || ^16 || >=18}
@@ -1039,8 +1033,14 @@ packages:
peerDependencies:
postcss: ^8.4
- '@csstools/selector-specificity@3.0.1':
- resolution: {integrity: sha512-NPljRHkq4a14YzZ3YD406uaxh7s0g6eAq3L9aLOWywoqe8PkYamAvtsh7KNX6c++ihDrJ0RiU+/z7rGnhlZ5ww==}
+ '@csstools/selector-resolve-nested@1.1.0':
+ resolution: {integrity: sha512-uWvSaeRcHyeNenKg8tp17EVDRkpflmdyvbE0DHo6D/GdBb6PDnCYYU6gRpXhtICMGMcahQmj2zGxwFM/WC8hCg==}
+ engines: {node: ^14 || ^16 || >=18}
+ peerDependencies:
+ postcss-selector-parser: ^6.0.13
+
+ '@csstools/selector-specificity@3.1.1':
+ resolution: {integrity: sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss-selector-parser: ^6.0.13
@@ -1059,8 +1059,8 @@ packages:
resolution: {integrity: sha512-SR04SMDybALlhIYIi0hiuEUwIl0b7Sn+RKwQkX6hydg4+AKMzBNDFhj2nqHDD1+xkHArV9EhmJIb6iGjShwSzg==}
engines: {node: '>=14'}
- '@edge-runtime/primitives@4.1.0':
- resolution: {integrity: sha512-Vw0lbJ2lvRUqc7/soqygUX216Xb8T3WBZ987oywz6aJqRxcwSVWwr9e+Nqo2m9bxobA9mdbWNNoRY6S9eko1EQ==}
+ '@edge-runtime/primitives@5.1.0':
+ resolution: {integrity: sha512-bs379S/qL7b9B1fXM3xYe+g2orW7Uy0m8oIudiXLcHQyZLsdd0Gfw9STngFDnaAfAcRN5g+/YEMPSsDqiPm0TQ==}
engines: {node: '>=16'}
'@edge-runtime/vm@2.0.0':
@@ -1070,8 +1070,8 @@ packages:
resolution: {integrity: sha512-j4H5S26NJhYOyjVMN8T/YJuwwslfnEX1P0j6N2Rq1FaubgNowdYunA9nlO7lg8Rgjv6dqJ2zKuM7GD1HFtNSGw==}
engines: {node: '>=14'}
- '@edge-runtime/vm@3.2.0':
- resolution: {integrity: sha512-0dEVyRLM/lG4gp1R/Ik5bfPl/1wX00xFwd5KcNH602tzBa09oF7pbTKETEhR1GjZ75K6OJnYFu8II2dyMhONMw==}
+ '@edge-runtime/vm@4.0.3':
+ resolution: {integrity: sha512-2EKlqxSbZTV4D+XG8DTX+9P1SL+m48ahvNbDuxz+dZkmUZ+ju4hl/m28j7QMbC9kU5S+4HUJCYKCAfA+3gggLw==}
engines: {node: '>=16'}
'@emotion/hash@0.9.2':
@@ -1088,12 +1088,24 @@ packages:
cpu: [ppc64]
os: [aix]
+ '@esbuild/aix-ppc64@0.20.2':
+ resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [aix]
+
'@esbuild/aix-ppc64@0.21.5':
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [aix]
+ '@esbuild/aix-ppc64@0.23.1':
+ resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
'@esbuild/android-arm64@0.16.3':
resolution: {integrity: sha512-RolFVeinkeraDvN/OoRf1F/lP0KUfGNb5jxy/vkIMeRRChkrX/HTYN6TYZosRJs3a1+8wqpxAo5PI5hFmxyPRg==}
engines: {node: '>=12'}
@@ -1106,12 +1118,24 @@ packages:
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm64@0.20.2':
+ resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm64@0.21.5':
resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm64@0.23.1':
+ resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm@0.16.3':
resolution: {integrity: sha512-mueuEoh+s1eRbSJqq9KNBQwI4QhQV6sRXIfTyLXSHGMpyew61rOK4qY21uKbXl1iBoMb0AdL1deWFCQVlN2qHA==}
engines: {node: '>=12'}
@@ -1124,12 +1148,24 @@ packages:
cpu: [arm]
os: [android]
+ '@esbuild/android-arm@0.20.2':
+ resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-arm@0.21.5':
resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
+ '@esbuild/android-arm@0.23.1':
+ resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-x64@0.16.3':
resolution: {integrity: sha512-SFpTUcIT1bIJuCCBMCQWq1bL2gPTjWoLZdjmIhjdcQHaUfV41OQfho6Ici5uvvkMmZRXIUGpM3GxysP/EU7ifQ==}
engines: {node: '>=12'}
@@ -1142,12 +1178,24 @@ packages:
cpu: [x64]
os: [android]
+ '@esbuild/android-x64@0.20.2':
+ resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/android-x64@0.21.5':
resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
+ '@esbuild/android-x64@0.23.1':
+ resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/darwin-arm64@0.16.3':
resolution: {integrity: sha512-DO8WykMyB+N9mIDfI/Hug70Dk1KipavlGAecxS3jDUwAbTpDXj0Lcwzw9svkhxfpCagDmpaTMgxWK8/C/XcXvw==}
engines: {node: '>=12'}
@@ -1160,12 +1208,24 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-arm64@0.20.2':
+ resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-arm64@0.21.5':
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-arm64@0.23.1':
+ resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.16.3':
resolution: {integrity: sha512-uEqZQ2omc6BvWqdCiyZ5+XmxuHEi1SPzpVxXCSSV2+Sh7sbXbpeNhHIeFrIpRjAs0lI1FmA1iIOxFozKBhKgRQ==}
engines: {node: '>=12'}
@@ -1178,12 +1238,24 @@ packages:
cpu: [x64]
os: [darwin]
+ '@esbuild/darwin-x64@0.20.2':
+ resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.21.5':
resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
+ '@esbuild/darwin-x64@0.23.1':
+ resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/freebsd-arm64@0.16.3':
resolution: {integrity: sha512-nJansp3sSXakNkOD5i5mIz2Is/HjzIhFs49b1tjrPrpCmwgBmH9SSzhC/Z1UqlkivqMYkhfPwMw1dGFUuwmXhw==}
engines: {node: '>=12'}
@@ -1196,12 +1268,24 @@ packages:
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-arm64@0.20.2':
+ resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-arm64@0.21.5':
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-arm64@0.23.1':
+ resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.16.3':
resolution: {integrity: sha512-TfoDzLw+QHfc4a8aKtGSQ96Wa+6eimljjkq9HKR0rHlU83vw8aldMOUSJTUDxbcUdcgnJzPaX8/vGWm7vyV7ug==}
engines: {node: '>=12'}
@@ -1214,12 +1298,24 @@ packages:
cpu: [x64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.20.2':
+ resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.21.5':
resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.23.1':
+ resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/linux-arm64@0.16.3':
resolution: {integrity: sha512-7I3RlsnxEFCHVZNBLb2w7unamgZ5sVwO0/ikE2GaYvYuUQs9Qte/w7TqWcXHtCwxvZx/2+F97ndiUQAWs47ZfQ==}
engines: {node: '>=12'}
@@ -1232,12 +1328,24 @@ packages:
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm64@0.20.2':
+ resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+
'@esbuild/linux-arm64@0.21.5':
resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm64@0.23.1':
+ resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
'@esbuild/linux-arm@0.16.3':
resolution: {integrity: sha512-VwswmSYwVAAq6LysV59Fyqk3UIjbhuc6wb3vEcJ7HEJUtFuLK9uXWuFoH1lulEbE4+5GjtHi3MHX+w1gNHdOWQ==}
engines: {node: '>=12'}
@@ -1250,12 +1358,24 @@ packages:
cpu: [arm]
os: [linux]
+ '@esbuild/linux-arm@0.20.2':
+ resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-arm@0.21.5':
resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
+ '@esbuild/linux-arm@0.23.1':
+ resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-ia32@0.16.3':
resolution: {integrity: sha512-X8FDDxM9cqda2rJE+iblQhIMYY49LfvW4kaEjoFbTTQ4Go8G96Smj2w3BRTwA8IHGoi9dPOPGAX63dhuv19UqA==}
engines: {node: '>=12'}
@@ -1268,12 +1388,24 @@ packages:
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-ia32@0.20.2':
+ resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-ia32@0.21.5':
resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-ia32@0.23.1':
+ resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-loong64@0.16.3':
resolution: {integrity: sha512-hIbeejCOyO0X9ujfIIOKjBjNAs9XD/YdJ9JXAy1lHA+8UXuOqbFe4ErMCqMr8dhlMGBuvcQYGF7+kO7waj2KHw==}
engines: {node: '>=12'}
@@ -1286,12 +1418,24 @@ packages:
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.20.2':
+ resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-loong64@0.21.5':
resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.23.1':
+ resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.16.3':
resolution: {integrity: sha512-znFRzICT/V8VZQMt6rjb21MtAVJv/3dmKRMlohlShrbVXdBuOdDrGb+C2cZGQAR8RFyRe7HS6klmHq103WpmVw==}
engines: {node: '>=12'}
@@ -1304,12 +1448,24 @@ packages:
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-mips64el@0.20.2':
+ resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.21.5':
resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-mips64el@0.23.1':
+ resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
'@esbuild/linux-ppc64@0.16.3':
resolution: {integrity: sha512-EV7LuEybxhXrVTDpbqWF2yehYRNz5e5p+u3oQUS2+ZFpknyi1NXxr8URk4ykR8Efm7iu04//4sBg249yNOwy5Q==}
engines: {node: '>=12'}
@@ -1322,12 +1478,24 @@ packages:
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-ppc64@0.20.2':
+ resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-ppc64@0.21.5':
resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-ppc64@0.23.1':
+ resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.16.3':
resolution: {integrity: sha512-uDxqFOcLzFIJ+r/pkTTSE9lsCEaV/Y6rMlQjUI9BkzASEChYL/aSQjZjchtEmdnVxDKETnUAmsaZ4pqK1eE5BQ==}
engines: {node: '>=12'}
@@ -1340,12 +1508,24 @@ packages:
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-riscv64@0.20.2':
+ resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.21.5':
resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-riscv64@0.23.1':
+ resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-s390x@0.16.3':
resolution: {integrity: sha512-NbeREhzSxYwFhnCAQOQZmajsPYtX71Ufej3IQ8W2Gxskfz9DK58ENEju4SbpIj48VenktRASC52N5Fhyf/aliQ==}
engines: {node: '>=12'}
@@ -1358,12 +1538,24 @@ packages:
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-s390x@0.20.2':
+ resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-s390x@0.21.5':
resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-s390x@0.23.1':
+ resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-x64@0.16.3':
resolution: {integrity: sha512-SDiG0nCixYO9JgpehoKgScwic7vXXndfasjnD5DLbp1xltANzqZ425l7LSdHynt19UWOcDjG9wJJzSElsPvk0w==}
engines: {node: '>=12'}
@@ -1376,12 +1568,24 @@ packages:
cpu: [x64]
os: [linux]
+ '@esbuild/linux-x64@0.20.2':
+ resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+
'@esbuild/linux-x64@0.21.5':
resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
+ '@esbuild/linux-x64@0.23.1':
+ resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
'@esbuild/netbsd-x64@0.16.3':
resolution: {integrity: sha512-AzbsJqiHEq1I/tUvOfAzCY15h4/7Ivp3ff/o1GpP16n48JMNAtbW0qui2WCgoIZArEHD0SUQ95gvR0oSO7ZbdA==}
engines: {node: '>=12'}
@@ -1394,12 +1598,30 @@ packages:
cpu: [x64]
os: [netbsd]
+ '@esbuild/netbsd-x64@0.20.2':
+ resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+
'@esbuild/netbsd-x64@0.21.5':
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
+ '@esbuild/netbsd-x64@0.23.1':
+ resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
+ '@esbuild/openbsd-arm64@0.23.1':
+ resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
'@esbuild/openbsd-x64@0.16.3':
resolution: {integrity: sha512-gSABi8qHl8k3Cbi/4toAzHiykuBuWLZs43JomTcXkjMZVkp0gj3gg9mO+9HJW/8GB5H89RX/V0QP4JGL7YEEVg==}
engines: {node: '>=12'}
@@ -1412,12 +1634,24 @@ packages:
cpu: [x64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.20.2':
+ resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+
'@esbuild/openbsd-x64@0.21.5':
resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.23.1':
+ resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
'@esbuild/sunos-x64@0.16.3':
resolution: {integrity: sha512-SF9Kch5Ete4reovvRO6yNjMxrvlfT0F0Flm+NPoUw5Z4Q3r1d23LFTgaLwm3Cp0iGbrU/MoUI+ZqwCv5XJijCw==}
engines: {node: '>=12'}
@@ -1430,12 +1664,24 @@ packages:
cpu: [x64]
os: [sunos]
+ '@esbuild/sunos-x64@0.20.2':
+ resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+
'@esbuild/sunos-x64@0.21.5':
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
+ '@esbuild/sunos-x64@0.23.1':
+ resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
'@esbuild/win32-arm64@0.16.3':
resolution: {integrity: sha512-u5aBonZIyGopAZyOnoPAA6fGsDeHByZ9CnEzyML9NqntK6D/xl5jteZUKm/p6nD09+v3pTM6TuUIqSPcChk5gg==}
engines: {node: '>=12'}
@@ -1448,12 +1694,24 @@ packages:
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-arm64@0.20.2':
+ resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+
'@esbuild/win32-arm64@0.21.5':
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-arm64@0.23.1':
+ resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
'@esbuild/win32-ia32@0.16.3':
resolution: {integrity: sha512-GlgVq1WpvOEhNioh74TKelwla9KDuAaLZrdxuuUgsP2vayxeLgVc+rbpIv0IYF4+tlIzq2vRhofV+KGLD+37EQ==}
engines: {node: '>=12'}
@@ -1466,12 +1724,24 @@ packages:
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-ia32@0.20.2':
+ resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-ia32@0.21.5':
resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-ia32@0.23.1':
+ resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-x64@0.16.3':
resolution: {integrity: sha512-5/JuTd8OWW8UzEtyf19fbrtMJENza+C9JoPIkvItgTBQ1FO2ZLvjbPO6Xs54vk0s5JB5QsfieUEshRQfu7ZHow==}
engines: {node: '>=12'}
@@ -1484,12 +1754,24 @@ packages:
cpu: [x64]
os: [win32]
+ '@esbuild/win32-x64@0.20.2':
+ resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+
'@esbuild/win32-x64@0.21.5':
resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
+ '@esbuild/win32-x64@0.23.1':
+ resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
'@eslint-community/eslint-utils@4.4.0':
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -1734,14 +2016,14 @@ packages:
engines: {node: '>=6'}
hasBin: true
- '@headlessui/tailwindcss@0.2.0':
- resolution: {integrity: sha512-fpL830Fln1SykOCboExsWr3JIVeQKieLJ3XytLe/tt1A0XzqUthOftDmjcCYLW62w7mQI7wXcoPXr3tZ9QfGxw==}
+ '@headlessui/tailwindcss@0.2.1':
+ resolution: {integrity: sha512-2+5+NZ+RzMyrVeCZOxdbvkUSssSxGvcUxphkIfSVLpRiKsj+/63T2TOL9dBYMXVfj/CGr6hMxSRInzXv6YY7sA==}
engines: {node: '>=10'}
peerDependencies:
tailwindcss: ^3.0
- '@headlessui/vue@1.7.17':
- resolution: {integrity: sha512-hmJChv8HzKorxd9F70RGnECAwZfkvmmwOqreuKLWY/19d5qbWnSdw+DNbuA/Uo6X5rb4U5B3NrT+qBKPmjhRqw==}
+ '@headlessui/vue@1.7.22':
+ resolution: {integrity: sha512-Hoffjoolq1rY+LOfJ+B/OvkhuBXXBFgd8oBlN+l1TApma2dB0En0ucFZrwQtb33SmcCqd32EQd0y07oziXWNYg==}
engines: {node: '>=10'}
peerDependencies:
vue: ^3.2.0
@@ -1785,8 +2067,8 @@ packages:
'@jridgewell/source-map@0.3.6':
resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
- '@jridgewell/sourcemap-codec@1.4.15':
- resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
+ '@jridgewell/sourcemap-codec@1.5.0':
+ resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
@@ -1869,17 +2151,17 @@ packages:
'@mermaid-js/mermaid-mindmap@9.3.0':
resolution: {integrity: sha512-IhtYSVBBRYviH1Ehu8gk69pMDF8DSRqXBRDMWrEfHoaMruHeaP2DXA3PBnuwsMaCdPQhlUUcy/7DBLAEIXvCAw==}
- '@netlify/functions@2.4.1':
- resolution: {integrity: sha512-sRFYBaz6dJP1MdUtk/5QNmshhg5UDmB+DUssmH6v9WUG85MrwyExEfGfJA5eClXATjXm0coTvO5nLAlyCpK7QQ==}
+ '@netlify/functions@2.8.1':
+ resolution: {integrity: sha512-+6wtYdoz0yE06dSa9XkP47tw5zm6g13QMeCwM3MmHx1vn8hzwFa51JtmfraprdkL7amvb7gaNM+OOhQU1h6T8A==}
engines: {node: '>=14.0.0'}
'@netlify/node-cookies@0.1.0':
resolution: {integrity: sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g==}
engines: {node: ^14.16.0 || >=16.0.0}
- '@netlify/serverless-functions-api@1.12.3':
- resolution: {integrity: sha512-g1AZ78pCvMnalZtbnViVLGfG5ufjKyKoi3plLSUtZqh0wVuMR7ZGegeZHhOoY4wRfkkETVvWfhgfcpLMbGM5Lg==}
- engines: {node: ^14.18.0 || >=16.0.0}
+ '@netlify/serverless-functions-api@1.19.1':
+ resolution: {integrity: sha512-2KYkyluThg1AKfd0JWI7FzpS4A/fzVVGYIf6AM4ydWyNj8eI/86GQVLeRgDoH7CNOxt243R5tutWlmHpVq0/Ew==}
+ engines: {node: '>=18.0.0'}
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
@@ -1904,79 +2186,53 @@ packages:
resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- '@npmcli/git@5.0.3':
- resolution: {integrity: sha512-UZp9NwK+AynTrKvHn5k3KviW/hA5eENmFsu3iAPe7sWRt0lFUdsY/wXIYjpDFe7cdSNwOIzbObfwgt6eL5/2zw==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@npmcli/installed-package-contents@2.0.2':
- resolution: {integrity: sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- hasBin: true
-
'@npmcli/move-file@1.1.2':
resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==}
engines: {node: '>=10'}
deprecated: This functionality has been moved to @npmcli/fs
- '@npmcli/node-gyp@3.0.0':
- resolution: {integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
'@npmcli/package-json@2.0.0':
resolution: {integrity: sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- '@npmcli/promise-spawn@7.0.0':
- resolution: {integrity: sha512-wBqcGsMELZna0jDblGd7UXgOby45TQaMWmbFwWX+SEotk4HV6zG2t6rT9siyLhPk4P6YYqgfL1UO8nMWDBVJXQ==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@npmcli/run-script@7.0.2':
- resolution: {integrity: sha512-Omu0rpA8WXvcGeY6DDzyRoY1i5DkCBkzyJ+m2u7PD6quzb0TvSqdIPOkTn8ZBOj7LbbcbMfZ3c5skwSu6m8y2w==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
'@nuxt/devalue@2.0.2':
resolution: {integrity: sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==}
- '@nuxt/devtools-kit@1.0.6':
- resolution: {integrity: sha512-CUSE++NRTIwvBWbLsPzLZIDMpXr6oyllaWm8tOR3Wgr/04jW31uyWbXjU/fxRuDotQwZfcTe19uunRoCoBnk1Q==}
+ '@nuxt/devtools-kit@1.4.1':
+ resolution: {integrity: sha512-6h7T9B0tSZVap13/hf7prEAgIzraj/kyux6/Iif455Trew96jHIFCCboBApUMastYEuCo3l17tgZKe0HW+jrtA==}
peerDependencies:
- nuxt: ^3.8.2
vite: ^5.0.0
- '@nuxt/devtools-wizard@1.0.6':
- resolution: {integrity: sha512-44G+t2sQQii3TPnmktlrZryC4pw7t77GUV7wneEicLGU+w5I5ib7taVMJy8+yBC3kpTs5eYHOmqI63Dqvr73tw==}
+ '@nuxt/devtools-wizard@1.4.1':
+ resolution: {integrity: sha512-X9uTh5rgt0pw3UjXcHyl8ZFYmCgw8ITRe9Nr2VLCtNROfKz9yol/ESEhYMwTFiFlqSyfJP6/qtogJBjUt6dzTw==}
hasBin: true
- '@nuxt/devtools@1.0.6':
- resolution: {integrity: sha512-3P914IHBvKl2aYSrwaCAU9E1ndVNnGJR0Jn0XKUFktsbjU5kGlwLGrtRKXAw4Yz1VNiSZPrapVrFOQWbXRGRvg==}
+ '@nuxt/devtools@1.4.1':
+ resolution: {integrity: sha512-BtmGRAr/pjSE3dBrM7iceNT6OZAQ/MHxq1brkHJDs2VdyZPnqqGS4n3/98saASoRdj0dddsuIElsqC/zIABhgg==}
hasBin: true
peerDependencies:
- nuxt: ^3.8.2
vite: ^5.0.0
- '@nuxt/kit@3.9.0':
- resolution: {integrity: sha512-XVFQihMTXM5y7Xj7EXbcDbUbxNkC8+ArQKArAH5PK1ulCWZWyP+VR94Gg2boo9vI2eNLTs+LquxnOtOHRQrg0A==}
+ '@nuxt/kit@3.13.1':
+ resolution: {integrity: sha512-FkUL349lp/3nVfTIyws4UDJ3d2jyv5Pk1DC1HQUCOkSloYYMdbRcQAUcb4fe2TCLNWvHM+FhU8jnzGTzjALZYA==}
engines: {node: ^14.18.0 || >=16.10.0}
- '@nuxt/schema@3.9.0':
- resolution: {integrity: sha512-NaRiq+g6XE4YOZLy7be2e6AmZCW0gfQWDM88TSfNr3Lypo+6PuY2VqzZLpSvOCNlW3CFj/kWtMdhool2BP0yIg==}
+ '@nuxt/schema@3.13.1':
+ resolution: {integrity: sha512-ishbhzVGspjshG9AG0hYnKYY6LWXzCtua7OXV7C/DQ2yA7rRcy1xHpzKZUDbIRyxCHHCAcBd8jfHEUmEuhEPrA==}
engines: {node: ^14.18.0 || >=16.10.0}
- '@nuxt/telemetry@2.5.3':
- resolution: {integrity: sha512-Ghv2MgWbJcUM9G5Dy3oQP0cJkUwEgaiuQxEF61FXJdn0a69Q4StZEP/hLF0MWPM9m6EvAwI7orxkJHM7MrmtVg==}
+ '@nuxt/telemetry@2.5.4':
+ resolution: {integrity: sha512-KH6wxzsNys69daSO0xUv0LEBAfhwwjK1M+0Cdi1/vxmifCslMIY7lN11B4eywSfscbyVPAYJvANyc7XiVPImBQ==}
hasBin: true
- '@nuxt/ui-templates@1.3.1':
- resolution: {integrity: sha512-5gc02Pu1HycOVUWJ8aYsWeeXcSTPe8iX8+KIrhyEtEoOSkY0eMBuo0ssljB8wALuEmepv31DlYe5gpiRwkjESA==}
-
- '@nuxt/vite-builder@3.9.0':
- resolution: {integrity: sha512-aJmFv79iuEF0tw79kLgS0LEPgc4WSqIANncNmAu3IIf2zbDQ6iY06eXHVeXShmckbWGlKGaM8L/e8oQNdQdv6g==}
+ '@nuxt/vite-builder@3.13.1':
+ resolution: {integrity: sha512-qH5p5K7lMfFc5L9um3Q7sLb5mvrLHfPTqljZKkEVVEhenz08a33aUPgaKhvd6rJOgW8Z0uh8BS2EoStBK2sSog==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
vue: ^3.3.4
- '@nuxtjs/tailwindcss@6.10.3':
- resolution: {integrity: sha512-AXkfAW0RLbJfPtdw0QY6+1q+N0e9790zhu6t9DezEvHqfG0ajBSwDTvuu3P48hOcxZpY3PZ+j8N0LDTqCW9X8w==}
+ '@nuxtjs/tailwindcss@6.12.1':
+ resolution: {integrity: sha512-UKmaPRVpxlFqLorhL6neEba2tySlsj6w6yDb7jzS6A0AAjyBQ6k3BQqWO+AaTy2iQLX7eR+1yj3/w43HzY8RtA==}
'@one-ini/wasm@0.1.1':
resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==}
@@ -2043,8 +2299,8 @@ packages:
cpu: [x64]
os: [linux]
- '@parcel/watcher-wasm@2.3.0':
- resolution: {integrity: sha512-ejBAX8H0ZGsD8lSICDNyMbSEtPMWgDL0WFCt/0z7hyf5v8Imz4rAM8xY379mBsECkq/Wdqa5WEDLqtjZ+6NxfA==}
+ '@parcel/watcher-wasm@2.4.1':
+ resolution: {integrity: sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==}
engines: {node: '>= 10.0.0'}
bundledDependencies:
- napi-wasm
@@ -2095,8 +2351,8 @@ packages:
resolution: {integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==}
engines: {node: '>=12'}
- '@polka/url@1.0.0-next.24':
- resolution: {integrity: sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==}
+ '@polka/url@1.0.0-next.25':
+ resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}
'@protobufjs/aspromise@1.1.2':
resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==}
@@ -2165,8 +2421,8 @@ packages:
'@types/babel__core':
optional: true
- '@rollup/plugin-commonjs@25.0.7':
- resolution: {integrity: sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==}
+ '@rollup/plugin-commonjs@25.0.8':
+ resolution: {integrity: sha512-ZEZWTK5n6Qde0to4vS9Mr5x/0UZoqCxPVR9KRUjU4kA2sO7GEUn1fop0DAwpO6z0Nw/kJON9bDmSxdWxO/TT1A==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^2.68.0||^3.0.0||^4.0.0
@@ -2212,8 +2468,8 @@ packages:
peerDependencies:
rollup: ^1.20.0 || ^2.0.0
- '@rollup/plugin-replace@5.0.5':
- resolution: {integrity: sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ==}
+ '@rollup/plugin-replace@5.0.7':
+ resolution: {integrity: sha512-PqxSfuorkHz/SPpyngLyg5GCEkOcee9M1bkxiVDr41Pd61mqP1PLOoDPbpl44SB2mQGKwV/In74gqQmGITOhEQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
@@ -2230,15 +2486,6 @@ packages:
rollup:
optional: true
- '@rollup/plugin-wasm@6.2.2':
- resolution: {integrity: sha512-gpC4R1G9Ni92ZIRTexqbhX7U+9estZrbhP+9SRb0DW9xpB9g7j34r+J2hqrcW/lRI7dJaU84MxZM0Rt82tqYPQ==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
- peerDependenciesMeta:
- rollup:
- optional: true
-
'@rollup/pluginutils@3.1.0':
resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==}
engines: {node: '>= 8.0.0'}
@@ -2338,22 +2585,6 @@ packages:
cpu: [x64]
os: [win32]
- '@sigstore/bundle@2.1.0':
- resolution: {integrity: sha512-89uOo6yh/oxaU8AeOUnVrTdVMcGk9Q1hJa7Hkvalc6G3Z3CupWk4Xe9djSgJm9fMkH69s0P0cVHUoKSOemLdng==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@sigstore/protobuf-specs@0.2.1':
- resolution: {integrity: sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- '@sigstore/sign@2.2.0':
- resolution: {integrity: sha512-AAbmnEHDQv6CSfrWA5wXslGtzLPtAtHZleKOgxdQYvx/s76Fk6T6ZVt7w2IGV9j1UrFeBocTTQxaXG2oRrDhYA==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@sigstore/tuf@2.2.0':
- resolution: {integrity: sha512-KKATZ5orWfqd9ZG6MN8PtCIx4eevWSuGRKQvofnWXRpyMyUEpmrzg5M5BrCpjM+NfZ0RbNGOh5tCz/P2uoRqOA==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
'@sinclair/typebox@0.25.24':
resolution: {integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==}
@@ -2364,8 +2595,8 @@ packages:
resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==}
engines: {node: '>=10'}
- '@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'}
'@surma/rollup-plugin-off-main-thread@2.2.3':
@@ -2388,10 +2619,10 @@ packages:
peerDependencies:
tailwindcss: '>=3.2.0'
- '@tailwindcss/typography@0.5.10':
- resolution: {integrity: sha512-Pe8BuPJQJd3FfRnm6H0ulKIGoMEQS+Vq01R6M5aCrFB/ccR/shT+0kXLjouGC1gFLm9hopTFN+DMP0pfwRWzPw==}
+ '@tailwindcss/typography@0.5.15':
+ resolution: {integrity: sha512-AqhlCXl+8grUz8uqExv5OTtgpjuVIwFTSXTrh8y9/pw6q2ek7fJ+Y8ZEVw7EB2DCcuCOtEjf9w3+J3rzts01uA==}
peerDependencies:
- tailwindcss: '>=3.0.0 || insiders'
+ tailwindcss: '>=3.0.0 || insiders || >=4.0.0-alpha.20'
'@tanstack/virtual-core@3.0.0':
resolution: {integrity: sha512-SYXOBTjJb05rXa2vl55TTwO40A6wKu0R5i1qQwhJYNDIqaIGF7D0HsLw+pJAyi2OvntlEIVusx3xtbbgSUi6zg==}
@@ -2427,14 +2658,6 @@ packages:
'@tsconfig/node16@1.0.4':
resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
- '@tufjs/canonical-json@2.0.0':
- resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@tufjs/models@2.0.0':
- resolution: {integrity: sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
'@tweenjs/tween.js@21.0.0':
resolution: {integrity: sha512-qVfOiFh0U8ZSkLgA6tf7kj2MciqRbSCWaJZRwftVO7UbtVDNsZAXpWXqvCDtIefvjC83UJB+vHTDOGm5ibXjEA==}
@@ -2489,8 +2712,8 @@ packages:
'@types/http-cache-semantics@4.0.4':
resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==}
- '@types/http-proxy@1.17.14':
- resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==}
+ '@types/http-proxy@1.17.15':
+ resolution: {integrity: sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==}
'@types/json-schema@7.0.15':
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
@@ -2579,9 +2802,6 @@ packages:
'@types/uuid@9.0.8':
resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==}
- '@types/web-bluetooth@0.0.16':
- resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==}
-
'@types/web-bluetooth@0.0.20':
resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
@@ -2646,20 +2866,20 @@ packages:
'@ungap/structured-clone@1.2.0':
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
- '@unhead/dom@1.8.9':
- resolution: {integrity: sha512-qY4CUVNKEM7lEAcTz5t71QYca+NXgUY5RwhSzB6sBBzZxQTiFOeTVKC6uWXU0N+3jBUdP/zdD3iN1JIjziDlng==}
+ '@unhead/dom@1.10.4':
+ resolution: {integrity: sha512-ehMy9k6efo4GTLmiP27wCtywWYdiggrP3m7h6kD/d1uhfORH3yCgsd4yXQnmDoSbsMyX6GlY5DBzy5bnYPp/Xw==}
- '@unhead/schema@1.8.9':
- resolution: {integrity: sha512-Cumjt2uLfBMEXflvq7Nk8KNqa/JS4MlRGWkjXx/uUXJ1vUeQqeMV8o3hrnRvDDoTXr9LwPapTMUbtClN3TSBgw==}
+ '@unhead/schema@1.10.4':
+ resolution: {integrity: sha512-nX9sJgKPy2t4GHB9ky/vkMLbYqXl9Num5NZToTr0rKrIGkshzHhUrbn/EiHreIjcGI1eIpu+edniCDIwGTJgmw==}
- '@unhead/shared@1.8.9':
- resolution: {integrity: sha512-0o4+CBCi9EnTKPF6cEuLacnUHUkF0u/FfiKrWnKWUiB8wTD1v3UCf5ZCrNCjuJmKHTqj6ZtZ2hIfXsqWfc+3tA==}
+ '@unhead/shared@1.10.4':
+ resolution: {integrity: sha512-C5wsps9i/XCBObMVQUrbXPvZG17a/e5yL0IsxpICaT4QSiZAj9v7JrNQ5WpM5JOZVMKRI5MYRdafNDw3iSmqZg==}
- '@unhead/ssr@1.8.9':
- resolution: {integrity: sha512-sQaA4FDFD1tRD2JiiHfdEY5rF1i54qFxCRqdX0pB+15JJCYBfIPJMr5T1SLJBgc9pqX4rS3MPg2Fc9DW+0p9yw==}
+ '@unhead/ssr@1.10.4':
+ resolution: {integrity: sha512-2nDG08q9bTvMB24YGNJCXimAs1vuG9yVa01i/Et1B2y4P8qhweXOxnialGmt5j8xeXwPFUBCe36tC5kLCSuJoQ==}
- '@unhead/vue@1.8.9':
- resolution: {integrity: sha512-sL1d2IRBZd5rjzhgTYni2DiociSpt+Cfz3iVWKb0EZwQHgg0GzV8Hkoj5TjZYZow6EjDSPRfVPXDwOwxkVOgug==}
+ '@unhead/vue@1.10.4':
+ resolution: {integrity: sha512-Q45F/KOvDeitc8GkfkPY45V8Dmw1m1b9A/aHM5A2BwRV8GyoRV+HRWVw5h02e0AO1TsICvcW8tI90qeCM2oGSA==}
peerDependencies:
vue: '>=2.7 || >=3'
@@ -2701,8 +2921,8 @@ packages:
engines: {node: '>=14'}
hasBin: true
- '@vercel/nft@0.24.4':
- resolution: {integrity: sha512-KjYAZty7boH5fi5udp6p+lNu6nawgs++pHW+3koErMgbRkkHuToGX/FwjN5clV1FcaM3udfd4zW/sUapkMgpZw==}
+ '@vercel/nft@0.26.5':
+ resolution: {integrity: sha512-NHxohEqad6Ra/r4lGknO52uc/GrWILXAMs1BB4401GTqww0fw1bAqzpG1XHuDO+dprg4GvsD9ZLLSsdo78p9hQ==}
engines: {node: '>=16'}
hasBin: true
@@ -2746,15 +2966,15 @@ packages:
'@vite-pwa/nuxt@0.4.0':
resolution: {integrity: sha512-/8Nb/XI/lcCR8jmsbLmzheiMWJeOzHUMIWmcwsyQB8DtqjB5NaRAz8QBwSs1sx/sALJmKCYrbpMWppItYYYrBA==}
- '@vitejs/plugin-vue-jsx@3.1.0':
- resolution: {integrity: sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==}
- engines: {node: ^14.18.0 || >=16.0.0}
+ '@vitejs/plugin-vue-jsx@4.0.1':
+ resolution: {integrity: sha512-7mg9HFGnFHMEwCdB6AY83cVK4A6sCqnrjFYF4WIlebYAQVVJ/sC/CiTruVdrRlhrFoeZ8rlMxY9wYpPTIRhhAg==}
+ engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
vite: ^5.0.0
vue: ^3.0.0
- '@vitejs/plugin-vue@5.0.2':
- resolution: {integrity: sha512-kEjJHrLb5ePBvjD0SPZwJlw1QTRcjjCA9sB5VyfonoXVBxTS7TMnqL6EkLt1Eu61RDeiuZ/WN9Hf6PxXhPI2uA==}
+ '@vitejs/plugin-vue@5.1.3':
+ resolution: {integrity: sha512-3xbWsKEKXYlmX82aOHufFQVnkbMC/v8fLpWwh6hWOUrK5fbbtBh9Q/WWse27BFgSy2/e2c0fz5Scgya9h2GLhw==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
vite: ^5.0.0
@@ -2784,8 +3004,8 @@ packages:
'@volar/typescript@1.11.1':
resolution: {integrity: sha512-iU+t2mas/4lYierSnoFOeRFQUhAEMgsFuQxoxvwn5EdQopw43j+J27a4lt9LMInx1gLJBC6qL14WYGlgymaSMQ==}
- '@vue-macros/common@1.10.0':
- resolution: {integrity: sha512-4DZsPeQA/nBQDw2RkYAmH7KrFjJVrMdAhJhO1JCl1bbbFXCGeoGjXfkg9wHPppj47s2HpAB3GrqNwqVGbi12NQ==}
+ '@vue-macros/common@1.12.2':
+ resolution: {integrity: sha512-+NGfhrPvPNOb3Wg9PNPEXPe0HTXmVe6XJawL1gi3cIjOSGIhpOdvmMT2cRuWb265IpA/PeL5Sqo0+DQnEDxLvw==}
engines: {node: '>=16.14.0'}
peerDependencies:
vue: ^2.7.0 || ^3.2.25
@@ -2793,37 +3013,45 @@ packages:
vue:
optional: true
- '@vue/babel-helper-vue-transform-on@1.1.5':
- resolution: {integrity: sha512-SgUymFpMoAyWeYWLAY+MkCK3QEROsiUnfaw5zxOVD/M64KQs8D/4oK6Q5omVA2hnvEOE0SCkH2TZxs/jnnUj7w==}
+ '@vue/babel-helper-vue-transform-on@1.2.4':
+ resolution: {integrity: sha512-3L9zXWRN2jvmLjtSyw9vtcO5KTSCfKhCD5rEZM+024bc+4dKSzTjIABl/5b+uZ5nXe5y31uUMxxLo1PdXkYaig==}
- '@vue/babel-plugin-jsx@1.1.5':
- resolution: {integrity: sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==}
+ '@vue/babel-plugin-jsx@1.2.4':
+ resolution: {integrity: sha512-jwAVtHUaDfOGGT1EmVKBi0anXOtPvsuKbImcdnHXluaJQ6GEJzshf1JMTtMRx2fPiG7BZjNmyMv+NdZY2OyZEA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+
+ '@vue/babel-plugin-resolve-type@1.2.4':
+ resolution: {integrity: sha512-jWcJAmfKvc/xT2XBC4JAmy2eezNjU3CLfeDecl2Ge3tSjJCTmKJWkEhHdzXyx9Nr6PbIcQrFKhCaEDobhSrPqw==}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@vue/compiler-core@3.4.21':
- resolution: {integrity: sha512-MjXawxZf2SbZszLPYxaFCjxfibYrzr3eYbKxwpLR9EQN+oaziSu3qKVbwBERj1IFIB8OLUewxB5m/BFzi613og==}
+ '@vue/compiler-core@3.5.3':
+ resolution: {integrity: sha512-adAfy9boPkP233NTyvLbGEqVuIfK/R0ZsBsIOW4BZNfb4BRpRW41Do1u+ozJpsb+mdoy80O20IzAsHaihRb5qA==}
- '@vue/compiler-core@3.4.27':
- resolution: {integrity: sha512-E+RyqY24KnyDXsCuQrI+mlcdW3ALND6U7Gqa/+bVwbcpcR3BRRIckFoz7Qyd4TTlnugtwuI7YgjbvsLmxb+yvg==}
+ '@vue/compiler-dom@3.5.3':
+ resolution: {integrity: sha512-wnzFArg9zpvk/811CDOZOadJRugf1Bgl/TQ3RfV4nKfSPok4hi0w10ziYUQR6LnnBAUlEXYLUfZ71Oj9ds/+QA==}
- '@vue/compiler-dom@3.4.21':
- resolution: {integrity: sha512-IZC6FKowtT1sl0CR5DpXSiEB5ayw75oT2bma1BEhV7RRR1+cfwLrxc2Z8Zq/RGFzJ8w5r9QtCOvTjQgdn0IKmA==}
+ '@vue/compiler-sfc@3.5.3':
+ resolution: {integrity: sha512-P3uATLny2tfyvMB04OQFe7Sczteno7SLFxwrOA/dw01pBWQHB5HL15a8PosoNX2aG/EAMGqnXTu+1LnmzFhpTQ==}
- '@vue/compiler-dom@3.4.27':
- resolution: {integrity: sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==}
+ '@vue/compiler-ssr@3.5.3':
+ resolution: {integrity: sha512-F/5f+r2WzL/2YAPl7UlKcJWHrvoZN8XwEBLnT7S4BXwncH25iDOabhO2M2DWioyTguJAGavDOawejkFXj8EM1w==}
- '@vue/compiler-sfc@3.4.21':
- resolution: {integrity: sha512-me7epoTxYlY+2CUM7hy9PCDdpMPfIwrOvAXud2Upk10g4YLv9UBW7kL798TvMeDhPthkZ0CONNrK2GoeI1ODiQ==}
+ '@vue/devtools-api@6.6.3':
+ resolution: {integrity: sha512-0MiMsFma/HqA6g3KLKn+AGpL1kgKhFWszC9U29NfpWK5LE7bjeXxySWJrOJ77hBz+TBrBQ7o4QJqbPbqbs8rJw==}
- '@vue/compiler-ssr@3.4.21':
- resolution: {integrity: sha512-M5+9nI2lPpAsgXOGQobnIueVqc9sisBFexh5yMIMRAPYLa7+5wEJs8iqOZc1WAa9WQbx9GR2twgznU8LTIiZ4Q==}
+ '@vue/devtools-core@7.3.3':
+ resolution: {integrity: sha512-i6Bwkx4OwfY0QVHjAdsivhlzZ2HMj7fbNRYJsWspQ+dkA1f3nTzycPqZmVUsm2TGkbQlhTMhCAdDoP97JKoc+g==}
- '@vue/compiler-ssr@3.4.27':
- resolution: {integrity: sha512-CVRzSJIltzMG5FcidsW0jKNQnNRYC8bT21VegyMMtHmhW3UOI7knmUehzswXLrExDLE6lQCZdrhD4ogI7c+vuw==}
+ '@vue/devtools-kit@7.3.3':
+ resolution: {integrity: sha512-m+dFI57BrzKYPKq73mt4CJ5GWld5OLBseLHPHGVP7CaILNY9o1gWVJWAJeF8XtQ9LTiMxZSaK6NcBsFuxAhD0g==}
- '@vue/devtools-api@6.5.1':
- resolution: {integrity: sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==}
+ '@vue/devtools-shared@7.4.4':
+ resolution: {integrity: sha512-yeJULXFHOKIm8yL2JFO050a9ztTVqOCKTqN9JHFxGTJN0b+gjtfn6zC+FfyHUgjwCwf6E3hfKrlohtthcqoYqw==}
'@vue/language-core@1.8.27':
resolution: {integrity: sha512-L8Kc27VdQserNaCUNiSFdDl9LWT24ly8Hpwf1ECy3aFb9m6bDhBGQYOujDm21N7EW3moKIOKEanQwe1q5BK+mA==}
@@ -2833,30 +3061,22 @@ packages:
typescript:
optional: true
- '@vue/reactivity@3.4.21':
- resolution: {integrity: sha512-UhenImdc0L0/4ahGCyEzc/pZNwVgcglGy9HVzJ1Bq2Mm9qXOpP8RyNTjookw/gOCUlXSEtuZ2fUg5nrHcoqJcw==}
+ '@vue/reactivity@3.5.3':
+ resolution: {integrity: sha512-2w61UnRWTP7+rj1H/j6FH706gRBHdFVpIqEkSDAyIpafBXYH8xt4gttstbbCWdU3OlcSWO8/3mbKl/93/HSMpw==}
- '@vue/runtime-core@3.4.21':
- resolution: {integrity: sha512-pQthsuYzE1XcGZznTKn73G0s14eCJcjaLvp3/DKeYWoFacD9glJoqlNBxt3W2c5S40t6CCcpPf+jG01N3ULyrA==}
+ '@vue/runtime-core@3.5.3':
+ resolution: {integrity: sha512-5b2AQw5OZlmCzSsSBWYoZOsy75N4UdMWenTfDdI5bAzXnuVR7iR8Q4AOzQm2OGoA41xjk53VQKrqQhOz2ktWaw==}
- '@vue/runtime-dom@3.4.21':
- resolution: {integrity: sha512-gvf+C9cFpevsQxbkRBS1NpU8CqxKw0ebqMvLwcGQrNpx6gqRDodqKqA+A2VZZpQ9RpK2f9yfg8VbW/EpdFUOJw==}
+ '@vue/runtime-dom@3.5.3':
+ resolution: {integrity: sha512-wPR1DEGc3XnQ7yHbmkTt3GoY0cEnVGQnARRdAkDzZ8MbUKEs26gogCQo6AOvvgahfjIcnvWJzkZArQ1fmWjcSg==}
- '@vue/server-renderer@3.4.21':
- resolution: {integrity: sha512-aV1gXyKSN6Rz+6kZ6kr5+Ll14YzmIbeuWe7ryJl5muJ4uwSwY/aStXTixx76TwkZFJLm1aAlA/HSWEJ4EyiMkg==}
+ '@vue/server-renderer@3.5.3':
+ resolution: {integrity: sha512-28volmaZVG2PGO3V3+gBPKoSHvLlE8FGfG/GKXKkjjfxLuj/50B/0OQGakM/g6ehQeqCrZYM4eHC4Ks48eig1Q==}
peerDependencies:
- vue: 3.4.21
+ vue: 3.5.3
- '@vue/server-renderer@3.4.27':
- resolution: {integrity: sha512-dlAMEuvmeA3rJsOMJ2J1kXU7o7pOxgsNHVr9K8hB3ImIkSuBrIdy0vF66h8gf8Tuinf1TK3mPAz2+2sqyf3KzA==}
- peerDependencies:
- vue: 3.4.27
-
- '@vue/shared@3.4.21':
- resolution: {integrity: sha512-PuJe7vDIi6VYSinuEbUIQgMIRZGgM8e4R+G+/dQTk0X1NEdvgvvgv7m+rfmDH1gZzyA1OjjoWskvHlfRNfQf3g==}
-
- '@vue/shared@3.4.27':
- resolution: {integrity: sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==}
+ '@vue/shared@3.5.3':
+ resolution: {integrity: sha512-Jp2v8nylKBT+PlOUjun2Wp/f++TfJVFjshLzNtJDdmFJabJa7noGMncqXRM1vXGX+Yo2V7WykQFNxusSim8SCA==}
'@vue/test-utils@2.4.3':
resolution: {integrity: sha512-F4K7mF+ad++VlTrxMJVRnenKSJmO6fkQt2wpRDiKDesQMkfpniGWsqEi/JevxGBo2qEkwwjvTUAoiGJLNx++CA==}
@@ -2867,38 +3087,29 @@ packages:
'@vue/server-renderer':
optional: true
- '@vueuse/core@10.7.1':
- resolution: {integrity: sha512-74mWHlaesJSWGp1ihg76vAnfVq9NTv1YT0SYhAQ6zwFNdBkkP+CKKJmVOEHcdSnLXCXYiL5e7MaewblfiYLP7g==}
-
- '@vueuse/core@9.13.0':
- resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==}
+ '@vueuse/core@11.0.3':
+ resolution: {integrity: sha512-RENlh64+SYA9XMExmmH1a3TPqeIuJBNNB/63GT35MZI+zpru3oMRUA6cEFr9HmGqEgUisurwGwnIieF6qu3aXw==}
- '@vueuse/head@1.3.1':
- resolution: {integrity: sha512-XCcHGfDzkGlHS7KIPJVYN//L7jpfASLsN7MUE19ndHVQLnPIDxqFLDl7IROsY81PKzawVAUe4OYVWcGixseWxA==}
+ '@vueuse/head@2.0.0':
+ resolution: {integrity: sha512-ykdOxTGs95xjD4WXE4na/umxZea2Itl0GWBILas+O4oqS7eXIods38INvk3XkJKjqMdWPcpCyLX/DioLQxU1KA==}
peerDependencies:
vue: '>=2.7 || >=3'
- '@vueuse/metadata@10.7.1':
- resolution: {integrity: sha512-jX8MbX5UX067DYVsbtrmKn6eG6KMcXxLRLlurGkZku5ZYT3vxgBjui2zajvUZ18QLIjrgBkFRsu7CqTAg18QFw==}
+ '@vueuse/metadata@11.0.3':
+ resolution: {integrity: sha512-+FtbO4SD5WpsOcQTcC0hAhNlOid6QNLzqedtquTtQ+CRNBoAt9GuV07c6KNHK1wCmlq8DFPwgiLF2rXwgSHX5Q==}
- '@vueuse/metadata@9.13.0':
- resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==}
-
- '@vueuse/nuxt@9.13.0':
- resolution: {integrity: sha512-JunH/w6nFIwCyaZ0s+pfrYFMfBzGfhkwmFPz7ogHFmb71Ty/5HINrYOAOZCXpN44X6QH6FiJq/wuLLdvYzqFUw==}
+ '@vueuse/nuxt@11.0.3':
+ resolution: {integrity: sha512-1tZGM9lvFl6HqmSQNM6hsHbAzLkBitoh8RsVC8kIG/93d3Pb5dEqUdt1k+OfHyR8V2rfSOwCfJx+wlUTlY0A2g==}
peerDependencies:
nuxt: ^3.0.0
- '@vueuse/rxjs@10.7.1':
- resolution: {integrity: sha512-tQl33b0uZWhNJwgpPgucEh8g80aizJCYB9hU35vWkmyMhU/eTmDw4ZgLyuooZRquoZEHyzU+nFWCJAUCiltgsA==}
+ '@vueuse/rxjs@11.0.3':
+ resolution: {integrity: sha512-vgiUFPXaqxXNZfaL5WoMNmjWqFSSX3N8bGYyGrvyvYeiP/r2wLYQ+RRfQ0f0hP8Z4xPtAm5/kxjycypPtvme4Q==}
peerDependencies:
rxjs: '>=6.0.0'
- '@vueuse/shared@10.7.1':
- resolution: {integrity: sha512-v0jbRR31LSgRY/C5i5X279A/WQjD6/JsMzGa+eqt658oJ75IvQXAeONmwvEMrvJQKnRElq/frzBR7fhmWY5uLw==}
-
- '@vueuse/shared@9.13.0':
- resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==}
+ '@vueuse/shared@11.0.3':
+ resolution: {integrity: sha512-0rY2m6HS5t27n/Vp5cTDsKTlNnimCqsbh/fmT2LgE+aaU42EMfXo8+bNX91W9I7DDmxfuACXMmrd7d79JxkqWA==}
'@web3-storage/multipart-parser@1.0.0':
resolution: {integrity: sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw==}
@@ -2925,6 +3136,11 @@ packages:
resolution: {integrity: sha512-dml7D96DY/K5lt4Ra2jMnpL9Bhw5HEGws4p1OAIxFFj9Utd/RxNfEO3T3f0QIWFNwQU7gNxH9snUfqF/zNkP/w==}
engines: {node: '>=12'}
+ acorn-import-attributes@1.9.5:
+ resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==}
+ peerDependencies:
+ acorn: ^8
+
acorn-jsx@5.3.2:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
@@ -2934,11 +3150,6 @@ packages:
resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==}
engines: {node: '>=0.4.0'}
- acorn@8.11.2:
- resolution: {integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
acorn@8.12.1:
resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
engines: {node: '>=0.4.0'}
@@ -2948,8 +3159,8 @@ packages:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 6.0.0'}
- agent-base@7.1.0:
- resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==}
+ agent-base@7.1.1:
+ resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}
engines: {node: '>= 14'}
aggregate-error@3.1.0:
@@ -3058,17 +3269,17 @@ packages:
resolution: {integrity: sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw==}
engines: {node: '>= 10'}
- archiver-utils@4.0.1:
- resolution: {integrity: sha512-Q4Q99idbvzmgCTEAAhi32BkOyq8iVI5EwdO0PmBDSGIzzjYNdcFn7Q7k3OzbLy4kLUPXfJtG6fO2RjftXbobBg==}
- engines: {node: '>= 12.0.0'}
+ archiver-utils@5.0.2:
+ resolution: {integrity: sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==}
+ engines: {node: '>= 14'}
archiver@5.3.2:
resolution: {integrity: sha512-+25nxyyznAXF7Nef3y0EbBeqmGZgeN/BxHX29Rs39djAfaFalmQ89SE6CWyDCHzGL0yt/ycBtNOmGTW0FyGWNw==}
engines: {node: '>= 10'}
- archiver@6.0.1:
- resolution: {integrity: sha512-CXGy4poOLBKptiZH//VlWdFuUC1RESbdZjGjILwBuZ73P7WkAUN0htfSfBq/7k6FRFlpu7bg4JOkj1vU9G6jcQ==}
- engines: {node: '>= 12.0.0'}
+ archiver@7.0.1:
+ resolution: {integrity: sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==}
+ engines: {node: '>= 14'}
are-we-there-yet@1.1.7:
resolution: {integrity: sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==}
@@ -3140,12 +3351,8 @@ packages:
assertion-error@1.1.0:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
- ast-kit@0.11.3:
- resolution: {integrity: sha512-qdwwKEhckRk0XE22/xDdmU3v/60E8Edu4qFhgTLIhGGDs/PAJwLw9pQn8Rj99PitlbBZbYpx0k/lbir4kg0SuA==}
- engines: {node: '>=16.14.0'}
-
- ast-kit@0.9.5:
- resolution: {integrity: sha512-kbL7ERlqjXubdDd+szuwdlQ1xUxEz9mCz1+m07ftNVStgwRb2RWw+U6oKo08PAvOishMxiqz1mlJyLl8yQx2Qg==}
+ ast-kit@1.1.0:
+ resolution: {integrity: sha512-RlNqd4u6c/rJ5R+tN/ZTtyNrH8X0NHCvyt6gD8RHa3JjzxxHWoyaU0Ujk3Zjbh7IZqrYl1Sxm6XzZifmVxXxHQ==}
engines: {node: '>=16.14.0'}
ast-types@0.13.4:
@@ -3156,8 +3363,8 @@ packages:
resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==}
engines: {node: '>=4'}
- ast-walker-scope@0.5.0:
- resolution: {integrity: sha512-NsyHMxBh4dmdEHjBo1/TBZvCKxffmZxRYhmclfu0PP6Aftre47jOHYaYaNqJcV0bxihxFXhDkzLHUwHc0ocd0Q==}
+ ast-walker-scope@0.6.2:
+ resolution: {integrity: sha512-1UWOyC50xI3QZkRuDj6PqDtpm1oHWtYs+NQGwqL/2R11eN3Q81PHAHPM0SWW3BNQm53UDwS//Jv8L4CCVLM1bQ==}
engines: {node: '>=16.14.0'}
astring@1.9.0:
@@ -3180,8 +3387,8 @@ packages:
async@2.6.4:
resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==}
- async@3.2.5:
- resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==}
+ async@3.2.6:
+ resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
@@ -3193,8 +3400,8 @@ packages:
autolinker@3.16.2:
resolution: {integrity: sha512-JiYl7j2Z19F9NdTmirENSUUIIL/9MytEWtmzhfmsKPCp9E+G35Y0UNCMoM9tFigxT59qSc8Ml2dlZXOCVTYwuA==}
- autoprefixer@10.4.16:
- resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==}
+ autoprefixer@10.4.20:
+ resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
@@ -3207,11 +3414,11 @@ packages:
axios@0.26.1:
resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==}
- axios@1.6.8:
- resolution: {integrity: sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==}
+ axios@1.7.7:
+ resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==}
- b4a@1.6.4:
- resolution: {integrity: sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==}
+ b4a@1.6.6:
+ resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==}
babel-plugin-polyfill-corejs2@0.4.11:
resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==}
@@ -3234,6 +3441,9 @@ packages:
balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
+ bare-events@2.4.2:
+ resolution: {integrity: sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==}
+
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
@@ -3251,10 +3461,6 @@ packages:
bezier-js@6.1.4:
resolution: {integrity: sha512-PA0FW9ZpcHbojUCMu28z9Vg/fNkwTj5YhusSAjHHDfHDGLxJ6YUKrAN2vk1fP2MMOxVw4Oko16FMlRGVBGqLKg==}
- big-integer@1.6.52:
- resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
- engines: {node: '>=0.6'}
-
big.js@5.2.2:
resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
@@ -3271,8 +3477,8 @@ packages:
bindings@1.5.0:
resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
- birpc@0.2.14:
- resolution: {integrity: sha512-37FHE8rqsYM5JEKCnXFyHpBCzvgHEExwVVTq+nUmloInU7l8ezD1TpOhKpS8oe1DTYFqEK27rFZVKG43oTqXRA==}
+ birpc@0.2.17:
+ resolution: {integrity: sha512-+hkTxhot+dWsLpp3gia5AkVHIsKlZybNT5gIYiDlNzJrmYPcTM9k5/w2uaj3IPpd7LlEYpmCj4Jj1nC41VhDFg==}
bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
@@ -3301,10 +3507,6 @@ packages:
resolution: {integrity: sha512-j//dBVuyacJbvW+tvZ9HuH03fZ46QcaKvvhZickZqtB271DxJ7SNRSNxrV/dZX0085m7hISRZWbzWlJvx/rHSg==}
engines: {node: '>=14.16'}
- bplist-parser@0.2.0:
- resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==}
- engines: {node: '>= 5.10.0'}
-
brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
@@ -3351,6 +3553,10 @@ packages:
buffer-crc32@0.2.13:
resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
+ buffer-crc32@1.0.0:
+ resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==}
+ engines: {node: '>=8.0.0'}
+
buffer-equal-constant-time@1.0.1:
resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==}
@@ -3376,9 +3582,9 @@ packages:
builtins@5.0.1:
resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==}
- 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'}
bytes@3.0.0:
resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
@@ -3388,8 +3594,13 @@ packages:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
- c12@1.6.1:
- resolution: {integrity: sha512-fAZOi3INDvIbmjuwAVVggusyRTxwNdTAnwLay8IsXwhFzDwPPGzFxzrx6L55CPFGPulUSZI0eyFUvRDXveoE3g==}
+ c12@1.11.2:
+ resolution: {integrity: sha512-oBs8a4uvSDO9dm8b7OCFW7+dgtVrwmwnrVXYzLm43ta7ep2jCn/0MhoUFygIWtxhyy6+/MG7/agvpY0U1Iemew==}
+ peerDependencies:
+ magicast: ^0.3.4
+ peerDependenciesMeta:
+ magicast:
+ optional: true
cac@6.7.14:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
@@ -3441,8 +3652,8 @@ packages:
caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
- caniuse-lite@1.0.30001655:
- resolution: {integrity: sha512-jRGVy3iSGO5Uutn2owlb5gR6qsGngTw9ZTb4ali9f3glshcNmJ2noam4Mo9zia5P9Dk3jNNydy7vQjuE5dQmfg==}
+ caniuse-lite@1.0.30001658:
+ resolution: {integrity: sha512-N2YVqWbJELVdrnsW5p+apoQyYt51aBMSsBZki1XZEfeBCexcM/sf4xiAHcXQBkuOwJBXtWF7aW1sYX6tKebPHw==}
canvas-color-tracker@1.2.1:
resolution: {integrity: sha512-i5clg2pEdaWqHuEM/B74NZNLkHh5+OkXbA/T4iaBiaNDagkOCXkLNrhqUfdUugsRwuaNRU20e/OygzxWRor3yg==}
@@ -3540,8 +3751,8 @@ packages:
cipher-base@1.0.4:
resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==}
- citty@0.1.5:
- resolution: {integrity: sha512-AS7n5NSc0OQVMV9v6wt3ByujNIrne0/cTjiC2MYqhvao57VNfiuVksTSr2p17nVOhEr2KtqiAkGwHcgMC/qUuQ==}
+ citty@0.1.6:
+ resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
cjson@0.3.3:
resolution: {integrity: sha512-yKNcXi/Mvi5kb1uK0sahubYiyfUO2EUgOp4NcY9+8NX5Xmc+4yeNogZuLFkpLBBj7/QI9MjRUIuXrV9XOw5kVg==}
@@ -3555,10 +3766,6 @@ packages:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
engines: {node: '>=6'}
- clear-module@4.1.2:
- resolution: {integrity: sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw==}
- engines: {node: '>=8'}
-
clear@0.1.0:
resolution: {integrity: sha512-qMjRnoL+JDPJHeLePZJuao6+8orzHMGP04A8CdwCNsKhRbOnKRjefxONR7bwILT3MHecxKBjHkKL/tkZ8r4Uzw==}
@@ -3605,6 +3812,10 @@ packages:
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'}
+
cliui@8.0.1:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
@@ -3714,13 +3925,16 @@ packages:
commondir@1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
+ compatx@0.1.8:
+ resolution: {integrity: sha512-jcbsEAR81Bt5s1qOFymBufmCbXCXbk0Ql+K5ouj6gCyx2yHlu6AgmGIi9HxfKixpUDO5bCFJUHQ5uM6ecbTebw==}
+
compress-commons@4.1.2:
resolution: {integrity: sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==}
engines: {node: '>= 10'}
- compress-commons@5.0.1:
- resolution: {integrity: sha512-MPh//1cERdLtqwO3pOFLeXtpuai0Y2WCd5AhtKxznqM7WtaMYaOEMSgn45d9D10sIHSfIKE603HlOp8OPGrvag==}
- engines: {node: '>= 12.0.0'}
+ compress-commons@6.0.2:
+ resolution: {integrity: sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==}
+ engines: {node: '>= 14'}
compressible@2.0.18:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
@@ -3786,8 +4000,8 @@ packages:
convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
- cookie-es@1.0.0:
- resolution: {integrity: sha512-mWYvfOLrfEc996hlKcdABeIiPHUPC6DM2QYZdGGOvhOTbA3tjm2eBwqlJpoFdjC89NI4Qt6h0Pu06Mp+1Pj5OQ==}
+ cookie-es@1.2.2:
+ resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==}
cookie-signature@1.0.6:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
@@ -3800,10 +4014,14 @@ packages:
resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
engines: {node: '>= 0.6'}
- cookies@0.9.0:
- resolution: {integrity: sha512-mtyMqy14RsH7+IRJglGcKtRLOq0SRt0DdXVrLgc+v1e/o0TNJUpdElhgr3AAi638LO0xZwEPcRRkJ3afxvGhUw==}
+ cookies@0.9.1:
+ resolution: {integrity: sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw==}
engines: {node: '>= 0.8'}
+ copy-anything@3.0.5:
+ resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==}
+ engines: {node: '>=12.13'}
+
core-js-compat@3.38.1:
resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==}
@@ -3829,9 +4047,9 @@ packages:
resolution: {integrity: sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==}
engines: {node: '>= 10'}
- crc32-stream@5.0.0:
- resolution: {integrity: sha512-B0EPa1UK+qnpBZpG+7FgPCu0J2ETLpXq09o9BkLkEAhdB6Z61Qo4pJ3JYu0c+Qi+/SAL7QThqnzS06pmSSyZaw==}
- engines: {node: '>= 12.0.0'}
+ crc32-stream@6.0.0:
+ resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==}
+ engines: {node: '>= 14'}
create-ecdh@4.0.4:
resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==}
@@ -3848,6 +4066,14 @@ packages:
crelt@1.0.6:
resolution: {integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==}
+ croner@8.1.1:
+ resolution: {integrity: sha512-1VdUuRnQP4drdFkS8NKvDR1NBgevm8TOuflcaZEKsxw42CxonjW/2vkj1AKlinJb4ZLwBcuWF9GiPr7FQc6AQA==}
+ engines: {node: '>=18.0'}
+
+ cronstrue@2.50.0:
+ resolution: {integrity: sha512-ULYhWIonJzlScCCQrPUG5uMXzXxSixty4djud9SS37DoNxDdkeRocxzHuAo4ImRBUK+mAuU5X9TSwEDccnnuPg==}
+ hasBin: true
+
cross-env@5.2.1:
resolution: {integrity: sha512-1yHhtcfAd1r4nwQgknowuUNfIT9E8dOMMspC36g45dN+iD1blloi7xp8X/xAIDnjHWyt1uQ8PHk2fkNaym7soQ==}
engines: {node: '>=4.0'}
@@ -3864,6 +4090,14 @@ packages:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
+ crossws@0.2.4:
+ resolution: {integrity: sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg==}
+ peerDependencies:
+ uWebSockets.js: '*'
+ peerDependenciesMeta:
+ uWebSockets.js:
+ optional: true
+
crypto-browserify@3.12.0:
resolution: {integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==}
@@ -3871,8 +4105,8 @@ packages:
resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
engines: {node: '>=8'}
- css-declaration-sorter@7.1.1:
- resolution: {integrity: sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==}
+ css-declaration-sorter@7.2.0:
+ resolution: {integrity: sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.0.9
@@ -3907,21 +4141,21 @@ packages:
engines: {node: '>=4'}
hasBin: true
- cssnano-preset-default@6.0.2:
- resolution: {integrity: sha512-VnZybFeZ63AiVqIUNlxqMxpj9VU8B5j0oKgP7WyVt/7mkyf97KsYkNzsPTV/RVmy54Pg7cBhOK4WATbdCB44gw==}
- engines: {node: ^14 || ^16 || >=18.0}
+ cssnano-preset-default@7.0.6:
+ resolution: {integrity: sha512-ZzrgYupYxEvdGGuqL+JKOY70s7+saoNlHSCK/OGn1vB2pQK8KSET8jvenzItcY+kA7NoWvfbb/YhlzuzNKjOhQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- cssnano-utils@4.0.1:
- resolution: {integrity: sha512-6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ cssnano-utils@5.0.0:
+ resolution: {integrity: sha512-Uij0Xdxc24L6SirFr25MlwC2rCFX6scyUmuKpzI+JQ7cyqDEwD42fJ0xfB3yLfOnRDU5LKGgjQ9FA6LYh76GWQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- cssnano@6.0.2:
- resolution: {integrity: sha512-Tu9wv8UdN6CoiQnIVkCNvi+0rw/BwFWOJBlg2bVfEyKaadSuE3Gq/DD8tniVvggTJGwK88UjqZp7zL5sv6t1aA==}
- engines: {node: ^14 || ^16 || >=18.0}
+ cssnano@7.0.6:
+ resolution: {integrity: sha512-54woqx8SCbp8HwvNZYn68ZFAepuouZW4lTwiMVnBErM3VkO7/Sd4oTOt3Zz3bPx3kxQ36aISppyXj2Md4lg8bw==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
@@ -4112,6 +4346,20 @@ packages:
dayjs@1.11.10:
resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==}
+ db0@0.1.4:
+ resolution: {integrity: sha512-Ft6eCwONYxlwLjBXSJxw0t0RYtA5gW9mq8JfBXn9TtC0nDPlqePAhpv9v4g9aONBi6JI1OXHTKKkUYGd+BOrCA==}
+ peerDependencies:
+ '@libsql/client': ^0.5.2
+ better-sqlite3: ^9.4.3
+ drizzle-orm: ^0.29.4
+ peerDependenciesMeta:
+ '@libsql/client':
+ optional: true
+ better-sqlite3:
+ optional: true
+ drizzle-orm:
+ optional: true
+
de-indent@1.0.2:
resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
@@ -4144,8 +4392,8 @@ packages:
supports-color:
optional: true
- debug@4.3.6:
- resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==}
+ debug@4.3.7:
+ resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -4200,13 +4448,13 @@ 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'}
+ 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'}
defaults@1.0.4:
resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
@@ -4231,8 +4479,8 @@ packages:
resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
engines: {node: '>= 0.4'}
- defu@6.1.3:
- resolution: {integrity: sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==}
+ defu@6.1.4:
+ resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
degenerator@3.0.4:
resolution: {integrity: sha512-Z66uPeBfHZAHVmue3HPfyKu2Q0rC2cRxbTOsvmU/po5fvvcx27W4mIu9n0PUlQih4oUYvcG1BsbtVv8x7KDOSw==}
@@ -4271,8 +4519,8 @@ packages:
des.js@1.1.0:
resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==}
- 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==}
@@ -4295,8 +4543,8 @@ packages:
resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
engines: {node: '>=8'}
- devalue@4.3.2:
- resolution: {integrity: sha512-KqFl6pOgOW+Y6wJgu80rHpo2/3H07vr8ntR9rkkFIRETewbf5GaYYcakYfiKz89K+sLsuPkQIZaXDMjUObZwWg==}
+ devalue@5.0.0:
+ resolution: {integrity: sha512-gO+/OMXF7488D+u3ue+G7Y4AA3ZmUnB3eHJXmBTgNHvr4ZNzl36A0ZtG+XCRNYCkYx/bFmw4qtkoFLa+wSrwAA==}
dexie@3.2.4:
resolution: {integrity: sha512-VKoTQRSv7+RnffpOJ3Dh6ozknBqzWw/F3iqMdsZg958R0AS8AnY9x9d1lbwENr0gzeGJHXKcGhAMRaqys6SxqA==}
@@ -4313,8 +4561,8 @@ packages:
resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
engines: {node: '>=0.3.1'}
- diff@5.1.0:
- resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==}
+ diff@5.2.0:
+ resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
engines: {node: '>=0.3.1'}
diffie-hellman@5.0.3:
@@ -4442,8 +4690,8 @@ packages:
end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
- enhanced-resolve@5.15.0:
- resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==}
+ enhanced-resolve@5.17.1:
+ resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
engines: {node: '>=10.13.0'}
entities@2.1.0:
@@ -4466,8 +4714,11 @@ packages:
error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
- error-stack-parser-es@0.1.1:
- resolution: {integrity: sha512-g/9rfnvnagiNf+DRMHEVGuGuIBlCIMDFoTA616HaP2l9PlCjGjVhD98PNbVSJvmK4TttqT5mV5tInMhoFgi+aA==}
+ error-stack-parser-es@0.1.5:
+ resolution: {integrity: sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg==}
+
+ errx@0.1.0:
+ resolution: {integrity: sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q==}
es-abstract@1.22.3:
resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==}
@@ -4627,11 +4878,21 @@ packages:
engines: {node: '>=12'}
hasBin: true
+ esbuild@0.20.2:
+ resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==}
+ engines: {node: '>=12'}
+ hasBin: true
+
esbuild@0.21.5:
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
engines: {node: '>=12'}
hasBin: true
+ esbuild@0.23.1:
+ resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==}
+ engines: {node: '>=18'}
+ hasBin: true
+
escalade@3.2.0:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
@@ -5006,6 +5267,9 @@ packages:
fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
+ fast-npm-meta@0.2.2:
+ resolution: {integrity: sha512-E+fdxeaOQGo/CMWc9f4uHFfgUPJRAu7N3uB8GBvB3SDPAIWJK4GKyYhkAGFq+GYrcbKNfQIz5VVQyJnDuPPCrg==}
+
fast-text-encoding@1.0.6:
resolution: {integrity: sha512-VhXlQgj9ioXCqGstD37E/HBeqEGV/qOD/kmbVG8h5xKBYvM1L3lR1Zn4555cQ8GkYbJa8aJSipLPndE1k6zK2w==}
@@ -5022,6 +5286,14 @@ packages:
resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
engines: {node: '>=0.8.0'}
+ fdir@6.3.0:
+ resolution: {integrity: sha512-QOnuT+BOtivR77wYvCWHfGt9s4Pz1VIMbD463vegT5MLqNXy8rYFT/lPVEqf/bhYeT6qmqrNHhsX+rWwe3rOCQ==}
+ peerDependencies:
+ picomatch: ^3 || ^4
+ peerDependenciesMeta:
+ picomatch:
+ optional: true
+
fecha@4.2.3:
resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==}
@@ -5090,14 +5362,14 @@ packages:
resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
hasBin: true
- flatted@3.2.9:
- resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
+ flatted@3.3.1:
+ resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
fn.name@1.1.0:
resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==}
- follow-redirects@1.15.8:
- resolution: {integrity: sha512-xgrmBhBToVKay1q2Tao5LI26B83UhrB/vM1avwVSDzt8rx3rO6AizBAaF46EgksTVr+rFTQaqZZ9MVBfUe4nig==}
+ follow-redirects@1.15.9:
+ resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
engines: {node: '>=4.0'}
peerDependencies:
debug: '*'
@@ -5112,8 +5384,8 @@ packages:
resolution: {integrity: sha512-xIKcxTpUN12tq8+2ptbWUV68qbCufprNyJEkONzR6R2rmD8E7GljLa5zWqgavXcSQ+GxQOJ21rV8SDQMBB3uGg==}
engines: {node: '>=12'}
- foreground-child@3.1.1:
- resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
+ foreground-child@3.3.0:
+ resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
engines: {node: '>=14'}
form-data@4.0.0:
@@ -5247,8 +5519,8 @@ packages:
get-own-enumerable-property-symbols@3.0.2:
resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==}
- get-port-please@3.1.1:
- resolution: {integrity: sha512-3UBAyM3u4ZBVYDsxOQfJDxEa6XTbpBDrOjp4mf7ExFRt5BKs/QywQQiJsh2B+hxcZLSapWqCRvElUe8DnKcFHA==}
+ get-port-please@3.1.2:
+ resolution: {integrity: sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==}
get-port@5.1.1:
resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==}
@@ -5278,8 +5550,8 @@ packages:
resolution: {integrity: sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==}
engines: {node: '>= 14'}
- giget@1.2.1:
- resolution: {integrity: sha512-4VG22mopWtIeHwogGSy1FViXVo0YT+m6BrqZfz0JJFwbSsePsCdOzdLIIli5BtMp7Xe8f/o2OmBpQX2NBOC24g==}
+ giget@1.2.3:
+ resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==}
hasBin: true
git-config-path@2.0.0:
@@ -5292,8 +5564,8 @@ packages:
git-up@7.0.0:
resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==}
- git-url-parse@13.1.1:
- resolution: {integrity: sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==}
+ git-url-parse@14.1.0:
+ resolution: {integrity: sha512-8xg65dTxGHST3+zGpycMMFZcoTzAdZ2dOtu4vmgIfkTFnVHBxHMzBC2L1k8To7EmrSiHesT8JgPLT91VKw1B5g==}
glob-parent@5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
@@ -5312,9 +5584,8 @@ packages:
glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- glob@10.3.10:
- resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
- engines: {node: '>=16 || 14 >=14.17'}
+ glob@10.4.5:
+ resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
hasBin: true
glob@7.2.3:
@@ -5358,8 +5629,8 @@ packages:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
- globby@14.0.0:
- resolution: {integrity: sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==}
+ globby@14.0.2:
+ resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==}
engines: {node: '>=18'}
google-auth-library@7.14.1:
@@ -5419,8 +5690,8 @@ packages:
resolution: {integrity: sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- h3@1.9.0:
- resolution: {integrity: sha512-+F3ZqrNV/CFXXfZ2lXBINHi+rM4Xw3CDC5z2CDK3NMPocjonKipGLLDSkrqY9DOrioZNPTIdDMWfQKm//3X2DA==}
+ h3@1.12.0:
+ resolution: {integrity: sha512-Zi/CcNeWBXDrFNlV0hUBJQR9F7a96RjMeAZweW/ZWkR9fuXrMcvKnSA63f/zZ9l0GgQOZDVHGvXivNN9PWOwhA==}
happy-dom@12.10.3:
resolution: {integrity: sha512-JzUXOh0wdNGY54oKng5hliuBkq/+aT1V3YpTM+lrN/GoLQTANZsMaIvmHiHe612rauHvPJnDZkZ+5GZR++1Abg==}
@@ -5502,10 +5773,6 @@ packages:
hosted-git-info@2.8.9:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
- hosted-git-info@7.0.1:
- resolution: {integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
html-tags@3.3.1:
resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
engines: {node: '>=8'}
@@ -5558,8 +5825,8 @@ packages:
resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
engines: {node: '>= 6'}
- https-proxy-agent@7.0.4:
- resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==}
+ https-proxy-agent@7.0.5:
+ resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==}
engines: {node: '>= 14'}
httpxy@0.1.5:
@@ -5597,16 +5864,12 @@ packages:
ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- ignore-walk@6.0.4:
- resolution: {integrity: sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
ignore@5.3.2:
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
- image-meta@0.2.0:
- resolution: {integrity: sha512-ZBGjl0ZMEMeOC3Ns0wUF/5UdUmr3qQhBSCniT0LxOgGGIRHiNFOkMtIHB7EOznRU47V2AxPgiVP+s+0/UCU0Hg==}
+ image-meta@0.2.1:
+ resolution: {integrity: sha512-K6acvFaelNxx8wc2VjbIzXKDVB0Khs0QT35U6NkGfTdCmjLNcO2945m7RFNR9/RPVFm48hq7QPzK8uGH18HCGw==}
immediate@3.0.6:
resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
@@ -5619,6 +5882,9 @@ packages:
resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==}
engines: {node: '>=4'}
+ impound@0.1.0:
+ resolution: {integrity: sha512-F9nJgOsDc3tysjN74edE0vGPEQrU7DAje6g5nNAL5Jc9Tv4JW3mH7XMGne+EaadTniDXLeUrVR21opkNfWO1zQ==}
+
imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
@@ -5694,8 +5960,8 @@ packages:
resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
engines: {node: '>=12'}
- ioredis@5.3.2:
- resolution: {integrity: sha512-1DKMMzlIHM02eBBVOFQ1+AolGjs6+xEcM4PDL7NqOS6szq7H9jSaEkIUH6/a5Hl241LzW6JLSiAbNvTQjUupUA==}
+ ioredis@5.4.1:
+ resolution: {integrity: sha512-2YZsvl7jopIa1gaePkeMtd9rAcSjOOjPtpcLlOeusyO+XH2SK5ZcT+UCrElPP+WVIInh2TzeI4XW9ENaSLVVHA==}
engines: {node: '>=12.22.0'}
ip-address@9.0.5:
@@ -5713,8 +5979,8 @@ packages:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
- iron-webcrypto@1.0.0:
- resolution: {integrity: sha512-anOK1Mktt8U1Xi7fCM3RELTuYbnFikQY5VtrDj7kPgpejV7d43tWKhzgioO0zpkazLEL/j/iayRqnJhrGfqUsg==}
+ iron-webcrypto@1.2.1:
+ resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==}
is-alphabetical@1.0.4:
resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==}
@@ -5906,13 +6172,6 @@ packages:
resolution: {integrity: sha512-9UoipoxYmSk6Xy7QFgRv2HDyaysmgSG75TFQs6S+3pDM7ZhKTF/bskZV+0UlABHzKjNVhPjYCLfeZUEg1wXxig==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- is-primitive@3.0.1:
- resolution: {integrity: sha512-GljRxhWvlCNRfZyORiH77FwdFwGcMO620o37EOYC0ORWdq+WYNVqW0w2Juzew4M+L81l6/QS3t5gkkihyRqv9w==}
- engines: {node: '>=0.10.0'}
-
- is-promise@4.0.0:
- resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==}
-
is-reference@1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
@@ -5969,6 +6228,10 @@ packages:
is-weakref@1.0.2:
resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
+ is-what@4.1.16:
+ resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==}
+ engines: {node: '>=12.13'}
+
is-wsl@1.1.0:
resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==}
engines: {node: '>=4'}
@@ -5977,6 +6240,10 @@ packages:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
+ is-wsl@3.1.0:
+ resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
+ engines: {node: '>=16'}
+
is-yarn-global@0.3.0:
resolution: {integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==}
@@ -5984,6 +6251,10 @@ packages:
resolution: {integrity: sha512-rZkHeBn9Zzq52sd9IUIV3a5mfwBY+o2HePMh0wkGBM4z4qjvy2GwVxQ6nNXSfw6MmVP6gf1QIlWjiOavhM3x5g==}
engines: {node: '>=v0.10.0'}
+ is64bit@2.0.0:
+ resolution: {integrity: sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==}
+ engines: {node: '>=18'}
+
isarray@0.0.1:
resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
@@ -6010,9 +6281,8 @@ packages:
isstream@0.1.2:
resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==}
- jackspeak@2.3.6:
- resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
- engines: {node: '>=14'}
+ jackspeak@3.4.3:
+ resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
jake@10.8.7:
resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==}
@@ -6026,8 +6296,8 @@ packages:
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
engines: {node: '>= 10.13.0'}
- jiti@1.21.0:
- resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
+ jiti@1.21.6:
+ resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
hasBin: true
jju@1.4.0:
@@ -6047,6 +6317,9 @@ packages:
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
+ js-tokens@9.0.0:
+ resolution: {integrity: sha512-WriZw1luRMlmV3LGJaR6QOJjWwgLUTf89OwT2lUOyjX2dJGBwgmIkbcz+7WFZjrZM635JOIR517++e/67CP9dQ==}
+
js-yaml@3.14.1:
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
hasBin: true
@@ -6092,10 +6365,6 @@ packages:
json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
- json-parse-even-better-errors@3.0.1:
- resolution: {integrity: sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
json-parse-helpfulerror@1.0.3:
resolution: {integrity: sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==}
@@ -6136,10 +6405,6 @@ packages:
jsonfile@6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
- jsonparse@1.3.1:
- resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
- engines: {'0': node >= 0.2.0}
-
jsonpointer@5.0.1:
resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==}
engines: {node: '>=0.10.0'}
@@ -6196,8 +6461,8 @@ packages:
resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
- knitwork@1.0.0:
- resolution: {integrity: sha512-dWl0Dbjm6Xm+kDxhPQJsCBTxrJzuGl0aP9rhr+TG8D3l+GL90N8O8lYUi7dTSAN2uuDqCtNgb6aEuQH5wsiV8Q==}
+ knitwork@1.1.0:
+ resolution: {integrity: sha512-oHnmiBUVHz1V+URE77PNot2lv3QiYU2zQf1JjOVkMt3YDKGbu8NAFr+c4mcNOhdsGrB/VpVbRwPwhiXrPhxQbw==}
koa-compose@4.1.0:
resolution: {integrity: sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==}
@@ -6214,8 +6479,8 @@ packages:
resolution: {integrity: sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==}
engines: {node: '>= 7.6.0'}
- koa@2.15.0:
- resolution: {integrity: sha512-KEL/vU1knsoUvfP4MC4/GthpQrY/p6dzwaaGI6Rt4NQuFqkw3qrvsdYF5pz3wOfi7IGTvMPHC9aZIcUKYFNxsw==}
+ koa@2.15.3:
+ resolution: {integrity: sha512-j/8tY9j5t+GVMLeioLaxweJiKUayFhlGqNTzf2ZGwL0ZCQijd2RLHK0SLW5Tsko8YyyqCZC2cojIb0/s62qTAg==}
engines: {node: ^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4}
kolorist@1.8.0:
@@ -6394,8 +6659,8 @@ packages:
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
hasBin: true
- launch-editor@2.6.1:
- resolution: {integrity: sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==}
+ launch-editor@2.9.1:
+ resolution: {integrity: sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==}
layout-base@1.0.2:
resolution: {integrity: sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==}
@@ -6432,8 +6697,8 @@ packages:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
- lilconfig@3.0.0:
- resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==}
+ lilconfig@3.1.2:
+ resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
engines: {node: '>=14'}
lines-and-columns@1.2.4:
@@ -6442,8 +6707,8 @@ packages:
linkify-it@3.0.3:
resolution: {integrity: sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==}
- listhen@1.5.5:
- resolution: {integrity: sha512-LXe8Xlyh3gnxdv4tSjTjscD1vpr/2PRpzq8YIaMJgyKzRG8wdISlWVWnGThJfHnlJ6hmLt2wq1yeeix0TEbuoA==}
+ listhen@1.7.2:
+ resolution: {integrity: sha512-7/HamOm5YD9Wb7CFgAZkKgVPA96WwhcTQoqtm2VTZGVbVVn3IWKRBTgrU7cchA3Q8k9iCsG8Osoi9GX4JsGM9g==}
hasBin: true
load-json-file@4.0.0:
@@ -6540,9 +6805,6 @@ packages:
lodash.padstart@4.6.1:
resolution: {integrity: sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==}
- lodash.pick@4.4.0:
- resolution: {integrity: sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==}
-
lodash.snakecase@4.1.1:
resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==}
@@ -6593,19 +6855,18 @@ packages:
resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
engines: {node: '>=12'}
- magic-string-ast@0.3.0:
- resolution: {integrity: sha512-0shqecEPgdFpnI3AP90epXyxZy9g6CRZ+SZ7BcqFwYmtFEnZ1jpevcV5HoyVnlDS9gCnc1UIg3Rsvp3Ci7r8OA==}
+ magic-string-ast@0.6.2:
+ resolution: {integrity: sha512-oN3Bcd7ZVt+0VGEs7402qR/tjgjbM7kPlH/z7ufJnzTLVBzXJITRHOJiwMmmYMgZfdoWQsfQcY+iKlxiBppnMA==}
engines: {node: '>=16.14.0'}
magic-string@0.25.9:
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
- magic-string@0.30.8:
- resolution: {integrity: sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==}
- engines: {node: '>=12'}
+ magic-string@0.30.11:
+ resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
- magicast@0.3.2:
- resolution: {integrity: sha512-Fjwkl6a0syt9TFN0JSYpOybxiMCkYNEeOTnOTNRbjphirLakznZXAqrXgj/7GG3D1dvETONNwrBfinvAbpunDg==}
+ magicast@0.3.5:
+ resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==}
make-dir@3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
@@ -6878,6 +7139,11 @@ packages:
engines: {node: '>=10.0.0'}
hasBin: true
+ mime@4.0.4:
+ resolution: {integrity: sha512-v8yqInVjhXyqP6+Kw4fV3ZzeMRqEW6FotRsKXjRS5VMTNIuXsdRoAvklpoRgSqXm6o9VNH4/C0mgedko9DdLsQ==}
+ engines: {node: '>=16'}
+ hasBin: true
+
mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
@@ -6923,8 +7189,8 @@ packages:
resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==}
engines: {node: '>=16 || 14 >=14.17'}
- minimatch@9.0.3:
- resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
+ minimatch@9.0.5:
+ resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
engines: {node: '>=16 || 14 >=14.17'}
minimist@1.2.8:
@@ -6946,9 +7212,6 @@ packages:
resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
engines: {node: '>= 8'}
- minipass-json-stream@1.0.1:
- resolution: {integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==}
-
minipass-pipeline@1.2.4:
resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
engines: {node: '>=8'}
@@ -6969,14 +7232,17 @@ packages:
resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
engines: {node: '>=8'}
- minipass@7.0.4:
- resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==}
+ minipass@7.1.2:
+ resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
engines: {node: '>=16 || 14 >=14.17'}
minizlib@2.1.2:
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
engines: {node: '>= 8'}
+ mitt@3.0.1:
+ resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
+
mkdirp-classic@0.5.3:
resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
@@ -7062,6 +7328,14 @@ packages:
engines: {node: ^14 || ^16 || >=18}
hasBin: true
+ nanoid@5.0.7:
+ resolution: {integrity: sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ==}
+ engines: {node: ^18 || >=20}
+ hasBin: true
+
+ nanotar@0.1.1:
+ resolution: {integrity: sha512-AiJsGsSF3O0havL1BydvI4+wR76sKT+okKRwWIaK96cZUnXqH0uNBOsHlbwZq3+m2BR1VKqHDVudl3gO4mYjpQ==}
+
natural-compare-lite@1.4.0:
resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
@@ -7079,8 +7353,8 @@ packages:
nice-try@1.0.5:
resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
- nitropack@2.8.1:
- resolution: {integrity: sha512-pODv2kEEzZSDQR+1UMXbGyNgMedUDq/qUomtiAnQKQvLy52VGlecXO1xDfH3i0kP1yKEcKTnWsx1TAF5gHM7xQ==}
+ nitropack@2.9.7:
+ resolution: {integrity: sha512-aKXvtNrWkOCMsQbsk4A0qQdBjrJ1ZcvwlTQevI/LAgLWLYc5L7Q/YiYxGLal4ITyNSlzir1Cm1D2ZxnYhmpMEw==}
engines: {node: ^16.11.0 || >=17.0.0}
hasBin: true
peerDependencies:
@@ -7092,15 +7366,14 @@ packages:
node-addon-api@1.7.2:
resolution: {integrity: sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==}
- node-addon-api@7.1.0:
- resolution: {integrity: sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==}
- engines: {node: ^16 || ^18 || >= 20}
+ node-addon-api@7.1.1:
+ resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
node-emoji@1.11.0:
resolution: {integrity: sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==}
- node-fetch-native@1.6.1:
- resolution: {integrity: sha512-bW9T/uJDPAJB2YNYEpWzE54U5O3MQidXsOyTfnbKYtTtFexRvGzb1waphBN4ZwP6EcIvYYEOwW0b72BpAqydTw==}
+ node-fetch-native@1.6.4:
+ resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==}
node-fetch@2.6.7:
resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
@@ -7124,8 +7397,8 @@ packages:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
engines: {node: '>= 6.13.0'}
- node-gyp-build@4.7.1:
- resolution: {integrity: sha512-wTSrZ+8lsRRa3I3H8Xr65dLWSgCvY2l4AOnaeKdPA9TB/WYMPaTcrzf3rXvFoVvjKNVnu0CcWSx54qq9GKRUYg==}
+ node-gyp-build@4.8.2:
+ resolution: {integrity: sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==}
hasBin: true
node-gyp@10.0.1:
@@ -7156,10 +7429,6 @@ packages:
normalize-package-data@2.5.0:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
- normalize-package-data@6.0.0:
- resolution: {integrity: sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
@@ -7172,34 +7441,6 @@ packages:
resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
engines: {node: '>=10'}
- npm-bundled@3.0.0:
- resolution: {integrity: sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- npm-install-checks@6.3.0:
- resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- npm-normalize-package-bin@3.0.1:
- resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- npm-package-arg@11.0.1:
- resolution: {integrity: sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- npm-packlist@8.0.1:
- resolution: {integrity: sha512-MQpL27ZrsJQ2kiAuQPpZb5LtJwydNRnI15QWXsf3WHERu4rzjRj6Zju/My2fov7tLuu3Gle/uoIX/DDZ3u4O4Q==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- npm-pick-manifest@9.0.0:
- resolution: {integrity: sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- npm-registry-fetch@16.1.0:
- resolution: {integrity: sha512-PQCELXKt8Azvxnt5Y85GseQDJJlglTFM9L9U9gkv2y4e9s0k3GVDdOx3YoB6gm2Do0hlkzC39iCGXby+Wve1Bw==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
npm-run-all@4.1.5:
resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==}
engines: {node: '>= 4'}
@@ -7209,8 +7450,8 @@ packages:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
- npm-run-path@5.2.0:
- resolution: {integrity: sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==}
+ npm-run-path@5.3.0:
+ resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
npmlog@2.0.4:
@@ -7232,13 +7473,13 @@ packages:
resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==}
engines: {node: '>=0.10.0'}
- nuxi@3.10.0:
- resolution: {integrity: sha512-veZXw2NuaQ1PrpvHrnQ1dPgkAjv0WqPlvFReg5Iubum0QVGWdJJvGuNsltDQyPcZ7X7mhMXq9SLIpokK4kpvKA==}
- engines: {node: ^14.18.0 || >=16.10.0}
+ nuxi@3.13.1:
+ resolution: {integrity: sha512-rhUfFCtIH8IxhfibVd26uGrC0ojUijGoU3bAhPQHrkl7mFlK+g+XeIttdsI8YAC7s/wPishrTpE9z1UssHY6eA==}
+ engines: {node: ^16.10.0 || >=18.0.0}
hasBin: true
- nuxt@3.9.0:
- resolution: {integrity: sha512-PiUQwJRBlclRrotcQAK95ueeRSiFhZmwNBj9MtIdWF4XK97OjNszUmNjKphqB7BsVcm089l0jZm1N0sYr7tMOg==}
+ nuxt@3.13.1:
+ resolution: {integrity: sha512-En0vVrCJWu54ptShUlrqOGzXTcjhX+RnHShwdcpNqL9kmE9FWqeDYnPTgt2gJWrYSvVbmjJcVfEugNo9XpNmHA==}
engines: {node: ^14.18.0 || >=16.10.0}
hasBin: true
peerDependencies:
@@ -7250,8 +7491,8 @@ packages:
'@types/node':
optional: true
- nypm@0.3.4:
- resolution: {integrity: sha512-1JLkp/zHBrkS3pZ692IqOaIKSYHmQXgqfELk6YTOfVBnwealAmPA1q2kKK7PHJAHSMBozerThEFZXP3G6o7Ukg==}
+ nypm@0.3.11:
+ resolution: {integrity: sha512-E5GqaAYSnbb6n1qZyik2wjPDZON43FqOJO59+3OkWrnmQtjggrMOVnsyzfjxp/tS6nlYJBA4zRA5jSM2YaadMg==}
engines: {node: ^14.16.0 || >=16.10.0}
hasBin: true
@@ -7289,8 +7530,8 @@ packages:
resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==}
engines: {node: '>= 0.4'}
- ofetch@1.3.3:
- resolution: {integrity: sha512-s1ZCMmQWXy4b5K/TW9i/DtiN8Ku+xCiHcjQ6/J/nDdssirrQNOoB165Zu8EqLMA2lln1JUth9a0aW9Ap2ctrUg==}
+ ofetch@1.3.4:
+ resolution: {integrity: sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw==}
ohash@1.1.3:
resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==}
@@ -7328,6 +7569,10 @@ packages:
only@0.0.2:
resolution: {integrity: sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==}
+ open@10.1.0:
+ resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
+ engines: {node: '>=18'}
+
open@6.4.0:
resolution: {integrity: sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==}
engines: {node: '>=8'}
@@ -7340,18 +7585,14 @@ packages:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
- open@9.1.0:
- resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==}
- engines: {node: '>=14.16'}
-
openai@3.3.0:
resolution: {integrity: sha512-uqxI/Au+aPRnsaQRe8CojU0eCR7I0mBiKjD3sNMzY6DaC1ZVrc85u98mtJW6voDug8fgGN+DIZmTDxTthxb7dQ==}
openapi-types@12.1.3:
resolution: {integrity: sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw==}
- openapi-typescript@6.7.3:
- resolution: {integrity: sha512-es3mGcDXV6TKPo6n3aohzHm0qxhLyR39MhF6mkD1FwFGjhxnqMqfSIgM0eCpInZvqatve4CxmXcMZw3jnnsaXw==}
+ openapi-typescript@6.7.6:
+ resolution: {integrity: sha512-c/hfooPx+RBIOPM09GSxABOZhYPblDoyaGhqBkD/59vtpN21jEuWKDlM0KYTvqJVlSYjKs0tBcIdeXKChlSPtw==}
hasBin: true
openapi3-ts@3.2.0:
@@ -7454,10 +7695,8 @@ packages:
resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==}
engines: {node: '>= 14'}
- pacote@17.0.5:
- resolution: {integrity: sha512-TAE0m20zSDMnchPja9vtQjri19X3pZIyRpm2TJVeI+yU42leJBBDTRYhOcWFsPhaMxf+3iwQkFiKz16G9AEeeA==}
- engines: {node: ^16.14.0 || >=18.0.0}
- hasBin: true
+ package-json-from-dist@1.0.0:
+ resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==}
pako@0.2.9:
resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==}
@@ -7469,10 +7708,6 @@ packages:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
- parent-module@2.0.0:
- resolution: {integrity: sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg==}
- engines: {node: '>=8'}
-
parse-asn1@5.1.6:
resolution: {integrity: sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==}
@@ -7537,9 +7772,9 @@ packages:
path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- path-scurry@1.10.1:
- resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
- engines: {node: '>=16 || 14 >=14.17'}
+ path-scurry@1.11.1:
+ resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
+ engines: {node: '>=16 || 14 >=14.18'}
path-to-regexp@0.1.7:
resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
@@ -7556,6 +7791,9 @@ packages:
path-to-regexp@6.2.1:
resolution: {integrity: sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==}
+ path-to-regexp@6.2.2:
+ resolution: {integrity: sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==}
+
path-type@3.0.0:
resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==}
engines: {node: '>=4'}
@@ -7597,6 +7835,10 @@ packages:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
+ picomatch@4.0.2:
+ resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
+ engines: {node: '>=12'}
+
pidtree@0.3.1:
resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==}
engines: {node: '>=0.10'}
@@ -7646,11 +7888,21 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ playwright-core@1.47.0:
+ resolution: {integrity: sha512-1DyHT8OqkcfCkYUD9zzUTfg7EfTd+6a8MkD/NWOvjo0u/SCNd5YmY/lJwFvUZOxJbWNds+ei7ic2+R/cRz/PDg==}
+ engines: {node: '>=18'}
+ hasBin: true
+
playwright@1.46.1:
resolution: {integrity: sha512-oPcr1yqoXLCkgKtD5eNUPLiN40rYEM39odNpIb6VE6S7/15gJmA1NzVv6zJYusV0e7tzvkU/utBFNa/Kpxmwng==}
engines: {node: '>=18'}
hasBin: true
+ playwright@1.47.0:
+ resolution: {integrity: sha512-jOWiRq2pdNAX/mwLiwFYnPHpEZ4rM+fRSQpRHwEwZlP2PUANvL3+aJOF/bvISMhFD30rqMxUB4RJx9aQbfh4Ww==}
+ engines: {node: '>=18'}
+ hasBin: true
+
pluralize@8.0.0:
resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
engines: {node: '>=4'}
@@ -7659,33 +7911,27 @@ packages:
resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==}
engines: {node: '>= 0.12.0'}
- postcss-calc@9.0.1:
- resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-calc@10.0.2:
+ resolution: {integrity: sha512-DT/Wwm6fCKgpYVI7ZEWuPJ4az8hiEHtCUeYjZXqU7Ou4QqYh1Df2yCQ7Ca6N7xqKPFkxN3fhf+u9KSoOCJNAjg==}
+ engines: {node: ^18.12 || ^20.9 || >=22.0}
peerDependencies:
- postcss: ^8.2.2
+ postcss: ^8.4.38
- postcss-colormin@6.0.1:
- resolution: {integrity: sha512-Tb9aR2wCJCzKuNjIeMzVNd0nXjQy25HDgFmmaRsHnP0eP/k8uQWE4S8voX5S2coO5CeKrp+USFs1Ayv9Tpxx6w==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-colormin@7.0.2:
+ resolution: {integrity: sha512-YntRXNngcvEvDbEjTdRWGU606eZvB5prmHG4BF0yLmVpamXbpsRJzevyy6MZVyuecgzI2AWAlvFi8DAeCqwpvA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-convert-values@6.0.1:
- resolution: {integrity: sha512-zTd4Vh0HxGkhg5aHtfCogcRHzGkvblfdWlQ53lIh1cJhYcGyIxh2hgtKoVh40AMktRERet+JKdB04nNG19kjmA==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-convert-values@7.0.4:
+ resolution: {integrity: sha512-e2LSXPqEHVW6aoGbjV9RsSSNDO3A0rZLCBxN24zvxF25WknMPpX8Dm9UxxThyEbaytzggRuZxaGXqaOhxQ514Q==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-custom-properties@13.3.4:
- resolution: {integrity: sha512-9YN0gg9sG3OH+Z9xBrp2PWRb+O4msw+5Sbp3ZgqrblrwKspXVQe5zr5sVqi43gJGwW/Rv1A483PRQUzQOEewvA==}
- engines: {node: ^14 || ^16 || >=18}
- peerDependencies:
- postcss: ^8.4
-
- postcss-discard-comments@6.0.1:
- resolution: {integrity: sha512-f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-discard-comments@7.0.3:
+ resolution: {integrity: sha512-q6fjd4WU4afNhWOA2WltHgCbkRhZPgQe7cXF74fuVB/ge4QbM9HEaOIzGSiMvM+g/cOsNAUGdf2JDzqA2F8iLA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
@@ -7695,21 +7941,21 @@ packages:
peerDependencies:
postcss: ^8.2.15
- postcss-discard-duplicates@6.0.1:
- resolution: {integrity: sha512-1hvUs76HLYR8zkScbwyJ8oJEugfPV+WchpnA+26fpJ7Smzs51CzGBHC32RS03psuX/2l0l0UKh2StzNxOrKCYg==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-discard-duplicates@7.0.1:
+ resolution: {integrity: sha512-oZA+v8Jkpu1ct/xbbrntHRsfLGuzoP+cpt0nJe5ED2FQF8n8bJtn7Bo28jSmBYwqgqnqkuSXJfSUEE7if4nClQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-discard-empty@6.0.1:
- resolution: {integrity: sha512-yitcmKwmVWtNsrrRqGJ7/C0YRy53i0mjexBDQ9zYxDwTWVBgbU4+C9jIZLmQlTDT9zhml+u0OMFJh8+31krmOg==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-discard-empty@7.0.0:
+ resolution: {integrity: sha512-e+QzoReTZ8IAwhnSdp/++7gBZ/F+nBq9y6PomfwORfP7q9nBpK5AMP64kOt0bA+lShBFbBDcgpJ3X4etHg4lzA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-discard-overridden@6.0.1:
- resolution: {integrity: sha512-qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-discard-overridden@7.0.0:
+ resolution: {integrity: sha512-GmNAzx88u3k2+sBTZrJSDauR0ccpE24omTQCVmaTTZFz1du6AasspjaUPMJ2ud4RslZpoFKyf+6MSPETLojc6w==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
@@ -7737,39 +7983,39 @@ packages:
ts-node:
optional: true
- postcss-merge-longhand@6.0.1:
- resolution: {integrity: sha512-vmr/HZQzaPXc45FRvSctqFTF05UaDnTn5ABX+UtQPJznDWT/QaFbVc/pJ5C2YPxx2J2XcfmWowlKwtCDwiQ5hA==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-merge-longhand@7.0.4:
+ resolution: {integrity: sha512-zer1KoZA54Q8RVHKOY5vMke0cCdNxMP3KBfDerjH/BYHh4nCIh+1Yy0t1pAEQF18ac/4z3OFclO+ZVH8azjR4A==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-merge-rules@6.0.2:
- resolution: {integrity: sha512-6lm8bl0UfriSfxI+F/cezrebqqP8w702UC6SjZlUlBYwuRVNbmgcJuQU7yePIvD4MNT53r/acQCUAyulrpgmeQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-merge-rules@7.0.4:
+ resolution: {integrity: sha512-ZsaamiMVu7uBYsIdGtKJ64PkcQt6Pcpep/uO90EpLS3dxJi6OXamIobTYcImyXGoW0Wpugh7DSD3XzxZS9JCPg==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-minify-font-values@6.0.1:
- resolution: {integrity: sha512-tIwmF1zUPoN6xOtA/2FgVk1ZKrLcCvE0dpZLtzyyte0j9zUeB8RTbCqrHZGjJlxOvNWKMYtunLrrl7HPOiR46w==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-minify-font-values@7.0.0:
+ resolution: {integrity: sha512-2ckkZtgT0zG8SMc5aoNwtm5234eUx1GGFJKf2b1bSp8UflqaeFzR50lid4PfqVI9NtGqJ2J4Y7fwvnP/u1cQog==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-minify-gradients@6.0.1:
- resolution: {integrity: sha512-M1RJWVjd6IOLPl1hYiOd5HQHgpp6cvJVLrieQYS9y07Yo8itAr6jaekzJphaJFR0tcg4kRewCk3kna9uHBxn/w==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-minify-gradients@7.0.0:
+ resolution: {integrity: sha512-pdUIIdj/C93ryCHew0UgBnL2DtUS3hfFa5XtERrs4x+hmpMYGhbzo6l/Ir5de41O0GaKVpK1ZbDNXSY6GkXvtg==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-minify-params@6.0.1:
- resolution: {integrity: sha512-eFvGWArqh4khPIgPDu6SZNcaLctx97nO7c59OXnRtGntAp5/VS4gjMhhW9qUFsK6mQ27pEZGt2kR+mPizI+Z9g==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-minify-params@7.0.2:
+ resolution: {integrity: sha512-nyqVLu4MFl9df32zTsdcLqCFfE/z2+f8GE1KHPxWOAmegSo6lpV2GNy5XQvrzwbLmiU7d+fYay4cwto1oNdAaQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-minify-selectors@6.0.1:
- resolution: {integrity: sha512-mfReq5wrS6vkunxvJp6GDuOk+Ak6JV7134gp8L+ANRnV9VwqzTvBtX6lpohooVU750AR0D3pVx2Zn6uCCwOAfQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-minify-selectors@7.0.4:
+ resolution: {integrity: sha512-JG55VADcNb4xFCf75hXkzc1rNeURhlo7ugf6JjiiKRfMsKlDzN9CXHZDyiG6x/zGchpjQS+UAgb1d4nqXqOpmA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
@@ -7808,81 +8054,81 @@ packages:
peerDependencies:
postcss: ^8.2.14
- postcss-nesting@12.0.2:
- resolution: {integrity: sha512-63PpJHSeNs93S3ZUIyi+7kKx4JqOIEJ6QYtG3x+0qA4J03+4n0iwsyA1GAHyWxsHYljQS4/4ZK1o2sMi70b5wQ==}
+ postcss-nesting@12.1.5:
+ resolution: {integrity: sha512-N1NgI1PDCiAGWPTYrwqm8wpjv0bgDmkYHH72pNsqTCv9CObxjxftdYu6AKtGN+pnJa7FQjMm3v4sp8QJbFsYdQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
- postcss-normalize-charset@6.0.1:
- resolution: {integrity: sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-charset@7.0.0:
+ resolution: {integrity: sha512-ABisNUXMeZeDNzCQxPxBCkXexvBrUHV+p7/BXOY+ulxkcjUZO0cp8ekGBwvIh2LbCwnWbyMPNJVtBSdyhM2zYQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-normalize-display-values@6.0.1:
- resolution: {integrity: sha512-mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-display-values@7.0.0:
+ resolution: {integrity: sha512-lnFZzNPeDf5uGMPYgGOw7v0BfB45+irSRz9gHQStdkkhiM0gTfvWkWB5BMxpn0OqgOQuZG/mRlZyJxp0EImr2Q==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-normalize-positions@6.0.1:
- resolution: {integrity: sha512-HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-positions@7.0.0:
+ resolution: {integrity: sha512-I0yt8wX529UKIGs2y/9Ybs2CelSvItfmvg/DBIjTnoUSrPxSV7Z0yZ8ShSVtKNaV/wAY+m7bgtyVQLhB00A1NQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-normalize-repeat-style@6.0.1:
- resolution: {integrity: sha512-Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-repeat-style@7.0.0:
+ resolution: {integrity: sha512-o3uSGYH+2q30ieM3ppu9GTjSXIzOrRdCUn8UOMGNw7Af61bmurHTWI87hRybrP6xDHvOe5WlAj3XzN6vEO8jLw==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-normalize-string@6.0.1:
- resolution: {integrity: sha512-5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-string@7.0.0:
+ resolution: {integrity: sha512-w/qzL212DFVOpMy3UGyxrND+Kb0fvCiBBujiaONIihq7VvtC7bswjWgKQU/w4VcRyDD8gpfqUiBQ4DUOwEJ6Qg==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-normalize-timing-functions@6.0.1:
- resolution: {integrity: sha512-4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-timing-functions@7.0.0:
+ resolution: {integrity: sha512-tNgw3YV0LYoRwg43N3lTe3AEWZ66W7Dh7lVEpJbHoKOuHc1sLrzMLMFjP8SNULHaykzsonUEDbKedv8C+7ej6g==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-normalize-unicode@6.0.1:
- resolution: {integrity: sha512-ok9DsI94nEF79MkvmLfHfn8ddnKXA7w+8YuUoz5m7b6TOdoaRCpvu/QMHXQs9+DwUbvp+ytzz04J55CPy77PuQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-unicode@7.0.2:
+ resolution: {integrity: sha512-ztisabK5C/+ZWBdYC+Y9JCkp3M9qBv/XFvDtSw0d/XwfT3UaKeW/YTm/MD/QrPNxuecia46vkfEhewjwcYFjkg==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-normalize-url@6.0.1:
- resolution: {integrity: sha512-jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-url@7.0.0:
+ resolution: {integrity: sha512-+d7+PpE+jyPX1hDQZYG+NaFD+Nd2ris6r8fPTBAjE8z/U41n/bib3vze8x7rKs5H1uEw5ppe9IojewouHk0klQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-normalize-whitespace@6.0.1:
- resolution: {integrity: sha512-76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-whitespace@7.0.0:
+ resolution: {integrity: sha512-37/toN4wwZErqohedXYqWgvcHUGlT8O/m2jVkAfAe9Bd4MzRqlBmXrJRePH0e9Wgnz2X7KymTgTOaaFizQe3AQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-ordered-values@6.0.1:
- resolution: {integrity: sha512-XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-ordered-values@7.0.1:
+ resolution: {integrity: sha512-irWScWRL6nRzYmBOXReIKch75RRhNS86UPUAxXdmW/l0FcAsg0lvAXQCby/1lymxn/o0gVa6Rv/0f03eJOwHxw==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-reduce-initial@6.0.1:
- resolution: {integrity: sha512-cgzsI2ThG1PMSdSyM9A+bVxiiVgPIVz9f5c6H+TqEv0CA89iCOO81mwLWRWLgOKFtQkKob9nNpnkxG/1RlgFcA==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-reduce-initial@7.0.2:
+ resolution: {integrity: sha512-pOnu9zqQww7dEKf62Nuju6JgsW2V0KRNBHxeKohU+JkHd/GAH5uvoObqFLqkeB2n20mr6yrlWDvo5UBU5GnkfA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-reduce-transforms@6.0.1:
- resolution: {integrity: sha512-fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-reduce-transforms@7.0.0:
+ resolution: {integrity: sha512-pnt1HKKZ07/idH8cpATX/ujMbtOGhUfE+m8gbqwJE05aTaNw8gbo34a2e3if0xc0dlu75sUOiqvwCGY3fzOHew==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
@@ -7894,15 +8140,15 @@ packages:
resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
engines: {node: '>=4'}
- postcss-svgo@6.0.1:
- resolution: {integrity: sha512-eWV4Rrqa06LzTgqirOv5Ln6WTGyU7Pbeqj9WEyKo9tpnWixNATVJMeaEcOHOW1ZYyjcG8wSJwX/28DvU3oy3HA==}
- engines: {node: ^14 || ^16 || >= 18}
+ postcss-svgo@7.0.1:
+ resolution: {integrity: sha512-0WBUlSL4lhD9rA5k1e5D8EN5wCEyZD6HJk0jIvRxl+FDVOMlJ7DePHYWGGVc5QRqrJ3/06FTXM0bxjmJpmTPSA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >= 18}
peerDependencies:
postcss: ^8.4.31
- postcss-unique-selectors@6.0.1:
- resolution: {integrity: sha512-/KCCEpNNR7oXVJ38/Id7GC9Nt0zxO1T3zVbhVaq6F6LSG+3gU3B7+QuTHfD0v8NPEHlzewAout29S0InmB78EQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-unique-selectors@7.0.3:
+ resolution: {integrity: sha512-J+58u5Ic5T1QjP/LDV9g3Cx4CNOgB5vz+kM6+OxHHhFACdcDeKhBXjQmB7fnIZM12YSTvsL0Opwco83DmacW2g==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
@@ -8064,8 +8310,8 @@ packages:
resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
engines: {node: '>=10'}
- radix3@1.1.0:
- resolution: {integrity: sha512-pNsHDxbGORSvuSScqNJ+3Km6QAVqk8CfsCBIEoDgpqLrkD2f3QM4I7d1ozJJ172OmIcoUcerZaNWqtLkRXTV3A==}
+ radix3@1.1.2:
+ resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==}
randombytes@2.1.0:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
@@ -8085,8 +8331,8 @@ packages:
resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
engines: {node: '>= 0.8'}
- rc9@2.1.1:
- resolution: {integrity: sha512-lNeOl38Ws0eNxpO3+wD1I9rkHGQyj1NU1jlzv4go2CtEnEQEUfqnIvZG7W+bC/aXdJ27n5x/yUjb6RoT9tko+Q==}
+ rc9@2.1.2:
+ resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==}
rc@1.2.8:
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
@@ -8105,15 +8351,6 @@ packages:
read-cache@1.0.0:
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
- read-package-json-fast@3.0.2:
- resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- read-package-json@7.0.0:
- resolution: {integrity: sha512-uL4Z10OKV4p6vbdvIXB+OzhInYtIozl/VxUBPgNkBuUi2DeRonnuspmaVAMcrkmfjKGNmRndyQAbE7/AmzGwFg==}
- engines: {node: ^16.14.0 || >=18.0.0}
- deprecated: This package is no longer supported. Please use @npmcli/package-json instead.
-
read-pkg-up@7.0.1:
resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==}
engines: {node: '>=8'}
@@ -8136,6 +8373,10 @@ packages:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
+ readable-stream@4.5.2:
+ resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
readdir-glob@1.1.3:
resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==}
@@ -8295,6 +8536,9 @@ packages:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
+ rfdc@1.4.1:
+ resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
+
rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
deprecated: Rimraf versions prior to v4 are no longer supported
@@ -8351,9 +8595,9 @@ packages:
resolution: {integrity: sha512-461UFH44NtSfIlS83PUg2N7OZo86BC/kB3dY77gJdsODsBhhw7+2uE0tzTINxrY9CahCUVk1VhpWCA5i1yoIEg==}
engines: {node: '>= 0.8'}
- run-applescript@5.0.0:
- resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==}
- engines: {node: '>=12'}
+ run-applescript@7.0.0:
+ resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
+ engines: {node: '>=18'}
run-async@2.4.1:
resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
@@ -8398,8 +8642,8 @@ packages:
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- scule@1.1.1:
- resolution: {integrity: sha512-sHtm/SsIK9BUBI3EFT/Gnp9VoKfY6QLvlkvAE6YK7454IF8FSgJEAnJpVdSC7K5/pjI5NfxhzBLW2JAfYA/shQ==}
+ scule@1.3.0:
+ resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
semver-diff@3.1.1:
resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==}
@@ -8422,8 +8666,8 @@ packages:
engines: {node: '>=10'}
hasBin: true
- semver@7.6.0:
- resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
+ semver@7.6.3:
+ resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
engines: {node: '>=10'}
hasBin: true
@@ -8434,8 +8678,8 @@ packages:
serialize-javascript@4.0.0:
resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==}
- serialize-javascript@6.0.1:
- resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==}
+ serialize-javascript@6.0.2:
+ resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
seroval-plugins@1.0.5:
resolution: {integrity: sha512-8+pDC1vOedPXjKG7oz8o+iiHrtF2WswaMQJ7CKFpccvSYfrzmvKY9zOJWCg+881722wIHfwkdnRmiiDm9ym+zQ==}
@@ -8450,8 +8694,8 @@ packages:
serve-handler@6.1.5:
resolution: {integrity: sha512-ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg==}
- serve-placeholder@2.0.1:
- resolution: {integrity: sha512-rUzLlXk4uPFnbEaIz3SW8VISTxMuONas88nYWjAWaM2W9VDbt9tyFOr3lq8RhVOFrT3XISoBw8vni5una8qMnQ==}
+ serve-placeholder@2.0.2:
+ resolution: {integrity: sha512-/TMG8SboeiQbZJWRlfTCqMs2DD3SZgWp0kDQePz9yUuCnDfDh/92gf7/PxGhzXTKBIPASIHxFcZndoNbp6QOLQ==}
serve-static@1.15.0:
resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
@@ -8522,12 +8766,8 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- sigstore@2.1.0:
- resolution: {integrity: sha512-kPIj+ZLkyI3QaM0qX8V/nSsweYND3W448pwkDgS6CQ74MfhEkIR8ToK5Iyx46KJYRjseVcD3Rp9zAmUAj6ZjPw==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- simple-git@3.22.0:
- resolution: {integrity: sha512-6JujwSs0ac82jkGjMHiCnTifvf1crOiY/+tfs/Pqih6iow7VrpNKRRNdWm6RtaXpvvv/JGNYhlUtLhGFqHF+Yw==}
+ simple-git@3.26.0:
+ resolution: {integrity: sha512-5tbkCSzuskR6uA7uA23yjasmA0RzugVo8QM2bpsnxkrgP13eisFT7TMS4a+xKEJvbmr4qf+l0WT3eKa9IxxUyw==}
simple-swizzle@0.2.2:
resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
@@ -8555,8 +8795,8 @@ packages:
resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
- smob@1.4.1:
- resolution: {integrity: sha512-9LK+E7Hv5R9u4g4C3p+jjLstaLe11MDsL21UpYaCNmapvMkYhqCV4A/f/3gyH8QjMyh6l68q9xC85vihY9ahMQ==}
+ smob@1.5.0:
+ resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==}
socks-proxy-agent@5.0.1:
resolution: {integrity: sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==}
@@ -8621,6 +8861,10 @@ packages:
spdx-license-ids@3.0.16:
resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==}
+ speakingurl@14.0.1:
+ resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
+ engines: {node: '>=0.10.0'}
+
sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
@@ -8674,8 +8918,8 @@ packages:
stream-shift@1.0.3:
resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==}
- streamx@2.15.6:
- resolution: {integrity: sha512-q+vQL4AAz+FdfT137VF69Cc/APqUbxy+MDOImRrMvchJpigHj9GksgDU2LYbO9rx7RX6osWgxJB2WxhYv4SZAw==}
+ streamx@2.20.0:
+ resolution: {integrity: sha512-ZGd1LhDeGFucr1CUCTBOS58ZhEendd0ttpGT3usTvosS4ntIwKN9LJFp+OeCSprsCPL14BXVRZlHGRY1V9PVzQ==}
string-hash@1.1.3:
resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==}
@@ -8776,15 +9020,18 @@ packages:
strip-literal@1.3.0:
resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==}
+ strip-literal@2.1.0:
+ resolution: {integrity: sha512-Op+UycaUt/8FbN/Z2TWPBLge3jWrP3xj10f3fnYxf052bKuS3EKs1ZQcVGjnEMdsNVAM+plXRdmjrZ/KgG3Skw==}
+
style-mod@4.1.2:
resolution: {integrity: sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==}
style-to-object@0.4.4:
resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==}
- stylehacks@6.0.1:
- resolution: {integrity: sha512-jTqG2aIoX2fYg0YsGvqE4ooE/e75WmaEjnNiP6Ag7irLtHxML8NJRxRxS0HyDpde8DRGuEXTFVHVfR5Tmbxqzg==}
- engines: {node: ^14 || ^16 || >=18.0}
+ stylehacks@7.0.4:
+ resolution: {integrity: sha512-i4zfNrGMt9SB4xRK9L83rlsFCgdGANfeDAYacO1pkqcE7cRHPdWHwnKZVz7WY17Veq/FvyYsRAU++Ga+qDFIww==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
@@ -8796,6 +9043,10 @@ packages:
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
+ superjson@2.2.1:
+ resolution: {integrity: sha512-8iGv75BYOa0xRJHK5vRLEjE2H/i4lulTjzpUXic3Eg8akftYjkmQDa8JARQ42rlczXyFR3IeRoeFCc7RxHsYZA==}
+ engines: {node: '>=16'}
+
superstatic@9.0.3:
resolution: {integrity: sha512-e/tmW0bsnQ/33ivK6y3CapJT0Ovy4pk/ohNPGhIAGU2oasoNLRQ1cv6enua09NU9w6Y0H/fBu07cjzuiWvLXxw==}
engines: {node: ^14.18.0 || >=16.4.0}
@@ -8833,24 +9084,28 @@ packages:
engines: {node: '>=10.13.0'}
hasBin: true
- svgo@3.1.0:
- resolution: {integrity: sha512-R5SnNA89w1dYgNv570591F66v34b3eQShpIBcQtZtM5trJwm1VvxbIoMpRYY3ybTAutcKTLEmTsdnaknOHbiQA==}
+ svgo@3.3.2:
+ resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==}
engines: {node: '>=14.0.0'}
hasBin: true
+ system-architecture@0.1.0:
+ resolution: {integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==}
+ engines: {node: '>=18'}
+
tabtab@2.2.2:
resolution: {integrity: sha512-xEwHn571JmOrNGJB1Ehu/Dc2/5pu4aIvCnlKmxrJzzhAmZEy8+RL5cjxq/J66GE0Qf8FRvFg9V3jFos8oz0IQA==}
hasBin: true
- tailwind-config-viewer@1.7.3:
- resolution: {integrity: sha512-rgeFXe9vL4njtaSI1y2uUAD1aRx05RYHbReN72ARAVEVSlNmS0Zf46pj3/ORc3xQwLK/AzbaIs6UFcK7hJSIlA==}
- engines: {node: '>=8'}
+ tailwind-config-viewer@2.0.4:
+ resolution: {integrity: sha512-icvcmdMmt9dphvas8wL40qttrHwAnW3QEN4ExJ2zICjwRsPj7gowd1cOceaWG3IfTuM/cTNGQcx+bsjMtmV+cw==}
+ engines: {node: '>=13'}
hasBin: true
peerDependencies:
tailwindcss: 1 || 2 || 2.0.1-compat || 3
- tailwindcss@3.4.0:
- resolution: {integrity: sha512-VigzymniH77knD1dryXbyxR+ePHihHociZbXnLZHUyzf2MMs2ZVqlUrZ3FvpXP8pno9JzmILt1sZPD19M3IxtA==}
+ tailwindcss@3.4.10:
+ resolution: {integrity: sha512-KWZkVPm7yJRhdu4SRSl9d4AK2wM3a50UsvgHZO7xY77NQr2V+fIrEuoDGQcbvswWvFGbS2f6e+jC/6WJm1Dl0w==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -8865,8 +9120,8 @@ packages:
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
engines: {node: '>=6'}
- tar-stream@3.1.6:
- resolution: {integrity: sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==}
+ tar-stream@3.1.7:
+ resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
tar@6.2.1:
resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
@@ -8883,11 +9138,14 @@ packages:
resolution: {integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==}
engines: {node: '>=10'}
- terser@5.31.0:
- resolution: {integrity: sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==}
+ terser@5.31.6:
+ resolution: {integrity: sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg==}
engines: {node: '>=10'}
hasBin: true
+ text-decoder@1.1.1:
+ resolution: {integrity: sha512-8zll7REEv4GDD3x4/0pW+ppIxSNs7H1J10IKFZsuOMscumCdM2a+toDGLPA3T+1+fLBql4zbt5z83GEQGGV5VA==}
+
text-hex@1.0.0:
resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==}
@@ -8915,8 +9173,8 @@ packages:
resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==}
engines: {node: '>=0.6.0'}
- tiny-invariant@1.3.1:
- resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==}
+ tiny-invariant@1.3.3:
+ resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
tinybench@2.5.1:
resolution: {integrity: sha512-65NKvSuAVDP/n4CqH+a9w2kTlLReS9vhsAP06MWx+/89nMinJyB2icyl58RIcqCmIggpojIGeuJGhjU1aGMBSg==}
@@ -8924,18 +9182,22 @@ packages:
tinycolor2@1.6.0:
resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
+ tinyglobby@0.2.5:
+ resolution: {integrity: sha512-Dlqgt6h0QkoHttG53/WGADNh9QhcjCAIZMTERAVhdpmIBEejSuLI9ZmGKWzB7tweBjlk30+s/ofi4SLmBeTYhw==}
+ engines: {node: '>=12.0.0'}
+
tinypool@0.7.0:
resolution: {integrity: sha512-zSYNUlYSMhJ6Zdou4cJwo/p7w5nmAH17GRfU/ui3ctvjXFErXXkruT4MWW6poDeXgCaIBlGLrfU6TbTXxyGMww==}
engines: {node: '>=14.0.0'}
+ tinyrainbow@1.2.0:
+ resolution: {integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==}
+ engines: {node: '>=14.0.0'}
+
tinyspy@2.2.0:
resolution: {integrity: sha512-d2eda04AN/cPOR89F7Xv5bK/jrQEhmcLFe6HFldoeO9AJtps+fqEnh486vnT/8y4bw38pSyxDcTCAq+Ks2aJTg==}
engines: {node: '>=14.0.0'}
- titleize@3.0.0:
- resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==}
- engines: {node: '>=12'}
-
tmp@0.0.29:
resolution: {integrity: sha512-89PTqMWGDva+GqClOqBV9s3SMh7MA3Mq0pJUdAoHuF65YoE7O0LermaZkVfT5/Ngfo18H4eYiyG7zKOtnEbxsw==}
engines: {node: '>=0.4.0'}
@@ -9050,10 +9312,6 @@ packages:
tty-browserify@0.0.1:
resolution: {integrity: sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==}
- tuf-js@2.1.0:
- resolution: {integrity: sha512-eD7YPPjVlMzdggrOeE8zwoegUaG/rt6Bt3jwoQPunRiNVzgcCE009UDFJKJjG+Gk9wFu6W/Vi+P5d/5QpdD9jA==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
type-check@0.3.2:
resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==}
engines: {node: '>= 0.8.0'}
@@ -9140,8 +9398,8 @@ packages:
engines: {node: '>=0.8.0'}
hasBin: true
- 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==}
@@ -9166,11 +9424,11 @@ packages:
resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==}
engines: {node: '>=14.0'}
- unenv@1.8.0:
- resolution: {integrity: sha512-uIGbdCWZfhRRmyKj1UioCepQ0jpq638j/Cf0xFTn4zD1nGJ2lSdzYHLzfdXN791oo/0juUiSWW1fBklXMTsuqg==}
+ unenv@1.10.0:
+ resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==}
- unhead@1.8.9:
- resolution: {integrity: sha512-qqCNmA4KOEDjcl+OtRZTllGehXewcQ31zbHjvhl/jqCs2MfRcZoxFW1y7A4Y4BgR/O7PI89K+GoWGcxK3gn64Q==}
+ unhead@1.10.4:
+ resolution: {integrity: sha512-qKiYhgZ4IuDbylP409cdwK/8WEIi5cOSIBei/OXzxFs4uxiTZHSSa8NC1qPu2kooxHqxyoXGBw8ARms9zOsbxw==}
unicode-canonical-property-names-ecmascript@2.0.0:
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
@@ -9195,8 +9453,8 @@ packages:
unified@10.1.2:
resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==}
- unimport@3.7.1:
- resolution: {integrity: sha512-V9HpXYfsZye5bPPYUgs0Otn3ODS1mDUciaBlXljI4C2fTwfFpvFZRywmlOu943puN9sncxROMZhsZCjNXEpzEQ==}
+ unimport@3.11.1:
+ resolution: {integrity: sha512-DuB1Uoq01LrrXTScxnwOoMSlTXxyKcULguFxbLrMDFcE/CO0ZWHpEiyhovN0mycPt7K6luAHe8laqvwvuoeUPg==}
unique-filename@1.1.1:
resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==}
@@ -9262,32 +9520,39 @@ packages:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
- unplugin-vue-router@0.7.0:
- resolution: {integrity: sha512-ddRreGq0t5vlSB7OMy4e4cfU1w2AwBQCwmvW3oP/0IHQiokzbx4hd3TpwBu3eIAFVuhX2cwNQwp1U32UybTVCw==}
+ unplugin-vue-router@0.10.7:
+ resolution: {integrity: sha512-5KEh7Swc1L2Xh5WOD7yQLeB5bO3iTw+Hst7qMxwmwYcPm9qVrtrRTZUftn2Hj4is17oMKgqacyWadjQzwW5B/Q==}
peerDependencies:
- vue-router: ^4.1.0
+ vue-router: ^4.4.0
peerDependenciesMeta:
vue-router:
optional: true
- unplugin@1.6.0:
- resolution: {integrity: sha512-BfJEpWBu3aE/AyHx8VaNE/WgouoQxgH9baAiH82JjX8cqVyi3uJQstqwD5J+SZxIK326SZIhsSZlALXVBCknTQ==}
+ unplugin@1.13.1:
+ resolution: {integrity: sha512-6Kq1iSSwg7KyjcThRUks9LuqDAKvtnioxbL9iEtB9ctTyBA5OmrB8gZd/d225VJu1w3UpUsKV7eGrvf59J7+VA==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ webpack-sources: ^3
+ peerDependenciesMeta:
+ webpack-sources:
+ optional: true
- unstorage@1.10.1:
- resolution: {integrity: sha512-rWQvLRfZNBpF+x8D3/gda5nUCQL2PgXy2jNG4U7/Rc9BGEv9+CAJd0YyGCROUBKs9v49Hg8huw3aih5Bf5TAVw==}
+ unstorage@1.12.0:
+ resolution: {integrity: sha512-ARZYTXiC+e8z3lRM7/qY9oyaOkaozCeNd2xoz7sYK9fv7OLGhVsf+BZbmASqiK/HTZ7T6eAlnVq9JynZppyk3w==}
peerDependencies:
- '@azure/app-configuration': ^1.4.1
- '@azure/cosmos': ^4.0.0
+ '@azure/app-configuration': ^1.7.0
+ '@azure/cosmos': ^4.1.1
'@azure/data-tables': ^13.2.2
- '@azure/identity': ^3.3.2
- '@azure/keyvault-secrets': ^4.7.0
- '@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
+ '@azure/identity': ^4.4.1
+ '@azure/keyvault-secrets': ^4.8.0
+ '@azure/storage-blob': ^12.24.0
+ '@capacitor/preferences': ^6.0.2
+ '@netlify/blobs': ^6.5.0 || ^7.0.0
+ '@planetscale/database': ^1.19.0
+ '@upstash/redis': ^1.34.0
+ '@vercel/kv': ^1.0.1
idb-keyval: ^6.2.1
+ ioredis: ^5.4.1
peerDependenciesMeta:
'@azure/app-configuration':
optional: true
@@ -9313,19 +9578,20 @@ packages:
optional: true
idb-keyval:
optional: true
-
- untildify@4.0.0:
- resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
- engines: {node: '>=8'}
+ ioredis:
+ optional: true
untun@0.1.3:
resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==}
hasBin: true
- 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
+ unwasm@0.3.9:
+ resolution: {integrity: sha512-LDxTx/2DkFURUd+BU1vUsF/moj0JsoTvl+2tcg2AUOiEzVturhGGx17/IMgGvKUYdZwr33EJHtChCJuhu9Ouvg==}
+
upath@1.2.0:
resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==}
engines: {node: '>=4'}
@@ -9390,10 +9656,6 @@ packages:
validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
- validate-npm-package-name@5.0.0:
- resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
vary@1.1.2:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
@@ -9426,6 +9688,11 @@ packages:
vfile@5.3.7:
resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==}
+ vite-hot-client@0.2.3:
+ resolution: {integrity: sha512-rOGAV7rUlUHX89fP2p2v0A2WWvV3QMX2UYq0fRqsWSvFvev4atHWqjwGoKaZT1VTKyLGk533ecu3eyd0o59CAg==}
+ peerDependencies:
+ vite: ^5.0.0
+
vite-node@0.34.6:
resolution: {integrity: sha512-nlBMJ9x6n7/Amaz6F3zJ97EBwR2FkzhBRxF5e+jE6LA3yi6Wtc2lyTij1OnDMIr34v5g/tVQtsVAzhT0jc5ygA==}
engines: {node: '>=v14.18.0'}
@@ -9436,10 +9703,16 @@ packages:
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
- vite-plugin-checker@0.6.2:
- resolution: {integrity: sha512-YvvvQ+IjY09BX7Ab+1pjxkELQsBd4rPhWNw8WLBeFVxu/E7O+n6VYAqNsKdK/a2luFlX/sMpoWdGFfg4HvwdJQ==}
+ vite-node@2.0.5:
+ resolution: {integrity: sha512-LdsW4pxj0Ot69FAoXZ1yTnA9bjGohr2yNBU7QKRxpz8ITSkhuDl6h3zS/tvgz4qrNjeRnvrWeXQ8ZF7Um4W00Q==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+
+ vite-plugin-checker@0.7.2:
+ resolution: {integrity: sha512-xeYeJbG0gaCaT0QcUC4B2Zo4y5NR8ZhYenc5gPbttrZvraRFwkEADCYwq+BfEHl9zYz7yf85TxsiGoYwyyIjhw==}
engines: {node: '>=14.16'}
peerDependencies:
+ '@biomejs/biome': '>=1.7'
eslint: '>=7'
meow: ^9.0.0
optionator: ^0.9.1
@@ -9448,8 +9721,10 @@ packages:
vite: ^5.0.0
vls: '*'
vti: '*'
- vue-tsc: '>=1.3.9'
+ vue-tsc: '>=2.0.0'
peerDependenciesMeta:
+ '@biomejs/biome':
+ optional: true
eslint:
optional: true
meow:
@@ -9467,8 +9742,8 @@ packages:
vue-tsc:
optional: true
- vite-plugin-inspect@0.8.1:
- resolution: {integrity: sha512-oPBPVGp6tBd5KdY/qY6lrbLXqrbHRG0hZLvEaJfiZ/GQfDB+szRuLHblQh1oi1Hhh8GeLit/50l4xfs2SA+TCA==}
+ vite-plugin-inspect@0.8.7:
+ resolution: {integrity: sha512-/XXou3MVc13A5O9/2Nd6xczjrUwt7ZyI9h8pTnUMkr5SshLcb0PJUOVq2V+XVkdeU4njsqAtmK87THZuO2coGA==}
engines: {node: '>=14'}
peerDependencies:
'@nuxt/kit': '*'
@@ -9490,8 +9765,8 @@ packages:
workbox-build: ^7.0.0
workbox-window: ^7.0.0
- vite-plugin-vue-inspector@4.0.2:
- resolution: {integrity: sha512-KPvLEuafPG13T7JJuQbSm5PwSxKFnVS965+MP1we2xGw9BPkkc/+LPix5MMWenpKWqtjr0ws8THrR+KuoDC8hg==}
+ vite-plugin-vue-inspector@5.2.0:
+ resolution: {integrity: sha512-wWxyb9XAtaIvV/Lr7cqB1HIzmHZFVUJsTNm3yAxkS87dgh/Ky4qr2wDEWNxF23fdhVa3jQ8MZREpr4XyiuaRqA==}
peerDependencies:
vite: ^5.0.0
@@ -9580,8 +9855,8 @@ packages:
vscode-languageserver-protocol@3.16.0:
resolution: {integrity: sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==}
- vscode-languageserver-textdocument@1.0.11:
- resolution: {integrity: sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==}
+ vscode-languageserver-textdocument@1.0.12:
+ resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==}
vscode-languageserver-types@3.16.0:
resolution: {integrity: sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==}
@@ -9593,14 +9868,14 @@ packages:
vscode-uri@3.0.8:
resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
- vue-bundle-renderer@2.0.0:
- resolution: {integrity: sha512-oYATTQyh8XVkUWe2kaKxhxKVuuzK2Qcehe+yr3bGiaQAhK3ry2kYE4FWOfL+KO3hVFwCdLmzDQTzYhTi9C+R2A==}
+ vue-bundle-renderer@2.1.0:
+ resolution: {integrity: sha512-uZ+5ZJdZ/b43gMblWtcpikY6spJd0nERaM/1RtgioXNfWFbjKlUwrS8HlrddN6T2xtptmOouWclxLUkpgcVX3Q==}
vue-component-type-helpers@1.8.27:
resolution: {integrity: sha512-0vOfAtI67UjeO1G6UiX5Kd76CqaQ67wrRZiOe7UAb9Jm6GzlUr/fC7CV90XfwapJRjpCMaZFhv1V0ajWRmE9Dg==}
- vue-demi@0.14.6:
- resolution: {integrity: sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==}
+ vue-demi@0.14.10:
+ resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
engines: {node: '>=12'}
hasBin: true
peerDependencies:
@@ -9619,8 +9894,8 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
- vue-router@4.2.5:
- resolution: {integrity: sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==}
+ vue-router@4.4.3:
+ resolution: {integrity: sha512-sv6wmNKx2j3aqJQDMxLFzs/u/mjA9Z5LCgy6BE0f7yFWMjrPLnS/sPNn8ARY/FXw6byV18EFutn5lTO6+UsV5A==}
peerDependencies:
vue: ^3.2.0
@@ -9638,8 +9913,8 @@ packages:
peerDependencies:
vue: ^3.0.5
- vue@3.4.21:
- resolution: {integrity: sha512-5hjyV/jLEIKD/jYl4cavMcnzKwjMKohureP8ejn3hhEjwhWIhWeuzL2kJAjzl/WyVsgPY56Sy4Z40C3lVshxXA==}
+ vue@3.5.3:
+ resolution: {integrity: sha512-xvRbd0HpuLovYbOHXRHlSBsSvmUJbo0pzbkKTApWnQGf3/cu5Z39mQeA5cZdLRVIoNf3zI6MSoOgHUT5i2jO+Q==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -9677,8 +9952,8 @@ packages:
resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
engines: {node: '>=10.13.0'}
- webpack-virtual-modules@0.6.1:
- resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==}
+ webpack-virtual-modules@0.6.2:
+ resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
websocket-driver@0.7.4:
resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==}
@@ -9844,8 +10119,8 @@ packages:
utf-8-validate:
optional: true
- ws@8.16.0:
- resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==}
+ ws@8.18.0:
+ resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -9891,8 +10166,8 @@ packages:
resolution: {integrity: sha512-pEwzfsKbTrB8G3xc/sN7aw1v6A6c/pKxLAkjclnAyo5g5qOh6eL9WGu0o3cSDQZKrTNk4KL4lQSwZW+nBkANEg==}
engines: {node: ^14.17.0 || >=16.0.0}
- yaml@2.4.2:
- resolution: {integrity: sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA==}
+ yaml@2.5.1:
+ resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==}
engines: {node: '>= 14'}
hasBin: true
@@ -9904,8 +10179,8 @@ packages:
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
engines: {node: '>=12'}
- ylru@1.3.2:
- resolution: {integrity: sha512-RXRJzMiK6U2ye0BlGGZnmpwJDPgakn6aNQ0A7gHRbD4I0uvK4TW6UqkK1V0pp9jskjJBAXd3dRrbzWkqJ+6cxA==}
+ ylru@1.4.0:
+ resolution: {integrity: sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA==}
engines: {node: '>= 4.0.0'}
yn@3.1.1:
@@ -9927,9 +10202,9 @@ packages:
resolution: {integrity: sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==}
engines: {node: '>= 10'}
- zip-stream@5.0.1:
- resolution: {integrity: sha512-UfZ0oa0C8LI58wJ+moL46BDIMgCQbnsb+2PoiJYtonhBsMh2bq1eRBVkvjfVsqbEHd9/EgKPUuL9saSSsec8OA==}
- engines: {node: '>= 12.0.0'}
+ zip-stream@6.0.1:
+ resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==}
+ engines: {node: '>= 14'}
zod-to-json-schema@3.23.0:
resolution: {integrity: sha512-az0uJ243PxsRIa2x1WmNE/pnuA05gUq/JB8Lwe1EDCCL/Fz9MgjYQ0fPlyc2Tcv6aF2ZA7WM5TWaRZVEFaAIag==}
@@ -10030,7 +10305,7 @@ snapshots:
- supports-color
- typescript
- '@antfu/utils@0.7.7': {}
+ '@antfu/utils@0.7.10': {}
'@anthropic-ai/sdk@0.4.4(encoding@0.1.13)':
dependencies:
@@ -10073,7 +10348,7 @@ snapshots:
'@babel/traverse': 7.25.6
'@babel/types': 7.25.6
convert-source-map: 2.0.0
- debug: 4.3.6
+ debug: 4.3.7
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -10131,7 +10406,7 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- debug: 4.3.6
+ debug: 4.3.7
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
@@ -10264,12 +10539,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-decorators@7.23.7(@babel/core@7.25.2)':
+ '@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-decorators': 7.23.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
@@ -10292,7 +10567,7 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-decorators@7.23.3(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
@@ -10840,7 +11115,7 @@ snapshots:
dependencies:
regenerator-runtime: 0.14.1
- '@babel/standalone@7.23.7': {}
+ '@babel/standalone@7.25.6': {}
'@babel/template@7.25.0':
dependencies:
@@ -10855,7 +11130,7 @@ snapshots:
'@babel/parser': 7.25.6
'@babel/template': 7.25.0
'@babel/types': 7.25.6
- debug: 4.3.6
+ debug: 4.3.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -10868,7 +11143,7 @@ snapshots:
'@braintree/sanitize-url@6.0.4': {}
- '@cloudflare/kv-asset-handler@0.3.0':
+ '@cloudflare/kv-asset-handler@0.3.4':
dependencies:
mime: 3.0.0
@@ -11132,11 +11407,6 @@ snapshots:
dependencies:
'@jridgewell/trace-mapping': 0.3.9
- '@csstools/cascade-layer-name-parser@1.0.7(@csstools/css-parser-algorithms@2.5.0(@csstools/css-tokenizer@2.2.3))(@csstools/css-tokenizer@2.2.3)':
- dependencies:
- '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3)
- '@csstools/css-tokenizer': 2.2.3
-
'@csstools/color-helpers@4.0.0': {}
'@csstools/css-calc@1.1.6(@csstools/css-parser-algorithms@2.5.0(@csstools/css-tokenizer@2.2.3))(@csstools/css-tokenizer@2.2.3)':
@@ -11170,7 +11440,11 @@ snapshots:
postcss: 8.4.45
postcss-value-parser: 4.2.0
- '@csstools/selector-specificity@3.0.1(postcss-selector-parser@6.1.2)':
+ '@csstools/selector-resolve-nested@1.1.0(postcss-selector-parser@6.1.2)':
+ dependencies:
+ postcss-selector-parser: 6.1.2
+
+ '@csstools/selector-specificity@3.1.1(postcss-selector-parser@6.1.2)':
dependencies:
postcss-selector-parser: 6.1.2
@@ -11186,7 +11460,7 @@ snapshots:
'@edge-runtime/primitives@2.1.2': {}
- '@edge-runtime/primitives@4.1.0':
+ '@edge-runtime/primitives@5.1.0':
optional: true
'@edge-runtime/vm@2.0.0':
@@ -11197,9 +11471,9 @@ snapshots:
dependencies:
'@edge-runtime/primitives': 2.1.2
- '@edge-runtime/vm@3.2.0':
+ '@edge-runtime/vm@4.0.3':
dependencies:
- '@edge-runtime/primitives': 4.1.0
+ '@edge-runtime/primitives': 5.1.0
optional: true
'@emotion/hash@0.9.2': {}
@@ -11213,207 +11487,348 @@ snapshots:
'@esbuild/aix-ppc64@0.19.12':
optional: true
+ '@esbuild/aix-ppc64@0.20.2':
+ optional: true
+
'@esbuild/aix-ppc64@0.21.5':
optional: true
+ '@esbuild/aix-ppc64@0.23.1':
+ optional: true
+
'@esbuild/android-arm64@0.16.3':
optional: true
'@esbuild/android-arm64@0.19.12':
optional: true
+ '@esbuild/android-arm64@0.20.2':
+ optional: true
+
'@esbuild/android-arm64@0.21.5':
optional: true
+ '@esbuild/android-arm64@0.23.1':
+ optional: true
+
'@esbuild/android-arm@0.16.3':
optional: true
'@esbuild/android-arm@0.19.12':
optional: true
+ '@esbuild/android-arm@0.20.2':
+ optional: true
+
'@esbuild/android-arm@0.21.5':
optional: true
+ '@esbuild/android-arm@0.23.1':
+ optional: true
+
'@esbuild/android-x64@0.16.3':
optional: true
'@esbuild/android-x64@0.19.12':
optional: true
+ '@esbuild/android-x64@0.20.2':
+ optional: true
+
'@esbuild/android-x64@0.21.5':
optional: true
+ '@esbuild/android-x64@0.23.1':
+ optional: true
+
'@esbuild/darwin-arm64@0.16.3':
optional: true
'@esbuild/darwin-arm64@0.19.12':
optional: true
+ '@esbuild/darwin-arm64@0.20.2':
+ optional: true
+
'@esbuild/darwin-arm64@0.21.5':
optional: true
+ '@esbuild/darwin-arm64@0.23.1':
+ optional: true
+
'@esbuild/darwin-x64@0.16.3':
optional: true
'@esbuild/darwin-x64@0.19.12':
optional: true
+ '@esbuild/darwin-x64@0.20.2':
+ optional: true
+
'@esbuild/darwin-x64@0.21.5':
optional: true
+ '@esbuild/darwin-x64@0.23.1':
+ optional: true
+
'@esbuild/freebsd-arm64@0.16.3':
optional: true
'@esbuild/freebsd-arm64@0.19.12':
optional: true
+ '@esbuild/freebsd-arm64@0.20.2':
+ optional: true
+
'@esbuild/freebsd-arm64@0.21.5':
optional: true
+ '@esbuild/freebsd-arm64@0.23.1':
+ optional: true
+
'@esbuild/freebsd-x64@0.16.3':
optional: true
'@esbuild/freebsd-x64@0.19.12':
optional: true
+ '@esbuild/freebsd-x64@0.20.2':
+ optional: true
+
'@esbuild/freebsd-x64@0.21.5':
optional: true
+ '@esbuild/freebsd-x64@0.23.1':
+ optional: true
+
'@esbuild/linux-arm64@0.16.3':
optional: true
'@esbuild/linux-arm64@0.19.12':
optional: true
+ '@esbuild/linux-arm64@0.20.2':
+ optional: true
+
'@esbuild/linux-arm64@0.21.5':
optional: true
+ '@esbuild/linux-arm64@0.23.1':
+ optional: true
+
'@esbuild/linux-arm@0.16.3':
optional: true
'@esbuild/linux-arm@0.19.12':
optional: true
+ '@esbuild/linux-arm@0.20.2':
+ optional: true
+
'@esbuild/linux-arm@0.21.5':
optional: true
+ '@esbuild/linux-arm@0.23.1':
+ optional: true
+
'@esbuild/linux-ia32@0.16.3':
optional: true
'@esbuild/linux-ia32@0.19.12':
optional: true
+ '@esbuild/linux-ia32@0.20.2':
+ optional: true
+
'@esbuild/linux-ia32@0.21.5':
optional: true
+ '@esbuild/linux-ia32@0.23.1':
+ optional: true
+
'@esbuild/linux-loong64@0.16.3':
optional: true
'@esbuild/linux-loong64@0.19.12':
optional: true
+ '@esbuild/linux-loong64@0.20.2':
+ optional: true
+
'@esbuild/linux-loong64@0.21.5':
optional: true
+ '@esbuild/linux-loong64@0.23.1':
+ optional: true
+
'@esbuild/linux-mips64el@0.16.3':
optional: true
'@esbuild/linux-mips64el@0.19.12':
optional: true
+ '@esbuild/linux-mips64el@0.20.2':
+ optional: true
+
'@esbuild/linux-mips64el@0.21.5':
optional: true
+ '@esbuild/linux-mips64el@0.23.1':
+ optional: true
+
'@esbuild/linux-ppc64@0.16.3':
optional: true
'@esbuild/linux-ppc64@0.19.12':
optional: true
+ '@esbuild/linux-ppc64@0.20.2':
+ optional: true
+
'@esbuild/linux-ppc64@0.21.5':
optional: true
+ '@esbuild/linux-ppc64@0.23.1':
+ optional: true
+
'@esbuild/linux-riscv64@0.16.3':
optional: true
'@esbuild/linux-riscv64@0.19.12':
optional: true
+ '@esbuild/linux-riscv64@0.20.2':
+ optional: true
+
'@esbuild/linux-riscv64@0.21.5':
optional: true
+ '@esbuild/linux-riscv64@0.23.1':
+ optional: true
+
'@esbuild/linux-s390x@0.16.3':
optional: true
'@esbuild/linux-s390x@0.19.12':
optional: true
+ '@esbuild/linux-s390x@0.20.2':
+ optional: true
+
'@esbuild/linux-s390x@0.21.5':
optional: true
+ '@esbuild/linux-s390x@0.23.1':
+ optional: true
+
'@esbuild/linux-x64@0.16.3':
optional: true
'@esbuild/linux-x64@0.19.12':
optional: true
+ '@esbuild/linux-x64@0.20.2':
+ optional: true
+
'@esbuild/linux-x64@0.21.5':
optional: true
+ '@esbuild/linux-x64@0.23.1':
+ optional: true
+
'@esbuild/netbsd-x64@0.16.3':
optional: true
'@esbuild/netbsd-x64@0.19.12':
optional: true
+ '@esbuild/netbsd-x64@0.20.2':
+ optional: true
+
'@esbuild/netbsd-x64@0.21.5':
optional: true
+ '@esbuild/netbsd-x64@0.23.1':
+ optional: true
+
+ '@esbuild/openbsd-arm64@0.23.1':
+ optional: true
+
'@esbuild/openbsd-x64@0.16.3':
optional: true
'@esbuild/openbsd-x64@0.19.12':
optional: true
+ '@esbuild/openbsd-x64@0.20.2':
+ optional: true
+
'@esbuild/openbsd-x64@0.21.5':
optional: true
+ '@esbuild/openbsd-x64@0.23.1':
+ optional: true
+
'@esbuild/sunos-x64@0.16.3':
optional: true
'@esbuild/sunos-x64@0.19.12':
optional: true
+ '@esbuild/sunos-x64@0.20.2':
+ optional: true
+
'@esbuild/sunos-x64@0.21.5':
optional: true
+ '@esbuild/sunos-x64@0.23.1':
+ optional: true
+
'@esbuild/win32-arm64@0.16.3':
optional: true
'@esbuild/win32-arm64@0.19.12':
optional: true
+ '@esbuild/win32-arm64@0.20.2':
+ optional: true
+
'@esbuild/win32-arm64@0.21.5':
optional: true
+ '@esbuild/win32-arm64@0.23.1':
+ optional: true
+
'@esbuild/win32-ia32@0.16.3':
optional: true
'@esbuild/win32-ia32@0.19.12':
optional: true
+ '@esbuild/win32-ia32@0.20.2':
+ optional: true
+
'@esbuild/win32-ia32@0.21.5':
optional: true
+ '@esbuild/win32-ia32@0.23.1':
+ optional: true
+
'@esbuild/win32-x64@0.16.3':
optional: true
'@esbuild/win32-x64@0.19.12':
optional: true
+ '@esbuild/win32-x64@0.20.2':
+ optional: true
+
'@esbuild/win32-x64@0.21.5':
optional: true
+ '@esbuild/win32-x64@0.23.1':
+ optional: true
+
'@eslint-community/eslint-utils@4.4.0(eslint@8.56.0)':
dependencies:
eslint: 8.56.0
@@ -11424,7 +11839,7 @@ snapshots:
'@eslint/eslintrc@2.1.4':
dependencies:
ajv: 6.12.6
- debug: 4.3.6
+ debug: 4.3.7
espree: 9.6.1
globals: 13.24.0
ignore: 5.3.2
@@ -11796,19 +12211,19 @@ snapshots:
protobufjs: 7.2.4
yargs: 17.7.2
- '@headlessui/tailwindcss@0.2.0(tailwindcss@3.4.0(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3)))':
+ '@headlessui/tailwindcss@0.2.1(tailwindcss@3.4.10(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3)))':
dependencies:
- tailwindcss: 3.4.0(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))
+ tailwindcss: 3.4.10(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))
- '@headlessui/vue@1.7.17(vue@3.4.21(typescript@5.3.3))':
+ '@headlessui/vue@1.7.22(vue@3.5.3(typescript@5.3.3))':
dependencies:
- '@tanstack/vue-virtual': 3.0.2(vue@3.4.21(typescript@5.3.3))
- vue: 3.4.21(typescript@5.3.3)
+ '@tanstack/vue-virtual': 3.0.2(vue@3.5.3(typescript@5.3.3))
+ vue: 3.5.3(typescript@5.3.3)
'@humanwhocodes/config-array@0.11.13':
dependencies:
'@humanwhocodes/object-schema': 2.0.1
- debug: 4.3.6
+ debug: 4.3.7
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -11835,7 +12250,7 @@ snapshots:
'@jridgewell/gen-mapping@0.3.5':
dependencies:
'@jridgewell/set-array': 1.2.1
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
'@jridgewell/trace-mapping': 0.3.25
'@jridgewell/resolve-uri@3.1.2': {}
@@ -11847,17 +12262,17 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- '@jridgewell/sourcemap-codec@1.4.15': {}
+ '@jridgewell/sourcemap-codec@1.5.0': {}
'@jridgewell/trace-mapping@0.3.25':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
'@jridgewell/trace-mapping@0.3.9':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
'@jsdevtools/ono@7.1.3': {}
@@ -11867,17 +12282,17 @@ snapshots:
'@koa/router@12.0.1':
dependencies:
- debug: 4.3.6
+ debug: 4.3.7
http-errors: 2.0.0
koa-compose: 4.1.0
methods: 1.1.2
- path-to-regexp: 6.2.1
+ path-to-regexp: 6.2.2
transitivePeerDependencies:
- supports-color
'@kwsites/file-exists@1.1.1':
dependencies:
- debug: 4.3.6
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -11985,7 +12400,7 @@ snapshots:
nopt: 5.0.0
npmlog: 5.0.1
rimraf: 3.0.2
- semver: 7.6.0
+ semver: 7.6.3
tar: 6.2.1
transitivePeerDependencies:
- encoding
@@ -12001,14 +12416,13 @@ snapshots:
khroma: 2.1.0
non-layered-tidy-tree-layout: 2.0.2
- '@netlify/functions@2.4.1':
+ '@netlify/functions@2.8.1':
dependencies:
- '@netlify/serverless-functions-api': 1.12.3
- is-promise: 4.0.0
+ '@netlify/serverless-functions-api': 1.19.1
'@netlify/node-cookies@0.1.0': {}
- '@netlify/serverless-functions-api@1.12.3':
+ '@netlify/serverless-functions-api@1.19.1':
dependencies:
'@netlify/node-cookies': 0.1.0
urlpattern-polyfill: 8.0.2
@@ -12027,240 +12441,199 @@ snapshots:
'@npmcli/agent@2.2.0':
dependencies:
- agent-base: 7.1.0
+ agent-base: 7.1.1
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.4
+ https-proxy-agent: 7.0.5
lru-cache: 10.4.3
socks-proxy-agent: 8.0.2
transitivePeerDependencies:
- supports-color
+ optional: true
'@npmcli/fs@1.1.1':
dependencies:
'@gar/promisify': 1.1.3
- semver: 7.6.0
+ semver: 7.6.3
'@npmcli/fs@3.1.0':
dependencies:
- semver: 7.6.0
-
- '@npmcli/git@5.0.3':
- dependencies:
- '@npmcli/promise-spawn': 7.0.0
- lru-cache: 10.4.3
- npm-pick-manifest: 9.0.0
- proc-log: 3.0.0
- promise-inflight: 1.0.1
- promise-retry: 2.0.1
- semver: 7.6.0
- which: 4.0.0
- transitivePeerDependencies:
- - bluebird
-
- '@npmcli/installed-package-contents@2.0.2':
- dependencies:
- npm-bundled: 3.0.0
- npm-normalize-package-bin: 3.0.1
+ semver: 7.6.3
+ optional: true
'@npmcli/move-file@1.1.2':
dependencies:
mkdirp: 1.0.4
rimraf: 3.0.2
- '@npmcli/node-gyp@3.0.0': {}
-
'@npmcli/package-json@2.0.0':
dependencies:
json-parse-even-better-errors: 2.3.1
- '@npmcli/promise-spawn@7.0.0':
- dependencies:
- which: 4.0.0
-
- '@npmcli/run-script@7.0.2':
- dependencies:
- '@npmcli/node-gyp': 3.0.0
- '@npmcli/promise-spawn': 7.0.0
- node-gyp: 10.0.1
- read-package-json-fast: 3.0.2
- which: 4.0.0
- transitivePeerDependencies:
- - supports-color
-
'@nuxt/devalue@2.0.2': {}
- '@nuxt/devtools-kit@1.0.6(nuxt@3.9.0(@parcel/watcher@2.4.1)(@types/node@18.19.4)(encoding@0.1.13)(eslint@8.56.0)(optionator@0.9.4)(rollup@2.79.1)(terser@5.31.0)(typescript@5.3.3)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))(vue-tsc@1.8.27(typescript@5.3.3)))(rollup@2.79.1)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))':
+ '@nuxt/devtools-kit@1.4.1(magicast@0.3.5)(rollup@2.79.1)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))(webpack-sources@3.2.3)':
dependencies:
- '@nuxt/kit': 3.9.0(rollup@2.79.1)
- '@nuxt/schema': 3.9.0(rollup@2.79.1)
+ '@nuxt/kit': 3.13.1(magicast@0.3.5)(rollup@2.79.1)(webpack-sources@3.2.3)
+ '@nuxt/schema': 3.13.1(rollup@2.79.1)(webpack-sources@3.2.3)
execa: 7.2.0
- nuxt: 3.9.0(@parcel/watcher@2.4.1)(@types/node@18.19.4)(encoding@0.1.13)(eslint@8.56.0)(optionator@0.9.4)(rollup@2.79.1)(terser@5.31.0)(typescript@5.3.3)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))(vue-tsc@1.8.27(typescript@5.3.3))
- vite: 5.4.3(@types/node@18.19.4)(terser@5.31.0)
+ vite: 5.4.3(@types/node@18.19.4)(terser@5.31.6)
transitivePeerDependencies:
+ - magicast
- rollup
- supports-color
+ - webpack-sources
- '@nuxt/devtools-wizard@1.0.6':
+ '@nuxt/devtools-wizard@1.4.1':
dependencies:
consola: 3.2.3
- diff: 5.1.0
+ diff: 5.2.0
execa: 7.2.0
global-directory: 4.0.1
- magicast: 0.3.2
+ magicast: 0.3.5
pathe: 1.1.2
pkg-types: 1.2.0
prompts: 2.4.2
- rc9: 2.1.1
- semver: 7.6.0
-
- '@nuxt/devtools@1.0.6(encoding@0.1.13)(nuxt@3.9.0(@parcel/watcher@2.4.1)(@types/node@18.19.4)(encoding@0.1.13)(eslint@8.56.0)(optionator@0.9.4)(rollup@2.79.1)(terser@5.31.0)(typescript@5.3.3)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))(vue-tsc@1.8.27(typescript@5.3.3)))(rollup@2.79.1)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))':
- dependencies:
- '@antfu/utils': 0.7.7
- '@nuxt/devtools-kit': 1.0.6(nuxt@3.9.0(@parcel/watcher@2.4.1)(@types/node@18.19.4)(encoding@0.1.13)(eslint@8.56.0)(optionator@0.9.4)(rollup@2.79.1)(terser@5.31.0)(typescript@5.3.3)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))(vue-tsc@1.8.27(typescript@5.3.3)))(rollup@2.79.1)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))
- '@nuxt/devtools-wizard': 1.0.6
- '@nuxt/kit': 3.9.0(rollup@2.79.1)
- birpc: 0.2.14
+ rc9: 2.1.2
+ semver: 7.6.3
+
+ '@nuxt/devtools@1.4.1(rollup@2.79.1)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))(webpack-sources@3.2.3)':
+ dependencies:
+ '@antfu/utils': 0.7.10
+ '@nuxt/devtools-kit': 1.4.1(magicast@0.3.5)(rollup@2.79.1)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))(webpack-sources@3.2.3)
+ '@nuxt/devtools-wizard': 1.4.1
+ '@nuxt/kit': 3.13.1(magicast@0.3.5)(rollup@2.79.1)(webpack-sources@3.2.3)
+ '@vue/devtools-core': 7.3.3(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))
+ '@vue/devtools-kit': 7.3.3
+ birpc: 0.2.17
consola: 3.2.3
- destr: 2.0.2
- error-stack-parser-es: 0.1.1
+ cronstrue: 2.50.0
+ destr: 2.0.3
+ error-stack-parser-es: 0.1.5
execa: 7.2.0
- fast-glob: 3.3.2
- flatted: 3.2.9
- get-port-please: 3.1.1
- h3: 1.9.0
+ fast-npm-meta: 0.2.2
+ flatted: 3.3.1
+ get-port-please: 3.1.2
hookable: 5.5.3
- image-meta: 0.2.0
+ image-meta: 0.2.1
is-installed-globally: 1.0.0
- launch-editor: 2.6.1
+ launch-editor: 2.9.1
local-pkg: 0.5.0
- magicast: 0.3.2
- nitropack: 2.8.1(encoding@0.1.13)
- nuxt: 3.9.0(@parcel/watcher@2.4.1)(@types/node@18.19.4)(encoding@0.1.13)(eslint@8.56.0)(optionator@0.9.4)(rollup@2.79.1)(terser@5.31.0)(typescript@5.3.3)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))(vue-tsc@1.8.27(typescript@5.3.3))
- nypm: 0.3.4
- ofetch: 1.3.3
+ magicast: 0.3.5
+ nypm: 0.3.11
ohash: 1.1.3
- pacote: 17.0.5
pathe: 1.1.2
perfect-debounce: 1.0.0
pkg-types: 1.2.0
- rc9: 2.1.1
- scule: 1.1.1
- semver: 7.6.0
- simple-git: 3.22.0
+ rc9: 2.1.2
+ scule: 1.3.0
+ semver: 7.6.3
+ simple-git: 3.26.0
sirv: 2.0.4
- unimport: 3.7.1(rollup@2.79.1)
- vite: 5.4.3(@types/node@18.19.4)(terser@5.31.0)
- vite-plugin-inspect: 0.8.1(@nuxt/kit@3.9.0(rollup@2.79.1))(rollup@2.79.1)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))
- vite-plugin-vue-inspector: 4.0.2(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))
+ tinyglobby: 0.2.5
+ unimport: 3.11.1(rollup@2.79.1)(webpack-sources@3.2.3)
+ vite: 5.4.3(@types/node@18.19.4)(terser@5.31.6)
+ vite-plugin-inspect: 0.8.7(@nuxt/kit@3.13.1(magicast@0.3.5)(rollup@2.79.1)(webpack-sources@3.2.3))(rollup@2.79.1)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))
+ vite-plugin-vue-inspector: 5.2.0(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))
which: 3.0.1
- ws: 8.16.0
+ ws: 8.18.0
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
- - idb-keyval
- rollup
- supports-color
- utf-8-validate
- - xml2js
+ - webpack-sources
- '@nuxt/kit@3.9.0(rollup@2.79.1)':
+ '@nuxt/kit@3.13.1(magicast@0.3.5)(rollup@2.79.1)(webpack-sources@3.2.3)':
dependencies:
- '@nuxt/schema': 3.9.0(rollup@2.79.1)
- c12: 1.6.1
+ '@nuxt/schema': 3.13.1(rollup@2.79.1)(webpack-sources@3.2.3)
+ c12: 1.11.2(magicast@0.3.5)
consola: 3.2.3
- defu: 6.1.3
- globby: 14.0.0
+ defu: 6.1.4
+ destr: 2.0.3
+ globby: 14.0.2
hash-sum: 2.0.0
ignore: 5.3.2
- jiti: 1.21.0
- knitwork: 1.0.0
+ jiti: 1.21.6
+ klona: 2.0.6
+ knitwork: 1.1.0
mlly: 1.7.1
pathe: 1.1.2
pkg-types: 1.2.0
- scule: 1.1.1
- semver: 7.6.0
+ scule: 1.3.0
+ semver: 7.6.3
ufo: 1.5.4
- unctx: 2.3.1
- unimport: 3.7.1(rollup@2.79.1)
- untyped: 1.4.0
+ unctx: 2.3.1(webpack-sources@3.2.3)
+ unimport: 3.11.1(rollup@2.79.1)(webpack-sources@3.2.3)
+ untyped: 1.4.2
transitivePeerDependencies:
+ - magicast
- rollup
- supports-color
+ - webpack-sources
- '@nuxt/schema@3.9.0(rollup@2.79.1)':
+ '@nuxt/schema@3.13.1(rollup@2.79.1)(webpack-sources@3.2.3)':
dependencies:
- '@nuxt/ui-templates': 1.3.1
+ compatx: 0.1.8
consola: 3.2.3
- defu: 6.1.3
+ defu: 6.1.4
hookable: 5.5.3
pathe: 1.1.2
pkg-types: 1.2.0
- scule: 1.1.1
+ scule: 1.3.0
std-env: 3.7.0
ufo: 1.5.4
- unimport: 3.7.1(rollup@2.79.1)
- untyped: 1.4.0
+ uncrypto: 0.1.3
+ unimport: 3.11.1(rollup@2.79.1)(webpack-sources@3.2.3)
+ untyped: 1.4.2
transitivePeerDependencies:
- rollup
- supports-color
+ - webpack-sources
- '@nuxt/telemetry@2.5.3(rollup@2.79.1)':
+ '@nuxt/telemetry@2.5.4(magicast@0.3.5)(rollup@2.79.1)(webpack-sources@3.2.3)':
dependencies:
- '@nuxt/kit': 3.9.0(rollup@2.79.1)
+ '@nuxt/kit': 3.13.1(magicast@0.3.5)(rollup@2.79.1)(webpack-sources@3.2.3)
ci-info: 4.0.0
consola: 3.2.3
create-require: 1.1.1
- defu: 6.1.3
- destr: 2.0.2
+ defu: 6.1.4
+ destr: 2.0.3
dotenv: 16.4.5
- git-url-parse: 13.1.1
+ git-url-parse: 14.1.0
is-docker: 3.0.0
- jiti: 1.21.0
+ jiti: 1.21.6
mri: 1.2.0
- nanoid: 4.0.2
- ofetch: 1.3.3
+ nanoid: 5.0.7
+ ofetch: 1.3.4
parse-git-config: 3.0.0
pathe: 1.1.2
- rc9: 2.1.1
+ rc9: 2.1.2
std-env: 3.7.0
transitivePeerDependencies:
+ - magicast
- rollup
- supports-color
+ - webpack-sources
- '@nuxt/ui-templates@1.3.1': {}
-
- '@nuxt/vite-builder@3.9.0(@types/node@18.19.4)(eslint@8.56.0)(optionator@0.9.4)(rollup@2.79.1)(terser@5.31.0)(typescript@5.3.3)(vue-tsc@1.8.27(typescript@5.3.3))(vue@3.4.21(typescript@5.3.3))':
+ '@nuxt/vite-builder@3.13.1(@types/node@18.19.4)(eslint@8.56.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@2.79.1)(terser@5.31.6)(typescript@5.3.3)(vue-tsc@1.8.27(typescript@5.3.3))(vue@3.5.3(typescript@5.3.3))(webpack-sources@3.2.3)':
dependencies:
- '@nuxt/kit': 3.9.0(rollup@2.79.1)
- '@rollup/plugin-replace': 5.0.5(rollup@2.79.1)
- '@vitejs/plugin-vue': 5.0.2(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))(vue@3.4.21(typescript@5.3.3))
- '@vitejs/plugin-vue-jsx': 3.1.0(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))(vue@3.4.21(typescript@5.3.3))
- autoprefixer: 10.4.16(postcss@8.4.45)
+ '@nuxt/kit': 3.13.1(magicast@0.3.5)(rollup@2.79.1)(webpack-sources@3.2.3)
+ '@rollup/plugin-replace': 5.0.7(rollup@2.79.1)
+ '@vitejs/plugin-vue': 5.1.3(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))(vue@3.5.3(typescript@5.3.3))
+ '@vitejs/plugin-vue-jsx': 4.0.1(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))(vue@3.5.3(typescript@5.3.3))
+ autoprefixer: 10.4.20(postcss@8.4.45)
clear: 0.1.0
consola: 3.2.3
- cssnano: 6.0.2(postcss@8.4.45)
- defu: 6.1.3
- esbuild: 0.19.12
+ cssnano: 7.0.6(postcss@8.4.45)
+ defu: 6.1.4
+ esbuild: 0.23.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
- knitwork: 1.0.0
- magic-string: 0.30.8
+ get-port-please: 3.1.2
+ h3: 1.12.0
+ knitwork: 1.1.0
+ magic-string: 0.30.11
mlly: 1.7.1
ohash: 1.1.3
pathe: 1.1.2
@@ -12269,19 +12642,22 @@ snapshots:
postcss: 8.4.45
rollup-plugin-visualizer: 5.12.0(rollup@2.79.1)
std-env: 3.7.0
- strip-literal: 1.3.0
+ strip-literal: 2.1.0
ufo: 1.5.4
- unplugin: 1.6.0
- vite: 5.4.3(@types/node@18.19.4)(terser@5.31.0)
- vite-node: 1.6.0(@types/node@18.19.4)(terser@5.31.0)
- vite-plugin-checker: 0.6.2(eslint@8.56.0)(optionator@0.9.4)(typescript@5.3.3)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))(vue-tsc@1.8.27(typescript@5.3.3))
- vue: 3.4.21(typescript@5.3.3)
- vue-bundle-renderer: 2.0.0
+ unenv: 1.10.0
+ unplugin: 1.13.1(webpack-sources@3.2.3)
+ vite: 5.4.3(@types/node@18.19.4)(terser@5.31.6)
+ vite-node: 2.0.5(@types/node@18.19.4)(terser@5.31.6)
+ vite-plugin-checker: 0.7.2(eslint@8.56.0)(optionator@0.9.4)(typescript@5.3.3)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))(vue-tsc@1.8.27(typescript@5.3.3))
+ vue: 3.5.3(typescript@5.3.3)
+ vue-bundle-renderer: 2.1.0
transitivePeerDependencies:
+ - '@biomejs/biome'
- '@types/node'
- eslint
- less
- lightningcss
+ - magicast
- meow
- optionator
- rollup
@@ -12293,32 +12669,33 @@ snapshots:
- supports-color
- terser
- typescript
+ - uWebSockets.js
- vls
- vti
- vue-tsc
+ - webpack-sources
- '@nuxtjs/tailwindcss@6.10.3(rollup@2.79.1)(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))':
+ '@nuxtjs/tailwindcss@6.12.1(magicast@0.3.5)(rollup@2.79.1)(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))(webpack-sources@3.2.3)':
dependencies:
- '@nuxt/kit': 3.9.0(rollup@2.79.1)
- autoprefixer: 10.4.16(postcss@8.4.45)
- chokidar: 3.6.0
- clear-module: 4.1.2
- colorette: 2.0.20
+ '@nuxt/kit': 3.13.1(magicast@0.3.5)(rollup@2.79.1)(webpack-sources@3.2.3)
+ autoprefixer: 10.4.20(postcss@8.4.45)
consola: 3.2.3
- defu: 6.1.3
- h3: 1.9.0
- micromatch: 4.0.8
+ defu: 6.1.4
+ h3: 1.12.0
pathe: 1.1.2
postcss: 8.4.45
- postcss-custom-properties: 13.3.4(postcss@8.4.45)
- postcss-nesting: 12.0.2(postcss@8.4.45)
- tailwind-config-viewer: 1.7.3(tailwindcss@3.4.0(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3)))
- tailwindcss: 3.4.0(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))
+ postcss-nesting: 12.1.5(postcss@8.4.45)
+ tailwind-config-viewer: 2.0.4(tailwindcss@3.4.10(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3)))
+ tailwindcss: 3.4.10(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))
ufo: 1.5.4
+ unctx: 2.3.1(webpack-sources@3.2.3)
transitivePeerDependencies:
+ - magicast
- rollup
- supports-color
- ts-node
+ - uWebSockets.js
+ - webpack-sources
'@one-ini/wasm@0.1.1': {}
@@ -12353,7 +12730,7 @@ snapshots:
'@parcel/watcher-linux-x64-musl@2.4.1':
optional: true
- '@parcel/watcher-wasm@2.3.0':
+ '@parcel/watcher-wasm@2.4.1':
dependencies:
is-glob: 4.0.3
micromatch: 4.0.8
@@ -12372,7 +12749,7 @@ snapshots:
detect-libc: 1.0.3
is-glob: 4.0.3
micromatch: 4.0.8
- node-addon-api: 7.1.0
+ node-addon-api: 7.1.1
optionalDependencies:
'@parcel/watcher-android-arm64': 2.4.1
'@parcel/watcher-darwin-arm64': 2.4.1
@@ -12387,16 +12764,18 @@ snapshots:
'@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.3.3)(vue@3.4.21(typescript@5.3.3))':
+ '@pinia/nuxt@0.4.11(magicast@0.3.5)(rollup@2.79.1)(typescript@5.3.3)(vue@3.5.3(typescript@5.3.3))(webpack-sources@3.2.3)':
dependencies:
- '@nuxt/kit': 3.9.0(rollup@2.79.1)
- pinia: 2.1.7(typescript@5.3.3)(vue@3.4.21(typescript@5.3.3))
+ '@nuxt/kit': 3.13.1(magicast@0.3.5)(rollup@2.79.1)(webpack-sources@3.2.3)
+ pinia: 2.1.7(typescript@5.3.3)(vue@3.5.3(typescript@5.3.3))
transitivePeerDependencies:
- '@vue/composition-api'
+ - magicast
- rollup
- supports-color
- typescript
- vue
+ - webpack-sources
'@pkgjs/parseargs@0.11.0':
optional: true
@@ -12417,7 +12796,7 @@ snapshots:
'@pnpm/network.ca-file': 1.0.2
config-chain: 1.1.13
- '@polka/url@1.0.0-next.24': {}
+ '@polka/url@1.0.0-next.25': {}
'@protobufjs/aspromise@1.1.2': {}
@@ -12477,14 +12856,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@rollup/plugin-commonjs@25.0.7(rollup@4.21.2)':
+ '@rollup/plugin-commonjs@25.0.8(rollup@4.21.2)':
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.21.2)
commondir: 1.0.1
estree-walker: 2.0.2
glob: 8.1.0
is-reference: 1.2.1
- magic-string: 0.30.8
+ magic-string: 0.30.11
optionalDependencies:
rollup: 4.21.2
@@ -12492,7 +12871,7 @@ snapshots:
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@2.79.1)
estree-walker: 2.0.2
- magic-string: 0.30.8
+ magic-string: 0.30.11
optionalDependencies:
rollup: 2.79.1
@@ -12500,7 +12879,7 @@ snapshots:
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.21.2)
estree-walker: 2.0.2
- magic-string: 0.30.8
+ magic-string: 0.30.11
optionalDependencies:
rollup: 4.21.2
@@ -12537,31 +12916,25 @@ snapshots:
magic-string: 0.25.9
rollup: 2.79.1
- '@rollup/plugin-replace@5.0.5(rollup@2.79.1)':
+ '@rollup/plugin-replace@5.0.7(rollup@2.79.1)':
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@2.79.1)
- magic-string: 0.30.8
+ magic-string: 0.30.11
optionalDependencies:
rollup: 2.79.1
- '@rollup/plugin-replace@5.0.5(rollup@4.21.2)':
+ '@rollup/plugin-replace@5.0.7(rollup@4.21.2)':
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.21.2)
- magic-string: 0.30.8
+ magic-string: 0.30.11
optionalDependencies:
rollup: 4.21.2
'@rollup/plugin-terser@0.4.4(rollup@4.21.2)':
dependencies:
- serialize-javascript: 6.0.1
- smob: 1.4.1
- terser: 5.31.0
- optionalDependencies:
- rollup: 4.21.2
-
- '@rollup/plugin-wasm@6.2.2(rollup@4.21.2)':
- dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.21.2)
+ serialize-javascript: 6.0.2
+ smob: 1.5.0
+ terser: 5.31.6
optionalDependencies:
rollup: 4.21.2
@@ -12641,34 +13014,13 @@ snapshots:
'@rollup/rollup-win32-x64-msvc@4.21.2':
optional: true
- '@sigstore/bundle@2.1.0':
- dependencies:
- '@sigstore/protobuf-specs': 0.2.1
-
- '@sigstore/protobuf-specs@0.2.1': {}
-
- '@sigstore/sign@2.2.0':
- dependencies:
- '@sigstore/bundle': 2.1.0
- '@sigstore/protobuf-specs': 0.2.1
- make-fetch-happen: 13.0.0
- transitivePeerDependencies:
- - supports-color
-
- '@sigstore/tuf@2.2.0':
- dependencies:
- '@sigstore/protobuf-specs': 0.2.1
- tuf-js: 2.1.0
- transitivePeerDependencies:
- - supports-color
-
'@sinclair/typebox@0.25.24': {}
'@sinclair/typebox@0.27.8': {}
'@sindresorhus/is@4.6.0': {}
- '@sindresorhus/merge-streams@1.0.0': {}
+ '@sindresorhus/merge-streams@2.3.0': {}
'@surma/rollup-plugin-off-main-thread@2.2.3':
dependencies:
@@ -12681,31 +13033,31 @@ snapshots:
dependencies:
defer-to-connect: 2.0.1
- '@tabler/icons-vue@3.11.0(vue@3.4.21(typescript@5.3.3))':
+ '@tabler/icons-vue@3.11.0(vue@3.5.3(typescript@5.3.3))':
dependencies:
'@tabler/icons': 3.11.0
- vue: 3.4.21(typescript@5.3.3)
+ vue: 3.5.3(typescript@5.3.3)
'@tabler/icons@3.11.0': {}
- '@tailwindcss/container-queries@0.1.1(tailwindcss@3.4.0(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3)))':
+ '@tailwindcss/container-queries@0.1.1(tailwindcss@3.4.10(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3)))':
dependencies:
- tailwindcss: 3.4.0(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))
+ tailwindcss: 3.4.10(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))
- '@tailwindcss/typography@0.5.10(tailwindcss@3.4.0(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3)))':
+ '@tailwindcss/typography@0.5.15(tailwindcss@3.4.10(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3)))':
dependencies:
lodash.castarray: 4.4.0
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
postcss-selector-parser: 6.0.10
- tailwindcss: 3.4.0(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))
+ tailwindcss: 3.4.10(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))
'@tanstack/virtual-core@3.0.0': {}
- '@tanstack/vue-virtual@3.0.2(vue@3.4.21(typescript@5.3.3))':
+ '@tanstack/vue-virtual@3.0.2(vue@3.5.3(typescript@5.3.3))':
dependencies:
'@tanstack/virtual-core': 3.0.0
- vue: 3.4.21(typescript@5.3.3)
+ vue: 3.5.3(typescript@5.3.3)
'@tootallnate/once@1.1.2': {}
@@ -12728,13 +13080,6 @@ snapshots:
'@tsconfig/node16@1.0.4': {}
- '@tufjs/canonical-json@2.0.0': {}
-
- '@tufjs/models@2.0.0':
- dependencies:
- '@tufjs/canonical-json': 2.0.0
- minimatch: 9.0.3
-
'@tweenjs/tween.js@21.0.0': {}
'@types/acorn@4.0.6':
@@ -12796,7 +13141,7 @@ snapshots:
'@types/http-cache-semantics@4.0.4': {}
- '@types/http-proxy@1.17.14':
+ '@types/http-proxy@1.17.15':
dependencies:
'@types/node': 18.19.4
@@ -12879,8 +13224,6 @@ snapshots:
'@types/uuid@9.0.8': {}
- '@types/web-bluetooth@0.0.16': {}
-
'@types/web-bluetooth@0.0.20': {}
'@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.56.0)(typescript@5.3.3))(eslint@8.56.0)(typescript@5.3.3)':
@@ -12890,12 +13233,12 @@ snapshots:
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/type-utils': 5.62.0(eslint@8.56.0)(typescript@5.3.3)
'@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.3.3)
- debug: 4.3.6
+ debug: 4.3.7
eslint: 8.56.0
graphemer: 1.4.0
ignore: 5.3.2
natural-compare-lite: 1.4.0
- semver: 7.6.0
+ semver: 7.6.3
tsutils: 3.21.0(typescript@5.3.3)
optionalDependencies:
typescript: 5.3.3
@@ -12907,7 +13250,7 @@ snapshots:
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.3)
- debug: 4.3.6
+ debug: 4.3.7
eslint: 8.56.0
optionalDependencies:
typescript: 5.3.3
@@ -12923,7 +13266,7 @@ snapshots:
dependencies:
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.3)
'@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.3.3)
- debug: 4.3.6
+ debug: 4.3.7
eslint: 8.56.0
tsutils: 3.21.0(typescript@5.3.3)
optionalDependencies:
@@ -12937,10 +13280,10 @@ snapshots:
dependencies:
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/visitor-keys': 5.62.0
- debug: 4.3.6
+ debug: 4.3.7
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.6.0
+ semver: 7.6.3
tsutils: 3.21.0(typescript@5.3.3)
optionalDependencies:
typescript: 5.3.3
@@ -12957,7 +13300,7 @@ snapshots:
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.3)
eslint: 8.56.0
eslint-scope: 5.1.1
- semver: 7.6.0
+ semver: 7.6.3
transitivePeerDependencies:
- supports-color
- typescript
@@ -12969,32 +13312,32 @@ snapshots:
'@ungap/structured-clone@1.2.0': {}
- '@unhead/dom@1.8.9':
+ '@unhead/dom@1.10.4':
dependencies:
- '@unhead/schema': 1.8.9
- '@unhead/shared': 1.8.9
+ '@unhead/schema': 1.10.4
+ '@unhead/shared': 1.10.4
- '@unhead/schema@1.8.9':
+ '@unhead/schema@1.10.4':
dependencies:
hookable: 5.5.3
zhead: 2.2.4
- '@unhead/shared@1.8.9':
+ '@unhead/shared@1.10.4':
dependencies:
- '@unhead/schema': 1.8.9
+ '@unhead/schema': 1.10.4
- '@unhead/ssr@1.8.9':
+ '@unhead/ssr@1.10.4':
dependencies:
- '@unhead/schema': 1.8.9
- '@unhead/shared': 1.8.9
+ '@unhead/schema': 1.10.4
+ '@unhead/shared': 1.10.4
- '@unhead/vue@1.8.9(vue@3.4.21(typescript@5.3.3))':
+ '@unhead/vue@1.10.4(vue@3.5.3(typescript@5.3.3))':
dependencies:
- '@unhead/schema': 1.8.9
- '@unhead/shared': 1.8.9
+ '@unhead/schema': 1.10.4
+ '@unhead/shared': 1.10.4
hookable: 5.5.3
- unhead: 1.8.9
- vue: 3.4.21(typescript@5.3.3)
+ unhead: 1.10.4
+ vue: 3.5.3(typescript@5.3.3)
'@vanilla-extract/babel-plugin-debug-ids@1.0.6':
dependencies:
@@ -13019,7 +13362,7 @@ snapshots:
transitivePeerDependencies:
- babel-plugin-macros
- '@vanilla-extract/integration@6.5.0(@types/node@18.19.4)(terser@5.31.0)':
+ '@vanilla-extract/integration@6.5.0(@types/node@18.19.4)(terser@5.31.6)':
dependencies:
'@babel/core': 7.25.2
'@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.25.2)
@@ -13032,8 +13375,8 @@ snapshots:
lodash: 4.17.21
mlly: 1.7.1
outdent: 0.8.0
- vite: 5.4.3(@types/node@18.19.4)(terser@5.31.0)
- vite-node: 1.6.0(@types/node@18.19.4)(terser@5.31.0)
+ vite: 5.4.3(@types/node@18.19.4)(terser@5.31.6)
+ vite-node: 1.6.0(@types/node@18.19.4)(terser@5.31.6)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -13088,24 +13431,25 @@ snapshots:
glob: 7.2.3
graceful-fs: 4.2.11
micromatch: 4.0.8
- node-gyp-build: 4.7.1
+ node-gyp-build: 4.8.2
resolve-from: 5.0.0
transitivePeerDependencies:
- encoding
- supports-color
- '@vercel/nft@0.24.4(encoding@0.1.13)':
+ '@vercel/nft@0.26.5(encoding@0.1.13)':
dependencies:
'@mapbox/node-pre-gyp': 1.0.11(encoding@0.1.13)
'@rollup/pluginutils': 4.2.1
acorn: 8.12.1
+ acorn-import-attributes: 1.9.5(acorn@8.12.1)
async-sema: 3.1.1
bindings: 1.5.0
estree-walker: 2.0.2
glob: 7.2.3
graceful-fs: 4.2.11
micromatch: 4.0.8
- node-gyp-build: 4.7.1
+ node-gyp-build: 4.8.2
resolve-from: 5.0.0
transitivePeerDependencies:
- encoding
@@ -13146,9 +13490,9 @@ snapshots:
- encoding
- supports-color
- '@vercel/remix-builder@1.8.5(@types/node@18.19.4)(encoding@0.1.13)(terser@5.31.0)(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))':
+ '@vercel/remix-builder@1.8.5(@types/node@18.19.4)(encoding@0.1.13)(terser@5.31.6)(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))':
dependencies:
- '@remix-run/dev': '@vercel/remix-run-dev@1.15.0(@types/node@18.19.4)(encoding@0.1.13)(terser@5.31.0)(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))'
+ '@remix-run/dev': '@vercel/remix-run-dev@1.15.0(@types/node@18.19.4)(encoding@0.1.13)(terser@5.31.6)(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))'
'@vercel/build-utils': 6.7.1
'@vercel/nft': 0.22.5(encoding@0.1.13)
'@vercel/static-config': 2.0.16
@@ -13173,7 +13517,7 @@ snapshots:
- ts-node
- utf-8-validate
- '@vercel/remix-run-dev@1.15.0(@types/node@18.19.4)(encoding@0.1.13)(terser@5.31.0)(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))':
+ '@vercel/remix-run-dev@1.15.0(@types/node@18.19.4)(encoding@0.1.13)(terser@5.31.6)(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))':
dependencies:
'@babel/core': 7.25.2
'@babel/generator': 7.25.6
@@ -13187,7 +13531,7 @@ snapshots:
'@esbuild-plugins/node-modules-polyfill': 0.1.4(esbuild@0.16.3)
'@npmcli/package-json': 2.0.0
'@remix-run/server-runtime': 1.15.0
- '@vanilla-extract/integration': 6.5.0(@types/node@18.19.4)(terser@5.31.0)
+ '@vanilla-extract/integration': 6.5.0(@types/node@18.19.4)(terser@5.31.6)
arg: 5.0.2
cacache: 15.3.0
chalk: 4.1.2
@@ -13222,7 +13566,7 @@ snapshots:
recast: 0.21.5
remark-frontmatter: 4.0.1
remark-mdx-frontmatter: 1.1.1
- semver: 7.6.0
+ semver: 7.6.3
sort-package-json: 1.57.0
tar-fs: 2.1.1
tsconfig-paths: 4.2.0
@@ -13268,33 +13612,35 @@ snapshots:
json-schema-to-ts: 1.6.4
ts-morph: 12.0.0
- '@vite-pwa/nuxt@0.4.0(rollup@2.79.1)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))(workbox-build@6.6.0)(workbox-window@6.6.0)':
+ '@vite-pwa/nuxt@0.4.0(magicast@0.3.5)(rollup@2.79.1)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))(webpack-sources@3.2.3)(workbox-build@6.6.0)(workbox-window@6.6.0)':
dependencies:
- '@nuxt/kit': 3.9.0(rollup@2.79.1)
+ '@nuxt/kit': 3.13.1(magicast@0.3.5)(rollup@2.79.1)(webpack-sources@3.2.3)
pathe: 1.1.2
ufo: 1.5.4
- vite-plugin-pwa: 0.17.4(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))(workbox-build@6.6.0)(workbox-window@6.6.0)
+ vite-plugin-pwa: 0.17.4(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))(workbox-build@6.6.0)(workbox-window@6.6.0)
transitivePeerDependencies:
+ - magicast
- rollup
- supports-color
- vite
+ - webpack-sources
- workbox-build
- workbox-window
- '@vitejs/plugin-vue-jsx@3.1.0(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))(vue@3.4.21(typescript@5.3.3))':
+ '@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))(vue@3.5.3(typescript@5.3.3))':
dependencies:
'@babel/core': 7.25.2
'@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
- '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.25.2)
- vite: 5.4.3(@types/node@18.19.4)(terser@5.31.0)
- vue: 3.4.21(typescript@5.3.3)
+ '@vue/babel-plugin-jsx': 1.2.4(@babel/core@7.25.2)
+ vite: 5.4.3(@types/node@18.19.4)(terser@5.31.6)
+ vue: 3.5.3(typescript@5.3.3)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue@5.0.2(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))(vue@3.4.21(typescript@5.3.3))':
+ '@vitejs/plugin-vue@5.1.3(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))(vue@3.5.3(typescript@5.3.3))':
dependencies:
- vite: 5.4.3(@types/node@18.19.4)(terser@5.31.0)
- vue: 3.4.21(typescript@5.3.3)
+ vite: 5.4.3(@types/node@18.19.4)(terser@5.31.6)
+ vue: 3.5.3(typescript@5.3.3)
'@vitest/expect@0.34.6':
dependencies:
@@ -13310,7 +13656,7 @@ snapshots:
'@vitest/snapshot@0.34.6':
dependencies:
- magic-string: 0.30.8
+ magic-string: 0.30.11
pathe: 1.1.2
pretty-format: 29.7.0
@@ -13337,206 +13683,200 @@ snapshots:
'@volar/language-core': 1.11.1
path-browserify: 1.0.1
- '@vue-macros/common@1.10.0(rollup@2.79.1)(vue@3.4.21(typescript@5.3.3))':
+ '@vue-macros/common@1.12.2(rollup@2.79.1)(vue@3.5.3(typescript@5.3.3))':
dependencies:
'@babel/types': 7.25.6
'@rollup/pluginutils': 5.1.0(rollup@2.79.1)
- '@vue/compiler-sfc': 3.4.21
- ast-kit: 0.11.3(rollup@2.79.1)
+ '@vue/compiler-sfc': 3.5.3
+ ast-kit: 1.1.0
local-pkg: 0.5.0
- magic-string-ast: 0.3.0
+ magic-string-ast: 0.6.2
optionalDependencies:
- vue: 3.4.21(typescript@5.3.3)
+ vue: 3.5.3(typescript@5.3.3)
transitivePeerDependencies:
- rollup
- '@vue/babel-helper-vue-transform-on@1.1.5': {}
+ '@vue/babel-helper-vue-transform-on@1.2.4': {}
- '@vue/babel-plugin-jsx@1.1.5(@babel/core@7.25.2)':
+ '@vue/babel-plugin-jsx@1.2.4(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.25.2
'@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
'@babel/template': 7.25.0
'@babel/traverse': 7.25.6
'@babel/types': 7.25.6
- '@vue/babel-helper-vue-transform-on': 1.1.5
- camelcase: 6.3.0
+ '@vue/babel-helper-vue-transform-on': 1.2.4
+ '@vue/babel-plugin-resolve-type': 1.2.4(@babel/core@7.25.2)
html-tags: 3.3.1
svg-tags: 1.0.0
+ optionalDependencies:
+ '@babel/core': 7.25.2
transitivePeerDependencies:
- supports-color
- '@vue/compiler-core@3.4.21':
+ '@vue/babel-plugin-resolve-type@1.2.4(@babel/core@7.25.2)':
dependencies:
+ '@babel/code-frame': 7.24.7
+ '@babel/core': 7.25.2
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/parser': 7.25.6
- '@vue/shared': 3.4.21
- entities: 4.5.0
- estree-walker: 2.0.2
- source-map-js: 1.2.0
+ '@vue/compiler-sfc': 3.5.3
+ transitivePeerDependencies:
+ - supports-color
- '@vue/compiler-core@3.4.27':
+ '@vue/compiler-core@3.5.3':
dependencies:
'@babel/parser': 7.25.6
- '@vue/shared': 3.4.27
+ '@vue/shared': 3.5.3
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.0
- '@vue/compiler-dom@3.4.21':
- dependencies:
- '@vue/compiler-core': 3.4.21
- '@vue/shared': 3.4.21
-
- '@vue/compiler-dom@3.4.27':
+ '@vue/compiler-dom@3.5.3':
dependencies:
- '@vue/compiler-core': 3.4.27
- '@vue/shared': 3.4.27
+ '@vue/compiler-core': 3.5.3
+ '@vue/shared': 3.5.3
- '@vue/compiler-sfc@3.4.21':
+ '@vue/compiler-sfc@3.5.3':
dependencies:
'@babel/parser': 7.25.6
- '@vue/compiler-core': 3.4.21
- '@vue/compiler-dom': 3.4.21
- '@vue/compiler-ssr': 3.4.21
- '@vue/shared': 3.4.21
+ '@vue/compiler-core': 3.5.3
+ '@vue/compiler-dom': 3.5.3
+ '@vue/compiler-ssr': 3.5.3
+ '@vue/shared': 3.5.3
estree-walker: 2.0.2
- magic-string: 0.30.8
+ magic-string: 0.30.11
postcss: 8.4.45
source-map-js: 1.2.0
- '@vue/compiler-ssr@3.4.21':
+ '@vue/compiler-ssr@3.5.3':
dependencies:
- '@vue/compiler-dom': 3.4.21
- '@vue/shared': 3.4.21
+ '@vue/compiler-dom': 3.5.3
+ '@vue/shared': 3.5.3
+
+ '@vue/devtools-api@6.6.3': {}
- '@vue/compiler-ssr@3.4.27':
+ '@vue/devtools-core@7.3.3(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))':
dependencies:
- '@vue/compiler-dom': 3.4.27
- '@vue/shared': 3.4.27
- optional: true
+ '@vue/devtools-kit': 7.3.3
+ '@vue/devtools-shared': 7.4.4
+ mitt: 3.0.1
+ nanoid: 3.3.7
+ pathe: 1.1.2
+ vite-hot-client: 0.2.3(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))
+ transitivePeerDependencies:
+ - vite
+
+ '@vue/devtools-kit@7.3.3':
+ dependencies:
+ '@vue/devtools-shared': 7.4.4
+ birpc: 0.2.17
+ hookable: 5.5.3
+ mitt: 3.0.1
+ perfect-debounce: 1.0.0
+ speakingurl: 14.0.1
+ superjson: 2.2.1
- '@vue/devtools-api@6.5.1': {}
+ '@vue/devtools-shared@7.4.4':
+ dependencies:
+ rfdc: 1.4.1
'@vue/language-core@1.8.27(typescript@5.3.3)':
dependencies:
'@volar/language-core': 1.11.1
'@volar/source-map': 1.11.1
- '@vue/compiler-dom': 3.4.27
- '@vue/shared': 3.4.27
+ '@vue/compiler-dom': 3.5.3
+ '@vue/shared': 3.5.3
computeds: 0.0.1
- minimatch: 9.0.3
+ minimatch: 9.0.5
muggle-string: 0.3.1
path-browserify: 1.0.1
vue-template-compiler: 2.7.16
optionalDependencies:
typescript: 5.3.3
- '@vue/reactivity@3.4.21':
+ '@vue/reactivity@3.5.3':
dependencies:
- '@vue/shared': 3.4.21
+ '@vue/shared': 3.5.3
- '@vue/runtime-core@3.4.21':
+ '@vue/runtime-core@3.5.3':
dependencies:
- '@vue/reactivity': 3.4.21
- '@vue/shared': 3.4.21
+ '@vue/reactivity': 3.5.3
+ '@vue/shared': 3.5.3
- '@vue/runtime-dom@3.4.21':
+ '@vue/runtime-dom@3.5.3':
dependencies:
- '@vue/runtime-core': 3.4.21
- '@vue/shared': 3.4.21
+ '@vue/reactivity': 3.5.3
+ '@vue/runtime-core': 3.5.3
+ '@vue/shared': 3.5.3
csstype: 3.1.3
- '@vue/server-renderer@3.4.21(vue@3.4.21(typescript@5.3.3))':
+ '@vue/server-renderer@3.5.3(vue@3.5.3(typescript@5.3.3))':
dependencies:
- '@vue/compiler-ssr': 3.4.21
- '@vue/shared': 3.4.21
- vue: 3.4.21(typescript@5.3.3)
-
- '@vue/server-renderer@3.4.27(vue@3.4.21(typescript@5.3.3))':
- dependencies:
- '@vue/compiler-ssr': 3.4.27
- '@vue/shared': 3.4.27
- vue: 3.4.21(typescript@5.3.3)
- optional: true
-
- '@vue/shared@3.4.21': {}
+ '@vue/compiler-ssr': 3.5.3
+ '@vue/shared': 3.5.3
+ vue: 3.5.3(typescript@5.3.3)
- '@vue/shared@3.4.27': {}
+ '@vue/shared@3.5.3': {}
- '@vue/test-utils@2.4.3(@vue/server-renderer@3.4.27(vue@3.4.21(typescript@5.3.3)))(vue@3.4.21(typescript@5.3.3))':
+ '@vue/test-utils@2.4.3(@vue/server-renderer@3.5.3(vue@3.5.3(typescript@5.3.3)))(vue@3.5.3(typescript@5.3.3))':
dependencies:
js-beautify: 1.14.11
- vue: 3.4.21(typescript@5.3.3)
+ vue: 3.5.3(typescript@5.3.3)
vue-component-type-helpers: 1.8.27
optionalDependencies:
- '@vue/server-renderer': 3.4.27(vue@3.4.21(typescript@5.3.3))
+ '@vue/server-renderer': 3.5.3(vue@3.5.3(typescript@5.3.3))
- '@vueuse/core@10.7.1(vue@3.4.21(typescript@5.3.3))':
+ '@vueuse/core@11.0.3(vue@3.5.3(typescript@5.3.3))':
dependencies:
'@types/web-bluetooth': 0.0.20
- '@vueuse/metadata': 10.7.1
- '@vueuse/shared': 10.7.1(vue@3.4.21(typescript@5.3.3))
- vue-demi: 0.14.6(vue@3.4.21(typescript@5.3.3))
+ '@vueuse/metadata': 11.0.3
+ '@vueuse/shared': 11.0.3(vue@3.5.3(typescript@5.3.3))
+ vue-demi: 0.14.10(vue@3.5.3(typescript@5.3.3))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/core@9.13.0(vue@3.4.21(typescript@5.3.3))':
+ '@vueuse/head@2.0.0(vue@3.5.3(typescript@5.3.3))':
dependencies:
- '@types/web-bluetooth': 0.0.16
- '@vueuse/metadata': 9.13.0
- '@vueuse/shared': 9.13.0(vue@3.4.21(typescript@5.3.3))
- vue-demi: 0.14.6(vue@3.4.21(typescript@5.3.3))
- transitivePeerDependencies:
- - '@vue/composition-api'
- - vue
-
- '@vueuse/head@1.3.1(vue@3.4.21(typescript@5.3.3))':
- dependencies:
- '@unhead/dom': 1.8.9
- '@unhead/schema': 1.8.9
- '@unhead/ssr': 1.8.9
- '@unhead/vue': 1.8.9(vue@3.4.21(typescript@5.3.3))
- vue: 3.4.21(typescript@5.3.3)
-
- '@vueuse/metadata@10.7.1': {}
+ '@unhead/dom': 1.10.4
+ '@unhead/schema': 1.10.4
+ '@unhead/ssr': 1.10.4
+ '@unhead/vue': 1.10.4(vue@3.5.3(typescript@5.3.3))
+ vue: 3.5.3(typescript@5.3.3)
- '@vueuse/metadata@9.13.0': {}
+ '@vueuse/metadata@11.0.3': {}
- '@vueuse/nuxt@9.13.0(nuxt@3.9.0(@parcel/watcher@2.4.1)(@types/node@18.19.4)(encoding@0.1.13)(eslint@8.56.0)(optionator@0.9.4)(rollup@2.79.1)(terser@5.31.0)(typescript@5.3.3)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))(vue-tsc@1.8.27(typescript@5.3.3)))(rollup@2.79.1)(vue@3.4.21(typescript@5.3.3))':
+ '@vueuse/nuxt@11.0.3(magicast@0.3.5)(nuxt@3.13.1(@parcel/watcher@2.4.1)(@types/node@18.19.4)(encoding@0.1.13)(eslint@8.56.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@2.79.1)(terser@5.31.6)(typescript@5.3.3)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))(vue-tsc@1.8.27(typescript@5.3.3))(webpack-sources@3.2.3))(rollup@2.79.1)(vue@3.5.3(typescript@5.3.3))(webpack-sources@3.2.3)':
dependencies:
- '@nuxt/kit': 3.9.0(rollup@2.79.1)
- '@vueuse/core': 9.13.0(vue@3.4.21(typescript@5.3.3))
- '@vueuse/metadata': 9.13.0
- local-pkg: 0.4.3
- nuxt: 3.9.0(@parcel/watcher@2.4.1)(@types/node@18.19.4)(encoding@0.1.13)(eslint@8.56.0)(optionator@0.9.4)(rollup@2.79.1)(terser@5.31.0)(typescript@5.3.3)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))(vue-tsc@1.8.27(typescript@5.3.3))
- vue-demi: 0.14.6(vue@3.4.21(typescript@5.3.3))
+ '@nuxt/kit': 3.13.1(magicast@0.3.5)(rollup@2.79.1)(webpack-sources@3.2.3)
+ '@vueuse/core': 11.0.3(vue@3.5.3(typescript@5.3.3))
+ '@vueuse/metadata': 11.0.3
+ local-pkg: 0.5.0
+ nuxt: 3.13.1(@parcel/watcher@2.4.1)(@types/node@18.19.4)(encoding@0.1.13)(eslint@8.56.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@2.79.1)(terser@5.31.6)(typescript@5.3.3)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))(vue-tsc@1.8.27(typescript@5.3.3))(webpack-sources@3.2.3)
+ vue-demi: 0.14.10(vue@3.5.3(typescript@5.3.3))
transitivePeerDependencies:
- '@vue/composition-api'
+ - magicast
- rollup
- supports-color
- vue
+ - webpack-sources
- '@vueuse/rxjs@10.7.1(rxjs@7.8.1)(vue@3.4.21(typescript@5.3.3))':
+ '@vueuse/rxjs@11.0.3(rxjs@7.8.1)(vue@3.5.3(typescript@5.3.3))':
dependencies:
- '@vueuse/shared': 10.7.1(vue@3.4.21(typescript@5.3.3))
+ '@vueuse/shared': 11.0.3(vue@3.5.3(typescript@5.3.3))
rxjs: 7.8.1
- vue-demi: 0.14.6(vue@3.4.21(typescript@5.3.3))
+ vue-demi: 0.14.10(vue@3.5.3(typescript@5.3.3))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/shared@10.7.1(vue@3.4.21(typescript@5.3.3))':
+ '@vueuse/shared@11.0.3(vue@3.5.3(typescript@5.3.3))':
dependencies:
- vue-demi: 0.14.6(vue@3.4.21(typescript@5.3.3))
- transitivePeerDependencies:
- - '@vue/composition-api'
- - vue
-
- '@vueuse/shared@9.13.0(vue@3.4.21(typescript@5.3.3))':
- dependencies:
- vue-demi: 0.14.6(vue@3.4.21(typescript@5.3.3))
+ vue-demi: 0.14.10(vue@3.5.3(typescript@5.3.3))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -13560,6 +13900,10 @@ snapshots:
accessor-fn@1.5.0: {}
+ acorn-import-attributes@1.9.5(acorn@8.12.1):
+ dependencies:
+ acorn: 8.12.1
+
acorn-jsx@5.3.2(acorn@8.12.1):
dependencies:
acorn: 8.12.1
@@ -13568,19 +13912,17 @@ snapshots:
dependencies:
acorn: 8.12.1
- acorn@8.11.2: {}
-
acorn@8.12.1: {}
agent-base@6.0.2:
dependencies:
- debug: 4.3.6
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
- agent-base@7.1.0:
+ agent-base@7.1.1:
dependencies:
- debug: 4.3.6
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -13700,34 +14042,35 @@ snapshots:
normalize-path: 3.0.0
readable-stream: 3.6.2
- archiver-utils@4.0.1:
+ archiver-utils@5.0.2:
dependencies:
- glob: 8.1.0
+ glob: 10.4.5
graceful-fs: 4.2.11
+ is-stream: 2.0.1
lazystream: 1.0.1
lodash: 4.17.21
normalize-path: 3.0.0
- readable-stream: 3.6.2
+ readable-stream: 4.5.2
archiver@5.3.2:
dependencies:
archiver-utils: 2.1.0
- async: 3.2.5
+ async: 3.2.6
buffer-crc32: 0.2.13
readable-stream: 3.6.2
readdir-glob: 1.1.3
tar-stream: 2.2.0
zip-stream: 4.1.1
- archiver@6.0.1:
+ archiver@7.0.1:
dependencies:
- archiver-utils: 4.0.1
- async: 3.2.5
- buffer-crc32: 0.2.13
- readable-stream: 3.6.2
+ archiver-utils: 5.0.2
+ async: 3.2.6
+ buffer-crc32: 1.0.0
+ readable-stream: 4.5.2
readdir-glob: 1.1.3
- tar-stream: 3.1.6
- zip-stream: 5.0.1
+ tar-stream: 3.1.7
+ zip-stream: 6.0.1
are-we-there-yet@1.1.7:
dependencies:
@@ -13821,21 +14164,10 @@ snapshots:
assertion-error@1.1.0: {}
- ast-kit@0.11.3(rollup@2.79.1):
- dependencies:
- '@babel/parser': 7.25.6
- '@rollup/pluginutils': 5.1.0(rollup@2.79.1)
- pathe: 1.1.2
- transitivePeerDependencies:
- - rollup
-
- ast-kit@0.9.5(rollup@2.79.1):
+ ast-kit@1.1.0:
dependencies:
'@babel/parser': 7.25.6
- '@rollup/pluginutils': 5.1.0(rollup@2.79.1)
pathe: 1.1.2
- transitivePeerDependencies:
- - rollup
ast-types@0.13.4:
dependencies:
@@ -13845,12 +14177,10 @@ snapshots:
dependencies:
tslib: 2.7.0
- ast-walker-scope@0.5.0(rollup@2.79.1):
+ ast-walker-scope@0.6.2:
dependencies:
'@babel/parser': 7.25.6
- ast-kit: 0.9.5(rollup@2.79.1)
- transitivePeerDependencies:
- - rollup
+ ast-kit: 1.1.0
astring@1.9.0: {}
@@ -13866,7 +14196,7 @@ snapshots:
dependencies:
lodash: 4.17.21
- async@3.2.5: {}
+ async@3.2.6: {}
asynckit@0.4.0: {}
@@ -13876,10 +14206,10 @@ snapshots:
dependencies:
tslib: 2.7.0
- autoprefixer@10.4.16(postcss@8.4.45):
+ autoprefixer@10.4.20(postcss@8.4.45):
dependencies:
browserslist: 4.23.3
- caniuse-lite: 1.0.30001655
+ caniuse-lite: 1.0.30001658
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.0
@@ -13890,20 +14220,20 @@ snapshots:
axios@0.26.1:
dependencies:
- follow-redirects: 1.15.8
+ follow-redirects: 1.15.9
transitivePeerDependencies:
- debug
- axios@1.6.8:
+ axios@1.7.7:
dependencies:
- follow-redirects: 1.15.8
+ follow-redirects: 1.15.9
form-data: 4.0.0
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
optional: true
- b4a@1.6.4: {}
+ b4a@1.6.6: {}
babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.2):
dependencies:
@@ -13933,6 +14263,9 @@ snapshots:
balanced-match@1.0.2: {}
+ bare-events@2.4.2:
+ optional: true
+
base64-js@1.5.1: {}
basic-auth-connect@1.0.0: {}
@@ -13945,8 +14278,6 @@ snapshots:
bezier-js@6.1.4: {}
- big-integer@1.6.52: {}
-
big.js@5.2.2: {}
bignumber.js@9.1.2: {}
@@ -13959,7 +14290,7 @@ snapshots:
dependencies:
file-uri-to-path: 1.0.0
- birpc@0.2.14: {}
+ birpc@0.2.17: {}
bl@4.1.0:
dependencies:
@@ -14014,10 +14345,6 @@ snapshots:
widest-line: 4.0.1
wrap-ansi: 8.1.0
- bplist-parser@0.2.0:
- dependencies:
- big-integer: 1.6.52
-
brace-expansion@1.1.11:
dependencies:
balanced-match: 1.0.2
@@ -14086,13 +14413,15 @@ snapshots:
browserslist@4.23.3:
dependencies:
- caniuse-lite: 1.0.30001655
+ caniuse-lite: 1.0.30001658
electron-to-chromium: 1.5.14
node-releases: 2.0.18
update-browserslist-db: 1.1.0(browserslist@4.23.3)
buffer-crc32@0.2.13: {}
+ buffer-crc32@1.0.0: {}
+
buffer-equal-constant-time@1.0.1: {}
buffer-from@1.1.2: {}
@@ -14115,29 +14444,32 @@ snapshots:
builtins@5.0.1:
dependencies:
- semver: 7.6.0
+ semver: 7.6.3
- bundle-name@3.0.0:
+ bundle-name@4.1.0:
dependencies:
- run-applescript: 5.0.0
+ run-applescript: 7.0.0
bytes@3.0.0: {}
bytes@3.1.2: {}
- c12@1.6.1:
+ c12@1.11.2(magicast@0.3.5):
dependencies:
chokidar: 3.6.0
- defu: 6.1.3
+ confbox: 0.1.7
+ defu: 6.1.4
dotenv: 16.4.5
- giget: 1.2.1
- jiti: 1.21.0
+ giget: 1.2.3
+ jiti: 1.21.6
mlly: 1.7.1
ohash: 1.1.3
pathe: 1.1.2
perfect-debounce: 1.0.0
pkg-types: 1.2.0
- rc9: 2.1.1
+ rc9: 2.1.2
+ optionalDependencies:
+ magicast: 0.3.5
cac@6.7.14: {}
@@ -14168,9 +14500,9 @@ snapshots:
dependencies:
'@npmcli/fs': 3.1.0
fs-minipass: 3.0.3
- glob: 10.3.10
+ glob: 10.4.5
lru-cache: 10.4.3
- minipass: 7.0.4
+ minipass: 7.1.2
minipass-collect: 2.0.1
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
@@ -14178,11 +14510,12 @@ snapshots:
ssri: 10.0.5
tar: 6.2.1
unique-filename: 3.0.0
+ optional: true
cache-content-type@1.0.1:
dependencies:
mime-types: 2.1.35
- ylru: 1.3.2
+ ylru: 1.4.0
cacheable-lookup@5.0.4: {}
@@ -14217,11 +14550,11 @@ snapshots:
caniuse-api@3.0.0:
dependencies:
browserslist: 4.23.3
- caniuse-lite: 1.0.30001655
+ caniuse-lite: 1.0.30001658
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- caniuse-lite@1.0.30001655: {}
+ caniuse-lite@1.0.30001658: {}
canvas-color-tracker@1.2.1:
dependencies:
@@ -14334,7 +14667,7 @@ snapshots:
inherits: 2.0.4
safe-buffer: 5.2.1
- citty@0.1.5:
+ citty@0.1.6:
dependencies:
consola: 3.2.3
@@ -14348,11 +14681,6 @@ snapshots:
clean-stack@2.2.0: {}
- clear-module@4.1.2:
- dependencies:
- parent-module: 2.0.0
- resolve-from: 5.0.0
-
clear@0.1.0: {}
cli-boxes@2.2.1: {}
@@ -14396,6 +14724,12 @@ snapshots:
execa: 5.1.1
is-wsl: 2.2.0
+ clipboardy@4.0.0:
+ dependencies:
+ execa: 8.0.1
+ is-wsl: 3.1.0
+ is64bit: 2.0.0
+
cliui@8.0.1:
dependencies:
string-width: 4.2.3
@@ -14483,6 +14817,8 @@ snapshots:
commondir@1.0.1: {}
+ compatx@0.1.8: {}
+
compress-commons@4.1.2:
dependencies:
buffer-crc32: 0.2.13
@@ -14490,12 +14826,13 @@ snapshots:
normalize-path: 3.0.0
readable-stream: 3.6.2
- compress-commons@5.0.1:
+ compress-commons@6.0.2:
dependencies:
crc-32: 1.2.2
- crc32-stream: 5.0.0
+ crc32-stream: 6.0.0
+ is-stream: 2.0.1
normalize-path: 3.0.0
- readable-stream: 3.6.2
+ readable-stream: 4.5.2
compressible@2.0.18:
dependencies:
@@ -14569,7 +14906,7 @@ snapshots:
convert-source-map@2.0.0: {}
- cookie-es@1.0.0: {}
+ cookie-es@1.2.2: {}
cookie-signature@1.0.6: {}
@@ -14577,11 +14914,15 @@ snapshots:
cookie@0.6.0: {}
- cookies@0.9.0:
+ cookies@0.9.1:
dependencies:
depd: 2.0.0
keygrip: 1.1.0
+ copy-anything@3.0.5:
+ dependencies:
+ is-what: 4.1.16
+
core-js-compat@3.38.1:
dependencies:
browserslist: 4.23.3
@@ -14608,10 +14949,10 @@ snapshots:
crc-32: 1.2.2
readable-stream: 3.6.2
- crc32-stream@5.0.0:
+ crc32-stream@6.0.0:
dependencies:
crc-32: 1.2.2
- readable-stream: 3.6.2
+ readable-stream: 4.5.2
create-ecdh@4.0.4:
dependencies:
@@ -14639,6 +14980,10 @@ snapshots:
crelt@1.0.6: {}
+ croner@8.1.1: {}
+
+ cronstrue@2.50.0: {}
+
cross-env@5.2.1:
dependencies:
cross-spawn: 6.0.5
@@ -14663,6 +15008,8 @@ snapshots:
shebang-command: 2.0.0
which: 2.0.2
+ crossws@0.2.4: {}
+
crypto-browserify@3.12.0:
dependencies:
browserify-cipher: 1.0.1
@@ -14679,7 +15026,7 @@ snapshots:
crypto-random-string@2.0.0: {}
- css-declaration-sorter@7.1.1(postcss@8.4.45):
+ css-declaration-sorter@7.2.0(postcss@8.4.45):
dependencies:
postcss: 8.4.45
@@ -14720,47 +15067,48 @@ snapshots:
cssesc@3.0.0: {}
- cssnano-preset-default@6.0.2(postcss@8.4.45):
+ cssnano-preset-default@7.0.6(postcss@8.4.45):
dependencies:
- css-declaration-sorter: 7.1.1(postcss@8.4.45)
- cssnano-utils: 4.0.1(postcss@8.4.45)
+ browserslist: 4.23.3
+ css-declaration-sorter: 7.2.0(postcss@8.4.45)
+ cssnano-utils: 5.0.0(postcss@8.4.45)
postcss: 8.4.45
- postcss-calc: 9.0.1(postcss@8.4.45)
- postcss-colormin: 6.0.1(postcss@8.4.45)
- postcss-convert-values: 6.0.1(postcss@8.4.45)
- postcss-discard-comments: 6.0.1(postcss@8.4.45)
- postcss-discard-duplicates: 6.0.1(postcss@8.4.45)
- postcss-discard-empty: 6.0.1(postcss@8.4.45)
- postcss-discard-overridden: 6.0.1(postcss@8.4.45)
- postcss-merge-longhand: 6.0.1(postcss@8.4.45)
- postcss-merge-rules: 6.0.2(postcss@8.4.45)
- postcss-minify-font-values: 6.0.1(postcss@8.4.45)
- postcss-minify-gradients: 6.0.1(postcss@8.4.45)
- postcss-minify-params: 6.0.1(postcss@8.4.45)
- postcss-minify-selectors: 6.0.1(postcss@8.4.45)
- postcss-normalize-charset: 6.0.1(postcss@8.4.45)
- postcss-normalize-display-values: 6.0.1(postcss@8.4.45)
- postcss-normalize-positions: 6.0.1(postcss@8.4.45)
- postcss-normalize-repeat-style: 6.0.1(postcss@8.4.45)
- postcss-normalize-string: 6.0.1(postcss@8.4.45)
- postcss-normalize-timing-functions: 6.0.1(postcss@8.4.45)
- postcss-normalize-unicode: 6.0.1(postcss@8.4.45)
- postcss-normalize-url: 6.0.1(postcss@8.4.45)
- postcss-normalize-whitespace: 6.0.1(postcss@8.4.45)
- postcss-ordered-values: 6.0.1(postcss@8.4.45)
- postcss-reduce-initial: 6.0.1(postcss@8.4.45)
- postcss-reduce-transforms: 6.0.1(postcss@8.4.45)
- postcss-svgo: 6.0.1(postcss@8.4.45)
- postcss-unique-selectors: 6.0.1(postcss@8.4.45)
-
- cssnano-utils@4.0.1(postcss@8.4.45):
+ postcss-calc: 10.0.2(postcss@8.4.45)
+ postcss-colormin: 7.0.2(postcss@8.4.45)
+ postcss-convert-values: 7.0.4(postcss@8.4.45)
+ postcss-discard-comments: 7.0.3(postcss@8.4.45)
+ postcss-discard-duplicates: 7.0.1(postcss@8.4.45)
+ postcss-discard-empty: 7.0.0(postcss@8.4.45)
+ postcss-discard-overridden: 7.0.0(postcss@8.4.45)
+ postcss-merge-longhand: 7.0.4(postcss@8.4.45)
+ postcss-merge-rules: 7.0.4(postcss@8.4.45)
+ postcss-minify-font-values: 7.0.0(postcss@8.4.45)
+ postcss-minify-gradients: 7.0.0(postcss@8.4.45)
+ postcss-minify-params: 7.0.2(postcss@8.4.45)
+ postcss-minify-selectors: 7.0.4(postcss@8.4.45)
+ postcss-normalize-charset: 7.0.0(postcss@8.4.45)
+ postcss-normalize-display-values: 7.0.0(postcss@8.4.45)
+ postcss-normalize-positions: 7.0.0(postcss@8.4.45)
+ postcss-normalize-repeat-style: 7.0.0(postcss@8.4.45)
+ postcss-normalize-string: 7.0.0(postcss@8.4.45)
+ postcss-normalize-timing-functions: 7.0.0(postcss@8.4.45)
+ postcss-normalize-unicode: 7.0.2(postcss@8.4.45)
+ postcss-normalize-url: 7.0.0(postcss@8.4.45)
+ postcss-normalize-whitespace: 7.0.0(postcss@8.4.45)
+ postcss-ordered-values: 7.0.1(postcss@8.4.45)
+ postcss-reduce-initial: 7.0.2(postcss@8.4.45)
+ postcss-reduce-transforms: 7.0.0(postcss@8.4.45)
+ postcss-svgo: 7.0.1(postcss@8.4.45)
+ postcss-unique-selectors: 7.0.3(postcss@8.4.45)
+
+ cssnano-utils@5.0.0(postcss@8.4.45):
dependencies:
postcss: 8.4.45
- cssnano@6.0.2(postcss@8.4.45):
+ cssnano@7.0.6(postcss@8.4.45):
dependencies:
- cssnano-preset-default: 6.0.2(postcss@8.4.45)
- lilconfig: 3.0.0
+ cssnano-preset-default: 7.0.6(postcss@8.4.45)
+ lilconfig: 3.1.2
postcss: 8.4.45
csso@4.2.0:
@@ -14969,6 +15317,8 @@ snapshots:
dayjs@1.11.10: {}
+ db0@0.1.4: {}
+
de-indent@1.0.2: {}
deasync@0.1.30:
@@ -14989,9 +15339,9 @@ snapshots:
dependencies:
ms: 2.1.2
- debug@4.3.6:
+ debug@4.3.7:
dependencies:
- ms: 2.1.2
+ ms: 2.1.3
decamelize@1.2.0: {}
@@ -15023,17 +15373,12 @@ snapshots:
deepmerge@4.3.1: {}
- default-browser-id@3.0.0:
- dependencies:
- bplist-parser: 0.2.0
- untildify: 4.0.0
+ default-browser-id@5.0.0: {}
- default-browser@4.0.0:
+ default-browser@5.2.1:
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
defaults@1.0.4:
dependencies:
@@ -15057,7 +15402,7 @@ snapshots:
has-property-descriptors: 1.0.2
object-keys: 1.1.1
- defu@6.1.3: {}
+ defu@6.1.4: {}
degenerator@3.0.4:
dependencies:
@@ -15093,7 +15438,7 @@ snapshots:
inherits: 2.0.4
minimalistic-assert: 1.0.1
- destr@2.0.2: {}
+ destr@2.0.3: {}
destroy@1.2.0: {}
@@ -15105,7 +15450,7 @@ snapshots:
detect-newline@3.1.0: {}
- devalue@4.3.2: {}
+ devalue@5.0.0: {}
dexie@3.2.4: {}
@@ -15115,7 +15460,7 @@ snapshots:
diff@4.0.2: {}
- diff@5.1.0: {}
+ diff@5.2.0: {}
diffie-hellman@5.0.3:
dependencies:
@@ -15224,7 +15569,7 @@ snapshots:
'@one-ini/wasm': 0.1.1
commander: 10.0.1
minimatch: 9.0.1
- semver: 7.6.0
+ semver: 7.6.3
ee-first@1.1.1: {}
@@ -15265,7 +15610,7 @@ snapshots:
dependencies:
once: 1.4.0
- enhanced-resolve@5.15.0:
+ enhanced-resolve@5.17.1:
dependencies:
graceful-fs: 4.2.11
tapable: 2.2.1
@@ -15276,15 +15621,19 @@ snapshots:
entities@4.5.0: {}
- env-paths@2.2.1: {}
+ env-paths@2.2.1:
+ optional: true
- err-code@2.0.3: {}
+ err-code@2.0.3:
+ optional: true
error-ex@1.3.2:
dependencies:
is-arrayish: 0.2.1
- error-stack-parser-es@0.1.1: {}
+ error-stack-parser-es@0.1.5: {}
+
+ errx@0.1.0: {}
es-abstract@1.22.3:
dependencies:
@@ -15484,6 +15833,32 @@ snapshots:
'@esbuild/win32-ia32': 0.19.12
'@esbuild/win32-x64': 0.19.12
+ esbuild@0.20.2:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.20.2
+ '@esbuild/android-arm': 0.20.2
+ '@esbuild/android-arm64': 0.20.2
+ '@esbuild/android-x64': 0.20.2
+ '@esbuild/darwin-arm64': 0.20.2
+ '@esbuild/darwin-x64': 0.20.2
+ '@esbuild/freebsd-arm64': 0.20.2
+ '@esbuild/freebsd-x64': 0.20.2
+ '@esbuild/linux-arm': 0.20.2
+ '@esbuild/linux-arm64': 0.20.2
+ '@esbuild/linux-ia32': 0.20.2
+ '@esbuild/linux-loong64': 0.20.2
+ '@esbuild/linux-mips64el': 0.20.2
+ '@esbuild/linux-ppc64': 0.20.2
+ '@esbuild/linux-riscv64': 0.20.2
+ '@esbuild/linux-s390x': 0.20.2
+ '@esbuild/linux-x64': 0.20.2
+ '@esbuild/netbsd-x64': 0.20.2
+ '@esbuild/openbsd-x64': 0.20.2
+ '@esbuild/sunos-x64': 0.20.2
+ '@esbuild/win32-arm64': 0.20.2
+ '@esbuild/win32-ia32': 0.20.2
+ '@esbuild/win32-x64': 0.20.2
+
esbuild@0.21.5:
optionalDependencies:
'@esbuild/aix-ppc64': 0.21.5
@@ -15510,6 +15885,33 @@ snapshots:
'@esbuild/win32-ia32': 0.21.5
'@esbuild/win32-x64': 0.21.5
+ esbuild@0.23.1:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.23.1
+ '@esbuild/android-arm': 0.23.1
+ '@esbuild/android-arm64': 0.23.1
+ '@esbuild/android-x64': 0.23.1
+ '@esbuild/darwin-arm64': 0.23.1
+ '@esbuild/darwin-x64': 0.23.1
+ '@esbuild/freebsd-arm64': 0.23.1
+ '@esbuild/freebsd-x64': 0.23.1
+ '@esbuild/linux-arm': 0.23.1
+ '@esbuild/linux-arm64': 0.23.1
+ '@esbuild/linux-ia32': 0.23.1
+ '@esbuild/linux-loong64': 0.23.1
+ '@esbuild/linux-mips64el': 0.23.1
+ '@esbuild/linux-ppc64': 0.23.1
+ '@esbuild/linux-riscv64': 0.23.1
+ '@esbuild/linux-s390x': 0.23.1
+ '@esbuild/linux-x64': 0.23.1
+ '@esbuild/netbsd-x64': 0.23.1
+ '@esbuild/openbsd-arm64': 0.23.1
+ '@esbuild/openbsd-x64': 0.23.1
+ '@esbuild/sunos-x64': 0.23.1
+ '@esbuild/win32-arm64': 0.23.1
+ '@esbuild/win32-ia32': 0.23.1
+ '@esbuild/win32-x64': 0.23.1
+
escalade@3.2.0: {}
escape-goat@2.1.1: {}
@@ -15670,7 +16072,7 @@ snapshots:
is-core-module: 2.13.1
minimatch: 3.1.2
resolve: 1.22.8
- semver: 7.6.0
+ semver: 7.6.3
eslint-plugin-no-only-tests@3.1.0: {}
@@ -15695,7 +16097,7 @@ snapshots:
regexp-tree: 0.1.27
regjsparser: 0.9.1
safe-regex: 2.1.1
- semver: 7.6.0
+ semver: 7.6.3
strip-indent: 3.0.0
eslint-plugin-unused-imports@2.0.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.56.0)(typescript@5.3.3))(eslint@8.56.0)(typescript@5.3.3))(eslint@8.56.0):
@@ -15712,7 +16114,7 @@ snapshots:
natural-compare: 1.4.0
nth-check: 2.1.1
postcss-selector-parser: 6.1.2
- semver: 7.6.0
+ semver: 7.6.3
vue-eslint-parser: 9.3.2(eslint@8.56.0)
xml-name-validator: 4.0.0
transitivePeerDependencies:
@@ -15720,7 +16122,7 @@ snapshots:
eslint-plugin-yml@1.11.0(eslint@8.56.0):
dependencies:
- debug: 4.3.6
+ debug: 4.3.7
eslint: 8.56.0
eslint-compat-utils: 0.1.2(eslint@8.56.0)
lodash: 4.17.21
@@ -15769,7 +16171,7 @@ snapshots:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.6
+ debug: 4.3.7
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.2.2
@@ -15893,7 +16295,7 @@ snapshots:
human-signals: 4.3.1
is-stream: 3.0.0
merge-stream: 2.0.0
- npm-run-path: 5.2.0
+ npm-run-path: 5.3.0
onetime: 6.0.0
signal-exit: 3.0.7
strip-final-newline: 3.0.0
@@ -15905,7 +16307,7 @@ snapshots:
human-signals: 5.0.0
is-stream: 3.0.0
merge-stream: 2.0.0
- npm-run-path: 5.2.0
+ npm-run-path: 5.3.0
onetime: 6.0.0
signal-exit: 4.1.0
strip-final-newline: 3.0.0
@@ -15934,7 +16336,7 @@ snapshots:
pump: 3.0.0
qs: 6.11.2
raw-body: 2.5.2
- semver: 7.6.0
+ semver: 7.6.3
transitivePeerDependencies:
- supports-color
@@ -15942,7 +16344,8 @@ snapshots:
exit-hook@2.2.1: {}
- exponential-backoff@3.1.1: {}
+ exponential-backoff@3.1.1:
+ optional: true
expr-eval@2.0.2: {}
@@ -15998,7 +16401,7 @@ snapshots:
externality@1.0.2:
dependencies:
- enhanced-resolve: 5.15.0
+ enhanced-resolve: 5.17.1
mlly: 1.7.1
pathe: 1.1.2
ufo: 1.5.4
@@ -16029,6 +16432,8 @@ snapshots:
fast-levenshtein@2.0.6: {}
+ fast-npm-meta@0.2.2: {}
+
fast-text-encoding@1.0.6: {}
fast-url-parser@1.1.3:
@@ -16047,6 +16452,10 @@ snapshots:
dependencies:
websocket-driver: 0.7.4
+ fdir@6.3.0(picomatch@4.0.2):
+ optionalDependencies:
+ picomatch: 4.0.2
+
fecha@4.2.3: {}
figures@1.7.0:
@@ -16160,7 +16569,7 @@ snapshots:
proxy-agent: 6.4.0
retry: 0.13.1
rimraf: 3.0.2
- semver: 7.6.0
+ semver: 7.6.3
stream-chain: 2.2.5
stream-json: 1.8.0
strip-ansi: 6.0.1
@@ -16214,17 +16623,17 @@ snapshots:
flat-cache@3.2.0:
dependencies:
- flatted: 3.2.9
+ flatted: 3.3.1
keyv: 4.5.4
rimraf: 3.0.2
flat@5.0.2: {}
- flatted@3.2.9: {}
+ flatted@3.3.1: {}
fn.name@1.1.0: {}
- follow-redirects@1.15.8: {}
+ follow-redirects@1.15.9: {}
for-each@0.3.3:
dependencies:
@@ -16247,7 +16656,7 @@ snapshots:
kapsule: 1.14.5
lodash-es: 4.17.21
- foreground-child@3.1.1:
+ foreground-child@3.3.0:
dependencies:
cross-spawn: 7.0.3
signal-exit: 4.1.0
@@ -16305,7 +16714,8 @@ snapshots:
fs-minipass@3.0.3:
dependencies:
- minipass: 7.0.4
+ minipass: 7.1.2
+ optional: true
fs.realpath@1.0.0: {}
@@ -16412,7 +16822,7 @@ snapshots:
get-own-enumerable-property-symbols@3.0.2: {}
- get-port-please@3.1.1: {}
+ get-port-please@3.1.2: {}
get-port@5.1.1: {}
@@ -16433,7 +16843,7 @@ snapshots:
dependencies:
'@tootallnate/once': 1.1.2
data-uri-to-buffer: 3.0.1
- debug: 4.3.6
+ debug: 4.3.7
file-uri-to-path: 2.0.0
fs-extra: 8.1.0
ftp: 0.3.10
@@ -16444,18 +16854,18 @@ snapshots:
dependencies:
basic-ftp: 5.0.4
data-uri-to-buffer: 6.0.2
- debug: 4.3.6
+ debug: 4.3.7
fs-extra: 11.2.0
transitivePeerDependencies:
- supports-color
- giget@1.2.1:
+ giget@1.2.3:
dependencies:
- citty: 0.1.5
+ citty: 0.1.6
consola: 3.2.3
- defu: 6.1.3
- node-fetch-native: 1.6.1
- nypm: 0.3.4
+ defu: 6.1.4
+ node-fetch-native: 1.6.4
+ nypm: 0.3.11
ohash: 1.1.3
pathe: 1.1.2
tar: 6.2.1
@@ -16469,7 +16879,7 @@ snapshots:
is-ssh: 1.4.0
parse-url: 8.1.0
- git-url-parse@13.1.1:
+ git-url-parse@14.1.0:
dependencies:
git-up: 7.0.0
@@ -16491,13 +16901,14 @@ snapshots:
glob-to-regexp@0.4.1: {}
- glob@10.3.10:
+ glob@10.4.5:
dependencies:
- foreground-child: 3.1.1
- jackspeak: 2.3.6
- minimatch: 9.0.3
- minipass: 7.0.4
- path-scurry: 1.10.1
+ foreground-child: 3.3.0
+ jackspeak: 3.4.3
+ minimatch: 9.0.5
+ minipass: 7.1.2
+ package-json-from-dist: 1.0.0
+ path-scurry: 1.11.1
glob@7.2.3:
dependencies:
@@ -16521,7 +16932,7 @@ snapshots:
fs.realpath: 1.0.0
minimatch: 8.0.4
minipass: 4.2.8
- path-scurry: 1.10.1
+ path-scurry: 1.11.1
global-directory@4.0.1:
dependencies:
@@ -16561,9 +16972,9 @@ snapshots:
merge2: 1.4.1
slash: 3.0.0
- globby@14.0.0:
+ globby@14.0.2:
dependencies:
- '@sindresorhus/merge-streams': 1.0.0
+ '@sindresorhus/merge-streams': 2.3.0
fast-glob: 3.3.2
ignore: 5.3.2
path-type: 5.0.0
@@ -16684,16 +17095,20 @@ snapshots:
dependencies:
duplexer: 0.1.2
- h3@1.9.0:
+ h3@1.12.0:
dependencies:
- cookie-es: 1.0.0
- defu: 6.1.3
- destr: 2.0.2
- iron-webcrypto: 1.0.0
- radix3: 1.1.0
+ cookie-es: 1.2.2
+ crossws: 0.2.4
+ defu: 6.1.4
+ destr: 2.0.3
+ iron-webcrypto: 1.2.1
+ ohash: 1.1.3
+ radix3: 1.1.2
ufo: 1.5.4
uncrypto: 0.1.3
- unenv: 1.8.0
+ unenv: 1.10.0
+ transitivePeerDependencies:
+ - uWebSockets.js
happy-dom@12.10.3:
dependencies:
@@ -16785,10 +17200,6 @@ snapshots:
hosted-git-info@2.8.9: {}
- hosted-git-info@7.0.1:
- dependencies:
- lru-cache: 10.4.3
-
html-tags@3.3.1: {}
htmlparser2@8.0.2:
@@ -16834,14 +17245,14 @@ snapshots:
dependencies:
'@tootallnate/once': 1.1.2
agent-base: 6.0.2
- debug: 4.3.6
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
http-proxy-agent@7.0.2:
dependencies:
- agent-base: 7.1.0
- debug: 4.3.6
+ agent-base: 7.1.1
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -16857,14 +17268,14 @@ snapshots:
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.3.6
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
- https-proxy-agent@7.0.4:
+ https-proxy-agent@7.0.5:
dependencies:
- agent-base: 7.1.0
- debug: 4.3.6
+ agent-base: 7.1.1
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -16892,13 +17303,9 @@ snapshots:
ieee754@1.2.1: {}
- ignore-walk@6.0.4:
- dependencies:
- minimatch: 9.0.3
-
ignore@5.3.2: {}
- image-meta@0.2.0: {}
+ image-meta@0.2.1: {}
immediate@3.0.6: {}
@@ -16909,6 +17316,17 @@ snapshots:
import-lazy@2.1.0: {}
+ impound@0.1.0(rollup@2.79.1)(webpack-sources@3.2.3):
+ dependencies:
+ '@rollup/pluginutils': 5.1.0(rollup@2.79.1)
+ mlly: 1.7.1
+ pathe: 1.1.2
+ unenv: 1.10.0
+ unplugin: 1.13.1(webpack-sources@3.2.3)
+ transitivePeerDependencies:
+ - rollup
+ - webpack-sources
+
imurmurhash@0.1.4: {}
indent-string@4.0.0: {}
@@ -16932,7 +17350,7 @@ snapshots:
ini@4.1.1: {}
- ink-mde@0.33.0(vue@3.4.21(typescript@5.3.3)):
+ ink-mde@0.33.0(vue@3.5.3(typescript@5.3.3)):
dependencies:
'@codemirror/autocomplete': 6.16.0(@codemirror/language@6.10.1)(@codemirror/state@6.4.1)(@codemirror/view@6.26.3)(@lezer/common@1.2.1)
'@codemirror/commands': 6.5.0
@@ -16950,7 +17368,7 @@ snapshots:
solid-js: 1.8.17
style-mod: 4.1.2
optionalDependencies:
- vue: 3.4.21(typescript@5.3.3)
+ vue: 3.5.3(typescript@5.3.3)
inline-style-parser@0.1.1: {}
@@ -17009,11 +17427,11 @@ snapshots:
internmap@2.0.3: {}
- ioredis@5.3.2:
+ ioredis@5.4.1:
dependencies:
'@ioredis/commands': 1.2.0
cluster-key-slot: 1.1.2
- debug: 4.3.6
+ debug: 4.3.7
denque: 2.1.0
lodash.defaults: 4.2.0
lodash.isarguments: 3.1.0
@@ -17034,7 +17452,7 @@ snapshots:
ipaddr.js@1.9.1: {}
- iron-webcrypto@1.0.0: {}
+ iron-webcrypto@1.2.1: {}
is-alphabetical@1.0.4: {}
@@ -17150,7 +17568,8 @@ snapshots:
is-interactive@1.0.0: {}
- is-lambda@1.0.1: {}
+ is-lambda@1.0.1:
+ optional: true
is-module@1.0.0: {}
@@ -17185,10 +17604,6 @@ snapshots:
is-port-reachable@4.0.0: {}
- is-primitive@3.0.1: {}
-
- is-promise@4.0.0: {}
-
is-reference@1.2.1:
dependencies:
'@types/estree': 1.0.5
@@ -17240,12 +17655,18 @@ snapshots:
dependencies:
call-bind: 1.0.7
+ is-what@4.1.16: {}
+
is-wsl@1.1.0: {}
is-wsl@2.2.0:
dependencies:
is-docker: 2.2.1
+ is-wsl@3.1.0:
+ dependencies:
+ is-inside-container: 1.0.0
+
is-yarn-global@0.3.0: {}
is2@2.0.9:
@@ -17254,6 +17675,10 @@ snapshots:
ip-regex: 4.3.0
is-url: 1.2.4
+ is64bit@2.0.0:
+ dependencies:
+ system-architecture: 0.1.0
+
isarray@0.0.1: {}
isarray@1.0.0: {}
@@ -17262,7 +17687,8 @@ snapshots:
isexe@2.0.0: {}
- isexe@3.1.1: {}
+ isexe@3.1.1:
+ optional: true
isomorphic-fetch@3.0.0(encoding@0.1.13):
dependencies:
@@ -17275,7 +17701,7 @@ snapshots:
isstream@0.1.2: {}
- jackspeak@2.3.6:
+ jackspeak@3.4.3:
dependencies:
'@isaacs/cliui': 8.0.2
optionalDependencies:
@@ -17283,7 +17709,7 @@ snapshots:
jake@10.8.7:
dependencies:
- async: 3.2.5
+ async: 3.2.6
chalk: 4.1.2
filelist: 1.0.4
minimatch: 3.1.2
@@ -17296,7 +17722,7 @@ snapshots:
merge-stream: 2.0.0
supports-color: 7.2.0
- jiti@1.21.0: {}
+ jiti@1.21.6: {}
jju@1.4.0: {}
@@ -17310,7 +17736,7 @@ snapshots:
dependencies:
config-chain: 1.1.13
editorconfig: 1.0.4
- glob: 10.3.10
+ glob: 10.4.5
nopt: 7.2.0
js-tiktoken@1.0.12:
@@ -17319,6 +17745,8 @@ snapshots:
js-tokens@4.0.0: {}
+ js-tokens@9.0.0: {}
+
js-yaml@3.14.1:
dependencies:
argparse: 1.0.10
@@ -17368,8 +17796,6 @@ snapshots:
json-parse-even-better-errors@2.3.1: {}
- json-parse-even-better-errors@3.0.1: {}
-
json-parse-helpfulerror@1.0.3:
dependencies:
jju: 1.4.0
@@ -17400,7 +17826,7 @@ snapshots:
acorn: 8.12.1
eslint-visitor-keys: 3.4.3
espree: 9.6.1
- semver: 7.6.0
+ semver: 7.6.3
jsonfile@4.0.0:
optionalDependencies:
@@ -17412,8 +17838,6 @@ snapshots:
optionalDependencies:
graceful-fs: 4.2.11
- jsonparse@1.3.1: {}
-
jsonpointer@5.0.1: {}
jsonwebtoken@9.0.2:
@@ -17427,7 +17851,7 @@ snapshots:
lodash.isstring: 4.0.1
lodash.once: 4.1.1
ms: 2.1.3
- semver: 7.6.0
+ semver: 7.6.3
jszip@3.10.1:
dependencies:
@@ -17486,7 +17910,7 @@ snapshots:
klona@2.0.6: {}
- knitwork@1.0.0: {}
+ knitwork@1.1.0: {}
koa-compose@4.1.0: {}
@@ -17497,7 +17921,7 @@ snapshots:
koa-send@5.0.1:
dependencies:
- debug: 4.3.6
+ debug: 4.3.7
http-errors: 1.8.1
resolve-path: 1.4.0
transitivePeerDependencies:
@@ -17510,14 +17934,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- koa@2.15.0:
+ koa@2.15.3:
dependencies:
accepts: 1.3.8
cache-content-type: 1.0.1
content-disposition: 0.5.4
content-type: 1.0.5
- cookies: 0.9.0
- debug: 4.3.6
+ cookies: 0.9.1
+ debug: 4.3.7
delegates: 1.0.0
depd: 2.0.0
destroy: 1.2.0
@@ -17542,7 +17966,7 @@ snapshots:
kuler@2.0.0: {}
- langchain@0.0.102(axios@1.6.8)(encoding@0.1.13)(google-auth-library@8.9.0(encoding@0.1.13))(ignore@5.3.2)(playwright@1.46.1):
+ langchain@0.0.102(axios@1.7.7)(encoding@0.1.13)(google-auth-library@8.9.0(encoding@0.1.13))(ignore@5.3.2)(playwright@1.47.0):
dependencies:
'@anthropic-ai/sdk': 0.4.4(encoding@0.1.13)
ansi-styles: 5.2.0
@@ -17562,14 +17986,14 @@ snapshots:
p-queue: 6.6.2
p-retry: 4.6.2
uuid: 9.0.1
- yaml: 2.4.2
+ yaml: 2.5.1
zod: 3.23.8
zod-to-json-schema: 3.23.0(zod@3.23.8)
optionalDependencies:
- axios: 1.6.8
+ axios: 1.7.7
google-auth-library: 8.9.0(encoding@0.1.13)
ignore: 5.3.2
- playwright: 1.46.1
+ playwright: 1.47.0
transitivePeerDependencies:
- debug
- encoding
@@ -17582,7 +18006,7 @@ snapshots:
p-retry: 4.6.2
uuid: 9.0.1
- launch-editor@2.6.1:
+ launch-editor@2.9.1:
dependencies:
picocolors: 1.1.0
shell-quote: 1.8.1
@@ -17619,7 +18043,7 @@ snapshots:
lilconfig@2.1.0: {}
- lilconfig@3.0.0: {}
+ lilconfig@3.1.2: {}
lines-and-columns@1.2.4: {}
@@ -17627,18 +18051,19 @@ snapshots:
dependencies:
uc.micro: 1.0.6
- listhen@1.5.5:
+ listhen@1.7.2:
dependencies:
'@parcel/watcher': 2.4.1
- '@parcel/watcher-wasm': 2.3.0
- citty: 0.1.5
- clipboardy: 3.0.0
+ '@parcel/watcher-wasm': 2.4.1
+ citty: 0.1.6
+ clipboardy: 4.0.0
consola: 3.2.3
- defu: 6.1.3
- get-port-please: 3.1.1
- h3: 1.9.0
+ crossws: 0.2.4
+ defu: 6.1.4
+ get-port-please: 3.1.2
+ h3: 1.12.0
http-shutdown: 1.2.2
- jiti: 1.21.0
+ jiti: 1.21.6
mlly: 1.7.1
node-forge: 1.3.1
pathe: 1.1.2
@@ -17646,6 +18071,8 @@ snapshots:
ufo: 1.5.4
untun: 0.1.3
uqr: 0.1.2
+ transitivePeerDependencies:
+ - uWebSockets.js
load-json-file@4.0.0:
dependencies:
@@ -17723,8 +18150,6 @@ snapshots:
lodash.padstart@4.6.1: {}
- lodash.pick@4.4.0: {}
-
lodash.snakecase@4.1.1: {}
lodash.sortby@4.7.0: {}
@@ -17771,19 +18196,19 @@ snapshots:
lru-cache@7.18.3: {}
- magic-string-ast@0.3.0:
+ magic-string-ast@0.6.2:
dependencies:
- magic-string: 0.30.8
+ magic-string: 0.30.11
magic-string@0.25.9:
dependencies:
sourcemap-codec: 1.4.8
- magic-string@0.30.8:
+ magic-string@0.30.11:
dependencies:
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
- magicast@0.3.2:
+ magicast@0.3.5:
dependencies:
'@babel/parser': 7.25.6
'@babel/types': 7.25.6
@@ -17801,7 +18226,7 @@ snapshots:
cacache: 18.0.1
http-cache-semantics: 4.1.1
is-lambda: 1.0.1
- minipass: 7.0.4
+ minipass: 7.1.2
minipass-fetch: 3.0.4
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
@@ -17810,6 +18235,7 @@ snapshots:
ssri: 10.0.5
transitivePeerDependencies:
- supports-color
+ optional: true
markdown-extensions@1.1.1: {}
@@ -18250,7 +18676,7 @@ snapshots:
micromark@2.11.4:
dependencies:
- debug: 4.3.6
+ debug: 4.3.7
parse-entities: 2.0.0
transitivePeerDependencies:
- supports-color
@@ -18258,7 +18684,7 @@ snapshots:
micromark@3.2.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.3.6
+ debug: 4.3.7
decode-named-character-reference: 1.0.2
micromark-core-commonmark: 1.1.0
micromark-factory-space: 1.1.0
@@ -18309,6 +18735,8 @@ snapshots:
mime@3.0.0: {}
+ mime@4.0.4: {}
+
mimic-fn@2.1.0: {}
mimic-fn@4.0.0: {}
@@ -18343,7 +18771,7 @@ snapshots:
dependencies:
brace-expansion: 2.0.1
- minimatch@9.0.3:
+ minimatch@9.0.5:
dependencies:
brace-expansion: 2.0.1
@@ -18355,25 +18783,22 @@ snapshots:
minipass-collect@2.0.1:
dependencies:
- minipass: 7.0.4
+ minipass: 7.1.2
+ optional: true
minipass-fetch@3.0.4:
dependencies:
- minipass: 7.0.4
+ minipass: 7.1.2
minipass-sized: 1.0.3
minizlib: 2.1.2
optionalDependencies:
encoding: 0.1.13
+ optional: true
minipass-flush@1.0.5:
dependencies:
minipass: 3.3.6
- minipass-json-stream@1.0.1:
- dependencies:
- jsonparse: 1.3.1
- minipass: 3.3.6
-
minipass-pipeline@1.2.4:
dependencies:
minipass: 3.3.6
@@ -18381,6 +18806,7 @@ snapshots:
minipass-sized@1.0.3:
dependencies:
minipass: 3.3.6
+ optional: true
minipass@3.3.6:
dependencies:
@@ -18390,13 +18816,15 @@ snapshots:
minipass@5.0.0: {}
- minipass@7.0.4: {}
+ minipass@7.1.2: {}
minizlib@2.1.2:
dependencies:
minipass: 3.3.6
yallist: 4.0.0
+ mitt@3.0.1: {}
+
mkdirp-classic@0.5.3: {}
mkdirp@0.5.6:
@@ -18478,6 +18906,10 @@ snapshots:
nanoid@4.0.2: {}
+ nanoid@5.0.7: {}
+
+ nanotar@0.1.1: {}
+
natural-compare-lite@1.4.0: {}
natural-compare@1.4.0: {}
@@ -18488,72 +18920,74 @@ snapshots:
nice-try@1.0.5: {}
- nitropack@2.8.1(encoding@0.1.13):
+ nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.5)(webpack-sources@3.2.3):
dependencies:
- '@cloudflare/kv-asset-handler': 0.3.0
- '@netlify/functions': 2.4.1
+ '@cloudflare/kv-asset-handler': 0.3.4
+ '@netlify/functions': 2.8.1
'@rollup/plugin-alias': 5.1.0(rollup@4.21.2)
- '@rollup/plugin-commonjs': 25.0.7(rollup@4.21.2)
+ '@rollup/plugin-commonjs': 25.0.8(rollup@4.21.2)
'@rollup/plugin-inject': 5.0.5(rollup@4.21.2)
'@rollup/plugin-json': 6.1.0(rollup@4.21.2)
'@rollup/plugin-node-resolve': 15.2.3(rollup@4.21.2)
- '@rollup/plugin-replace': 5.0.5(rollup@4.21.2)
+ '@rollup/plugin-replace': 5.0.7(rollup@4.21.2)
'@rollup/plugin-terser': 0.4.4(rollup@4.21.2)
- '@rollup/plugin-wasm': 6.2.2(rollup@4.21.2)
'@rollup/pluginutils': 5.1.0(rollup@4.21.2)
- '@types/http-proxy': 1.17.14
- '@vercel/nft': 0.24.4(encoding@0.1.13)
- archiver: 6.0.1
- c12: 1.6.1
+ '@types/http-proxy': 1.17.15
+ '@vercel/nft': 0.26.5(encoding@0.1.13)
+ archiver: 7.0.1
+ c12: 1.11.2(magicast@0.3.5)
chalk: 5.3.0
chokidar: 3.6.0
- citty: 0.1.5
+ citty: 0.1.6
consola: 3.2.3
- cookie-es: 1.0.0
- defu: 6.1.3
- destr: 2.0.2
+ cookie-es: 1.2.2
+ croner: 8.1.1
+ crossws: 0.2.4
+ db0: 0.1.4
+ defu: 6.1.4
+ destr: 2.0.3
dot-prop: 8.0.2
- esbuild: 0.19.12
+ esbuild: 0.20.2
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.2
gzip-size: 7.0.0
- h3: 1.9.0
+ h3: 1.12.0
hookable: 5.5.3
httpxy: 0.1.5
- is-primitive: 3.0.1
- jiti: 1.21.0
+ ioredis: 5.4.1
+ jiti: 1.21.6
klona: 2.0.6
- knitwork: 1.0.0
- listhen: 1.5.5
- magic-string: 0.30.8
- mime: 3.0.0
+ knitwork: 1.1.0
+ listhen: 1.7.2
+ magic-string: 0.30.11
+ mime: 4.0.4
mlly: 1.7.1
mri: 1.2.0
- node-fetch-native: 1.6.1
- ofetch: 1.3.3
+ node-fetch-native: 1.6.4
+ ofetch: 1.3.4
ohash: 1.1.3
- openapi-typescript: 6.7.3
+ openapi-typescript: 6.7.6
pathe: 1.1.2
perfect-debounce: 1.0.0
pkg-types: 1.2.0
pretty-bytes: 6.1.1
- radix3: 1.1.0
+ radix3: 1.1.2
rollup: 4.21.2
rollup-plugin-visualizer: 5.12.0(rollup@4.21.2)
- scule: 1.1.1
- semver: 7.6.0
- serve-placeholder: 2.0.1
+ scule: 1.3.0
+ semver: 7.6.3
+ serve-placeholder: 2.0.2
serve-static: 1.15.0
std-env: 3.7.0
ufo: 1.5.4
uncrypto: 0.1.3
- unctx: 2.3.1
- unenv: 1.8.0
- unimport: 3.7.1(rollup@4.21.2)
- unstorage: 1.10.1
+ unctx: 2.3.1(webpack-sources@3.2.3)
+ unenv: 1.10.0
+ unimport: 3.11.1(rollup@4.21.2)(webpack-sources@3.2.3)
+ unstorage: 1.12.0(ioredis@5.4.1)
+ unwasm: 0.3.9(webpack-sources@3.2.3)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -18562,24 +18996,30 @@ snapshots:
- '@azure/keyvault-secrets'
- '@azure/storage-blob'
- '@capacitor/preferences'
+ - '@libsql/client'
- '@netlify/blobs'
- '@planetscale/database'
- '@upstash/redis'
- '@vercel/kv'
+ - better-sqlite3
+ - drizzle-orm
- encoding
- idb-keyval
+ - magicast
- supports-color
+ - uWebSockets.js
+ - webpack-sources
node-addon-api@1.7.2:
optional: true
- node-addon-api@7.1.0: {}
+ node-addon-api@7.1.1: {}
node-emoji@1.11.0:
dependencies:
lodash: 4.17.21
- node-fetch-native@1.6.1: {}
+ node-fetch-native@1.6.4: {}
node-fetch@2.6.7(encoding@0.1.13):
dependencies:
@@ -18595,22 +19035,23 @@ snapshots:
node-forge@1.3.1: {}
- node-gyp-build@4.7.1: {}
+ node-gyp-build@4.8.2: {}
node-gyp@10.0.1:
dependencies:
env-paths: 2.2.1
exponential-backoff: 3.1.1
- glob: 10.3.10
+ glob: 10.4.5
graceful-fs: 4.2.11
make-fetch-happen: 13.0.0
nopt: 7.2.0
proc-log: 3.0.0
- semver: 7.6.0
+ semver: 7.6.3
tar: 6.2.1
which: 4.0.0
transitivePeerDependencies:
- supports-color
+ optional: true
node-releases@2.0.18: {}
@@ -18661,59 +19102,12 @@ snapshots:
semver: 5.7.2
validate-npm-package-license: 3.0.4
- normalize-package-data@6.0.0:
- dependencies:
- hosted-git-info: 7.0.1
- is-core-module: 2.13.1
- semver: 7.6.0
- validate-npm-package-license: 3.0.4
-
normalize-path@3.0.0: {}
normalize-range@0.1.2: {}
normalize-url@6.1.0: {}
- npm-bundled@3.0.0:
- dependencies:
- npm-normalize-package-bin: 3.0.1
-
- npm-install-checks@6.3.0:
- dependencies:
- semver: 7.6.0
-
- npm-normalize-package-bin@3.0.1: {}
-
- npm-package-arg@11.0.1:
- dependencies:
- hosted-git-info: 7.0.1
- proc-log: 3.0.0
- semver: 7.6.0
- validate-npm-package-name: 5.0.0
-
- npm-packlist@8.0.1:
- dependencies:
- ignore-walk: 6.0.4
-
- npm-pick-manifest@9.0.0:
- dependencies:
- npm-install-checks: 6.3.0
- npm-normalize-package-bin: 3.0.1
- npm-package-arg: 11.0.1
- semver: 7.6.0
-
- npm-registry-fetch@16.1.0:
- dependencies:
- make-fetch-happen: 13.0.0
- minipass: 7.0.4
- minipass-fetch: 3.0.4
- minipass-json-stream: 1.0.1
- minizlib: 2.1.2
- npm-package-arg: 11.0.1
- proc-log: 3.0.0
- transitivePeerDependencies:
- - supports-color
-
npm-run-all@4.1.5:
dependencies:
ansi-styles: 3.2.1
@@ -18730,7 +19124,7 @@ snapshots:
dependencies:
path-key: 3.1.1
- npm-run-path@5.2.0:
+ npm-run-path@5.3.0:
dependencies:
path-key: 4.0.0
@@ -18755,67 +19149,74 @@ snapshots:
number-is-nan@1.0.1: {}
- nuxi@3.10.0:
+ nuxi@3.13.1:
optionalDependencies:
fsevents: 2.3.3
- nuxt@3.9.0(@parcel/watcher@2.4.1)(@types/node@18.19.4)(encoding@0.1.13)(eslint@8.56.0)(optionator@0.9.4)(rollup@2.79.1)(terser@5.31.0)(typescript@5.3.3)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))(vue-tsc@1.8.27(typescript@5.3.3)):
+ nuxt@3.13.1(@parcel/watcher@2.4.1)(@types/node@18.19.4)(encoding@0.1.13)(eslint@8.56.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@2.79.1)(terser@5.31.6)(typescript@5.3.3)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))(vue-tsc@1.8.27(typescript@5.3.3))(webpack-sources@3.2.3):
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.0.6(encoding@0.1.13)(nuxt@3.9.0(@parcel/watcher@2.4.1)(@types/node@18.19.4)(encoding@0.1.13)(eslint@8.56.0)(optionator@0.9.4)(rollup@2.79.1)(terser@5.31.0)(typescript@5.3.3)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))(vue-tsc@1.8.27(typescript@5.3.3)))(rollup@2.79.1)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))
- '@nuxt/kit': 3.9.0(rollup@2.79.1)
- '@nuxt/schema': 3.9.0(rollup@2.79.1)
- '@nuxt/telemetry': 2.5.3(rollup@2.79.1)
- '@nuxt/ui-templates': 1.3.1
- '@nuxt/vite-builder': 3.9.0(@types/node@18.19.4)(eslint@8.56.0)(optionator@0.9.4)(rollup@2.79.1)(terser@5.31.0)(typescript@5.3.3)(vue-tsc@1.8.27(typescript@5.3.3))(vue@3.4.21(typescript@5.3.3))
- '@unhead/dom': 1.8.9
- '@unhead/ssr': 1.8.9
- '@unhead/vue': 1.8.9(vue@3.4.21(typescript@5.3.3))
- '@vue/shared': 3.4.27
- acorn: 8.11.2
- c12: 1.6.1
+ '@nuxt/devtools': 1.4.1(rollup@2.79.1)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.13.1(magicast@0.3.5)(rollup@2.79.1)(webpack-sources@3.2.3)
+ '@nuxt/schema': 3.13.1(rollup@2.79.1)(webpack-sources@3.2.3)
+ '@nuxt/telemetry': 2.5.4(magicast@0.3.5)(rollup@2.79.1)(webpack-sources@3.2.3)
+ '@nuxt/vite-builder': 3.13.1(@types/node@18.19.4)(eslint@8.56.0)(magicast@0.3.5)(optionator@0.9.4)(rollup@2.79.1)(terser@5.31.6)(typescript@5.3.3)(vue-tsc@1.8.27(typescript@5.3.3))(vue@3.5.3(typescript@5.3.3))(webpack-sources@3.2.3)
+ '@unhead/dom': 1.10.4
+ '@unhead/ssr': 1.10.4
+ '@unhead/vue': 1.10.4(vue@3.5.3(typescript@5.3.3))
+ '@vue/shared': 3.5.3
+ acorn: 8.12.1
+ c12: 1.11.2(magicast@0.3.5)
chokidar: 3.6.0
- cookie-es: 1.0.0
- defu: 6.1.3
- destr: 2.0.2
- devalue: 4.3.2
- esbuild: 0.19.12
+ compatx: 0.1.8
+ consola: 3.2.3
+ cookie-es: 1.2.2
+ defu: 6.1.4
+ destr: 2.0.3
+ devalue: 5.0.0
+ errx: 0.1.0
+ esbuild: 0.23.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.2
+ h3: 1.12.0
hookable: 5.5.3
- jiti: 1.21.0
+ ignore: 5.3.2
+ impound: 0.1.0(rollup@2.79.1)(webpack-sources@3.2.3)
+ jiti: 1.21.6
klona: 2.0.6
- knitwork: 1.0.0
- magic-string: 0.30.8
+ knitwork: 1.1.0
+ magic-string: 0.30.11
mlly: 1.7.1
- nitropack: 2.8.1(encoding@0.1.13)
- nuxi: 3.10.0
- nypm: 0.3.4
- ofetch: 1.3.3
+ nanotar: 0.1.1
+ nitropack: 2.9.7(encoding@0.1.13)(magicast@0.3.5)(webpack-sources@3.2.3)
+ nuxi: 3.13.1
+ nypm: 0.3.11
+ ofetch: 1.3.4
ohash: 1.1.3
pathe: 1.1.2
perfect-debounce: 1.0.0
pkg-types: 1.2.0
- radix3: 1.1.0
- scule: 1.1.1
+ radix3: 1.1.2
+ scule: 1.3.0
+ semver: 7.6.3
std-env: 3.7.0
- strip-literal: 1.3.0
+ strip-literal: 2.1.0
+ tinyglobby: 0.2.5
ufo: 1.5.4
- ultrahtml: 1.5.2
+ ultrahtml: 1.5.3
uncrypto: 0.1.3
- unctx: 2.3.1
- unenv: 1.8.0
- unimport: 3.7.1(rollup@2.79.1)
- unplugin: 1.6.0
- unplugin-vue-router: 0.7.0(rollup@2.79.1)(vue-router@4.2.5(vue@3.4.21(typescript@5.3.3)))(vue@3.4.21(typescript@5.3.3))
- untyped: 1.4.0
- vue: 3.4.21(typescript@5.3.3)
- vue-bundle-renderer: 2.0.0
+ unctx: 2.3.1(webpack-sources@3.2.3)
+ unenv: 1.10.0
+ unimport: 3.11.1(rollup@2.79.1)(webpack-sources@3.2.3)
+ unplugin: 1.13.1(webpack-sources@3.2.3)
+ unplugin-vue-router: 0.10.7(rollup@2.79.1)(vue-router@4.4.3(vue@3.5.3(typescript@5.3.3)))(vue@3.5.3(typescript@5.3.3))(webpack-sources@3.2.3)
+ unstorage: 1.12.0(ioredis@5.4.1)
+ untyped: 1.4.2
+ vue: 3.5.3(typescript@5.3.3)
+ vue-bundle-renderer: 2.1.0
vue-devtools-stub: 0.1.0
- vue-router: 4.2.5(vue@3.4.21(typescript@5.3.3))
+ vue-router: 4.4.3(vue@3.5.3(typescript@5.3.3))
optionalDependencies:
'@parcel/watcher': 2.4.1
'@types/node': 18.19.4
@@ -18826,18 +19227,23 @@ snapshots:
- '@azure/identity'
- '@azure/keyvault-secrets'
- '@azure/storage-blob'
+ - '@biomejs/biome'
- '@capacitor/preferences'
+ - '@libsql/client'
- '@netlify/blobs'
- '@planetscale/database'
- '@upstash/redis'
- '@vercel/kv'
- - bluebird
+ - better-sqlite3
- bufferutil
+ - drizzle-orm
- encoding
- eslint
- idb-keyval
+ - ioredis
- less
- lightningcss
+ - magicast
- meow
- optionator
- rollup
@@ -18849,18 +19255,22 @@ snapshots:
- supports-color
- terser
- typescript
+ - uWebSockets.js
- utf-8-validate
- vite
- vls
- vti
- vue-tsc
+ - webpack-sources
- xml2js
- nypm@0.3.4:
+ nypm@0.3.11:
dependencies:
- citty: 0.1.5
+ citty: 0.1.6
+ consola: 3.2.3
execa: 8.0.1
pathe: 1.1.2
+ pkg-types: 1.2.0
ufo: 1.5.4
object-assign@4.1.1: {}
@@ -18902,10 +19312,10 @@ snapshots:
define-properties: 1.2.1
es-abstract: 1.22.3
- ofetch@1.3.3:
+ ofetch@1.3.4:
dependencies:
- destr: 2.0.2
- node-fetch-native: 1.6.1
+ destr: 2.0.3
+ node-fetch-native: 1.6.4
ufo: 1.5.4
ohash@1.1.3: {}
@@ -18940,6 +19350,13 @@ snapshots:
only@0.0.2: {}
+ open@10.1.0:
+ dependencies:
+ default-browser: 5.2.1
+ define-lazy-prop: 3.0.0
+ is-inside-container: 1.0.0
+ is-wsl: 3.1.0
+
open@6.4.0:
dependencies:
is-wsl: 1.1.0
@@ -18955,13 +19372,6 @@ snapshots:
is-docker: 2.2.1
is-wsl: 2.2.0
- open@9.1.0:
- dependencies:
- default-browser: 4.0.0
- define-lazy-prop: 3.0.0
- is-inside-container: 1.0.0
- is-wsl: 2.2.0
-
openai@3.3.0:
dependencies:
axios: 0.26.1
@@ -18971,7 +19381,7 @@ snapshots:
openapi-types@12.1.3: {}
- openapi-typescript@6.7.3:
+ openapi-typescript@6.7.6:
dependencies:
ansi-colors: 4.1.3
fast-glob: 3.3.2
@@ -18982,7 +19392,7 @@ snapshots:
openapi3-ts@3.2.0:
dependencies:
- yaml: 2.4.2
+ yaml: 2.5.1
optionator@0.8.3:
dependencies:
@@ -19074,7 +19484,7 @@ snapshots:
dependencies:
'@tootallnate/once': 1.1.2
agent-base: 6.0.2
- debug: 4.3.6
+ debug: 4.3.7
get-uri: 3.0.2
http-proxy-agent: 4.0.1
https-proxy-agent: 5.0.1
@@ -19087,11 +19497,11 @@ snapshots:
pac-proxy-agent@7.0.1:
dependencies:
'@tootallnate/quickjs-emscripten': 0.23.0
- agent-base: 7.1.0
- debug: 4.3.6
+ agent-base: 7.1.1
+ debug: 4.3.7
get-uri: 6.0.3
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.4
+ https-proxy-agent: 7.0.5
pac-resolver: 7.0.1
socks-proxy-agent: 8.0.2
transitivePeerDependencies:
@@ -19108,29 +19518,7 @@ snapshots:
degenerator: 5.0.1
netmask: 2.0.2
- pacote@17.0.5:
- dependencies:
- '@npmcli/git': 5.0.3
- '@npmcli/installed-package-contents': 2.0.2
- '@npmcli/promise-spawn': 7.0.0
- '@npmcli/run-script': 7.0.2
- cacache: 18.0.1
- fs-minipass: 3.0.3
- minipass: 7.0.4
- npm-package-arg: 11.0.1
- npm-packlist: 8.0.1
- npm-pick-manifest: 9.0.0
- npm-registry-fetch: 16.1.0
- proc-log: 3.0.0
- promise-retry: 2.0.1
- read-package-json: 7.0.0
- read-package-json-fast: 3.0.2
- sigstore: 2.1.0
- ssri: 10.0.5
- tar: 6.2.1
- transitivePeerDependencies:
- - bluebird
- - supports-color
+ package-json-from-dist@1.0.0: {}
pako@0.2.9: {}
@@ -19140,10 +19528,6 @@ snapshots:
dependencies:
callsites: 3.1.0
- parent-module@2.0.0:
- dependencies:
- callsites: 3.1.0
-
parse-asn1@5.1.6:
dependencies:
asn1.js: 5.4.1
@@ -19217,10 +19601,10 @@ snapshots:
path-parse@1.0.7: {}
- path-scurry@1.10.1:
+ path-scurry@1.11.1:
dependencies:
lru-cache: 10.4.3
- minipass: 7.0.4
+ minipass: 7.1.2
path-to-regexp@0.1.7: {}
@@ -19234,6 +19618,8 @@ snapshots:
path-to-regexp@6.2.1: {}
+ path-to-regexp@6.2.2: {}
+
path-type@3.0.0:
dependencies:
pify: 3.0.0
@@ -19274,17 +19660,19 @@ snapshots:
picomatch@2.3.1: {}
+ picomatch@4.0.2: {}
+
pidtree@0.3.1: {}
pify@2.3.0: {}
pify@3.0.0: {}
- pinia@2.1.7(typescript@5.3.3)(vue@3.4.21(typescript@5.3.3)):
+ pinia@2.1.7(typescript@5.3.3)(vue@3.5.3(typescript@5.3.3)):
dependencies:
- '@vue/devtools-api': 6.5.1
- vue: 3.4.21(typescript@5.3.3)
- vue-demi: 0.14.6(vue@3.4.21(typescript@5.3.3))
+ '@vue/devtools-api': 6.6.3
+ vue: 3.5.3(typescript@5.3.3)
+ vue-demi: 0.14.10(vue@3.5.3(typescript@5.3.3))
optionalDependencies:
typescript: 5.3.3
@@ -19308,12 +19696,22 @@ snapshots:
playwright-core@1.46.1: {}
+ playwright-core@1.47.0:
+ optional: true
+
playwright@1.46.1:
dependencies:
playwright-core: 1.46.1
optionalDependencies:
fsevents: 2.3.2
+ playwright@1.47.0:
+ dependencies:
+ playwright-core: 1.47.0
+ optionalDependencies:
+ fsevents: 2.3.2
+ optional: true
+
pluralize@8.0.0: {}
portfinder@1.0.32:
@@ -19324,13 +19722,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- postcss-calc@9.0.1(postcss@8.4.45):
+ postcss-calc@10.0.2(postcss@8.4.45):
dependencies:
postcss: 8.4.45
postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
- postcss-colormin@6.0.1(postcss@8.4.45):
+ postcss-colormin@7.0.2(postcss@8.4.45):
dependencies:
browserslist: 4.23.3
caniuse-api: 3.0.0
@@ -19338,37 +19736,30 @@ snapshots:
postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-convert-values@6.0.1(postcss@8.4.45):
+ postcss-convert-values@7.0.4(postcss@8.4.45):
dependencies:
browserslist: 4.23.3
postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-custom-properties@13.3.4(postcss@8.4.45):
- dependencies:
- '@csstools/cascade-layer-name-parser': 1.0.7(@csstools/css-parser-algorithms@2.5.0(@csstools/css-tokenizer@2.2.3))(@csstools/css-tokenizer@2.2.3)
- '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3)
- '@csstools/css-tokenizer': 2.2.3
- postcss: 8.4.45
- postcss-value-parser: 4.2.0
-
- postcss-discard-comments@6.0.1(postcss@8.4.45):
+ postcss-discard-comments@7.0.3(postcss@8.4.45):
dependencies:
postcss: 8.4.45
+ postcss-selector-parser: 6.1.2
postcss-discard-duplicates@5.1.0(postcss@8.4.45):
dependencies:
postcss: 8.4.45
- postcss-discard-duplicates@6.0.1(postcss@8.4.45):
+ postcss-discard-duplicates@7.0.1(postcss@8.4.45):
dependencies:
postcss: 8.4.45
- postcss-discard-empty@6.0.1(postcss@8.4.45):
+ postcss-discard-empty@7.0.0(postcss@8.4.45):
dependencies:
postcss: 8.4.45
- postcss-discard-overridden@6.0.1(postcss@8.4.45):
+ postcss-discard-overridden@7.0.0(postcss@8.4.45):
dependencies:
postcss: 8.4.45
@@ -19386,47 +19777,48 @@ snapshots:
postcss-load-config@4.0.2(postcss@8.4.45)(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3)):
dependencies:
- lilconfig: 3.0.0
- yaml: 2.4.2
+ lilconfig: 3.1.2
+ yaml: 2.5.1
optionalDependencies:
postcss: 8.4.45
ts-node: 10.9.2(@types/node@18.19.4)(typescript@5.3.3)
- postcss-merge-longhand@6.0.1(postcss@8.4.45):
+ postcss-merge-longhand@7.0.4(postcss@8.4.45):
dependencies:
postcss: 8.4.45
postcss-value-parser: 4.2.0
- stylehacks: 6.0.1(postcss@8.4.45)
+ stylehacks: 7.0.4(postcss@8.4.45)
- postcss-merge-rules@6.0.2(postcss@8.4.45):
+ postcss-merge-rules@7.0.4(postcss@8.4.45):
dependencies:
browserslist: 4.23.3
caniuse-api: 3.0.0
- cssnano-utils: 4.0.1(postcss@8.4.45)
+ cssnano-utils: 5.0.0(postcss@8.4.45)
postcss: 8.4.45
postcss-selector-parser: 6.1.2
- postcss-minify-font-values@6.0.1(postcss@8.4.45):
+ postcss-minify-font-values@7.0.0(postcss@8.4.45):
dependencies:
postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-minify-gradients@6.0.1(postcss@8.4.45):
+ postcss-minify-gradients@7.0.0(postcss@8.4.45):
dependencies:
colord: 2.9.3
- cssnano-utils: 4.0.1(postcss@8.4.45)
+ cssnano-utils: 5.0.0(postcss@8.4.45)
postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-minify-params@6.0.1(postcss@8.4.45):
+ postcss-minify-params@7.0.2(postcss@8.4.45):
dependencies:
browserslist: 4.23.3
- cssnano-utils: 4.0.1(postcss@8.4.45)
+ cssnano-utils: 5.0.0(postcss@8.4.45)
postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-minify-selectors@6.0.1(postcss@8.4.45):
+ postcss-minify-selectors@7.0.4(postcss@8.4.45):
dependencies:
+ cssesc: 3.0.0
postcss: 8.4.45
postcss-selector-parser: 6.1.2
@@ -19468,70 +19860,71 @@ snapshots:
postcss: 8.4.45
postcss-selector-parser: 6.1.2
- postcss-nesting@12.0.2(postcss@8.4.45):
+ postcss-nesting@12.1.5(postcss@8.4.45):
dependencies:
- '@csstools/selector-specificity': 3.0.1(postcss-selector-parser@6.1.2)
+ '@csstools/selector-resolve-nested': 1.1.0(postcss-selector-parser@6.1.2)
+ '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.2)
postcss: 8.4.45
postcss-selector-parser: 6.1.2
- postcss-normalize-charset@6.0.1(postcss@8.4.45):
+ postcss-normalize-charset@7.0.0(postcss@8.4.45):
dependencies:
postcss: 8.4.45
- postcss-normalize-display-values@6.0.1(postcss@8.4.45):
+ postcss-normalize-display-values@7.0.0(postcss@8.4.45):
dependencies:
postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-normalize-positions@6.0.1(postcss@8.4.45):
+ postcss-normalize-positions@7.0.0(postcss@8.4.45):
dependencies:
postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-normalize-repeat-style@6.0.1(postcss@8.4.45):
+ postcss-normalize-repeat-style@7.0.0(postcss@8.4.45):
dependencies:
postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-normalize-string@6.0.1(postcss@8.4.45):
+ postcss-normalize-string@7.0.0(postcss@8.4.45):
dependencies:
postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-normalize-timing-functions@6.0.1(postcss@8.4.45):
+ postcss-normalize-timing-functions@7.0.0(postcss@8.4.45):
dependencies:
postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-normalize-unicode@6.0.1(postcss@8.4.45):
+ postcss-normalize-unicode@7.0.2(postcss@8.4.45):
dependencies:
browserslist: 4.23.3
postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-normalize-url@6.0.1(postcss@8.4.45):
+ postcss-normalize-url@7.0.0(postcss@8.4.45):
dependencies:
postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-normalize-whitespace@6.0.1(postcss@8.4.45):
+ postcss-normalize-whitespace@7.0.0(postcss@8.4.45):
dependencies:
postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-ordered-values@6.0.1(postcss@8.4.45):
+ postcss-ordered-values@7.0.1(postcss@8.4.45):
dependencies:
- cssnano-utils: 4.0.1(postcss@8.4.45)
+ cssnano-utils: 5.0.0(postcss@8.4.45)
postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-reduce-initial@6.0.1(postcss@8.4.45):
+ postcss-reduce-initial@7.0.2(postcss@8.4.45):
dependencies:
browserslist: 4.23.3
caniuse-api: 3.0.0
postcss: 8.4.45
- postcss-reduce-transforms@6.0.1(postcss@8.4.45):
+ postcss-reduce-transforms@7.0.0(postcss@8.4.45):
dependencies:
postcss: 8.4.45
postcss-value-parser: 4.2.0
@@ -19546,13 +19939,13 @@ snapshots:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-svgo@6.0.1(postcss@8.4.45):
+ postcss-svgo@7.0.1(postcss@8.4.45):
dependencies:
postcss: 8.4.45
postcss-value-parser: 4.2.0
- svgo: 3.1.0
+ svgo: 3.3.2
- postcss-unique-selectors@6.0.1(postcss@8.4.45):
+ postcss-unique-selectors@7.0.3(postcss@8.4.45):
dependencies:
postcss: 8.4.45
postcss-selector-parser: 6.1.2
@@ -19590,7 +19983,8 @@ snapshots:
colors: 1.4.0
minimist: 1.2.8
- proc-log@3.0.0: {}
+ proc-log@3.0.0:
+ optional: true
process-nextick-args@2.0.1: {}
@@ -19606,6 +20000,7 @@ snapshots:
dependencies:
err-code: 2.0.3
retry: 0.12.0
+ optional: true
prompts@2.4.2:
dependencies:
@@ -19630,7 +20025,7 @@ snapshots:
jsdoc: 4.0.2
minimist: 1.2.8
protobufjs: 7.2.4
- semver: 7.6.0
+ semver: 7.6.3
tmp: 0.2.1
uglify-js: 3.17.4
@@ -19659,7 +20054,7 @@ snapshots:
proxy-agent@5.0.0:
dependencies:
agent-base: 6.0.2
- debug: 4.3.6
+ debug: 4.3.7
http-proxy-agent: 4.0.1
https-proxy-agent: 5.0.1
lru-cache: 5.1.1
@@ -19671,10 +20066,10 @@ snapshots:
proxy-agent@6.4.0:
dependencies:
- agent-base: 7.1.0
- debug: 4.3.6
+ agent-base: 7.1.1
+ debug: 4.3.7
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.4
+ https-proxy-agent: 7.0.5
lru-cache: 7.18.3
pac-proxy-agent: 7.0.1
proxy-from-env: 1.1.0
@@ -19733,7 +20128,7 @@ snapshots:
quick-lru@5.1.1: {}
- radix3@1.1.0: {}
+ radix3@1.1.2: {}
randombytes@2.1.0:
dependencies:
@@ -19755,11 +20150,10 @@ snapshots:
iconv-lite: 0.4.24
unpipe: 1.0.0
- rc9@2.1.1:
+ rc9@2.1.2:
dependencies:
- defu: 6.1.3
- destr: 2.0.2
- flat: 5.0.2
+ defu: 6.1.4
+ destr: 2.0.3
rc@1.2.8:
dependencies:
@@ -19785,18 +20179,6 @@ snapshots:
dependencies:
pify: 2.3.0
- read-package-json-fast@3.0.2:
- dependencies:
- json-parse-even-better-errors: 3.0.1
- npm-normalize-package-bin: 3.0.1
-
- read-package-json@7.0.0:
- dependencies:
- glob: 10.3.10
- json-parse-even-better-errors: 3.0.1
- normalize-package-data: 6.0.0
- npm-normalize-package-bin: 3.0.1
-
read-pkg-up@7.0.1:
dependencies:
find-up: 4.1.0
@@ -19839,6 +20221,14 @@ snapshots:
string_decoder: 1.3.0
util-deprecate: 1.0.2
+ readable-stream@4.5.2:
+ dependencies:
+ abort-controller: 3.0.0
+ buffer: 6.0.3
+ events: 3.3.0
+ process: 0.11.10
+ string_decoder: 1.3.0
+
readdir-glob@1.1.3:
dependencies:
minimatch: 5.1.6
@@ -20005,17 +20395,20 @@ snapshots:
retry-request@5.0.2:
dependencies:
- debug: 4.3.6
+ debug: 4.3.7
extend: 3.0.2
transitivePeerDependencies:
- supports-color
- retry@0.12.0: {}
+ retry@0.12.0:
+ optional: true
retry@0.13.1: {}
reusify@1.0.4: {}
+ rfdc@1.4.1: {}
+
rimraf@3.0.2:
dependencies:
glob: 7.2.3
@@ -20047,7 +20440,7 @@ snapshots:
jest-worker: 26.6.2
rollup: 2.79.1
serialize-javascript: 4.0.0
- terser: 5.31.0
+ terser: 5.31.6
rollup-plugin-visualizer@5.12.0(rollup@2.79.1):
dependencies:
@@ -20109,9 +20502,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- run-applescript@5.0.0:
- dependencies:
- execa: 5.1.1
+ run-applescript@7.0.0: {}
run-async@2.4.1: {}
@@ -20156,7 +20547,7 @@ snapshots:
safer-buffer@2.1.2: {}
- scule@1.1.1: {}
+ scule@1.3.0: {}
semver-diff@3.1.1:
dependencies:
@@ -20172,9 +20563,7 @@ snapshots:
dependencies:
lru-cache: 6.0.0
- semver@7.6.0:
- dependencies:
- lru-cache: 6.0.0
+ semver@7.6.3: {}
send@0.18.0:
dependencies:
@@ -20198,7 +20587,7 @@ snapshots:
dependencies:
randombytes: 2.1.0
- serialize-javascript@6.0.1:
+ serialize-javascript@6.0.2:
dependencies:
randombytes: 2.1.0
@@ -20219,9 +20608,9 @@ snapshots:
path-to-regexp: 2.2.1
range-parser: 1.2.0
- serve-placeholder@2.0.1:
+ serve-placeholder@2.0.2:
dependencies:
- defu: 6.1.3
+ defu: 6.1.4
serve-static@1.15.0:
dependencies:
@@ -20305,20 +20694,11 @@ snapshots:
signal-exit@4.1.0: {}
- sigstore@2.1.0:
- dependencies:
- '@sigstore/bundle': 2.1.0
- '@sigstore/protobuf-specs': 0.2.1
- '@sigstore/sign': 2.2.0
- '@sigstore/tuf': 2.2.0
- transitivePeerDependencies:
- - supports-color
-
- simple-git@3.22.0:
+ simple-git@3.26.0:
dependencies:
'@kwsites/file-exists': 1.1.1
'@kwsites/promise-deferred': 1.1.1
- debug: 4.3.6
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -20328,7 +20708,7 @@ snapshots:
sirv@2.0.4:
dependencies:
- '@polka/url': 1.0.0-next.24
+ '@polka/url': 1.0.0-next.25
mrmime: 2.0.0
totalist: 3.0.1
@@ -20342,20 +20722,20 @@ snapshots:
smart-buffer@4.2.0: {}
- smob@1.4.1: {}
+ smob@1.5.0: {}
socks-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.3.6
+ debug: 4.3.7
socks: 2.8.3
transitivePeerDependencies:
- supports-color
socks-proxy-agent@8.0.2:
dependencies:
- agent-base: 7.1.0
- debug: 4.3.6
+ agent-base: 7.1.1
+ debug: 4.3.7
socks: 2.8.3
transitivePeerDependencies:
- supports-color
@@ -20420,13 +20800,16 @@ snapshots:
spdx-license-ids@3.0.16: {}
+ speakingurl@14.0.1: {}
+
sprintf-js@1.0.3: {}
sprintf-js@1.1.3: {}
ssri@10.0.5:
dependencies:
- minipass: 7.0.4
+ minipass: 7.1.2
+ optional: true
ssri@8.0.1:
dependencies:
@@ -20466,10 +20849,13 @@ snapshots:
stream-shift@1.0.3: {}
- streamx@2.15.6:
+ streamx@2.20.0:
dependencies:
fast-fifo: 1.3.2
queue-tick: 1.0.1
+ text-decoder: 1.1.1
+ optionalDependencies:
+ bare-events: 2.4.2
string-hash@1.1.3: {}
@@ -20589,13 +20975,17 @@ snapshots:
dependencies:
acorn: 8.12.1
+ strip-literal@2.1.0:
+ dependencies:
+ js-tokens: 9.0.0
+
style-mod@4.1.2: {}
style-to-object@0.4.4:
dependencies:
inline-style-parser: 0.1.1
- stylehacks@6.0.1(postcss@8.4.45):
+ stylehacks@7.0.4(postcss@8.4.45):
dependencies:
browserslist: 4.23.3
postcss: 8.4.45
@@ -20607,12 +20997,16 @@ snapshots:
dependencies:
'@jridgewell/gen-mapping': 0.3.5
commander: 4.1.1
- glob: 10.3.10
+ glob: 10.4.5
lines-and-columns: 1.2.4
mz: 2.7.0
pirates: 4.0.6
ts-interface-checker: 0.1.13
+ superjson@2.2.1:
+ dependencies:
+ copy-anything: 3.0.5
+
superstatic@9.0.3(encoding@0.1.13):
dependencies:
basic-auth-connect: 1.0.0
@@ -20670,7 +21064,7 @@ snapshots:
picocolors: 1.1.0
stable: 0.1.8
- svgo@3.1.0:
+ svgo@3.3.2:
dependencies:
'@trysound/sax': 0.2.0
commander: 7.2.0
@@ -20680,6 +21074,8 @@ snapshots:
csso: 5.0.5
picocolors: 1.1.0
+ system-architecture@0.1.0: {}
+
tabtab@2.2.2:
dependencies:
debug: 2.6.9
@@ -20693,21 +21089,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
- tailwind-config-viewer@1.7.3(tailwindcss@3.4.0(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))):
+ tailwind-config-viewer@2.0.4(tailwindcss@3.4.10(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))):
dependencies:
'@koa/router': 12.0.1
commander: 6.2.1
fs-extra: 9.1.0
- koa: 2.15.0
+ koa: 2.15.3
koa-static: 5.0.0
open: 7.4.2
portfinder: 1.0.32
replace-in-file: 6.3.5
- tailwindcss: 3.4.0(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))
+ tailwindcss: 3.4.10(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))
transitivePeerDependencies:
- supports-color
- tailwindcss@3.4.0(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3)):
+ tailwindcss@3.4.10(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3)):
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -20717,7 +21113,7 @@ snapshots:
fast-glob: 3.3.2
glob-parent: 6.0.2
is-glob: 4.0.3
- jiti: 1.21.0
+ jiti: 1.21.6
lilconfig: 2.1.0
micromatch: 4.0.8
normalize-path: 3.0.0
@@ -20751,11 +21147,11 @@ snapshots:
inherits: 2.0.4
readable-stream: 3.6.2
- tar-stream@3.1.6:
+ tar-stream@3.1.7:
dependencies:
- b4a: 1.6.4
+ b4a: 1.6.6
fast-fifo: 1.3.2
- streamx: 2.15.6
+ streamx: 2.20.0
tar@6.2.1:
dependencies:
@@ -20782,13 +21178,17 @@ snapshots:
type-fest: 0.16.0
unique-string: 2.0.0
- terser@5.31.0:
+ terser@5.31.6:
dependencies:
'@jridgewell/source-map': 0.3.6
acorn: 8.12.1
commander: 2.20.3
source-map-support: 0.5.21
+ text-decoder@1.1.1:
+ dependencies:
+ b4a: 1.6.6
+
text-hex@1.0.0: {}
text-table@0.2.0: {}
@@ -20816,17 +21216,22 @@ snapshots:
dependencies:
setimmediate: 1.0.5
- tiny-invariant@1.3.1: {}
+ tiny-invariant@1.3.3: {}
tinybench@2.5.1: {}
tinycolor2@1.6.0: {}
+ tinyglobby@0.2.5:
+ dependencies:
+ fdir: 6.3.0(picomatch@4.0.2)
+ picomatch: 4.0.2
+
tinypool@0.7.0: {}
- tinyspy@2.2.0: {}
+ tinyrainbow@1.2.0: {}
- titleize@3.0.0: {}
+ tinyspy@2.2.0: {}
tmp@0.0.29:
dependencies:
@@ -20940,14 +21345,6 @@ snapshots:
tty-browserify@0.0.1: {}
- tuf-js@2.1.0:
- dependencies:
- '@tufjs/models': 2.0.0
- debug: 4.3.6
- make-fetch-happen: 13.0.0
- transitivePeerDependencies:
- - supports-color
-
type-check@0.3.2:
dependencies:
prelude-ls: 1.1.2
@@ -21020,7 +21417,7 @@ snapshots:
uglify-js@3.17.4: {}
- ultrahtml@1.5.2: {}
+ ultrahtml@1.5.3: {}
unbox-primitive@1.0.2:
dependencies:
@@ -21031,12 +21428,14 @@ snapshots:
uncrypto@0.1.3: {}
- unctx@2.3.1:
+ unctx@2.3.1(webpack-sources@3.2.3):
dependencies:
acorn: 8.12.1
estree-walker: 3.0.3
- magic-string: 0.30.8
- unplugin: 1.6.0
+ magic-string: 0.30.11
+ unplugin: 1.13.1(webpack-sources@3.2.3)
+ transitivePeerDependencies:
+ - webpack-sources
underscore@1.13.6: {}
@@ -21050,19 +21449,19 @@ snapshots:
dependencies:
'@fastify/busboy': 2.1.1
- unenv@1.8.0:
+ unenv@1.10.0:
dependencies:
consola: 3.2.3
- defu: 6.1.3
+ defu: 6.1.4
mime: 3.0.0
- node-fetch-native: 1.6.1
+ node-fetch-native: 1.6.4
pathe: 1.1.2
- unhead@1.8.9:
+ unhead@1.10.4:
dependencies:
- '@unhead/dom': 1.8.9
- '@unhead/schema': 1.8.9
- '@unhead/shared': 1.8.9
+ '@unhead/dom': 1.10.4
+ '@unhead/schema': 1.10.4
+ '@unhead/shared': 1.10.4
hookable: 5.5.3
unicode-canonical-property-names-ecmascript@2.0.0: {}
@@ -21088,7 +21487,7 @@ snapshots:
trough: 2.2.0
vfile: 5.3.7
- unimport@3.7.1(rollup@2.79.1):
+ unimport@3.11.1(rollup@2.79.1)(webpack-sources@3.2.3):
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@2.79.1)
acorn: 8.12.1
@@ -21096,17 +21495,18 @@ snapshots:
estree-walker: 3.0.3
fast-glob: 3.3.2
local-pkg: 0.5.0
- magic-string: 0.30.8
+ magic-string: 0.30.11
mlly: 1.7.1
pathe: 1.1.2
pkg-types: 1.2.0
- scule: 1.1.1
- strip-literal: 1.3.0
- unplugin: 1.6.0
+ scule: 1.3.0
+ strip-literal: 2.1.0
+ unplugin: 1.13.1(webpack-sources@3.2.3)
transitivePeerDependencies:
- rollup
+ - webpack-sources
- unimport@3.7.1(rollup@4.21.2):
+ unimport@3.11.1(rollup@4.21.2)(webpack-sources@3.2.3):
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.21.2)
acorn: 8.12.1
@@ -21114,15 +21514,16 @@ snapshots:
estree-walker: 3.0.3
fast-glob: 3.3.2
local-pkg: 0.5.0
- magic-string: 0.30.8
+ magic-string: 0.30.11
mlly: 1.7.1
pathe: 1.1.2
pkg-types: 1.2.0
- scule: 1.1.1
- strip-literal: 1.3.0
- unplugin: 1.6.0
+ scule: 1.3.0
+ strip-literal: 2.1.0
+ unplugin: 1.13.1(webpack-sources@3.2.3)
transitivePeerDependencies:
- rollup
+ - webpack-sources
unique-filename@1.1.1:
dependencies:
@@ -21131,6 +21532,7 @@ snapshots:
unique-filename@3.0.0:
dependencies:
unique-slug: 4.0.0
+ optional: true
unique-slug@2.0.2:
dependencies:
@@ -21139,6 +21541,7 @@ snapshots:
unique-slug@4.0.0:
dependencies:
imurmurhash: 0.1.4
+ optional: true
unique-string@2.0.0:
dependencies:
@@ -21188,7 +21591,7 @@ snapshots:
universal-analytics@0.5.3:
dependencies:
- debug: 4.3.6
+ debug: 4.3.7
uuid: 8.3.2
transitivePeerDependencies:
- supports-color
@@ -21199,70 +21602,82 @@ snapshots:
unpipe@1.0.0: {}
- unplugin-vue-router@0.7.0(rollup@2.79.1)(vue-router@4.2.5(vue@3.4.21(typescript@5.3.3)))(vue@3.4.21(typescript@5.3.3)):
+ unplugin-vue-router@0.10.7(rollup@2.79.1)(vue-router@4.4.3(vue@3.5.3(typescript@5.3.3)))(vue@3.5.3(typescript@5.3.3))(webpack-sources@3.2.3):
dependencies:
'@babel/types': 7.25.6
'@rollup/pluginutils': 5.1.0(rollup@2.79.1)
- '@vue-macros/common': 1.10.0(rollup@2.79.1)(vue@3.4.21(typescript@5.3.3))
- ast-walker-scope: 0.5.0(rollup@2.79.1)
+ '@vue-macros/common': 1.12.2(rollup@2.79.1)(vue@3.5.3(typescript@5.3.3))
+ ast-walker-scope: 0.6.2
chokidar: 3.6.0
fast-glob: 3.3.2
json5: 2.2.3
- local-pkg: 0.4.3
+ local-pkg: 0.5.0
+ magic-string: 0.30.11
mlly: 1.7.1
pathe: 1.1.2
- scule: 1.1.1
- unplugin: 1.6.0
- yaml: 2.4.2
+ scule: 1.3.0
+ unplugin: 1.13.1(webpack-sources@3.2.3)
+ yaml: 2.5.1
optionalDependencies:
- vue-router: 4.2.5(vue@3.4.21(typescript@5.3.3))
+ vue-router: 4.4.3(vue@3.5.3(typescript@5.3.3))
transitivePeerDependencies:
- rollup
- vue
+ - webpack-sources
- unplugin@1.6.0:
+ unplugin@1.13.1(webpack-sources@3.2.3):
dependencies:
acorn: 8.12.1
- chokidar: 3.6.0
+ webpack-virtual-modules: 0.6.2
+ optionalDependencies:
webpack-sources: 3.2.3
- webpack-virtual-modules: 0.6.1
- unstorage@1.10.1:
+ unstorage@1.12.0(ioredis@5.4.1):
dependencies:
anymatch: 3.1.3
chokidar: 3.6.0
- destr: 2.0.2
- h3: 1.9.0
- ioredis: 5.3.2
- listhen: 1.5.5
+ destr: 2.0.3
+ h3: 1.12.0
+ listhen: 1.7.2
lru-cache: 10.4.3
mri: 1.2.0
- node-fetch-native: 1.6.1
- ofetch: 1.3.3
+ node-fetch-native: 1.6.4
+ ofetch: 1.3.4
ufo: 1.5.4
+ optionalDependencies:
+ ioredis: 5.4.1
transitivePeerDependencies:
- - supports-color
-
- untildify@4.0.0: {}
+ - uWebSockets.js
untun@0.1.3:
dependencies:
- citty: 0.1.5
+ citty: 0.1.6
consola: 3.2.3
pathe: 1.1.2
- untyped@1.4.0:
+ untyped@1.4.2:
dependencies:
'@babel/core': 7.25.2
- '@babel/standalone': 7.23.7
+ '@babel/standalone': 7.25.6
'@babel/types': 7.25.6
- defu: 6.1.3
- jiti: 1.21.0
+ defu: 6.1.4
+ jiti: 1.21.6
mri: 1.2.0
- scule: 1.1.1
+ scule: 1.3.0
transitivePeerDependencies:
- supports-color
+ unwasm@0.3.9(webpack-sources@3.2.3):
+ dependencies:
+ knitwork: 1.1.0
+ magic-string: 0.30.11
+ mlly: 1.7.1
+ pathe: 1.1.2
+ pkg-types: 1.2.0
+ unplugin: 1.13.1(webpack-sources@3.2.3)
+ transitivePeerDependencies:
+ - webpack-sources
+
upath@1.2.0: {}
update-browserslist-db@1.1.0(browserslist@4.23.3):
@@ -21291,7 +21706,7 @@ snapshots:
pupa: 2.1.1
registry-auth-token: 5.0.2
registry-url: 5.1.0
- semver: 7.6.0
+ semver: 7.6.3
semver-diff: 3.1.1
xdg-basedir: 4.0.0
transitivePeerDependencies:
@@ -21331,7 +21746,7 @@ snapshots:
uvu@0.5.6:
dependencies:
dequal: 2.0.3
- diff: 5.1.0
+ diff: 5.2.0
kleur: 4.1.5
sade: 1.8.1
@@ -21344,17 +21759,13 @@ snapshots:
spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
- validate-npm-package-name@5.0.0:
- dependencies:
- builtins: 5.0.1
-
vary@1.1.2: {}
- vellma@0.8.1(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(google-auth-library@8.9.0(encoding@0.1.13))(ignore@5.3.2)(playwright@1.46.1):
+ vellma@0.8.1(axios@1.7.7)(encoding@0.1.13)(eslint@8.56.0)(google-auth-library@8.9.0(encoding@0.1.13))(ignore@5.3.2)(playwright@1.47.0):
dependencies:
chalk: 5.3.0
events: 3.3.0
- langchain: 0.0.102(axios@1.6.8)(encoding@0.1.13)(google-auth-library@8.9.0(encoding@0.1.13))(ignore@5.3.2)(playwright@1.46.1)
+ langchain: 0.0.102(axios@1.7.7)(encoding@0.1.13)(google-auth-library@8.9.0(encoding@0.1.13))(ignore@5.3.2)(playwright@1.47.0)
ml-distance: 4.0.1
nanoid: 4.0.2
openai: 3.3.0
@@ -21419,7 +21830,7 @@ snapshots:
- vectordb
- weaviate-ts-client
- vercel@28.20.0(@types/node@18.19.4)(encoding@0.1.13)(terser@5.31.0)(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3)):
+ vercel@28.20.0(@types/node@18.19.4)(encoding@0.1.13)(terser@5.31.6)(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3)):
dependencies:
'@vercel/build-utils': 6.7.1
'@vercel/go': 2.5.0
@@ -21428,7 +21839,7 @@ snapshots:
'@vercel/node': 2.12.0(encoding@0.1.13)
'@vercel/python': 3.1.59
'@vercel/redwood': 1.1.14(encoding@0.1.13)
- '@vercel/remix-builder': 1.8.5(@types/node@18.19.4)(encoding@0.1.13)(terser@5.31.0)(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))
+ '@vercel/remix-builder': 1.8.5(@types/node@18.19.4)(encoding@0.1.13)(terser@5.31.6)(ts-node@10.9.2(@types/node@18.19.4)(typescript@5.3.3))
'@vercel/ruby': 1.3.75
'@vercel/static-build': 1.3.25(encoding@0.1.13)
transitivePeerDependencies:
@@ -21463,14 +21874,18 @@ snapshots:
unist-util-stringify-position: 3.0.3
vfile-message: 3.1.4
- vite-node@0.34.6(@types/node@18.19.4)(terser@5.31.0):
+ vite-hot-client@0.2.3(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6)):
+ dependencies:
+ vite: 5.4.3(@types/node@18.19.4)(terser@5.31.6)
+
+ vite-node@0.34.6(@types/node@18.19.4)(terser@5.31.6):
dependencies:
cac: 6.7.14
- debug: 4.3.6
+ debug: 4.3.7
mlly: 1.7.1
pathe: 1.1.2
picocolors: 1.1.0
- vite: 5.4.3(@types/node@18.19.4)(terser@5.31.0)
+ vite: 5.4.3(@types/node@18.19.4)(terser@5.31.6)
transitivePeerDependencies:
- '@types/node'
- less
@@ -21482,13 +21897,31 @@ snapshots:
- supports-color
- terser
- vite-node@1.6.0(@types/node@18.19.4)(terser@5.31.0):
+ vite-node@1.6.0(@types/node@18.19.4)(terser@5.31.6):
dependencies:
cac: 6.7.14
- debug: 4.3.6
+ debug: 4.3.7
pathe: 1.1.2
picocolors: 1.1.0
- vite: 5.4.3(@types/node@18.19.4)(terser@5.31.0)
+ vite: 5.4.3(@types/node@18.19.4)(terser@5.31.6)
+ transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - lightningcss
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+
+ vite-node@2.0.5(@types/node@18.19.4)(terser@5.31.6):
+ dependencies:
+ cac: 6.7.14
+ debug: 4.3.7
+ pathe: 1.1.2
+ tinyrainbow: 1.2.0
+ vite: 5.4.3(@types/node@18.19.4)(terser@5.31.6)
transitivePeerDependencies:
- '@types/node'
- less
@@ -21500,7 +21933,7 @@ snapshots:
- supports-color
- terser
- vite-plugin-checker@0.6.2(eslint@8.56.0)(optionator@0.9.4)(typescript@5.3.3)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))(vue-tsc@1.8.27(typescript@5.3.3)):
+ vite-plugin-checker@0.7.2(eslint@8.56.0)(optionator@0.9.4)(typescript@5.3.3)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))(vue-tsc@1.8.27(typescript@5.3.3)):
dependencies:
'@babel/code-frame': 7.24.7
ansi-escapes: 4.3.2
@@ -21509,16 +21942,13 @@ snapshots:
commander: 8.3.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.6.0
strip-ansi: 6.0.1
- tiny-invariant: 1.3.1
- vite: 5.4.3(@types/node@18.19.4)(terser@5.31.0)
+ tiny-invariant: 1.3.3
+ vite: 5.4.3(@types/node@18.19.4)(terser@5.31.6)
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
- vscode-languageserver-textdocument: 1.0.11
+ vscode-languageserver-textdocument: 1.0.12
vscode-uri: 3.0.8
optionalDependencies:
eslint: 8.56.0
@@ -21526,65 +21956,66 @@ snapshots:
typescript: 5.3.3
vue-tsc: 1.8.27(typescript@5.3.3)
- vite-plugin-inspect@0.8.1(@nuxt/kit@3.9.0(rollup@2.79.1))(rollup@2.79.1)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0)):
+ vite-plugin-inspect@0.8.7(@nuxt/kit@3.13.1(magicast@0.3.5)(rollup@2.79.1)(webpack-sources@3.2.3))(rollup@2.79.1)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6)):
dependencies:
- '@antfu/utils': 0.7.7
+ '@antfu/utils': 0.7.10
'@rollup/pluginutils': 5.1.0(rollup@2.79.1)
- debug: 4.3.6
- error-stack-parser-es: 0.1.1
+ debug: 4.3.7
+ error-stack-parser-es: 0.1.5
fs-extra: 11.2.0
- open: 9.1.0
+ open: 10.1.0
+ perfect-debounce: 1.0.0
picocolors: 1.1.0
sirv: 2.0.4
- vite: 5.4.3(@types/node@18.19.4)(terser@5.31.0)
+ vite: 5.4.3(@types/node@18.19.4)(terser@5.31.6)
optionalDependencies:
- '@nuxt/kit': 3.9.0(rollup@2.79.1)
+ '@nuxt/kit': 3.13.1(magicast@0.3.5)(rollup@2.79.1)(webpack-sources@3.2.3)
transitivePeerDependencies:
- rollup
- supports-color
- vite-plugin-node-polyfills@0.14.1(rollup@2.79.1)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0)):
+ vite-plugin-node-polyfills@0.14.1(rollup@2.79.1)(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6)):
dependencies:
'@rollup/plugin-inject': 5.0.5(rollup@2.79.1)
buffer-polyfill: buffer@6.0.3
node-stdlib-browser: 1.2.0
process: 0.11.10
- vite: 5.4.3(@types/node@18.19.4)(terser@5.31.0)
+ vite: 5.4.3(@types/node@18.19.4)(terser@5.31.6)
transitivePeerDependencies:
- rollup
- vite-plugin-pwa@0.17.4(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0))(workbox-build@6.6.0)(workbox-window@6.6.0):
+ vite-plugin-pwa@0.17.4(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6))(workbox-build@6.6.0)(workbox-window@6.6.0):
dependencies:
- debug: 4.3.6
+ debug: 4.3.7
fast-glob: 3.3.2
pretty-bytes: 6.1.1
- vite: 5.4.3(@types/node@18.19.4)(terser@5.31.0)
+ vite: 5.4.3(@types/node@18.19.4)(terser@5.31.6)
workbox-build: 6.6.0
workbox-window: 6.6.0
transitivePeerDependencies:
- supports-color
- vite-plugin-vue-inspector@4.0.2(vite@5.4.3(@types/node@18.19.4)(terser@5.31.0)):
+ vite-plugin-vue-inspector@5.2.0(vite@5.4.3(@types/node@18.19.4)(terser@5.31.6)):
dependencies:
'@babel/core': 7.25.2
- '@babel/plugin-proposal-decorators': 7.23.7(@babel/core@7.25.2)
+ '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.25.2)
'@babel/plugin-syntax-import-attributes': 7.25.6(@babel/core@7.25.2)
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2)
'@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
- '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.25.2)
- '@vue/compiler-dom': 3.4.27
+ '@vue/babel-plugin-jsx': 1.2.4(@babel/core@7.25.2)
+ '@vue/compiler-dom': 3.5.3
kolorist: 1.8.0
- magic-string: 0.30.8
- vite: 5.4.3(@types/node@18.19.4)(terser@5.31.0)
+ magic-string: 0.30.11
+ vite: 5.4.3(@types/node@18.19.4)(terser@5.31.6)
transitivePeerDependencies:
- supports-color
vite-svg-loader@3.6.0:
dependencies:
- '@vue/compiler-sfc': 3.4.21
+ '@vue/compiler-sfc': 3.5.3
svgo: 2.8.0
- vite@5.4.3(@types/node@18.19.4)(terser@5.31.0):
+ vite@5.4.3(@types/node@18.19.4)(terser@5.31.6):
dependencies:
esbuild: 0.21.5
postcss: 8.4.45
@@ -21592,9 +22023,9 @@ snapshots:
optionalDependencies:
'@types/node': 18.19.4
fsevents: 2.3.3
- terser: 5.31.0
+ terser: 5.31.6
- vitest@0.34.6(@edge-runtime/vm@3.2.0)(happy-dom@12.10.3)(playwright@1.46.1)(terser@5.31.0):
+ vitest@0.34.6(@edge-runtime/vm@4.0.3)(happy-dom@12.10.3)(playwright@1.47.0)(terser@5.31.6):
dependencies:
'@types/chai': 4.3.11
'@types/chai-subset': 1.3.5
@@ -21608,22 +22039,22 @@ snapshots:
acorn-walk: 8.3.3
cac: 6.7.14
chai: 4.3.10
- debug: 4.3.6
+ debug: 4.3.7
local-pkg: 0.4.3
- magic-string: 0.30.8
+ magic-string: 0.30.11
pathe: 1.1.2
picocolors: 1.1.0
std-env: 3.7.0
strip-literal: 1.3.0
tinybench: 2.5.1
tinypool: 0.7.0
- vite: 5.4.3(@types/node@18.19.4)(terser@5.31.0)
- vite-node: 0.34.6(@types/node@18.19.4)(terser@5.31.0)
+ vite: 5.4.3(@types/node@18.19.4)(terser@5.31.6)
+ vite-node: 0.34.6(@types/node@18.19.4)(terser@5.31.6)
why-is-node-running: 2.2.2
optionalDependencies:
- '@edge-runtime/vm': 3.2.0
+ '@edge-runtime/vm': 4.0.3
happy-dom: 12.10.3
- playwright: 1.46.1
+ playwright: 1.47.0
transitivePeerDependencies:
- less
- lightningcss
@@ -21646,7 +22077,7 @@ snapshots:
vscode-languageclient@7.0.0:
dependencies:
minimatch: 3.1.2
- semver: 7.6.0
+ semver: 7.6.3
vscode-languageserver-protocol: 3.16.0
vscode-languageserver-protocol@3.16.0:
@@ -21654,7 +22085,7 @@ snapshots:
vscode-jsonrpc: 6.0.0
vscode-languageserver-types: 3.16.0
- vscode-languageserver-textdocument@1.0.11: {}
+ vscode-languageserver-textdocument@1.0.12: {}
vscode-languageserver-types@3.16.0: {}
@@ -21664,35 +22095,35 @@ snapshots:
vscode-uri@3.0.8: {}
- vue-bundle-renderer@2.0.0:
+ vue-bundle-renderer@2.1.0:
dependencies:
ufo: 1.5.4
vue-component-type-helpers@1.8.27: {}
- vue-demi@0.14.6(vue@3.4.21(typescript@5.3.3)):
+ vue-demi@0.14.10(vue@3.5.3(typescript@5.3.3)):
dependencies:
- vue: 3.4.21(typescript@5.3.3)
+ vue: 3.5.3(typescript@5.3.3)
vue-devtools-stub@0.1.0: {}
vue-eslint-parser@9.3.2(eslint@8.56.0):
dependencies:
- debug: 4.3.6
+ debug: 4.3.7
eslint: 8.56.0
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
espree: 9.6.1
esquery: 1.5.0
lodash: 4.17.21
- semver: 7.6.0
+ semver: 7.6.3
transitivePeerDependencies:
- supports-color
- vue-router@4.2.5(vue@3.4.21(typescript@5.3.3)):
+ vue-router@4.4.3(vue@3.5.3(typescript@5.3.3)):
dependencies:
- '@vue/devtools-api': 6.5.1
- vue: 3.4.21(typescript@5.3.3)
+ '@vue/devtools-api': 6.6.3
+ vue: 3.5.3(typescript@5.3.3)
vue-template-compiler@2.7.16:
dependencies:
@@ -21703,27 +22134,27 @@ snapshots:
dependencies:
'@volar/typescript': 1.11.1
'@vue/language-core': 1.8.27(typescript@5.3.3)
- semver: 7.6.0
+ semver: 7.6.3
typescript: 5.3.3
- vue3-mq@3.1.3(vue@3.4.21(typescript@5.3.3)):
+ vue3-mq@3.1.3(vue@3.5.3(typescript@5.3.3)):
dependencies:
- vue: 3.4.21(typescript@5.3.3)
+ vue: 3.5.3(typescript@5.3.3)
- vue@3.4.21(typescript@5.3.3):
+ vue@3.5.3(typescript@5.3.3):
dependencies:
- '@vue/compiler-dom': 3.4.21
- '@vue/compiler-sfc': 3.4.21
- '@vue/runtime-dom': 3.4.21
- '@vue/server-renderer': 3.4.21(vue@3.4.21(typescript@5.3.3))
- '@vue/shared': 3.4.21
+ '@vue/compiler-dom': 3.5.3
+ '@vue/compiler-sfc': 3.5.3
+ '@vue/runtime-dom': 3.5.3
+ '@vue/server-renderer': 3.5.3(vue@3.5.3(typescript@5.3.3))
+ '@vue/shared': 3.5.3
optionalDependencies:
typescript: 5.3.3
- vuex@4.1.0(vue@3.4.21(typescript@5.3.3)):
+ vuex@4.1.0(vue@3.5.3(typescript@5.3.3)):
dependencies:
- '@vue/devtools-api': 6.5.1
- vue: 3.4.21(typescript@5.3.3)
+ '@vue/devtools-api': 6.6.3
+ vue: 3.5.3(typescript@5.3.3)
w3c-keyname@2.2.8: {}
@@ -21741,9 +22172,10 @@ snapshots:
webidl-conversions@7.0.0: {}
- webpack-sources@3.2.3: {}
+ webpack-sources@3.2.3:
+ optional: true
- webpack-virtual-modules@0.6.1: {}
+ webpack-virtual-modules@0.6.2: {}
websocket-driver@0.7.4:
dependencies:
@@ -21803,6 +22235,7 @@ snapshots:
which@4.0.0:
dependencies:
isexe: 3.1.1
+ optional: true
why-is-node-running@2.2.2:
dependencies:
@@ -21840,7 +22273,7 @@ snapshots:
dependencies:
'@colors/colors': 1.6.0
'@dabh/diagnostics': 2.0.3
- async: 3.2.5
+ async: 3.2.6
is-stream: 2.0.1
logform: 2.6.0
one-time: 1.0.0
@@ -21994,7 +22427,7 @@ snapshots:
ws@7.5.10: {}
- ws@8.16.0: {}
+ ws@8.18.0: {}
xdg-basedir@4.0.0: {}
@@ -22044,9 +22477,9 @@ snapshots:
dependencies:
eslint-visitor-keys: 3.4.3
lodash: 4.17.21
- yaml: 2.4.2
+ yaml: 2.5.1
- yaml@2.4.2: {}
+ yaml@2.5.1: {}
yargs-parser@21.1.1: {}
@@ -22060,7 +22493,7 @@ snapshots:
y18n: 5.0.8
yargs-parser: 21.1.1
- ylru@1.3.2: {}
+ ylru@1.4.0: {}
yn@3.1.1: {}
@@ -22076,11 +22509,11 @@ snapshots:
compress-commons: 4.1.2
readable-stream: 3.6.2
- zip-stream@5.0.1:
+ zip-stream@6.0.1:
dependencies:
- archiver-utils: 4.0.1
- compress-commons: 5.0.1
- readable-stream: 3.6.2
+ archiver-utils: 5.0.2
+ compress-commons: 6.0.2
+ readable-stream: 4.5.2
zod-to-json-schema@3.23.0(zod@3.23.8):
dependencies:
diff --git a/test/e2e/editor.spec.ts b/test/e2e/editor.spec.ts
index 9fe178f4..36504ce6 100644
--- a/test/e2e/editor.spec.ts
+++ b/test/e2e/editor.spec.ts
@@ -160,4 +160,25 @@ test.describe('editor', () => {
await expect(page.getByTestId('doc-backlinks').getByRole('link')).toHaveText('Test 2')
})
+
+ test('does not undo initial doc load', async ({ page }) => {
+ await page.goto('/docs/new')
+ await page.waitForSelector('[data-is-mounted="true"]')
+
+ await page.keyboard.type('# My Test Doc')
+
+ // Wait for the data to be persisted.
+ await page.waitForTimeout(200)
+
+ await page.reload()
+ await page.waitForSelector('[data-is-mounted="true"]')
+
+ await expect(page.locator('.ink-mde-editor-content')).toHaveText('# My Test Doc')
+
+ await page.keyboard.down('Meta')
+ await page.keyboard.press('z')
+ await page.keyboard.up('Meta')
+
+ await expect(page.locator('.ink-mde-editor-content')).toHaveText('# My Test Doc')
+ })
})