diff --git a/.npmrc b/.npmrc
index 3bd3b7de..48b1fdbb 100644
--- a/.npmrc
+++ b/.npmrc
@@ -1 +1,2 @@
shell-emulator=true
+auto-install-peers=true
diff --git a/apps/www/src/content/docs/components/auto-form.md b/apps/www/src/content/docs/components/auto-form.md
index 149fda08..4c499d01 100644
--- a/apps/www/src/content/docs/components/auto-form.md
+++ b/apps/www/src/content/docs/components/auto-form.md
@@ -403,6 +403,7 @@ By passing the `form` as props, you can control and use the method provided by `
```vue
diff --git a/apps/www/src/registry/new-york/example/BreadcrumbResponsive.vue b/apps/www/src/registry/new-york/example/BreadcrumbResponsive.vue
index 6affcc87..4dfb9097 100644
--- a/apps/www/src/registry/new-york/example/BreadcrumbResponsive.vue
+++ b/apps/www/src/registry/new-york/example/BreadcrumbResponsive.vue
@@ -42,7 +42,7 @@ const itemsToDisplay = 3
const firstLabel = computed(() => items.value[0]?.label)
const allButLastTwoItems = computed(() => items.value.slice(1, -2))
-const remainingItems = computed(() => items.value.slice(-itemsToDisplay + 1))
+const remainingItems = computed(() => items.value.slice(-Math.min(itemsToDisplay, items.value.length) + 1))
diff --git a/packages/cli/package.json b/packages/cli/package.json
index f9413b67..574e1331 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -60,8 +60,6 @@
"diff": "^7.0.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
- "https-proxy-agent": "^7.0.5",
- "kleur": "^4.1.5",
"lodash-es": "^4.17.21",
"magic-string": "^0.30.13",
"nypm": "^0.3.12",
@@ -72,11 +70,11 @@
"postcss": "^8.4.49",
"prompts": "^2.4.2",
"reka-ui": "catalog:",
- "semver": "^7.6.3",
"stringify-object": "^5.0.0",
- "tailwindcss": "^3.4.15",
+ "tailwindcss": "^3.4.16",
"ts-morph": "^24.0.0",
"tsconfig-paths": "^4.2.0",
+ "undici": "^7.0.0",
"vue-metamorph": "3.2.0",
"zod": "^3.23.8"
},
diff --git a/packages/cli/src/utils/registry/index.ts b/packages/cli/src/utils/registry/index.ts
index 2288e9a9..3694d2ac 100644
--- a/packages/cli/src/utils/registry/index.ts
+++ b/packages/cli/src/utils/registry/index.ts
@@ -15,14 +15,14 @@ import {
} from '@/src/utils/registry/schema'
import { buildTailwindThemeColorsFromCssVars } from '@/src/utils/updaters/update-tailwind-config'
import deepmerge from 'deepmerge'
-import { HttpsProxyAgent } from 'https-proxy-agent'
import { ofetch } from 'ofetch'
+import { ProxyAgent } from 'undici'
import { z } from 'zod'
const REGISTRY_URL = process.env.REGISTRY_URL ?? 'https://next.shadcn-vue.com/r'
const agent = process.env.https_proxy
- ? new HttpsProxyAgent(process.env.https_proxy)
+ ? new ProxyAgent(process.env.https_proxy)
: undefined
export async function getRegistryIndex() {
@@ -182,7 +182,7 @@ async function fetchRegistry(paths: string[]) {
const results = await Promise.all(
paths.map(async (path) => {
const url = getRegistryUrl(path)
- const response = await ofetch(url, { agent, parseResponse: JSON.parse })
+ const response = await ofetch(url, { dispatcher: agent, parseResponse: JSON.parse })
.catch((error) => {
throw new Error(error.data)
})
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 189e1188..f6733653 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -14,7 +14,7 @@ catalogs:
version: 1.0.0-alpha.5
typescript:
specifier: ^5.6.3
- version: 5.6.3
+ version: 5.7.2
zod:
specifier: ^3.23.8
version: 3.23.8
@@ -31,22 +31,22 @@ importers:
devDependencies:
'@antfu/eslint-config':
specifier: ^3.9.2
- version: 3.9.2(@typescript-eslint/utils@8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3))(@vue/compiler-sfc@3.5.13)(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)(vitest@2.1.5(@types/node@22.9.0)(@vitest/ui@2.1.5)(stylus@0.57.0)(terser@5.36.0))
+ version: 3.11.2(@typescript-eslint/utils@8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2))(@vue/compiler-sfc@3.5.13)(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)(vitest@2.1.8)
'@commitlint/cli':
specifier: ^19.5.0
- version: 19.5.0(@types/node@22.9.0)(typescript@5.6.3)
+ version: 19.6.0(@types/node@22.10.1)(typescript@5.7.2)
'@commitlint/config-conventional':
specifier: ^19.5.0
- version: 19.5.0
+ version: 19.6.0
'@vitest/ui':
specifier: ^2.1.5
- version: 2.1.5(vitest@2.1.5)
+ version: 2.1.8(vitest@2.1.8)
bumpp:
specifier: ^9.8.1
version: 9.8.1(magicast@0.3.5)
eslint:
specifier: ^9.15.0
- version: 9.15.0(jiti@2.4.0)
+ version: 9.16.0(jiti@2.4.1)
lint-staged:
specifier: ^15.2.10
version: 15.2.10
@@ -58,10 +58,10 @@ importers:
version: 0.16.9
typescript:
specifier: 'catalog:'
- version: 5.6.3
+ version: 5.7.2
vitest:
specifier: ^2.1.5
- version: 2.1.5(@types/node@22.9.0)(@vitest/ui@2.1.5)(stylus@0.57.0)(terser@5.36.0)
+ version: 2.1.8(@types/node@22.10.1)(@vitest/ui@2.1.8)(stylus@0.57.0)(terser@5.36.0)
apps/www:
dependencies:
@@ -70,31 +70,31 @@ importers:
version: 0.8.2
'@internationalized/date':
specifier: ^3.5.6
- version: 3.5.6
+ version: 3.6.0
'@radix-icons/vue':
specifier: ^1.0.0
- version: 1.0.0(vue@3.5.13(typescript@5.6.3))
+ version: 1.0.0(vue@3.5.13(typescript@5.7.2))
'@stackblitz/sdk':
specifier: ^1.11.0
version: 1.11.0
'@tanstack/vue-table':
specifier: ^8.20.5
- version: 8.20.5(vue@3.5.13(typescript@5.6.3))
+ version: 8.20.5(vue@3.5.13(typescript@5.7.2))
'@unovis/ts':
specifier: ^1.4.4
- version: 1.4.4
+ version: 1.4.5
'@unovis/vue':
specifier: ^1.4.4
- version: 1.4.4(@unovis/ts@1.4.4)(vue@3.5.13(typescript@5.6.3))
+ version: 1.4.5(@unovis/ts@1.4.5)(vue@3.5.13(typescript@5.7.2))
'@vee-validate/zod':
specifier: ^4.13.2
- version: 4.14.7(vue@3.5.13(typescript@5.6.3))
+ version: 4.14.7(vue@3.5.13(typescript@5.7.2))
'@vueuse/core':
specifier: ^11.2.0
- version: 11.2.0(vue@3.5.13(typescript@5.6.3))
+ version: 11.3.0(vue@3.5.13(typescript@5.7.2))
class-variance-authority:
specifier: ^0.7.0
- version: 0.7.0
+ version: 0.7.1
clsx:
specifier: ^2.1.1
version: 2.1.1
@@ -106,50 +106,50 @@ importers:
version: 4.1.0
embla-carousel-autoplay:
specifier: ^8.4.0
- version: 8.4.0(embla-carousel@8.4.0)
+ version: 8.5.1(embla-carousel@8.5.1)
embla-carousel-vue:
specifier: ^8.4.0
- version: 8.4.0(vue@3.5.13(typescript@5.6.3))
+ version: 8.5.1(vue@3.5.13(typescript@5.7.2))
lucide-vue-next:
specifier: ^0.441.0
- version: 0.441.0(vue@3.5.13(typescript@5.6.3))
+ version: 0.441.0(vue@3.5.13(typescript@5.7.2))
magic-string:
specifier: ^0.30.13
- version: 0.30.13
+ version: 0.30.14
reka-ui:
specifier: 'catalog:'
- version: 1.0.0-alpha.5(vue@3.5.13(typescript@5.6.3))
+ version: 1.0.0-alpha.5(vue@3.5.13(typescript@5.7.2))
tailwindcss-animate:
specifier: ^1.0.7
- version: 1.0.7(tailwindcss@3.4.15)
+ version: 1.0.7(tailwindcss@3.4.16)
vaul-vue:
specifier: ^0.2.0
- version: 0.2.0(radix-vue@1.9.8(vue@3.5.13(typescript@5.6.3)))(vue@3.5.13(typescript@5.6.3))
+ version: 0.2.0(radix-vue@1.9.10(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2))
vee-validate:
specifier: 4.13.2
- version: 4.13.2(vue@3.5.13(typescript@5.6.3))
+ version: 4.13.2(vue@3.5.13(typescript@5.7.2))
vue:
specifier: ^3.5.13
- version: 3.5.13(typescript@5.6.3)
+ version: 3.5.13(typescript@5.7.2)
vue-sonner:
specifier: ^1.2.5
- version: 1.2.5
+ version: 1.3.0
vue-wrap-balancer:
specifier: ^1.2.1
- version: 1.2.1(vue@3.5.13(typescript@5.6.3))
+ version: 1.2.1(vue@3.5.13(typescript@5.7.2))
zod:
specifier: 'catalog:'
version: 3.23.8
devDependencies:
'@babel/traverse':
specifier: ^7.25.9
- version: 7.25.9
+ version: 7.26.3
'@iconify-json/gravity-ui':
specifier: ^1.2.2
version: 1.2.2
'@iconify-json/lucide':
specifier: ^1.2.15
- version: 1.2.15
+ version: 1.2.17
'@iconify-json/ph':
specifier: ^1.2.1
version: 1.2.1
@@ -161,31 +161,31 @@ importers:
version: 1.2.3
'@iconify-json/simple-icons':
specifier: ^1.2.11
- version: 1.2.11
+ version: 1.2.14
'@iconify-json/tabler':
specifier: ^1.2.8
- version: 1.2.8
+ version: 1.2.10
'@iconify/vue':
specifier: ^4.1.2
- version: 4.1.2(vue@3.5.13(typescript@5.6.3))
+ version: 4.1.2(vue@3.5.13(typescript@5.7.2))
'@oxc-parser/wasm':
specifier: 'catalog:'
version: 0.29.0
'@shikijs/transformers':
specifier: ^1.23.1
- version: 1.23.1
+ version: 1.24.0
'@types/lodash-es':
specifier: ^4.17.12
version: 4.17.12
'@types/node':
specifier: ^22.9.0
- version: 22.9.0
+ version: 22.10.1
'@vitejs/plugin-vue':
specifier: ^5.2.0
- version: 5.2.0(vite@5.4.11(@types/node@22.9.0)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))
+ version: 5.2.1(vite@5.4.11(@types/node@22.10.1)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.7.2))
'@vitejs/plugin-vue-jsx':
specifier: ^4.1.0
- version: 4.1.0(vite@5.4.11(@types/node@22.9.0)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))
+ version: 4.1.1(vite@5.4.11(@types/node@22.10.1)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.7.2))
'@vue/compiler-core':
specifier: ^3.5.13
version: 3.5.13
@@ -215,31 +215,31 @@ importers:
version: 6.0.1
shiki:
specifier: ^1.23.1
- version: 1.23.1
+ version: 1.24.0
tailwind-merge:
specifier: ^2.5.4
- version: 2.5.4
+ version: 2.5.5
tailwindcss:
specifier: ^3.4.15
- version: 3.4.15
+ version: 3.4.16
tsx:
specifier: ^4.19.2
version: 4.19.2
typescript:
specifier: 'catalog:'
- version: 5.6.3
+ version: 5.7.2
unplugin-icons:
specifier: ^0.19.3
version: 0.19.3(@vue/compiler-sfc@3.5.13)
vitepress:
specifier: ^1.5.0
- version: 1.5.0(@algolia/client-search@5.14.2)(@types/node@22.9.0)(change-case@5.4.4)(postcss@8.4.49)(search-insights@2.17.2)(stylus@0.57.0)(terser@5.36.0)(typescript@5.6.3)
+ version: 1.5.0(@algolia/client-search@5.15.0)(@types/node@22.10.1)(change-case@5.4.4)(postcss@8.4.49)(search-insights@2.17.3)(stylus@0.57.0)(terser@5.36.0)(typescript@5.7.2)
vue-component-meta:
specifier: ^2.1.10
- version: 2.1.10(typescript@5.6.3)
+ version: 2.1.10(typescript@5.7.2)
vue-tsc:
specifier: ^2.1.10
- version: 2.1.10(typescript@5.6.3)
+ version: 2.1.10(typescript@5.7.2)
packages/cli:
dependencies:
@@ -248,7 +248,7 @@ importers:
version: 0.8.4
'@vitest/ui':
specifier: '*'
- version: 2.1.5(vitest@2.1.5)
+ version: 2.1.8(vitest@2.1.8)
'@vue/compiler-sfc':
specifier: ^3.5.13
version: 3.5.13
@@ -273,18 +273,12 @@ importers:
fs-extra:
specifier: ^11.2.0
version: 11.2.0
- https-proxy-agent:
- specifier: ^7.0.5
- version: 7.0.5(supports-color@9.4.0)
- kleur:
- specifier: ^4.1.5
- version: 4.1.5
lodash-es:
specifier: ^4.17.21
version: 4.17.21
magic-string:
specifier: ^0.30.13
- version: 0.30.13
+ version: 0.30.14
nypm:
specifier: ^0.3.12
version: 0.3.12
@@ -308,28 +302,28 @@ importers:
version: 2.4.2
reka-ui:
specifier: 'catalog:'
- version: 1.0.0-alpha.5(vue@3.5.13(typescript@5.6.3))
- semver:
- specifier: ^7.6.3
- version: 7.6.3
+ version: 1.0.0-alpha.5(vue@3.5.13(typescript@5.7.2))
stringify-object:
specifier: ^5.0.0
version: 5.0.0
tailwindcss:
- specifier: ^3.4.15
- version: 3.4.15
+ specifier: ^3.4.16
+ version: 3.4.16
ts-morph:
specifier: ^24.0.0
version: 24.0.0
tsconfig-paths:
specifier: ^4.2.0
version: 4.2.0
+ undici:
+ specifier: ^7.0.0
+ version: 7.1.0
vitest:
specifier: '*'
- version: 2.1.5(@types/node@22.9.0)(@vitest/ui@2.1.5)(stylus@0.57.0)(terser@5.36.0)
+ version: 2.1.8(@types/node@22.10.1)(@vitest/ui@2.1.8)(stylus@0.57.0)(terser@5.36.0)
vue-metamorph:
specifier: 3.2.0
- version: 3.2.0(eslint@9.15.0(jiti@2.4.0))
+ version: 3.2.0(eslint@9.16.0(jiti@2.4.1))
zod:
specifier: ^3.23.8
version: 3.23.8
@@ -345,7 +339,7 @@ importers:
version: 4.17.12
'@types/node':
specifier: ^22.9.0
- version: 22.9.0
+ version: 22.10.1
'@types/prompts':
specifier: ^2.4.9
version: 2.4.9
@@ -354,53 +348,53 @@ importers:
version: 4.0.5
tsup:
specifier: ^8.3.5
- version: 8.3.5(jiti@2.4.0)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.0)
+ version: 8.3.5(jiti@2.4.1)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1)
type-fest:
specifier: ^4.27.0
- version: 4.27.0
+ version: 4.30.0
typescript:
specifier: 'catalog:'
- version: 5.6.3
+ version: 5.7.2
vite-tsconfig-paths:
specifier: ^5.1.2
- version: 5.1.2(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.0)(stylus@0.57.0)(terser@5.36.0))
+ version: 5.1.3(typescript@5.7.2)(vite@5.4.11(@types/node@22.10.1)(stylus@0.57.0)(terser@5.36.0))
packages/module:
dependencies:
'@nuxt/kit':
specifier: ^3.14.159
- version: 3.14.159(magicast@0.3.5)(rollup@4.27.3)
+ version: 3.14.1592(magicast@0.3.5)(rollup@4.28.0)
'@oxc-parser/wasm':
specifier: 'catalog:'
version: 0.29.0
typescript:
specifier: 'catalog:'
- version: 5.6.3
+ version: 5.7.2
devDependencies:
'@nuxt/eslint-config':
specifier: ^0.5.7
- version: 0.5.7(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)
+ version: 0.5.7(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)
'@nuxt/module-builder':
specifier: ^0.8.4
- version: 0.8.4(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.27.3))(nuxi@3.15.0)(typescript@5.6.3)(vue-tsc@2.1.10(typescript@5.6.3))
+ version: 0.8.4(@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@4.28.0))(nuxi@3.16.0)(typescript@5.7.2)(vue-tsc@2.1.10(typescript@5.7.2))
'@nuxt/schema':
specifier: ^3.14.159
- version: 3.14.159(magicast@0.3.5)(rollup@4.27.3)
+ version: 3.14.1592(magicast@0.3.5)(rollup@4.28.0)
'@nuxt/test-utils':
specifier: ^3.14.4
- version: 3.14.4(@vitest/ui@2.1.5(vitest@2.1.5))(h3@1.13.0)(magicast@0.3.5)(nitropack@2.10.4(encoding@0.1.13)(typescript@5.6.3))(rollup@4.27.3)(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))(vitest@2.1.5(@types/node@20.17.6)(@vitest/ui@2.1.5)(stylus@0.57.0)(terser@5.36.0))(vue-router@4.4.5(vue@3.5.13(typescript@5.6.3)))(vue@3.5.13(typescript@5.6.3))
+ version: 3.14.4(@vitest/ui@2.1.8)(h3@1.13.0)(magicast@0.3.5)(nitropack@2.10.4(encoding@0.1.13)(typescript@5.7.2))(rollup@4.28.0)(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))(vitest@2.1.8)(vue-router@4.5.0(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2))
'@nuxtjs/color-mode':
specifier: ^3.5.2
- version: 3.5.2(magicast@0.3.5)(rollup@4.27.3)
+ version: 3.5.2(magicast@0.3.5)(rollup@4.28.0)
'@nuxtjs/tailwindcss':
specifier: ^6.12.2
- version: 6.12.2(magicast@0.3.5)(rollup@4.27.3)
+ version: 6.12.2(magicast@0.3.5)(rollup@4.28.0)
'@types/node':
specifier: ^20.17.6
- version: 20.17.6
+ version: 20.17.9
nuxt:
specifier: ^3.14.159
- version: 3.14.159(@parcel/watcher@2.5.0)(@types/node@20.17.6)(encoding@0.1.13)(eslint@9.15.0(jiti@2.4.0))(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.27.3)(stylus@0.57.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))(vue-tsc@2.1.10(typescript@5.6.3))
+ version: 3.14.1592(@parcel/watcher@2.5.0)(@types/node@20.17.9)(encoding@0.1.13)(eslint@9.16.0(jiti@2.4.1))(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.28.0)(stylus@0.57.0)(terser@5.36.0)(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))(vue-tsc@2.1.10(typescript@5.7.2))
packages:
@@ -424,56 +418,56 @@ packages:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
- '@algolia/client-abtesting@5.14.2':
- resolution: {integrity: sha512-7fq1tWIy1aNJEaNHxWy3EwDkuo4k22+NBnxq9QlYVSLLXtr6HqmAm6bQgNNzGT3vm21iKqWO9efk+HIhEM1SzQ==}
+ '@algolia/client-abtesting@5.15.0':
+ resolution: {integrity: sha512-FaEM40iuiv1mAipYyiptP4EyxkJ8qHfowCpEeusdHUC4C7spATJYArD2rX3AxkVeREkDIgYEOuXcwKUbDCr7Nw==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-analytics@5.14.2':
- resolution: {integrity: sha512-5Nm5cOOyAGcY+hKNJVmR2jgoGn1nvoANS8W5EfB8yAaUqUxL3lFNUHSkFafAMTCOcVKNDkZQYjUDbOOfdYJLqw==}
+ '@algolia/client-analytics@5.15.0':
+ resolution: {integrity: sha512-lho0gTFsQDIdCwyUKTtMuf9nCLwq9jOGlLGIeQGKDxXF7HbiAysFIu5QW/iQr1LzMgDyM9NH7K98KY+BiIFriQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-common@5.14.2':
- resolution: {integrity: sha512-BW1Qzhh9tMKEsWSQQsiOEcHAd6g7zxq9RpPVmyxbDO/O4eA4vyN+Qz5Jzo686kuYdIQKqIPCEtob/JM89tk57g==}
+ '@algolia/client-common@5.15.0':
+ resolution: {integrity: sha512-IofrVh213VLsDkPoSKMeM9Dshrv28jhDlBDLRcVJQvlL8pzue7PEB1EZ4UoJFYS3NSn7JOcJ/V+olRQzXlJj1w==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-insights@5.14.2':
- resolution: {integrity: sha512-17zg6pqifKORvvrMIqW6HhwUry9RKRXLgADrgFjZ6PZvGB4oVs12dwRG2/HMrIlpxd9cjeQfdlEgHj6lbAf6QA==}
+ '@algolia/client-insights@5.15.0':
+ resolution: {integrity: sha512-bDDEQGfFidDi0UQUCbxXOCdphbVAgbVmxvaV75cypBTQkJ+ABx/Npw7LkFGw1FsoVrttlrrQbwjvUB6mLVKs/w==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-personalization@5.14.2':
- resolution: {integrity: sha512-5IYt8vbmTA52xyuaZKFwiRoDPeh7hiOC9aBZqqp9fVs6BU01djI/T8pGJXawvwczltCPYzNsdbllV3rqiDbxmQ==}
+ '@algolia/client-personalization@5.15.0':
+ resolution: {integrity: sha512-LfaZqLUWxdYFq44QrasCDED5bSYOswpQjSiIL7Q5fYlefAAUO95PzBPKCfUhSwhb4rKxigHfDkd81AvEicIEoA==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-query-suggestions@5.14.2':
- resolution: {integrity: sha512-gvCX/cczU76Bu1sGcxxTdoIwxe+FnuC1IlW9SF/gzxd3ZzsgzBpzD2puIJqt9fHQsjLxVGkJqKev2FtExnJYZg==}
+ '@algolia/client-query-suggestions@5.15.0':
+ resolution: {integrity: sha512-wu8GVluiZ5+il8WIRsGKu8VxMK9dAlr225h878GGtpTL6VBvwyJvAyLdZsfFIpY0iN++jiNb31q2C1PlPL+n/A==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-search@5.14.2':
- resolution: {integrity: sha512-0imdBZDjqxrshw0+eyJUgnkRAbS2W93UQ3BVj8VjN4xQylIMf0fWs72W7MZFdHlH78JJYydevgzqvGMcV0Z1CA==}
+ '@algolia/client-search@5.15.0':
+ resolution: {integrity: sha512-Z32gEMrRRpEta5UqVQA612sLdoqY3AovvUPClDfMxYrbdDAebmGDVPtSogUba1FZ4pP5dx20D3OV3reogLKsRA==}
engines: {node: '>= 14.0.0'}
- '@algolia/ingestion@1.14.2':
- resolution: {integrity: sha512-/p4rBNkW0fgCpCwrwre+jHfzlFQsLemgaAQqyui8NPxw95Wgf3p+DKxYzcmh8dygT7ub7FwztTW+uURLX1uqIQ==}
+ '@algolia/ingestion@1.15.0':
+ resolution: {integrity: sha512-MkqkAxBQxtQ5if/EX2IPqFA7LothghVyvPoRNA/meS2AW2qkHwcxjuiBxv4H6mnAVEPfJlhu9rkdVz9LgCBgJg==}
engines: {node: '>= 14.0.0'}
- '@algolia/monitoring@1.14.2':
- resolution: {integrity: sha512-81R57Y/mS0uNhWpu6cNEfkbkADLW4bP0BNjuPpxAypobv7WzYycUnbMvv1YkN6OsociB4+3M7HfsVzj4Nc09vA==}
+ '@algolia/monitoring@1.15.0':
+ resolution: {integrity: sha512-QPrFnnGLMMdRa8t/4bs7XilPYnoUXDY8PMQJ1sf9ZFwhUysYYhQNX34/enoO0LBjpoOY6rLpha39YQEFbzgKyQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/recommend@5.14.2':
- resolution: {integrity: sha512-OwELnAZxCUyfjYjqsrFmC7Vfa12kqwbDdLUV0oi4j+4pxDsfPgkiZ6iCH2uPw6X8VK88Hl3InPt+RPaZvcrCWg==}
+ '@algolia/recommend@5.15.0':
+ resolution: {integrity: sha512-5eupMwSqMLDObgSMF0XG958zR6GJP3f7jHDQ3/WlzCM9/YIJiWIUoJFGsko9GYsA5xbLDHE/PhWtq4chcCdaGQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-browser-xhr@5.14.2':
- resolution: {integrity: sha512-irUvkK+TGBhyivtNCIIbVgNUgbUoHOSk8m/kFX4ddto/PUPmLFRRNNnMHtJ1+OzrJ/uD3Am4FUK2Yt+xgQr05w==}
+ '@algolia/requester-browser-xhr@5.15.0':
+ resolution: {integrity: sha512-Po/GNib6QKruC3XE+WKP1HwVSfCDaZcXu48kD+gwmtDlqHWKc7Bq9lrS0sNZ456rfCKhXksOmMfUs4wRM/Y96w==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-fetch@5.14.2':
- resolution: {integrity: sha512-UNBg5mM4MIYdxPuVjyDL22BC6P87g7WuM91Z1Ky0J19aEGvCSF+oR+9autthROFXdRnAa1rACOjuqn95iBbKpw==}
+ '@algolia/requester-fetch@5.15.0':
+ resolution: {integrity: sha512-rOZ+c0P7ajmccAvpeeNrUmEKoliYFL8aOR5qGW5pFq3oj3Iept7Y5mEtEsOBYsRt6qLnaXn4zUKf+N8nvJpcIw==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-node-http@5.14.2':
- resolution: {integrity: sha512-CTFA03YiLcnpP+JoLRqjHt5pqDHuKWJpLsIBY/60Gmw8pjALZ3TwvbAquRX4Vy+yrin178NxMuU+ilZ54f2IrQ==}
+ '@algolia/requester-node-http@5.15.0':
+ resolution: {integrity: sha512-b1jTpbFf9LnQHEJP5ddDJKE2sAlhYd7EVSOWgzo/27n/SfCoHfqD0VWntnWYD83PnOKvfe8auZ2+xCb0TXotrQ==}
engines: {node: '>= 14.0.0'}
'@alloc/quick-lru@5.2.0':
@@ -484,8 +478,8 @@ packages:
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@antfu/eslint-config@3.9.2':
- resolution: {integrity: sha512-a1I1CXmtQdTL9jxcb2RzKjuYYAzjdKK3ktVpQGd/1S/aUdhKgcEEi3DRXYgnB8xdpYLqracETxEMDf9PQlmyBg==}
+ '@antfu/eslint-config@3.11.2':
+ resolution: {integrity: sha512-hoi2MnOdiKL8mIhpMtinwMrqVPq6QVbHPA+BuQD4pqE6yVLyYvjdLFiKApMsezAM+YofCsbhak2oY+JCiIyeNA==}
hasBin: true
peerDependencies:
'@eslint-react/eslint-plugin': ^1.5.8
@@ -499,7 +493,7 @@ packages:
eslint-plugin-react-refresh: ^0.4.4
eslint-plugin-solid: ^0.14.3
eslint-plugin-svelte: '>=2.35.1'
- prettier-plugin-astro: ^0.13.0
+ prettier-plugin-astro: ^0.14.0
prettier-plugin-slidev: ^1.0.5
svelte-eslint-parser: '>=0.37.0'
peerDependenciesMeta:
@@ -533,6 +527,9 @@ packages:
'@antfu/install-pkg@0.4.1':
resolution: {integrity: sha512-T7yB5QNG29afhWVkVq7XeIMBa5U/vs9mX69YqayXypPRmYzUmzwnYltplHmPtZ4HPCn+sQKeXW8I47wCbuBOjw==}
+ '@antfu/install-pkg@0.5.0':
+ resolution: {integrity: sha512-dKnk2xlAyC7rvTkpkHmu+Qy/2Zc3Vm/l8PtNyIOGDBtXPY3kThfU4ORNEp3V7SXw5XSOb+tOJaUYpfquPzL/Tg==}
+
'@antfu/ni@0.23.1':
resolution: {integrity: sha512-VFAvMTJhjP6L7CuBKT5FioDCSpdmZxJ4POKTJOrFNicI2CK6mlaRwVEBGWLGm2V6BtQgdbBn9X68piHSbw5wQQ==}
hasBin: true
@@ -544,16 +541,16 @@ packages:
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.26.2':
- resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==}
+ '@babel/compat-data@7.26.3':
+ resolution: {integrity: sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==}
engines: {node: '>=6.9.0'}
'@babel/core@7.26.0':
resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.26.2':
- resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==}
+ '@babel/generator@7.26.3':
+ resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.25.9':
@@ -598,10 +595,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-simple-access@7.25.9':
- resolution: {integrity: sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
engines: {node: '>=6.9.0'}
@@ -622,8 +615,8 @@ packages:
resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.26.2':
- resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
+ '@babel/parser@7.26.3':
+ resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -667,14 +660,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-commonjs@7.25.9':
- resolution: {integrity: sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg==}
+ '@babel/plugin-transform-modules-commonjs@7.26.3':
+ resolution: {integrity: sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.25.9':
- resolution: {integrity: sha512-7PbZQZP50tzv2KGGnhh82GSyMB01yKY9scIjf1a+GfZCtInOWqUH5+1EBU4t9fyR5Oykkkc9vFTs4OHrhHXljQ==}
+ '@babel/plugin-transform-typescript@7.26.3':
+ resolution: {integrity: sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -689,41 +682,39 @@ packages:
resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
- '@babel/standalone@7.26.2':
- resolution: {integrity: sha512-i2VbegsRfwa9yq3xmfDX3tG2yh9K0cCqwpSyVG2nPxifh0EOnucAZUeO/g4lW2Zfg03aPJNtPfxQbDHzXc7H+w==}
+ '@babel/standalone@7.26.3':
+ resolution: {integrity: sha512-igZRkDAv14+pqOCUIXjJG/ammWHmUIp+JBvMJ3/KnolyjxOF35B6mN5IRdryhaYZ9R9nibsFkStPsAKTThgF3A==}
engines: {node: '>=6.9.0'}
'@babel/template@7.25.9':
resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.25.9':
- resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
+ '@babel/traverse@7.26.3':
+ resolution: {integrity: sha512-yTmc8J+Sj8yLzwr4PD5Xb/WF3bOYu2C2OoSZPzbuqRm4n98XirsbzaX+GloeO376UnSYIYJ4NCanwV5/ugZkwA==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.26.0':
- resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
+ '@babel/types@7.26.3':
+ resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==}
engines: {node: '>=6.9.0'}
- '@clack/core@0.3.4':
- resolution: {integrity: sha512-H4hxZDXgHtWTwV3RAVenqcC4VbJZNegbBjlPvzOzCouXtS2y3sDvlO3IsbrPNWuLWPPlYVYPghQdSF64683Ldw==}
+ '@clack/core@0.3.5':
+ resolution: {integrity: sha512-5cfhQNH+1VQ2xLQlmzXMqUoiaH0lRBq9/CLW9lTyMbuKLC3+xEK01tHVvyut++mLOn5urSHmkm6I0Lg9MaJSTQ==}
- '@clack/prompts@0.8.1':
- resolution: {integrity: sha512-I263nEUNbX4lPTX93trl1fkIvGrGlz6nUYkqOddF0ZmjqcxUgUlXmpUIUqfapirRKJrFddvwF+qdZgg8cSqF7g==}
- bundledDependencies:
- - is-unicode-supported
+ '@clack/prompts@0.8.2':
+ resolution: {integrity: sha512-6b9Ab2UiZwJYA9iMyboYyW9yJvAO9V753ZhS+DHKEjZRKAxPPOb7MXXu84lsPFG+vZt6FRFniZ8rXi+zCIw4yQ==}
'@cloudflare/kv-asset-handler@0.3.4':
resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==}
engines: {node: '>=16.13'}
- '@commitlint/cli@19.5.0':
- resolution: {integrity: sha512-gaGqSliGwB86MDmAAKAtV9SV1SHdmN8pnGq4EJU4+hLisQ7IFfx4jvU4s+pk6tl0+9bv6yT+CaZkufOinkSJIQ==}
+ '@commitlint/cli@19.6.0':
+ resolution: {integrity: sha512-v17BgGD9w5KnthaKxXnEg6KLq6DYiAxyiN44TpiRtqyW8NSq+Kx99mkEG8Qo6uu6cI5eMzMojW2muJxjmPnF8w==}
engines: {node: '>=v18'}
hasBin: true
- '@commitlint/config-conventional@19.5.0':
- resolution: {integrity: sha512-OBhdtJyHNPryZKg0fFpZNOBM1ZDbntMvqMuSmpfyP86XSfwzGw4CaoYRG4RutUPg0BTK07VMRIkNJT6wi2zthg==}
+ '@commitlint/config-conventional@19.6.0':
+ resolution: {integrity: sha512-DJT40iMnTYtBtUfw9ApbsLZFke1zKh6llITVJ+x9mtpHD08gsNXaIRqHTmwTZL3dNX5+WoyK7pCN/5zswvkBCQ==}
engines: {node: '>=v18'}
'@commitlint/config-validator@19.5.0':
@@ -742,12 +733,12 @@ packages:
resolution: {integrity: sha512-yNy088miE52stCI3dhG/vvxFo9e4jFkU1Mj3xECfzp/bIS/JUay4491huAlVcffOoMK1cd296q0W92NlER6r3A==}
engines: {node: '>=v18'}
- '@commitlint/is-ignored@19.5.0':
- resolution: {integrity: sha512-0XQ7Llsf9iL/ANtwyZ6G0NGp5Y3EQ8eDQSxv/SRcfJ0awlBY4tHFAvwWbw66FVUaWICH7iE5en+FD9TQsokZ5w==}
+ '@commitlint/is-ignored@19.6.0':
+ resolution: {integrity: sha512-Ov6iBgxJQFR9koOupDPHvcHU9keFupDgtB3lObdEZDroiG4jj1rzky60fbQozFKVYRTUdrBGICHG0YVmRuAJmw==}
engines: {node: '>=v18'}
- '@commitlint/lint@19.5.0':
- resolution: {integrity: sha512-cAAQwJcRtiBxQWO0eprrAbOurtJz8U6MgYqLz+p9kLElirzSCc0vGMcyCaA1O7AqBuxo11l1XsY3FhOFowLAAg==}
+ '@commitlint/lint@19.6.0':
+ resolution: {integrity: sha512-LRo7zDkXtcIrpco9RnfhOKeg8PAnE3oDDoalnrVU/EVaKHYBWYL1DlRR7+3AWn0JiBqD8yKOfetVxJGdEtZ0tg==}
engines: {node: '>=v18'}
'@commitlint/load@19.5.0':
@@ -770,8 +761,8 @@ packages:
resolution: {integrity: sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==}
engines: {node: '>=v18'}
- '@commitlint/rules@19.5.0':
- resolution: {integrity: sha512-hDW5TPyf/h1/EufSHEKSp6Hs+YVsDMHazfJ2azIk9tHPXS6UqSz1dIRs1gpqS3eMXgtkT7JH6TW4IShdqOwhAw==}
+ '@commitlint/rules@19.6.0':
+ resolution: {integrity: sha512-1f2reW7lbrI0X0ozZMesS/WZxgPa4/wi56vFuJENBmed6mWq5KsheN/nxqnl/C23ioxpPO/PL6tXpiiFy5Bhjw==}
engines: {node: '>=v18'}
'@commitlint/to-lines@19.5.0':
@@ -821,14 +812,14 @@ packages:
search-insights:
optional: true
- '@emotion/babel-plugin@11.12.0':
- resolution: {integrity: sha512-y2WQb+oP8Jqvvclh8Q55gLUyb7UFvgv7eJfsj7td5TToBrIUtPay2kMrZi4xjq9qw2vD0ZR5fSho0yqoFgX7Rw==}
+ '@emotion/babel-plugin@11.13.5':
+ resolution: {integrity: sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==}
- '@emotion/cache@11.13.1':
- resolution: {integrity: sha512-iqouYkuEblRcXmylXIwwOodiEK5Ifl7JcX7o6V4jI3iW4mLXX3dmt5xwBtIkJiQEXFAI+pC8X0i67yiPkH9Ucw==}
+ '@emotion/cache@11.13.5':
+ resolution: {integrity: sha512-Z3xbtJ+UcK76eWkagZ1onvn/wAVb1GOMuR15s30Fm2wrMgC7jzpnO2JZXr4eujTTqoQFUrZIw/rT0c6Zzjca1g==}
- '@emotion/css@11.13.4':
- resolution: {integrity: sha512-CthbOD5EBw+iN0rfM96Tuv5kaZN4nxPyYDvGUs0bc7wZBBiU/0mse+l+0O9RshW2d+v5HH1cme+BAbLJ/3Folw==}
+ '@emotion/css@11.13.5':
+ resolution: {integrity: sha512-wQdD0Xhkn3Qy2VNcIzbLP9MR8TafI0MJb7BEAXKp+w4+XqErksWR4OXomuDzPsN4InLdGhVe6EYcn2ZIUCpB8w==}
'@emotion/hash@0.9.2':
resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
@@ -836,8 +827,8 @@ packages:
'@emotion/memoize@0.9.0':
resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==}
- '@emotion/serialize@1.3.2':
- resolution: {integrity: sha512-grVnMvVPK9yUVE6rkKfAJlYZgo0cu3l9iMC77V7DW6E1DUIrU68pSEXRmFZFOFB1QFo57TncmOcvcbMDWsL4yA==}
+ '@emotion/serialize@1.3.3':
+ resolution: {integrity: sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==}
'@emotion/sheet@1.4.0':
resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==}
@@ -845,8 +836,8 @@ packages:
'@emotion/unitless@0.10.0':
resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==}
- '@emotion/utils@1.4.1':
- resolution: {integrity: sha512-BymCXzCG3r72VKJxaYVwOXATqXIZ85cuvg0YOUDxMGNrKc1DJRZk8MgV5wyXRyEayIMd4FuXJIUgTBXvDNW5cA==}
+ '@emotion/utils@1.4.2':
+ resolution: {integrity: sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==}
'@emotion/weak-memoize@0.4.0':
resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==}
@@ -1460,8 +1451,8 @@ packages:
resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.15.0':
- resolution: {integrity: sha512-tMTqrY+EzbXmKJR5ToI8lxu7jaN5EdmrBFJpQk5JmSlyLsx6o4t27r883K5xsLuCYCpfKBCGswMSWXsM+jB7lg==}
+ '@eslint/js@9.16.0':
+ resolution: {integrity: sha512-tw2HxzQkrbeuvyj1tG2Yqq+0H9wGoI2IMk4EOsQeX+vmd75FtJAzf+gTA69WF+baUKRYQ3x2kbLE08js5OsTVg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/markdown@6.2.1':
@@ -1514,8 +1505,8 @@ packages:
'@iconify-json/gravity-ui@1.2.2':
resolution: {integrity: sha512-9PNVp7jbDW/cYTLCP2p6e57T/O4KiWZDhtsi9tHmthZVsNXIdxA9kh5VBT/VUwBqG9rPictI5cb6Fkf6U3yz/Q==}
- '@iconify-json/lucide@1.2.15':
- resolution: {integrity: sha512-mbHlTJRqOrqRk8E8xnpPzqZwCqsKNB9ZyITqDEYEtePEGxki9VJWJMU8JcNqRKDfPS9vlFsjwepUuOGgusmZUA==}
+ '@iconify-json/lucide@1.2.17':
+ resolution: {integrity: sha512-y+4P1DxD2h4d4fGYxikUdMf0o21DD0GIE/YIgixEBIXKbE90LTOFqmoxkGyPpaGk3vT2qE2w/28+sdmBMFsd5w==}
'@iconify-json/ph@1.2.1':
resolution: {integrity: sha512-x0DNfwWrS18dbsBYOq3XGiZnGz4CgRyC+YSl/TZvMQiKhIUl1woWqUbMYqqfMNUBzjyk7ulvaRovpRsIlqIf8g==}
@@ -1526,11 +1517,11 @@ packages:
'@iconify-json/ri@1.2.3':
resolution: {integrity: sha512-UVKofd5xkSevGd5K01pvO4NWsu+2C9spu+GxnMZUYymUiaWmpCAxtd22MFSpm6MGf0MP4GCwhDCo1Q8L8oZ9wg==}
- '@iconify-json/simple-icons@1.2.11':
- resolution: {integrity: sha512-AHCGDtBRqP+JzAbBzgO8uN/08CXxEmuaC6lQQZ3b5burKhRU12AJnJczwbUw2K5Mb/U85EpSUNhYMG3F28b8NA==}
+ '@iconify-json/simple-icons@1.2.14':
+ resolution: {integrity: sha512-zLqb48pM1B5vegMBDouyv7FzrROV5HRIjDpl+/PKjY3P7AeSySaOeT6mzutF6hDZCJvn1J7qQ7lug3FOgegiiA==}
- '@iconify-json/tabler@1.2.8':
- resolution: {integrity: sha512-xvi/UKhLiFRnutSo6xuHxvOGmskYEoC2St4WDVsU9WAW1DRG1EkBUk/Zy1TpeSsBKMQfyqtdjjx9Cf4ZezOK2w==}
+ '@iconify-json/tabler@1.2.10':
+ resolution: {integrity: sha512-P58U/e0rZNYptzMjnExcFOtSt712xJnqwJI7KoF4iaUJ7EeFQNJawjUXT8X1rvbLMUk/O/fgrzAfhD163XuckA==}
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
@@ -1543,11 +1534,11 @@ packages:
peerDependencies:
vue: '>=3'
- '@internationalized/date@3.5.6':
- resolution: {integrity: sha512-jLxQjefH9VI5P9UQuqB6qNKnvFt1Ky1TPIzHGsIlCi7sZZoMR8SdYbBGRvM0y+Jtb+ez4ieBzmiAUcpmPYpyOw==}
+ '@internationalized/date@3.6.0':
+ resolution: {integrity: sha512-+z6ti+CcJnRlLHok/emGEsWQhe7kfSmEW+/6qCzvKY67YPh7YOBfvc7+/+NXq+zJlbArg30tYpqLjNgcAYv2YQ==}
- '@internationalized/number@3.5.4':
- resolution: {integrity: sha512-h9huwWjNqYyE2FXZZewWqmCdkw1HeFds5q4Siuoms3hUQC5iPJK3aBmkFZoDSLN4UD0Bl8G22L/NdHpeOr+/7A==}
+ '@internationalized/number@3.6.0':
+ resolution: {integrity: sha512-PtrRcJVy7nw++wn4W2OuePQQfTqDzfusSuY1QTtui4wa7r+rGVtR75pO8CyKvHvzyQYi3Q1uO5sY0AsB4e65Bw==}
'@ioredis/commands@1.2.0':
resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==}
@@ -1664,17 +1655,17 @@ packages:
'@nuxt/devalue@2.0.2':
resolution: {integrity: sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==}
- '@nuxt/devtools-kit@1.6.0':
- resolution: {integrity: sha512-kJ8mVKwTSN3tdEVNy7mxKCiQk9wsG5t3oOrRMWk6IEbTSov+5sOULqQSM/+OWxWsEDmDfA7QlS5sM3Ti9uMRqQ==}
+ '@nuxt/devtools-kit@1.6.3':
+ resolution: {integrity: sha512-rcWpsGUnaDyGtmA667A4FDrVWdjuAturHV+Lkt3Xmedu5G4wC4sOzoA0+/Yco3/kWZ6fLVUTKwI2mvfzaQIugA==}
peerDependencies:
vite: '*'
- '@nuxt/devtools-wizard@1.6.0':
- resolution: {integrity: sha512-n+mzz5NwnKZim0tq1oBi+x1nNXb21fp7QeBl7bYKyDT1eJ0XCxFkVTr/kB/ddkkLYZ+o8TykpeNPa74cN+xAyQ==}
+ '@nuxt/devtools-wizard@1.6.3':
+ resolution: {integrity: sha512-CvrnHTzEwfyCh06Z9I9F10MMqdhMCqpDGJaLsjzGyUoRAcFps9PRb1gyvSE/mwXBM6xsNltyUTccYwzdRCj0pA==}
hasBin: true
- '@nuxt/devtools@1.6.0':
- resolution: {integrity: sha512-xNorMapzpM8HaW7NnAsEEO38OrmrYBzGvkkqfBU5nNh5XEymmIfCbQc7IA/GIOH9pXOV4gRutCjHCWXHYbOl3A==}
+ '@nuxt/devtools@1.6.3':
+ resolution: {integrity: sha512-+pwNrOrpWYMUpVDo7VtBBcYGA2QCXc+RjLP2lPpPFfXHQrStlFT2/7bi+byzwzn7ZtcMRbOMVV6Lbf7oma4HIw==}
hasBin: true
peerDependencies:
vite: '*'
@@ -1689,8 +1680,8 @@ packages:
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- '@nuxt/kit@3.14.159':
- resolution: {integrity: sha512-ZqxsCI1NKV/gjfEUUZjMcr82sg0MKYZOuyB6bu9QY5Zr7NGpfIZY/z5Z822AKTmFxKGChnuz9M0UaS4ze6p42g==}
+ '@nuxt/kit@3.14.1592':
+ resolution: {integrity: sha512-r9r8bISBBisvfcNgNL3dSIQHSBe0v5YkX5zwNblIC2T0CIEgxEVoM5rq9O5wqgb5OEydsHTtT2hL57vdv6VT2w==}
engines: {node: ^14.18.0 || >=16.10.0}
'@nuxt/module-builder@0.8.4':
@@ -1700,8 +1691,8 @@ packages:
'@nuxt/kit': ^3.13.1
nuxi: ^3.13.1
- '@nuxt/schema@3.14.159':
- resolution: {integrity: sha512-ggXA3F2f9udQoEy5WwrY6bTMvpDaErUYRLSEzdMqqCqjOQ5manfFgfuScGj3ooZiXLIX2TGLVTzcll4nnpDlnQ==}
+ '@nuxt/schema@3.14.1592':
+ resolution: {integrity: sha512-A1d/08ueX8stTXNkvGqnr1eEXZgvKn+vj6s7jXhZNWApUSqMgItU4VK28vrrdpKbjIPwq2SwhnGOHUYvN9HwCQ==}
engines: {node: ^14.18.0 || >=16.10.0}
'@nuxt/telemetry@2.6.0':
@@ -1749,8 +1740,8 @@ packages:
vitest:
optional: true
- '@nuxt/vite-builder@3.14.159':
- resolution: {integrity: sha512-V3FJnDNR3tCAYeYmxxPsAWuMq6z5mZi8KPWO+lrO/Z8LqfD3+uYpluzUtzj0S1IIhCERmHe4rUNzr67RqSTL2Q==}
+ '@nuxt/vite-builder@3.14.1592':
+ resolution: {integrity: sha512-GVS7vkBJAGv13ghmjgGrS2QVyzoqxQ5+cAUrMeMjKbY7GnRY7/uOkoLmznYx8E/U9HBUyHQa+wSN2ZfcSiEytQ==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
vue: ^3.3.4
@@ -1871,11 +1862,11 @@ packages:
'@redocly/ajv@8.11.2':
resolution: {integrity: sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg==}
- '@redocly/config@0.16.0':
- resolution: {integrity: sha512-t9jnODbUcuANRSl/K4L9nb12V+U5acIHnVSl26NWrtSdDZVtoqUXk2yGFPZzohYf62cCfEQUT8ouJ3bhPfpnJg==}
+ '@redocly/config@0.17.1':
+ resolution: {integrity: sha512-CEmvaJuG7pm2ylQg53emPmtgm4nW2nxBgwXzbVEHpGas/lGnMyN8Zlkgiz6rPw0unASg6VW3wlz27SOL5XFHYQ==}
- '@redocly/openapi-core@1.25.11':
- resolution: {integrity: sha512-bH+a8izQz4fnKROKoX3bEU8sQ9rjvEIZOqU6qTmxlhOJ0NsKa5e+LmU18SV0oFeg5YhWQhhEDihXkvKJ1wMMNQ==}
+ '@redocly/openapi-core@1.25.15':
+ resolution: {integrity: sha512-/dpr5zpGj2t1Bf7EIXEboRZm1hsJZBQfv3Q1pkivtdAEg3if2khv+b9gY68aquC6cM/2aQY2kMLy8LlY2tn+Og==}
engines: {node: '>=14.19.0', npm: '>=7.0.0'}
'@rollup/plugin-alias@5.1.1':
@@ -1959,10 +1950,6 @@ packages:
rollup:
optional: true
- '@rollup/pluginutils@4.2.1':
- resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
- engines: {node: '>= 8.0.0'}
-
'@rollup/pluginutils@5.1.3':
resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==}
engines: {node: '>=14.0.0'}
@@ -1972,110 +1959,110 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.27.3':
- resolution: {integrity: sha512-EzxVSkIvCFxUd4Mgm4xR9YXrcp976qVaHnqom/Tgm+vU79k4vV4eYTjmRvGfeoW8m9LVcsAy/lGjcgVegKEhLQ==}
+ '@rollup/rollup-android-arm-eabi@4.28.0':
+ resolution: {integrity: sha512-wLJuPLT6grGZsy34g4N1yRfYeouklTgPhH1gWXCYspenKYD0s3cR99ZevOGw5BexMNywkbV3UkjADisozBmpPQ==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.27.3':
- resolution: {integrity: sha512-LJc5pDf1wjlt9o/Giaw9Ofl+k/vLUaYsE2zeQGH85giX2F+wn/Cg8b3c5CDP3qmVmeO5NzwVUzQQxwZvC2eQKw==}
+ '@rollup/rollup-android-arm64@4.28.0':
+ resolution: {integrity: sha512-eiNkznlo0dLmVG/6wf+Ifi/v78G4d4QxRhuUl+s8EWZpDewgk7PX3ZyECUXU0Zq/Ca+8nU8cQpNC4Xgn2gFNDA==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.27.3':
- resolution: {integrity: sha512-OuRysZ1Mt7wpWJ+aYKblVbJWtVn3Cy52h8nLuNSzTqSesYw1EuN6wKp5NW/4eSre3mp12gqFRXOKTcN3AI3LqA==}
+ '@rollup/rollup-darwin-arm64@4.28.0':
+ resolution: {integrity: sha512-lmKx9yHsppblnLQZOGxdO66gT77bvdBtr/0P+TPOseowE7D9AJoBw8ZDULRasXRWf1Z86/gcOdpBrV6VDUY36Q==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.27.3':
- resolution: {integrity: sha512-xW//zjJMlJs2sOrCmXdB4d0uiilZsOdlGQIC/jjmMWT47lkLLoB1nsNhPUcnoqyi5YR6I4h+FjBpILxbEy8JRg==}
+ '@rollup/rollup-darwin-x64@4.28.0':
+ resolution: {integrity: sha512-8hxgfReVs7k9Js1uAIhS6zq3I+wKQETInnWQtgzt8JfGx51R1N6DRVy3F4o0lQwumbErRz52YqwjfvuwRxGv1w==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.27.3':
- resolution: {integrity: sha512-58E0tIcwZ+12nK1WiLzHOD8I0d0kdrY/+o7yFVPRHuVGY3twBwzwDdTIBGRxLmyjciMYl1B/U515GJy+yn46qw==}
+ '@rollup/rollup-freebsd-arm64@4.28.0':
+ resolution: {integrity: sha512-lA1zZB3bFx5oxu9fYud4+g1mt+lYXCoch0M0V/xhqLoGatbzVse0wlSQ1UYOWKpuSu3gyN4qEc0Dxf/DII1bhQ==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.27.3':
- resolution: {integrity: sha512-78fohrpcVwTLxg1ZzBMlwEimoAJmY6B+5TsyAZ3Vok7YabRBUvjYTsRXPTjGEvv/mfgVBepbW28OlMEz4w8wGA==}
+ '@rollup/rollup-freebsd-x64@4.28.0':
+ resolution: {integrity: sha512-aI2plavbUDjCQB/sRbeUZWX9qp12GfYkYSJOrdYTL/C5D53bsE2/nBPuoiJKoWp5SN78v2Vr8ZPnB+/VbQ2pFA==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.27.3':
- resolution: {integrity: sha512-h2Ay79YFXyQi+QZKo3ISZDyKaVD7uUvukEHTOft7kh00WF9mxAaxZsNs3o/eukbeKuH35jBvQqrT61fzKfAB/Q==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.28.0':
+ resolution: {integrity: sha512-WXveUPKtfqtaNvpf0iOb0M6xC64GzUX/OowbqfiCSXTdi/jLlOmH0Ba94/OkiY2yTGTwteo4/dsHRfh5bDCZ+w==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.27.3':
- resolution: {integrity: sha512-Sv2GWmrJfRY57urktVLQ0VKZjNZGogVtASAgosDZ1aUB+ykPxSi3X1nWORL5Jk0sTIIwQiPH7iE3BMi9zGWfkg==}
+ '@rollup/rollup-linux-arm-musleabihf@4.28.0':
+ resolution: {integrity: sha512-yLc3O2NtOQR67lI79zsSc7lk31xjwcaocvdD1twL64PK1yNaIqCeWI9L5B4MFPAVGEVjH5k1oWSGuYX1Wutxpg==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.27.3':
- resolution: {integrity: sha512-FPoJBLsPW2bDNWjSrwNuTPUt30VnfM8GPGRoLCYKZpPx0xiIEdFip3dH6CqgoT0RnoGXptaNziM0WlKgBc+OWQ==}
+ '@rollup/rollup-linux-arm64-gnu@4.28.0':
+ resolution: {integrity: sha512-+P9G9hjEpHucHRXqesY+3X9hD2wh0iNnJXX/QhS/J5vTdG6VhNYMxJ2rJkQOxRUd17u5mbMLHM7yWGZdAASfcg==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.27.3':
- resolution: {integrity: sha512-TKxiOvBorYq4sUpA0JT+Fkh+l+G9DScnG5Dqx7wiiqVMiRSkzTclP35pE6eQQYjP4Gc8yEkJGea6rz4qyWhp3g==}
+ '@rollup/rollup-linux-arm64-musl@4.28.0':
+ resolution: {integrity: sha512-1xsm2rCKSTpKzi5/ypT5wfc+4bOGa/9yI/eaOLW0oMs7qpC542APWhl4A37AENGZ6St6GBMWhCCMM6tXgTIplw==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.27.3':
- resolution: {integrity: sha512-v2M/mPvVUKVOKITa0oCFksnQQ/TqGrT+yD0184/cWHIu0LoIuYHwox0Pm3ccXEz8cEQDLk6FPKd1CCm+PlsISw==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.28.0':
+ resolution: {integrity: sha512-zgWxMq8neVQeXL+ouSf6S7DoNeo6EPgi1eeqHXVKQxqPy1B2NvTbaOUWPn/7CfMKL7xvhV0/+fq/Z/J69g1WAQ==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.27.3':
- resolution: {integrity: sha512-LdrI4Yocb1a/tFVkzmOE5WyYRgEBOyEhWYJe4gsDWDiwnjYKjNs7PS6SGlTDB7maOHF4kxevsuNBl2iOcj3b4A==}
+ '@rollup/rollup-linux-riscv64-gnu@4.28.0':
+ resolution: {integrity: sha512-VEdVYacLniRxbRJLNtzwGt5vwS0ycYshofI7cWAfj7Vg5asqj+pt+Q6x4n+AONSZW/kVm+5nklde0qs2EUwU2g==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.27.3':
- resolution: {integrity: sha512-d4wVu6SXij/jyiwPvI6C4KxdGzuZOvJ6y9VfrcleHTwo68fl8vZC5ZYHsCVPUi4tndCfMlFniWgwonQ5CUpQcA==}
+ '@rollup/rollup-linux-s390x-gnu@4.28.0':
+ resolution: {integrity: sha512-LQlP5t2hcDJh8HV8RELD9/xlYtEzJkm/aWGsauvdO2ulfl3QYRjqrKW+mGAIWP5kdNCBheqqqYIGElSRCaXfpw==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.27.3':
- resolution: {integrity: sha512-/6bn6pp1fsCGEY5n3yajmzZQAh+mW4QPItbiWxs69zskBzJuheb3tNynEjL+mKOsUSFK11X4LYF2BwwXnzWleA==}
+ '@rollup/rollup-linux-x64-gnu@4.28.0':
+ resolution: {integrity: sha512-Nl4KIzteVEKE9BdAvYoTkW19pa7LR/RBrT6F1dJCV/3pbjwDcaOq+edkP0LXuJ9kflW/xOK414X78r+K84+msw==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.27.3':
- resolution: {integrity: sha512-nBXOfJds8OzUT1qUreT/en3eyOXd2EH5b0wr2bVB5999qHdGKkzGzIyKYaKj02lXk6wpN71ltLIaQpu58YFBoQ==}
+ '@rollup/rollup-linux-x64-musl@4.28.0':
+ resolution: {integrity: sha512-eKpJr4vBDOi4goT75MvW+0dXcNUqisK4jvibY9vDdlgLx+yekxSm55StsHbxUsRxSTt3JEQvlr3cGDkzcSP8bw==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.27.3':
- resolution: {integrity: sha512-ogfbEVQgIZOz5WPWXF2HVb6En+kWzScuxJo/WdQTqEgeyGkaa2ui5sQav9Zkr7bnNCLK48uxmmK0TySm22eiuw==}
+ '@rollup/rollup-win32-arm64-msvc@4.28.0':
+ resolution: {integrity: sha512-Vi+WR62xWGsE/Oj+mD0FNAPY2MEox3cfyG0zLpotZdehPFXwz6lypkGs5y38Jd/NVSbOD02aVad6q6QYF7i8Bg==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.27.3':
- resolution: {integrity: sha512-ecE36ZBMLINqiTtSNQ1vzWc5pXLQHlf/oqGp/bSbi7iedcjcNb6QbCBNG73Euyy2C+l/fn8qKWEwxr+0SSfs3w==}
+ '@rollup/rollup-win32-ia32-msvc@4.28.0':
+ resolution: {integrity: sha512-kN/Vpip8emMLn/eOza+4JwqDZBL6MPNpkdaEsgUtW1NYN3DZvZqSQrbKzJcTL6hd8YNmFTn7XGWMwccOcJBL0A==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.27.3':
- resolution: {integrity: sha512-vliZLrDmYKyaUoMzEbMTg2JkerfBjn03KmAw9CykO0Zzkzoyd7o3iZNam/TpyWNjNT+Cz2iO3P9Smv2wgrR+Eg==}
+ '@rollup/rollup-win32-x64-msvc@4.28.0':
+ resolution: {integrity: sha512-Bvno2/aZT6usSa7lRDL2+hMjVAGjuqaymF1ApZm31JXzniR/hvr14jpU+/z4X6Gt5BPlzosscyJZGUvguXIqeQ==}
cpu: [x64]
os: [win32]
- '@shikijs/core@1.23.1':
- resolution: {integrity: sha512-NuOVgwcHgVC6jBVH5V7iblziw6iQbWWHrj5IlZI3Fqu2yx9awH7OIQkXIcsHsUmY19ckwSgUMgrqExEyP5A0TA==}
+ '@shikijs/core@1.24.0':
+ resolution: {integrity: sha512-6pvdH0KoahMzr6689yh0QJ3rCgF4j1XsXRHNEeEN6M4xJTfQ6QPWrmHzIddotg+xPJUPEPzYzYCKzpYyhTI6Gw==}
- '@shikijs/engine-javascript@1.23.1':
- resolution: {integrity: sha512-i/LdEwT5k3FVu07SiApRFwRcSJs5QM9+tod5vYCPig1Ywi8GR30zcujbxGQFJHwYD7A5BUqagi8o5KS+LEVgBg==}
+ '@shikijs/engine-javascript@1.24.0':
+ resolution: {integrity: sha512-ZA6sCeSsF3Mnlxxr+4wGEJ9Tto4RHmfIS7ox8KIAbH0MTVUkw3roHPHZN+LlJMOHJJOVupe6tvuAzRpN8qK1vA==}
- '@shikijs/engine-oniguruma@1.23.1':
- resolution: {integrity: sha512-KQ+lgeJJ5m2ISbUZudLR1qHeH3MnSs2mjFg7bnencgs5jDVPeJ2NVDJ3N5ZHbcTsOIh0qIueyAJnwg7lg7kwXQ==}
+ '@shikijs/engine-oniguruma@1.24.0':
+ resolution: {integrity: sha512-Eua0qNOL73Y82lGA4GF5P+G2+VXX9XnuUxkiUuwcxQPH4wom+tE39kZpBFXfUuwNYxHSkrSxpB1p4kyRW0moSg==}
- '@shikijs/transformers@1.23.1':
- resolution: {integrity: sha512-yQ2Cn0M9i46p30KwbyIzLvKDk+dQNU+lj88RGO0XEj54Hn4Cof1bZoDb9xBRWxFE4R8nmK63w7oHnJwvOtt0NQ==}
+ '@shikijs/transformers@1.24.0':
+ resolution: {integrity: sha512-Qf/hby+PRPkoHncjYnJf5svK1aCsOUtQhuLzKPnmeXJtuUZCmbH0pTpdNtXe9tgln/RHlyRJnv7q46HHS1sO0Q==}
- '@shikijs/types@1.23.1':
- resolution: {integrity: sha512-98A5hGyEhzzAgQh2dAeHKrWW4HfCMeoFER2z16p5eJ+vmPeF6lZ/elEne6/UCU551F/WqkopqRsr1l2Yu6+A0g==}
+ '@shikijs/types@1.24.0':
+ resolution: {integrity: sha512-aptbEuq1Pk88DMlCe+FzXNnBZ17LCiLIGWAeCWhoFDzia5Q5Krx3DgnULLiouSdd6+LUM39XwXGppqYE0Ghtug==}
'@shikijs/vscode-textmate@9.3.0':
resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==}
@@ -2121,8 +2108,8 @@ packages:
'@ts-morph/common@0.25.0':
resolution: {integrity: sha512-kMnZz+vGGHi4GoHnLmMhGNjm44kGtKUXGnOvrKmMwAuvNjM/PgKVGfUnL7IDvK7Jb2QQ82jq3Zmp04Gy+r3Dkg==}
- '@types/conventional-commits-parser@5.0.0':
- resolution: {integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==}
+ '@types/conventional-commits-parser@5.0.1':
+ resolution: {integrity: sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==}
'@types/d3-array@3.2.1':
resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==}
@@ -2196,8 +2183,8 @@ packages:
'@types/d3-sankey@0.11.2':
resolution: {integrity: sha512-U6SrTWUERSlOhnpSrgvMX64WblX1AxX6nEjI2t3mLK2USpQrnbwYYK+AS9SwiE7wgYmOsSSKoSdr8aoKBH0HgQ==}
- '@types/d3-scale-chromatic@3.0.3':
- resolution: {integrity: sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==}
+ '@types/d3-scale-chromatic@3.1.0':
+ resolution: {integrity: sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ==}
'@types/d3-scale@4.0.8':
resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==}
@@ -2214,8 +2201,8 @@ packages:
'@types/d3-time-format@4.0.3':
resolution: {integrity: sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==}
- '@types/d3-time@3.0.3':
- resolution: {integrity: sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==}
+ '@types/d3-time@3.0.4':
+ resolution: {integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==}
'@types/d3-timer@3.0.2':
resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==}
@@ -2292,11 +2279,11 @@ packages:
'@types/ms@0.7.34':
resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
- '@types/node@20.17.6':
- resolution: {integrity: sha512-VEI7OdvK2wP7XHnsuXbAJnEpEkF6NjSN45QJlL4VGqZSXsnicpesdTWsg9RISeSdYd3yeRj/y3k5KGjUXYnFwQ==}
+ '@types/node@20.17.9':
+ resolution: {integrity: sha512-0JOXkRyLanfGPE2QRCwgxhzlBAvaRdCNMcvbd7jFfpmD4eEXll7LRwy5ymJmyeZqk7Nh7eD2LeUyQ68BbndmXw==}
- '@types/node@22.9.0':
- resolution: {integrity: sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ==}
+ '@types/node@22.10.1':
+ resolution: {integrity: sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ==}
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -2349,8 +2336,8 @@ packages:
'@types/web-bluetooth@0.0.20':
resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
- '@typescript-eslint/eslint-plugin@8.15.0':
- resolution: {integrity: sha512-+zkm9AR1Ds9uLWN3fkoeXgFppaQ+uEVtfOV62dDmsy9QCNqlRHWNEck4yarvRNrvRcHQLGfqBNui3cimoz8XAg==}
+ '@typescript-eslint/eslint-plugin@8.17.0':
+ resolution: {integrity: sha512-HU1KAdW3Tt8zQkdvNoIijfWDMvdSweFYm4hWh+KwhPstv+sCmWb89hCIP8msFm9N1R/ooh9honpSuvqKWlYy3w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
@@ -2360,8 +2347,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/parser@8.15.0':
- resolution: {integrity: sha512-7n59qFpghG4uazrF9qtGKBZXn7Oz4sOMm8dwNWDQY96Xlm2oX67eipqcblDj+oY1lLCbf1oltMZFpUso66Kl1A==}
+ '@typescript-eslint/parser@8.17.0':
+ resolution: {integrity: sha512-Drp39TXuUlD49F7ilHHCG7TTg8IkA+hxCuULdmzWYICxGXvDXmDmWEjJYZQYgf6l/TFfYNE167m7isnc3xlIEg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -2370,12 +2357,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/scope-manager@8.15.0':
- resolution: {integrity: sha512-QRGy8ADi4J7ii95xz4UoiymmmMd/zuy9azCaamnZ3FM8T5fZcex8UfJcjkiEZjJSztKfEBe3dZ5T/5RHAmw2mA==}
+ '@typescript-eslint/scope-manager@8.17.0':
+ resolution: {integrity: sha512-/ewp4XjvnxaREtqsZjF4Mfn078RD/9GmiEAtTeLQ7yFdKnqwTOgRMSvFz4et9U5RiJQ15WTGXPLj89zGusvxBg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@8.15.0':
- resolution: {integrity: sha512-UU6uwXDoI3JGSXmcdnP5d8Fffa2KayOhUUqr/AiBnG1Gl7+7ut/oyagVeSkh7bxQ0zSXV9ptRh/4N15nkCqnpw==}
+ '@typescript-eslint/type-utils@8.17.0':
+ resolution: {integrity: sha512-q38llWJYPd63rRnJ6wY/ZQqIzPrBCkPdpIsaCfkR3Q4t3p6sb422zougfad4TFW9+ElIFLVDzWGiGAfbb/v2qw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -2384,12 +2371,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/types@8.15.0':
- resolution: {integrity: sha512-n3Gt8Y/KyJNe0S3yDCD2RVKrHBC4gTUcLTebVBXacPy091E6tNspFLKRXlk3hwT4G55nfr1n2AdFqi/XMxzmPQ==}
+ '@typescript-eslint/types@8.17.0':
+ resolution: {integrity: sha512-gY2TVzeve3z6crqh2Ic7Cr+CAv6pfb0Egee7J5UAVWCpVvDI/F71wNfolIim4FE6hT15EbpZFVUj9j5i38jYXA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.15.0':
- resolution: {integrity: sha512-1eMp2JgNec/niZsR7ioFBlsh/Fk0oJbhaqO0jRyQBMgkz7RrFfkqF9lYYmBoGBaSiLnu8TAPQTwoTUiSTUW9dg==}
+ '@typescript-eslint/typescript-estree@8.17.0':
+ resolution: {integrity: sha512-JqkOopc1nRKZpX+opvKqnM3XUlM7LpFMD0lYxTqOTKQfCWAmxw45e3qlOCsEqEB2yuacujivudOFpCnqkBDNMw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -2397,8 +2384,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/utils@8.15.0':
- resolution: {integrity: sha512-k82RI9yGhr0QM3Dnq+egEpz9qB6Un+WLYhmoNcvl8ltMEededhh7otBVVIDDsEEttauwdY/hQoSsOv13lxrFzQ==}
+ '@typescript-eslint/utils@8.17.0':
+ resolution: {integrity: sha512-bQC8BnEkxqG8HBGKwG9wXlZqg37RKSMY7v/X8VEWD8JG2JuTHuNK0VFvMPMUKQcbk6B+tf05k+4AShAEtCtJ/w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -2407,27 +2394,27 @@ packages:
typescript:
optional: true
- '@typescript-eslint/visitor-keys@8.15.0':
- resolution: {integrity: sha512-h8vYOulWec9LhpwfAdZf2bjr8xIp0KNKnpgqSz0qqYYKAW/QZKw3ktRndbiAtUz4acH4QLQavwZBYCc0wulA/Q==}
+ '@typescript-eslint/visitor-keys@8.17.0':
+ resolution: {integrity: sha512-1Hm7THLpO6ww5QU6H/Qp+AusUUl+z/CAm3cNZZ0jQvon9yicgO7Rwd+/WWRpMKLYV6p2UvdbR27c86rzCPpreg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@ungap/structured-clone@1.2.0':
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
- '@unhead/dom@1.11.11':
- resolution: {integrity: sha512-4YwziCH5CmjvUzSGdZ4Klj6BqhLSTNZooA9kt47yDxj4Qw9uHqVnXwWWupYsVdIYPNsw1tR2AkHveg82y1Fn3A==}
+ '@unhead/dom@1.11.13':
+ resolution: {integrity: sha512-8Bpo3e50i49/z0TMiskQk3OqUVJpWOO0cnEEydJeFnjsPczDH76H3mWLvB11cv1B/rjLdBiPgui7yetFta5LCw==}
- '@unhead/schema@1.11.11':
- resolution: {integrity: sha512-xSGsWHPBYcMV/ckQeImbrVu6ddeRnrdDCgXUKv3xIjGBY+ob/96V80lGX8FKWh8GwdFSwhblISObKlDAt5K9ZQ==}
+ '@unhead/schema@1.11.13':
+ resolution: {integrity: sha512-fIpQx6GCpl99l4qJXsPqkXxO7suMccuLADbhaMSkeXnVEi4ZIle+l+Ri0z+GHAEpJj17FMaQdO5n9FMSOMUxkw==}
- '@unhead/shared@1.11.11':
- resolution: {integrity: sha512-RfdvUskPn90ipO+PmR98jKZ8Lsx1uuzscOenO5xcrMrtWGhlLWaEBIrbvFOvX5PZ/u8/VNMJChTXGDUjEtHmlg==}
+ '@unhead/shared@1.11.13':
+ resolution: {integrity: sha512-EiJ3nsEtf6dvZ6OwVYrrrrCUl4ZE/9GTjpexEMti8EJXweSuL7SifNNXtIFk7UMoM0ULYxb7K/AKQV/odwoZyQ==}
- '@unhead/ssr@1.11.11':
- resolution: {integrity: sha512-NQC8y+4ldwkMr3x8WFwv3+OR6g+Sj7dwL6J/3ST25KnvlwDSub2KGbnm2hF1x8vTpTmXTVxMA3GDRL9MRfLvMg==}
+ '@unhead/ssr@1.11.13':
+ resolution: {integrity: sha512-LjomDIH8vXbnQQ8UVItmJ52BZBOyK12i1Q4W658X/f0VGtm0z3AulGQIvYla0rFcxAynDygfvWSC7xrlqDtRUw==}
- '@unhead/vue@1.11.11':
- resolution: {integrity: sha512-AxsHHauZ+w0m2irwDHqkc3GdNChMLBtolk8CN3IAZM6vTwH0EbPXlFCFcIk4WwkH0opG+R2GlKTThr5H0HLm7g==}
+ '@unhead/vue@1.11.13':
+ resolution: {integrity: sha512-s5++LqsNM01rkMQwtc4W19cP1fXC81o4YMyL+Kaqh9X0OPLeWnjONAh0U/Z2CIXBqhJHI+DoNXmDACXyuWPPxg==}
peerDependencies:
vue: '>=2.7 || >=3'
@@ -2437,13 +2424,13 @@ packages:
'@unovis/graphlibrary@2.2.0-2':
resolution: {integrity: sha512-HeEzpd/vDyWiIJt0rnh+2ICXUIuF2N0+Z9OJJiKg0DB+eFUcD+bk+9QPhYHwkFwfxdjDA9fHi1DZ/O/bbV58Nw==}
- '@unovis/ts@1.4.4':
- resolution: {integrity: sha512-OoAbCdxSq3tvEKDUDkWNIkPWJ1tnjklWR+8W3zhVqUkOvpqTYW8IjAl+07dPS9/qv+mtjZry5zOt1aBCMPCfdA==}
+ '@unovis/ts@1.4.5':
+ resolution: {integrity: sha512-FyMjru5A+g7EqH30tWZraVwkZChzpKtXmlRkA+CZ6Pp1obYyyIBfapSZWO4oN/xcS6sVmLQ7o3L1qS4N8qo3/Q==}
- '@unovis/vue@1.4.4':
- resolution: {integrity: sha512-19xdi/0+18NzUyRh4sK0GCIv5JbqSMSEqXaMio4Vya8I/8JYU0Sgyo4jwr+O60Rl8fSOXScL9NJQHxPHJeTcMg==}
+ '@unovis/vue@1.4.5':
+ resolution: {integrity: sha512-jmLi7L5fWHouuK+MKljila6rlM5wCaRvjIWVH4rh0xtr8GTUGpoH61KjBCwq3mLwBb+u+m2LcR7FFyPi3+jdOg==}
peerDependencies:
- '@unovis/ts': 1.4.4
+ '@unovis/ts': 1.4.5
vue: ^3
'@unovue/detypes@0.8.4':
@@ -2454,27 +2441,27 @@ packages:
'@vee-validate/zod@4.14.7':
resolution: {integrity: sha512-UD0Tfyz1cKKd7BinnUztqKL+oeMjg/T4ZEguN/uZV4DsR9z7gdrD0lOuOU7aVl9UpVK6NM7MhDka35Lj7b/DTw==}
- '@vercel/nft@0.27.6':
- resolution: {integrity: sha512-mwuyUxskdcV8dd7N7JnxBgvFEz1D9UOePI/WyLLzktv6HSCwgPNQGit/UJ2IykAWGlypKw4pBQjOKWvIbXITSg==}
+ '@vercel/nft@0.27.7':
+ resolution: {integrity: sha512-FG6H5YkP4bdw9Ll1qhmbxuE8KwW2E/g8fJpM183fWQLeVDGqzeywMIeJ9h2txdWZ03psgWMn6QymTxaDLmdwUg==}
engines: {node: '>=16'}
hasBin: true
- '@vitejs/plugin-vue-jsx@4.1.0':
- resolution: {integrity: sha512-KuRejz7KAFvhXDzOudlaS2IyygAwoAEEMtHAdcRSy/8cA5iKH043Qudcz48zsC0M0vvN5iKwIwNMuWbBYn6/Yg==}
+ '@vitejs/plugin-vue-jsx@4.1.1':
+ resolution: {integrity: sha512-uMJqv/7u1zz/9NbWAD3XdjaY20tKTf17XVfQ9zq4wY1BjsB/PjpJPMe2xiG39QpP4ZdhYNhm4Hvo66uJrykNLA==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
- vite: ^5.0.0
+ vite: ^5.0.0 || ^6.0.0
vue: ^3.0.0
- '@vitejs/plugin-vue@5.2.0':
- resolution: {integrity: sha512-7n7KdUEtx/7Yl7I/WVAMZ1bEb0eVvXF3ummWTeLcs/9gvo9pJhuLdouSXGjdZ/MKD1acf1I272+X0RMua4/R3g==}
+ '@vitejs/plugin-vue@5.2.1':
+ resolution: {integrity: sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
- vite: ^5.0.0
+ vite: ^5.0.0 || ^6.0.0
vue: ^3.2.25
- '@vitest/eslint-plugin@1.1.10':
- resolution: {integrity: sha512-uScH5Kz5v32vvtQYB2iodpoPg2mGASK+VKpjlc2IUgE0+16uZKqVKi2vQxjxJ6sMCQLBs4xhBFZlmZBszsmfKQ==}
+ '@vitest/eslint-plugin@1.1.14':
+ resolution: {integrity: sha512-ej0cT5rUt7uvwxuu7Qxkm7fI+eaOq8vD34qGpuRoXCdvOybOlE5GDqtgvVCYbxLANkcRJfm5VDU1TnJmQRHi9g==}
peerDependencies:
'@typescript-eslint/utils': '>= 8.0'
eslint: '>= 8.57.0'
@@ -2486,11 +2473,11 @@ packages:
vitest:
optional: true
- '@vitest/expect@2.1.5':
- resolution: {integrity: sha512-nZSBTW1XIdpZvEJyoP/Sy8fUg0b8od7ZpGDkTUcfJ7wz/VoZAFzFfLyxVxGFhUjJzhYqSbIpfMtl/+k/dpWa3Q==}
+ '@vitest/expect@2.1.8':
+ resolution: {integrity: sha512-8ytZ/fFHq2g4PJVAtDX57mayemKgDR6X3Oa2Foro+EygiOJHUXhCqBAAKQYYajZpFoIfvBCF1j6R6IYRSIUFuw==}
- '@vitest/mocker@2.1.5':
- resolution: {integrity: sha512-XYW6l3UuBmitWqSUXTNXcVBUCRytDogBsWuNXQijc00dtnU/9OqpXWp4OJroVrad/gLIomAq9aW8yWDBtMthhQ==}
+ '@vitest/mocker@2.1.8':
+ resolution: {integrity: sha512-7guJ/47I6uqfttp33mgo6ga5Gr1VnL58rcqYKyShoRK9ebu8T5Rs6HN3s1NABiBeVTdWNrwUMcHH54uXZBN4zA==}
peerDependencies:
msw: ^2.4.9
vite: ^5.0.0
@@ -2500,25 +2487,25 @@ packages:
vite:
optional: true
- '@vitest/pretty-format@2.1.5':
- resolution: {integrity: sha512-4ZOwtk2bqG5Y6xRGHcveZVr+6txkH7M2e+nPFd6guSoN638v/1XQ0K06eOpi0ptVU/2tW/pIU4IoPotY/GZ9fw==}
+ '@vitest/pretty-format@2.1.8':
+ resolution: {integrity: sha512-9HiSZ9zpqNLKlbIDRWOnAWqgcA7xu+8YxXSekhr0Ykab7PAYFkhkwoqVArPOtJhPmYeE2YHgKZlj3CP36z2AJQ==}
- '@vitest/runner@2.1.5':
- resolution: {integrity: sha512-pKHKy3uaUdh7X6p1pxOkgkVAFW7r2I818vHDthYLvUyjRfkKOU6P45PztOch4DZarWQne+VOaIMwA/erSSpB9g==}
+ '@vitest/runner@2.1.8':
+ resolution: {integrity: sha512-17ub8vQstRnRlIU5k50bG+QOMLHRhYPAna5tw8tYbj+jzjcspnwnwtPtiOlkuKC4+ixDPTuLZiqiWWQ2PSXHVg==}
- '@vitest/snapshot@2.1.5':
- resolution: {integrity: sha512-zmYw47mhfdfnYbuhkQvkkzYroXUumrwWDGlMjpdUr4jBd3HZiV2w7CQHj+z7AAS4VOtWxI4Zt4bWt4/sKcoIjg==}
+ '@vitest/snapshot@2.1.8':
+ resolution: {integrity: sha512-20T7xRFbmnkfcmgVEz+z3AU/3b0cEzZOt/zmnvZEctg64/QZbSDJEVm9fLnnlSi74KibmRsO9/Qabi+t0vCRPg==}
- '@vitest/spy@2.1.5':
- resolution: {integrity: sha512-aWZF3P0r3w6DiYTVskOYuhBc7EMc3jvn1TkBg8ttylFFRqNN2XGD7V5a4aQdk6QiUzZQ4klNBSpCLJgWNdIiNw==}
+ '@vitest/spy@2.1.8':
+ resolution: {integrity: sha512-5swjf2q95gXeYPevtW0BLk6H8+bPlMb4Vw/9Em4hFxDcaOxS+e0LOX4yqNxoHzMR2akEB2xfpnWUzkZokmgWDg==}
- '@vitest/ui@2.1.5':
- resolution: {integrity: sha512-ERgKkDMTfngrZip6VG5h8L9B5D0AH/4+bga4yR1UzGH7c2cxv3LWogw2Dvuwr9cP3/iKDHYys7kIFLDKpxORTg==}
+ '@vitest/ui@2.1.8':
+ resolution: {integrity: sha512-5zPJ1fs0ixSVSs5+5V2XJjXLmNzjugHRyV11RqxYVR+oMcogZ9qTuSfKW+OcTV0JeFNznI83BNylzH6SSNJ1+w==}
peerDependencies:
- vitest: 2.1.5
+ vitest: 2.1.8
- '@vitest/utils@2.1.5':
- resolution: {integrity: sha512-yfj6Yrp0Vesw2cwJbP+cl04OC+IHFsuQsrsJBL9pyGeQXE56v1UAOQco+SR55Vf1nQzfV0QJg1Qum7AaWUwwYg==}
+ '@vitest/utils@2.1.8':
+ resolution: {integrity: sha512-dwSoui6djdwbfFmIgbIjX2ZhIoG7Ex/+xpxyiEgIGzjliY8xGkcpITKTlp6B4MgtGkF2ilvm97cPM96XZaAgcA==}
'@volar/language-core@2.4.10':
resolution: {integrity: sha512-hG3Z13+nJmGaT+fnQzAkS0hjJRa2FCeqZt6Bd+oGNhUkQ+mTFsDETg5rqUTxyzIh5pSOGY7FHCWUS8G82AzLCA==}
@@ -2572,22 +2559,22 @@ packages:
'@vue/devtools-api@6.6.4':
resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
- '@vue/devtools-api@7.6.4':
- resolution: {integrity: sha512-5AaJ5ELBIuevmFMZYYLuOO9HUuY/6OlkOELHE7oeDhy4XD/hSODIzktlsvBOsn+bto3aD0psj36LGzwVu5Ip8w==}
+ '@vue/devtools-api@7.6.7':
+ resolution: {integrity: sha512-PV4I31WaV2rfA8RGauM+69uFEzWkqtP561RiLU2wK+Ce85u3zyKW3aoESlLCNzkc4y0JaJyskH6zAE3xWOP8+Q==}
- '@vue/devtools-core@7.4.4':
- resolution: {integrity: sha512-DLxgA3DfeADkRzhAfm3G2Rw/cWxub64SdP5b+s5dwL30+whOGj+QNhmyFpwZ8ZTrHDFRIPj0RqNzJ8IRR1pz7w==}
+ '@vue/devtools-core@7.6.4':
+ resolution: {integrity: sha512-blSwGVYpb7b5TALMjjoBiAl5imuBF7WEOAtaJaBMNikR8SQkm6mkUt4YlIKh9874/qoimwmpDOm+GHBZ4Y5m+g==}
peerDependencies:
vue: ^3.0.0
- '@vue/devtools-kit@7.4.4':
- resolution: {integrity: sha512-awK/4NfsUG0nQ7qnTM37m7ZkEUMREyPh8taFCX+uQYps/MTFEum0AD05VeGDRMXwWvMmGIcWX9xp8ZiBddY0jw==}
-
'@vue/devtools-kit@7.6.4':
resolution: {integrity: sha512-Zs86qIXXM9icU0PiGY09PQCle4TI750IPLmAJzW5Kf9n9t5HzSYf6Rz6fyzSwmfMPiR51SUKJh9sXVZu78h2QA==}
- '@vue/devtools-shared@7.6.4':
- resolution: {integrity: sha512-nD6CUvBEel+y7zpyorjiUocy0nh77DThZJ0k1GRnJeOmY3ATq2fWijEp7wk37gb023Cb0R396uYh5qMSBQ5WFg==}
+ '@vue/devtools-kit@7.6.7':
+ resolution: {integrity: sha512-V8/jrXY/swHgnblABG9U4QCbE60c6RuPasmv2d9FvVqc5d94t1vDiESuvRmdNJBdWz4/D3q6ffgyAfRVjwHYEw==}
+
+ '@vue/devtools-shared@7.6.7':
+ resolution: {integrity: sha512-QggO6SviAsolrePAXZ/sA1dSicSPt4TueZibCvydfhNDieL1lAuyMTgQDGst7TEvMGb4vgYv2I+1sDkO4jWNnw==}
'@vue/language-core@2.1.10':
resolution: {integrity: sha512-DAI289d0K3AB5TUG3xDp9OuQ71CnrujQwJrQnfuZDwo6eGNf0UoRlPuaVNO+Zrn65PC3j0oB2i7mNmVPggeGeQ==}
@@ -2623,11 +2610,11 @@ packages:
'@vueuse/core@10.11.1':
resolution: {integrity: sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==}
- '@vueuse/core@11.2.0':
- resolution: {integrity: sha512-JIUwRcOqOWzcdu1dGlfW04kaJhW3EXnnjJJfLTtddJanymTL7lF1C0+dVVZ/siLfc73mWn+cGP1PE1PKPruRSA==}
+ '@vueuse/core@11.3.0':
+ resolution: {integrity: sha512-7OC4Rl1f9G8IT6rUfi9JrKiXy4bfmHhZ5x2Ceojy0jnd3mHNEvV4JaRygH362ror6/NZ+Nl+n13LPzGiPN8cKA==}
- '@vueuse/integrations@11.2.0':
- resolution: {integrity: sha512-zGXz3dsxNHKwiD9jPMvR3DAxQEOV6VWIEYTGVSB9PNpk4pTWR+pXrHz9gvXWcP2sTk3W2oqqS6KwWDdntUvNVA==}
+ '@vueuse/integrations@11.3.0':
+ resolution: {integrity: sha512-5fzRl0apQWrDezmobchoiGTkGw238VWESxZHazfhP3RM7pDSiyXy18QbfYkILoYNTd23HPAfQTJpkUc5QbkwTw==}
peerDependencies:
async-validator: ^4
axios: ^1
@@ -2670,14 +2657,14 @@ packages:
'@vueuse/metadata@10.11.1':
resolution: {integrity: sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==}
- '@vueuse/metadata@11.2.0':
- resolution: {integrity: sha512-L0ZmtRmNx+ZW95DmrgD6vn484gSpVeRbgpWevFKXwqqQxW9hnSi2Ppuh2BzMjnbv4aJRiIw8tQatXT9uOB23dQ==}
+ '@vueuse/metadata@11.3.0':
+ resolution: {integrity: sha512-pwDnDspTqtTo2HwfLw4Rp6yywuuBdYnPYDq+mO38ZYKGebCUQC/nVj/PXSiK9HX5otxLz8Fn7ECPbjiRz2CC3g==}
'@vueuse/shared@10.11.1':
resolution: {integrity: sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==}
- '@vueuse/shared@11.2.0':
- resolution: {integrity: sha512-VxFjie0EanOudYSgMErxXfq6fo8vhr5ICI+BuE3I9FnX7ePllEsVrRQ7O6Q1TLgApeLuPKcHQxAXpP+KnlrJsg==}
+ '@vueuse/shared@11.3.0':
+ resolution: {integrity: sha512-P8gSSWQeucH5821ek2mn/ciCk+MS/zoRKqdQIM3bHq6p7GXDAJLmnRRKmF5F65sAVJIfzQlwR3aDzwCn10s8hA==}
JSONStream@1.3.5:
resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==}
@@ -2731,8 +2718,8 @@ packages:
ajv@8.17.1:
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
- algoliasearch@5.14.2:
- resolution: {integrity: sha512-aYjI4WLamMxbhdJ2QAA99VbDCJOGzMOdT2agh57bi40n86ufkhZSIAf6mkocr7NmtBLtwCnSHvD5NJ+Ky5elWw==}
+ algoliasearch@5.15.0:
+ resolution: {integrity: sha512-Yf3Swz1s63hjvBVZ/9f2P1Uu48GjmjCN+Esxb6MAONMGtZB1fRX8/S1AhUTtsuTlcGovbYLxpHgc7wEzstDZBw==}
engines: {node: '>= 14.0.0'}
alien-signals@0.2.2:
@@ -2832,8 +2819,8 @@ packages:
resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
engines: {node: '>=12'}
- ast-kit@1.3.1:
- resolution: {integrity: sha512-3bIRV4s/cNAee2rKjuvYdoG+0CMqtOIgCvWrJL6zG8R0fDyMwYzStspX5JqXPbdMzM+qxHZ6g2rMHKhr3HkPlQ==}
+ ast-kit@1.3.2:
+ resolution: {integrity: sha512-gdvX700WVC6sHCJQ7bJGfDvtuKAh6Sa6weIZROxfzUZKP7BjvB8y0SMlM/o4omSQ3L60PQSJROBJsb0vEViVnA==}
engines: {node: '>=16.14.0'}
ast-types@0.14.2:
@@ -3028,8 +3015,8 @@ packages:
caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
- caniuse-lite@1.0.30001680:
- resolution: {integrity: sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA==}
+ caniuse-lite@1.0.30001686:
+ resolution: {integrity: sha512-Y7deg0Aergpa24M3qLC5xjNklnKnhsmSyR/V89dLZ1n0ucJIFNs7PgR2Yfa/Zf6W79SbBicgtGxZr2juHkEUIA==}
capture-stack-trace@1.0.2:
resolution: {integrity: sha512-X/WM2UQs6VMHUtjUDnZTRI+i1crWteJySFzr9UpGoQa4WQffXVTTXuekjl7TjZRlcF2XfjgITT0HxZ9RnxeT0w==}
@@ -3098,8 +3085,8 @@ packages:
citty@0.1.6:
resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
- class-variance-authority@0.7.0:
- resolution: {integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==}
+ class-variance-authority@0.7.1:
+ resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
clean-regexp@1.0.0:
resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==}
@@ -3147,10 +3134,6 @@ packages:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
- clsx@2.0.0:
- resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==}
- engines: {node: '>=6'}
-
clsx@2.1.1:
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
engines: {node: '>=6'}
@@ -3246,7 +3229,7 @@ packages:
engines: {node: '>= 14'}
concat-map@0.0.1:
- resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
concat-stream@1.6.2:
resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==}
@@ -3355,8 +3338,8 @@ packages:
resolution: {integrity: sha512-onMB0OkDjkXunhdW9htFjEhqrD54+M94i6ackoUkjHKbRnXdyEyKRelp4nJ1kAz32+s27jP1FsebpJCVl0BsvA==}
engines: {node: '>=18.0'}
- cronstrue@2.51.0:
- resolution: {integrity: sha512-7EG9VaZZ5SRbZ7m25dmP6xaS0qe9ay6wywMskFOU/lMDKa+3gZr2oeT5OUfXwRP/Bcj8wxdYJ65AHU70CI3tsw==}
+ cronstrue@2.52.0:
+ resolution: {integrity: sha512-NKgHbWkSZXJUcaBHSsyzC8eegD6bBd4O0oCI6XMIJ+y4Bq3v4w7sY3wfWoKPuVlq9pQHRB6od0lmKpIqi8TlKA==}
hasBin: true
cross-spawn@5.1.0:
@@ -3788,8 +3771,8 @@ packages:
resolution: {integrity: sha512-1gxPBJpI/pcjQhKgIU91II6Wkay+dLcN3M6rf2uwP8hRur3HtQXjVrdAK3sjC0piaEuxzMwjXChcETiJl47lAQ==}
engines: {node: '>=18'}
- dotenv@16.4.5:
- resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
+ dotenv@16.4.7:
+ resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==}
engines: {node: '>=12'}
duplexer3@0.1.5:
@@ -3812,31 +3795,31 @@ packages:
engines: {node: '>=0.8'}
ee-first@1.1.1:
- resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=}
+ resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.5.63:
- resolution: {integrity: sha512-ddeXKuY9BHo/mw145axlyWjlJ1UBt4WK3AlvkT7W2AbqfRQoacVoRUCF6wL3uIx/8wT9oLKXzI+rFqHHscByaA==}
+ electron-to-chromium@1.5.68:
+ resolution: {integrity: sha512-FgMdJlma0OzUYlbrtZ4AeXjKxKPk6KT8WOP8BjcqxWtlg8qyJQjRzPJzUtUn5GBg1oQ26hFs7HOOHJMYiJRnvQ==}
elkjs@0.8.2:
resolution: {integrity: sha512-L6uRgvZTH+4OF5NE/MBbzQx/WYpru1xCBE9respNj6qznEewGUIfhzmm7horWWxbNO2M0WckQypGctR8lH79xQ==}
- embla-carousel-autoplay@8.4.0:
- resolution: {integrity: sha512-AJHXrnaY+Tf4tb/+oItmJSpz4P0WvS62GrW5Z4iFY3zsH0mkKcijzd04LIkj0P4DkTazIBEuXple+nUVmuMsrQ==}
+ embla-carousel-autoplay@8.5.1:
+ resolution: {integrity: sha512-FnZklFpePfp8wbj177UwVaGFehgs+ASVcJvYLWTtHuYKURynCc3IdDn2qrn0E5Qpa3g9yeGwCS4p8QkrZmO8xg==}
peerDependencies:
- embla-carousel: 8.4.0
+ embla-carousel: 8.5.1
- embla-carousel-reactive-utils@8.4.0:
- resolution: {integrity: sha512-yi/2paSYQqMGgh983Sj8G4+zt4bhABC1pzN4P4Vmc7UhSxqo9I7r15tR7s3/zS0JEl3orRSw7TxX92IZqj5NXA==}
+ embla-carousel-reactive-utils@8.5.1:
+ resolution: {integrity: sha512-n7VSoGIiiDIc4MfXF3ZRTO59KDp820QDuyBDGlt5/65+lumPHxX2JLz0EZ23hZ4eg4vZGUXwMkYv02fw2JVo/A==}
peerDependencies:
- embla-carousel: 8.4.0
+ embla-carousel: 8.5.1
- embla-carousel-vue@8.4.0:
- resolution: {integrity: sha512-rtvnPWB3UDO6FJ6b+/8WoeTN6hgnhIix2eUmL8gUsjSDus0b19XI+gzdF9MFXSgP/V0M3/LBuNT2KMpt6PkjNA==}
+ embla-carousel-vue@8.5.1:
+ resolution: {integrity: sha512-DdWsmiketOzAn6D42A3AQmJ/nndt4ryjBX/RMupl97gJf6oIec5q8Sc3cKuRhCXlLE0RZ7jz3ZlHW7xrT+BJDg==}
peerDependencies:
vue: ^3.2.37
- embla-carousel@8.4.0:
- resolution: {integrity: sha512-sUzm4DGGsdZCom7LEO38Uu6C7oQoFfPorKDf/f7j2EeRCMhHSOt3CvF+pHCaI6N+x5Y8/tfLueJ0WZlgUREnew==}
+ embla-carousel@8.5.1:
+ resolution: {integrity: sha512-JUb5+FOHobSiWQ2EJNaueCNT/cQU9L6XWBbWmorWPQT9bkbk+fhsuLr8wWrzXKagO3oWszBO7MSx+GfaRk4E6A==}
emoji-regex-xs@1.0.0:
resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==}
@@ -3950,8 +3933,8 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
- eslint-compat-utils@0.6.3:
- resolution: {integrity: sha512-9IDdksh5pUYP2ZLi7mOdROxVjLY8gY2qKxprmrJ/5Dyqud7M/IFKxF3o0VLlRhITm1pK6Fk7NiBxE39M/VlUcw==}
+ eslint-compat-utils@0.6.4:
+ resolution: {integrity: sha512-/u+GQt8NMfXO8w17QendT4gvO5acfxQsAKirAt0LVxDnr2N8YLCVbregaNc/Yhp7NM128DwCaRvr8PLDfeNkQw==}
engines: {node: '>=12'}
peerDependencies:
eslint: '>=6.0.0'
@@ -3999,14 +3982,14 @@ packages:
peerDependencies:
eslint: '>=8'
- eslint-plugin-import-x@4.4.2:
- resolution: {integrity: sha512-mDRXPSLQ0UQZQw91QdG4/qZT6hgeW2MJTczAbgPseUZuPEtIjjdPOolXroRkulnOn3fzj6gNgvk+wchMJiHElg==}
+ eslint-plugin-import-x@4.5.0:
+ resolution: {integrity: sha512-l0OTfnPF8RwmSXfjT75N8d6ZYLVrVYWpaGlgvVkVqFERCI5SyBfDP7QEMr3kt0zWi2sOa9EQ47clbdFsHkF83Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- eslint-plugin-jsdoc@50.5.0:
- resolution: {integrity: sha512-xTkshfZrUbiSHXBwZ/9d5ulZ2OcHXxSvm/NPo494H/hadLRJwOq5PMV0EUpMqsb9V+kQo+9BAgi6Z7aJtdBp2A==}
+ eslint-plugin-jsdoc@50.6.0:
+ resolution: {integrity: sha512-tCNp4fR79Le3dYTPB0dKEv7yFyvGkUCa+Z3yuTrrNGGOxBlXo9Pn0PEgroOZikUQOGjxoGMVKNjrOHcYEdfszg==}
engines: {node: '>=18'}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
@@ -4017,8 +4000,8 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
- eslint-plugin-n@17.13.2:
- resolution: {integrity: sha512-MhBAKkT01h8cOXcTBTlpuR7bxH5OBUNpUXefsvwSVEy46cY4m/Kzr2osUCQvA3zJFD6KuCeNNDv0+HDuWk/OcA==}
+ eslint-plugin-n@17.14.0:
+ resolution: {integrity: sha512-maxPLMEA0rPmRpoOlxEclKng4UpDe+N5BJS4t24I3UKnN109Qcivnfs37KMy84G0af3bxjog5lKctP5ObsvcTA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=8.23.0'
@@ -4027,24 +4010,11 @@ packages:
resolution: {integrity: sha512-brcKcxGnISN2CcVhXJ/kEQlNa0MEfGRtwKtWA16SkqXHKitaKIMrfemJKLKX1YqDU5C/5JY3PvZXd5jEW04e0Q==}
engines: {node: '>=5.0.0'}
- eslint-plugin-perfectionist@3.9.1:
- resolution: {integrity: sha512-9WRzf6XaAxF4Oi5t/3TqKP5zUjERhasHmLFHin2Yw6ZAp/EP/EVA2dr3BhQrrHWCm5SzTMZf0FcjDnBkO2xFkA==}
+ eslint-plugin-perfectionist@4.2.0:
+ resolution: {integrity: sha512-hEMFx5xfSc/0OLZXJhSaLUKkFxATuRf4yL2iVfxEcxkkb17DfoLZY9eH960dPSw5uB7o+4avqP3rtkNp1Vwo7w==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
- astro-eslint-parser: ^1.0.2
eslint: '>=8.0.0'
- svelte: '>=3.0.0'
- svelte-eslint-parser: ^0.41.1
- vue-eslint-parser: '>=9.0.0'
- peerDependenciesMeta:
- astro-eslint-parser:
- optional: true
- svelte:
- optional: true
- svelte-eslint-parser:
- optional: true
- vue-eslint-parser:
- optional: true
eslint-plugin-regexp@2.7.0:
resolution: {integrity: sha512-U8oZI77SBtH8U3ulZ05iu0qEzIizyEDXd+BWHvyVxTOjGwcDcvy/kEpgFG4DYca2ByRLiVPFZ2GeH7j1pdvZTA==}
@@ -4064,8 +4034,8 @@ packages:
peerDependencies:
eslint: '>=8.56.0'
- eslint-plugin-unicorn@56.0.0:
- resolution: {integrity: sha512-aXpddVz/PQMmd69uxO98PA4iidiVNvA0xOtbpUoz1WhBd4RxOQQYqN618v68drY0hmy5uU2jy1bheKEVWBjlPw==}
+ eslint-plugin-unicorn@56.0.1:
+ resolution: {integrity: sha512-FwVV0Uwf8XPfVnKSGpMg7NtlZh0G0gBarCaFcMUOoqPxXryxdYxTRRv4kH6B9TFCVIrjRXG+emcxIk2ayZilog==}
engines: {node: '>=18.18'}
peerDependencies:
eslint: '>=8.56.0'
@@ -4079,14 +4049,14 @@ packages:
'@typescript-eslint/eslint-plugin':
optional: true
- eslint-plugin-vue@9.31.0:
- resolution: {integrity: sha512-aYMUCgivhz1o4tLkRHj5oq9YgYPM4/EJc0M7TAKRLCUA5OYxRLAhYEVD2nLtTwLyixEFI+/QXSvKU9ESZFgqjQ==}
+ eslint-plugin-vue@9.32.0:
+ resolution: {integrity: sha512-b/Y05HYmnB/32wqVcjxjHZzNpwxj1onBOvqW89W+V+XNG1dRuaFbNd3vT9CLbr2LXjEoq+3vn8DanWf7XU22Ug==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
- eslint-plugin-yml@1.15.0:
- resolution: {integrity: sha512-leC8APYVOsKyWUlvRwVhewytK5wS70BfMqIaUplFstRfzCoVp0YoEroV4cUEvQrBj93tQ3M9LcjO/ewr6D4kjA==}
+ eslint-plugin-yml@1.16.0:
+ resolution: {integrity: sha512-t4MNCetPjTn18/fUDlQ/wKkcYjnuLYKChBrZ0qUaNqRigVqChHWzTP8SrfFi5s4keX3vdlkWRSu8zHJMdKwxWQ==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=6.0.0'
@@ -4113,8 +4083,8 @@ packages:
resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.15.0:
- resolution: {integrity: sha512-7CrWySmIibCgT1Os28lUU6upBshZ+GxybLOrmRzi08kS8MBuO8QA7pXEgYgY5W8vK3e74xv0lpjo9DbaGU9Rkw==}
+ eslint@9.16.0:
+ resolution: {integrity: sha512-whp8mSQI4C8VXd+fLgSM0lh3UlmcFtVwUQjyKCFfsp+2ItAIYhlq/hqGahGqHE6cv9unM41VlqKk2VtKYR2TaA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -4507,8 +4477,8 @@ packages:
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
engines: {node: '>=18'}
- globals@15.12.0:
- resolution: {integrity: sha512-1+gLErljJFhbOVyaetcwJiJ4+eLe45S2E7P5UiZ9xGfeq3ATQf5DOv9G7MH3gGbKQLkzmNh2DxfZwLdw+j6oTQ==}
+ globals@15.13.0:
+ resolution: {integrity: sha512-49TewVEz0UxZjr1WYYsWpPrhyC/B/pA8Bq0fUmet2n+eR7yn0IvNzNaoBwnK6mdkzcN+se7Ez9zUgULTz2QH4g==}
engines: {node: '>=18'}
globby@13.2.2:
@@ -4552,8 +4522,8 @@ packages:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- has-symbols@1.0.3:
- resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
+ has-symbols@1.1.0:
+ resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
engines: {node: '>= 0.4'}
has-tostringtag@1.0.2:
@@ -4943,8 +4913,8 @@ packages:
resolution: {integrity: sha512-pmfRbVRs/7khFrSAYnSiJ8C0D5GvzkE4Ey2pAvUcJsw1ly/p+7ut27jbJrjY79BpAJQJ4gXYFtK6d1Aub+9baQ==}
hasBin: true
- jiti@2.4.0:
- resolution: {integrity: sha512-H5UpaUI+aHOqZXlYOaFP/8AzKsg+guWu+Pr3Y8i7+Y3zr1aXAvCvTAQ1RxSc6oVD8R8c7brgNtTVP91E7upH/g==}
+ jiti@2.4.1:
+ resolution: {integrity: sha512-yPBThwecp1wS9DmoA4x4KR2h3QoslacnDR8ypuFM962kI4/456Iy1oHx2RAgh4jfZNdn0bctsdadceiBUgpU1g==}
hasBin: true
joycon@3.1.1:
@@ -4958,8 +4928,8 @@ packages:
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
- js-tokens@9.0.0:
- resolution: {integrity: sha512-WriZw1luRMlmV3LGJaR6QOJjWwgLUTf89OwT2lUOyjX2dJGBwgmIkbcz+7WFZjrZM635JOIR517++e/67CP9dQ==}
+ js-tokens@9.0.1:
+ resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
js-yaml@4.1.0:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
@@ -5036,10 +5006,6 @@ packages:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
- kleur@4.1.5:
- resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
- engines: {node: '>=6'}
-
klona@2.0.6:
resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
@@ -5091,12 +5057,8 @@ packages:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
- lilconfig@2.1.0:
- resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
- engines: {node: '>=10'}
-
- lilconfig@3.1.2:
- resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
+ lilconfig@3.1.3:
+ resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
engines: {node: '>=14'}
lines-and-columns@1.2.4:
@@ -5239,12 +5201,12 @@ packages:
magic-regexp@0.8.0:
resolution: {integrity: sha512-lOSLWdE156csDYwCTIGiAymOLN7Epu/TU5e/oAnISZfU6qP+pgjkE+xbVjVn3yLPKN8n1G2yIAYTAM5KRk6/ow==}
- magic-string-ast@0.6.2:
- resolution: {integrity: sha512-oN3Bcd7ZVt+0VGEs7402qR/tjgjbM7kPlH/z7ufJnzTLVBzXJITRHOJiwMmmYMgZfdoWQsfQcY+iKlxiBppnMA==}
+ magic-string-ast@0.6.3:
+ resolution: {integrity: sha512-C9sgUzVZtUtzCBoMdYtwrIRQ4IucGRFGgdhkjL7PXsVfPYmTuWtewqzk7dlipaCMWH/gOYehW9rgMoa4Oebtpw==}
engines: {node: '>=16.14.0'}
- magic-string@0.30.13:
- resolution: {integrity: sha512-8rYBO+MsWkgjDSOvLomYnzhdwEG51olQ4zL5KXnNJWV5MNmrb4rTZdrtkhxjnD/QyZUqR/Z/XDsUs/4ej2nx0g==}
+ magic-string@0.30.14:
+ resolution: {integrity: sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==}
magicast@0.3.5:
resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==}
@@ -5319,7 +5281,7 @@ packages:
resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
media-typer@0.3.0:
- resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=}
+ resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
meow@12.1.1:
@@ -5409,8 +5371,8 @@ packages:
micromark-util-sanitize-uri@2.0.1:
resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==}
- micromark-util-subtokenize@2.0.2:
- resolution: {integrity: sha512-xKxhkB62vwHUuuxHe9Xqty3UaAsizV2YKq5OV344u3hFBbf8zIYrhYOWhAQb94MtMPkjTOzzjJ/hid9/dR5vFA==}
+ micromark-util-subtokenize@2.0.3:
+ resolution: {integrity: sha512-VXJJuNxYWSoYL6AJ6OQECCFGhIU2GGHMw8tahogePBrjkG8aCCas3ibkp7RnVOSTClg2is05/R7maAhF1XyQMg==}
micromark-util-symbol@2.0.1:
resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==}
@@ -5499,8 +5461,8 @@ packages:
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
engines: {node: '>=16 || 14 >=14.17'}
- minisearch@7.1.0:
- resolution: {integrity: sha512-tv7c/uefWdEhcu6hvrfTihflgeEi2tN6VV7HJnCjK6VxM75QQJh4t9FwJCsA2EsRS8LCnu3W87CuGPWMocOLCA==}
+ minisearch@7.1.1:
+ resolution: {integrity: sha512-b3YZEYCEH4EdCAtYP7OlDyx7FdPwNzuNwLQ34SfJpM9dlbBZzeXndGavTrC+VCiRWomL21SWfMc6SCKO/U2ZNw==}
minizlib@2.1.2:
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
@@ -5576,25 +5538,26 @@ packages:
nanoid@2.1.11:
resolution: {integrity: sha512-s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA==}
- nanoid@3.3.7:
- resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
+ nanoid@3.3.8:
+ resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- nanoid@5.0.8:
- resolution: {integrity: sha512-TcJPw+9RV9dibz1hHUzlLVy8N4X9TnwirAjrU08Juo6BNKggzVfP2ZJ/3ZUSq15Xl5i85i+Z89XBO90pB2PghQ==}
+ nanoid@5.0.9:
+ resolution: {integrity: sha512-Aooyr6MXU6HpvvWXKoVoXwKMs/KyVakWwg7xQfv5/S/RIgJMy0Ifa45H9qqYy7pTCszrHzP21Uk4PZq2HpEM8Q==}
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==}
-
natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
+ natural-orderby@5.0.0:
+ resolution: {integrity: sha512-kKHJhxwpR/Okycz4HhQKKlhWe4ASEfPgkSWNmKFHd7+ezuQlxkA5cM3+XkBPvm1gmHen3w53qsYAv+8GwRrBlg==}
+ engines: {node: '>=18'}
+
negotiator@0.6.3:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
@@ -5633,8 +5596,8 @@ packages:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
engines: {node: '>= 6.13.0'}
- node-gyp-build@4.8.3:
- resolution: {integrity: sha512-EMS95CMJzdoSKoIiXo8pxKoL8DYxwIZXYlLmgPb8KUv794abpnLK6ynsCAWNliOjREKruYKdzbh76HHYUHX7nw==}
+ node-gyp-build@4.8.4:
+ resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==}
hasBin: true
node-html-parser@6.1.13:
@@ -5684,13 +5647,13 @@ packages:
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
- nuxi@3.15.0:
- resolution: {integrity: sha512-ZVu45nuDrdb7nzKW2kLGY/N1vvFYLLbUVX6gUYw4BApKGGu4+GktTR5o48dGVgMYX9A8chaugl7TL9ZYmwC9Mg==}
+ nuxi@3.16.0:
+ resolution: {integrity: sha512-t9m4zTq44R0/icuzQXJHEyPRM3YbgTPMpytyb6YW2LOL/3mwZ3Bmte1FIlCoigzDvxBJRbcchZGc689+Syyu8w==}
engines: {node: ^16.10.0 || >=18.0.0}
hasBin: true
- nuxt@3.14.159:
- resolution: {integrity: sha512-1xz6AfFkun+byUIkBNX3/CTOTShPRFJe0y9HqWZX2aV9xdoz5ByeaHZfktokhOOSbvabjDyzkTbbHh3V673qHw==}
+ nuxt@3.14.1592:
+ resolution: {integrity: sha512-roWAQH4Mb6WY72cNos+YVw0DgTCNAhNygiAMCedM7hbX6ESTR2n3VH7tU0yIWDPe/hfFdii4M4wWTTNHOtS44g==}
engines: {node: ^14.18.0 || >=16.10.0}
hasBin: true
peerDependencies:
@@ -5707,6 +5670,11 @@ packages:
engines: {node: ^14.16.0 || >=16.10.0}
hasBin: true
+ nypm@0.4.1:
+ resolution: {integrity: sha512-1b9mihliBh8UCcKtcGRu//G50iHpjxIQVUqkdhPT/SDVE7KdJKoHXLS0heuYTQCx95dFqiyUbXZB9r8ikn+93g==}
+ engines: {node: ^14.16.0 || >=16.10.0}
+ hasBin: true
+
object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
@@ -5740,8 +5708,8 @@ packages:
resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
engines: {node: '>=18'}
- oniguruma-to-es@0.4.1:
- resolution: {integrity: sha512-rNcEohFz095QKGRovP/yqPIKc+nP+Sjs4YTHMv33nMePGKrq/r2eu9Yh4646M5XluGJsUnmwoXuiXE69KDs+fQ==}
+ oniguruma-to-es@0.7.0:
+ resolution: {integrity: sha512-HRaRh09cE0gRS3+wi2zxekB+I5L8C/gN60S+vb11eADHUaB/q4u8wGGOX3GvwvitG8ixaeycZfeoyruKQzUgNg==}
only@0.0.2:
resolution: {integrity: sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==}
@@ -5762,8 +5730,8 @@ packages:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
- openapi-typescript@7.4.3:
- resolution: {integrity: sha512-xTIjMIIOv9kNhsr8JxaC00ucbIY/6ZwuJPJBZMSh5FA2dicZN5uM805DWVJojXdom8YI4AQTavPDPHMx/3g0vQ==}
+ openapi-typescript@7.4.4:
+ resolution: {integrity: sha512-7j3nktnRzlQdlHnHsrcr6Gqz8f80/RhfA2I8s1clPI+jkY0hLNmnYVKBfuUEli5EEgK1B6M+ibdS5REasPlsUw==}
hasBin: true
peerDependencies:
typescript: ^5.x
@@ -5831,8 +5799,8 @@ packages:
resolution: {integrity: sha512-q/R5GrMek0vzgoomq6rm9OX+3PQve8sLwTirmK30YB3Cu0Bbt9OX9M/SIUnroN5BGJkzwGsFwDaRGD9EwBOlCA==}
engines: {node: '>=4'}
- package-manager-detector@0.2.4:
- resolution: {integrity: sha512-H/OUu9/zUfP89z1APcBf2X8Us0tt8dUK4lUmKqz12QNXif3DxAs1/YqjGtcutZi1zQqeNQRWr9C+EbQnnvSSFA==}
+ package-manager-detector@0.2.7:
+ resolution: {integrity: sha512-g4+387DXDKlZzHkP+9FLt8yKj8+/3tOkPv7DVTJGGRm00RkEWgqbFstX1mXJ4M0VDYhUqsTOiISqNOJnhAu3PQ==}
pacote@2.7.38:
resolution: {integrity: sha512-XxHUyHQB7QCVBxoXeVu0yKxT+2PvJucsc0+1E+6f95lMUxEAYERgSAc71ckYXrYr35Ew3xFU/LrhdIK21GQFFA==}
@@ -6248,8 +6216,8 @@ packages:
potpack@1.0.2:
resolution: {integrity: sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ==}
- preact@10.24.3:
- resolution: {integrity: sha512-Z2dPnBnMUfyQfSQ+GBdsGa16hz35YmLmtTLhM169uW944hYL6xzTYkJjC07j+Wosz733pMWx0fgON3JNw1jJQA==}
+ preact@10.25.1:
+ resolution: {integrity: sha512-frxeZV2vhQSohQwJ7FvlqC40ze89+8friponWUFeVEkaCfhC6Eu4V0iND5C9CXz8JLndV07QRDeXzH1+Anz5Og==}
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
@@ -6259,8 +6227,8 @@ packages:
resolution: {integrity: sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==}
engines: {node: '>=0.10.0'}
- prettier@3.3.3:
- resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==}
+ prettier@3.4.2:
+ resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==}
engines: {node: '>=14'}
hasBin: true
@@ -6335,8 +6303,8 @@ packages:
quickselect@2.0.0:
resolution: {integrity: sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==}
- radix-vue@1.9.8:
- resolution: {integrity: sha512-4GvWHDhvyfo/Dih5BveUni/iZqENQ6iXXyVjRBewhFdEfnwE/Jl6NBNhcwrNi+XWjiJBJOY4B2ObQ/c7s+KsJA==}
+ radix-vue@1.9.10:
+ resolution: {integrity: sha512-+4+J1v5A+4wbkyVr7VcjR1Zpm3K2hWJQCLgAiHSdrISaj+hPqYSeppP4yTnXQAI4B99myyihxkiC63YhTuvFBw==}
peerDependencies:
vue: '>= 3.2.0'
@@ -6409,8 +6377,8 @@ packages:
regenerator-runtime@0.14.1:
resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
- regex-recursion@4.2.1:
- resolution: {integrity: sha512-QHNZyZAeKdndD1G3bKAbBEKOSSK4KOHQrAJ01N1LJeb0SoH4DJIeFhp0uUpETgONifS4+P3sOgoA1dhzgrQvhA==}
+ regex-recursion@4.3.0:
+ resolution: {integrity: sha512-5LcLnizwjcQ2ALfOj95MjcatxyqF5RPySx9yT+PaXu3Gox2vyAtLDjHB8NTJLtMGkvyau6nI3CfpwFCjPUIs/A==}
regex-utilities@2.3.0:
resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==}
@@ -6547,8 +6515,8 @@ packages:
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
- rollup@4.27.3:
- resolution: {integrity: sha512-SLsCOnlmGt9VoZ9Ek8yBK8tAdmPHeppkw+Xa7yDlCEhDTvwYei03JlWo1fdc7YTfLZ4tD8riJCUyAgTbszk1fQ==}
+ rollup@4.28.0:
+ resolution: {integrity: sha512-G9GOrmgWHBma4YfCcX8PjH0qhXSdH8B4HDE2o4/jaxj93S4DPCIDoLcXz99eWMji4hB29UFCEd7B2gwGJDR9cQ==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -6592,8 +6560,8 @@ packages:
scule@1.3.0:
resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
- search-insights@2.17.2:
- resolution: {integrity: sha512-zFNpOpUO+tY2D85KrxJ+aqwnIfdEGi06UH2+xEb+Bp9Mwznmauqc9djbnBibJO5mpfUPPa8st6Sx65+vbeO45g==}
+ search-insights@2.17.3:
+ resolution: {integrity: sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==}
semver-diff@2.1.0:
resolution: {integrity: sha512-gL8F8L4ORwsS0+iQ34yCYv///jsOq0ZL7WP55d1HnJ32o7tyFYEFQZQA22mrLIacZdU6xecaBBZ+uEiffGNyXw==}
@@ -6651,11 +6619,12 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shell-quote@1.8.1:
- resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
+ shell-quote@1.8.2:
+ resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==}
+ engines: {node: '>= 0.4'}
- shiki@1.23.1:
- resolution: {integrity: sha512-8kxV9TH4pXgdKGxNOkrSMydn1Xf6It8lsle0fiqxf7a1149K1WGtdOu3Zb91T5r1JpvRPxqxU3C2XdZZXQnrig==}
+ shiki@1.24.0:
+ resolution: {integrity: sha512-qIneep7QRwxRd5oiHb8jaRzH15V/S8F3saCXOdjwRLgozZJr5x2yeBhQtqkO3FSzQDwYEFAYuifg4oHjpDghrg==}
shortid@2.2.16:
resolution: {integrity: sha512-Ugt+GIZqvGXCIItnsL+lvFJOiN7RYqlGy7QE41O3YC1xbNSeDGIRO7xg2JJXIAj1cAGnOeC1r7/T9pgrtQbv4g==}
@@ -6678,10 +6647,6 @@ packages:
simple-git@3.27.0:
resolution: {integrity: sha512-ivHoFS9Yi9GY49ogc6/YAi3Fl9ROnF4VyubNylgCkA+RVqLaKWnDSzXOVzya8csELIaWaYNutsEuAhZrtOjozA==}
- sirv@2.0.4:
- resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
- engines: {node: '>= 10'}
-
sirv@3.0.0:
resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==}
engines: {node: '>=18'}
@@ -6816,8 +6781,8 @@ packages:
stream-shift@1.0.3:
resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==}
- streamx@2.20.2:
- resolution: {integrity: sha512-aDGDLU+j9tJcUdPGOaHmVF1u/hhI+CsGkT02V3OKlHDV7IukOI+nTWAGkiZEKCO35rWN1wIr4tS7YFr1f4qSvA==}
+ streamx@2.21.0:
+ resolution: {integrity: sha512-Qz6MsDZXJ6ur9u+b+4xCG18TluU7PGlRfXVAAjNiGsFrBUt/ioyLkxbFaKJygoPs+/kW4VyBj0bSj89Qu0IGyg==}
string-argv@0.3.2:
resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
@@ -6892,8 +6857,8 @@ packages:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- strip-literal@2.1.0:
- resolution: {integrity: sha512-Op+UycaUt/8FbN/Z2TWPBLge3jWrP3xj10f3fnYxf052bKuS3EKs1ZQcVGjnEMdsNVAM+plXRdmjrZ/KgG3Skw==}
+ strip-literal@2.1.1:
+ resolution: {integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==}
striptags@3.2.0:
resolution: {integrity: sha512-g45ZOGzHDMe2bdYMdIvdAfCQkCTDMGBazSw1ypMowwGIee7ZQ5dU0rBJ8Jqgl+jAKIv4dbeE1jscZq9wid1Tkw==}
@@ -6962,8 +6927,8 @@ packages:
tabbable@6.2.0:
resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
- table@6.8.2:
- resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==}
+ table@6.9.0:
+ resolution: {integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==}
engines: {node: '>=10.0.0'}
tailwind-config-viewer@2.0.4:
@@ -6973,16 +6938,16 @@ packages:
peerDependencies:
tailwindcss: 1 || 2 || 2.0.1-compat || 3
- tailwind-merge@2.5.4:
- resolution: {integrity: sha512-0q8cfZHMu9nuYP/b5Shb7Y7Sh1B7Nnl5GqNr1U+n2p6+mybvRtayrQ+0042Z5byvTA8ihjlP8Odo8/VnHbZu4Q==}
+ tailwind-merge@2.5.5:
+ resolution: {integrity: sha512-0LXunzzAZzo0tEPxV3I297ffKZPlKDrjj7NXphC8V5ak9yHC5zRmxnOe2m/Rd/7ivsOMJe3JZ2JVocoDdQTRBA==}
tailwindcss-animate@1.0.7:
resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
peerDependencies:
tailwindcss: '>=3.0.0 || insiders'
- tailwindcss@3.4.15:
- resolution: {integrity: sha512-r4MeXnfBmSOuKUWmXe6h2CcyfzJCEk4F0pptO5jlnYSIViUkVmsawj80N5h2lO3gwcmSb4n3PuN+e+GC1Guylw==}
+ tailwindcss@3.4.16:
+ resolution: {integrity: sha512-TI4Cyx7gDiZ6r44ewaJmt0o6BrMCT5aK5e0rmJ/G9Xq3w7CX/5VXl/zIPEJZFUK5VEqwByyhqNPycPlvcK4ZNw==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -7123,8 +7088,8 @@ packages:
trim-lines@3.0.1:
resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
- ts-api-utils@1.4.0:
- resolution: {integrity: sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==}
+ ts-api-utils@1.4.3:
+ resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==}
engines: {node: '>=16'}
peerDependencies:
typescript: '>=4.2.0'
@@ -7207,8 +7172,8 @@ packages:
resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
engines: {node: '>=8'}
- type-fest@4.27.0:
- resolution: {integrity: sha512-3IMSWgP7C5KSQqmo1wjhKrwsvXAtF33jO3QY+Uy++ia7hqvgSK6iXbbg5PbDBc1P2ZbNEDgejOrN4YooXvhwCw==}
+ type-fest@4.30.0:
+ resolution: {integrity: sha512-G6zXWS1dLj6eagy6sVhOMQiLtJdxQBHIA9Z6HFUNLOlr6MFOgzV8wvmidtPONfPtEUv0uZsy77XJNzTAfwPDaA==}
engines: {node: '>=16'}
type-is@1.6.18:
@@ -7218,8 +7183,8 @@ packages:
type-level-regexp@0.1.17:
resolution: {integrity: sha512-wTk4DH3cxwk196uGLK/E9pE45aLfeKJacKmcEgEOA/q5dnPGNxXt0cfYdFxb57L+sEpf1oJH4Dnx/pnRcku9jg==}
- typescript@5.6.3:
- resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==}
+ typescript@5.7.2:
+ resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==}
engines: {node: '>=14.17'}
hasBin: true
@@ -7253,18 +7218,25 @@ packages:
undici-types@6.19.8:
resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
+ undici-types@6.20.0:
+ resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
+
+ undici@7.1.0:
+ resolution: {integrity: sha512-3+mdX2R31khuLCm2mKExSlMdJsfol7bJkIMH80tdXA74W34rT1jKemUTlYR7WY3TqsV4wfOgpatWmmB2Jl1+5g==}
+ engines: {node: '>=20.18.1'}
+
unenv@1.10.0:
resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==}
- unhead@1.11.11:
- resolution: {integrity: sha512-98tM2R8OWJhvS6uqTewkfIrsPqFU/VwnKpU2tVZ+jPXSWgWSLmM3K2Y2v5AEM4bZjmC/XH8pLVGzbqB7xzFI/Q==}
+ unhead@1.11.13:
+ resolution: {integrity: sha512-I7yyvqRfpPPzXuCG7HKZkgAWJDbzXDDEVyib4C/78HREqhNGHVSyo4TqX1h1xB5cx7WYc21HHDRT2/8YkqOy2w==}
unicorn-magic@0.1.0:
resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
engines: {node: '>=18'}
- unimport@3.13.2:
- resolution: {integrity: sha512-VKAepeIb6BWLtBl4tmyHY1/7rJgz3ynmZrWf8cU1a+v5Uv/k1gyyAEeGBnYcrwy8bxG5sflxEx4a9VQUqOVHUA==}
+ unimport@3.14.3:
+ resolution: {integrity: sha512-yEJps4GW7jBdoQlxEV0ElBCJsJmH8FdZtk4oog0y++8hgLh0dGnDpE4oaTc0Lfx4N5rRJiGFUWHrBqC8CyUBmQ==}
unique-filename@1.1.1:
resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==}
@@ -7319,8 +7291,8 @@ packages:
vue-template-es2015-compiler:
optional: true
- unplugin-vue-router@0.10.8:
- resolution: {integrity: sha512-xi+eLweYAqolIoTRSmumbi6Yx0z5M0PLvl+NFNVWHJgmE2ByJG1SZbrn+TqyuDtIyln20KKgq8tqmL7aLoiFjw==}
+ unplugin-vue-router@0.10.9:
+ resolution: {integrity: sha512-DXmC0GMcROOnCmN56GRvi1bkkG1BnVs4xJqNvucBUeZkmB245URvtxOfbo3H6q4SOUQQbLPYWd6InzvjRh363A==}
peerDependencies:
vue-router: ^4.4.0
peerDependenciesMeta:
@@ -7331,6 +7303,10 @@ packages:
resolution: {integrity: sha512-5liCNPuJW8dqh3+DM6uNM2EI3MLLpCKp/KY+9pB5M2S2SR2qvvDHhKgBOaTWEbZTAws3CXfB0rKTIolWKL05VQ==}
engines: {node: '>=14.0.0'}
+ unplugin@2.0.0-beta.1:
+ resolution: {integrity: sha512-2qzQo5LN2DmUZXkWDHvGKLF5BP0WN+KthD6aPnPJ8plRBIjv4lh5O07eYcSxgO2znNw9s4MNhEO1sB+JDllDbQ==}
+ engines: {node: '>=18.12.0'}
+
unstorage@1.13.1:
resolution: {integrity: sha512-ELexQHUrG05QVIM/iUeQNdl9FXDZhqLJ4yP59fnmn2jGUh0TEulwOgov1ubOb3Gt2ZGK/VMchJwPDNVEGWQpRg==}
peerDependencies:
@@ -7451,13 +7427,13 @@ packages:
vfile@6.0.3:
resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
- vite-hot-client@0.2.3:
- resolution: {integrity: sha512-rOGAV7rUlUHX89fP2p2v0A2WWvV3QMX2UYq0fRqsWSvFvev4atHWqjwGoKaZT1VTKyLGk533ecu3eyd0o59CAg==}
+ vite-hot-client@0.2.4:
+ resolution: {integrity: sha512-a1nzURqO7DDmnXqabFOliz908FRmIppkBKsJthS8rbe8hBEXwEwe4C3Pp33Z1JoFCYfVL4kTOMLKk0ZZxREIeA==}
peerDependencies:
- vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0
+ vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
- vite-node@2.1.5:
- resolution: {integrity: sha512-rd0QIgx74q4S1Rd56XIiL2cYEdyWn13cunYBIuqh9mpmQr7gGS0IxXoP8R6OaZtNQQLyXSWbd4rXKYUbhFpK5w==}
+ vite-node@2.1.8:
+ resolution: {integrity: sha512-uPAwSr57kYjAUux+8E2j0q0Fxpn8M9VoyfGiRI8Kfktz9NcYMCenwY5RnZxnF1WTu3TGiYipirIzacLL3VVGFg==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
@@ -7495,12 +7471,12 @@ packages:
vue-tsc:
optional: true
- vite-plugin-inspect@0.8.7:
- resolution: {integrity: sha512-/XXou3MVc13A5O9/2Nd6xczjrUwt7ZyI9h8pTnUMkr5SshLcb0PJUOVq2V+XVkdeU4njsqAtmK87THZuO2coGA==}
+ vite-plugin-inspect@0.8.9:
+ resolution: {integrity: sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A==}
engines: {node: '>=14'}
peerDependencies:
'@nuxt/kit': '*'
- vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0
+ vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.1
peerDependenciesMeta:
'@nuxt/kit':
optional: true
@@ -7510,8 +7486,8 @@ packages:
peerDependencies:
vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0
- vite-tsconfig-paths@5.1.2:
- resolution: {integrity: sha512-gEIbKfJzSEv0yR3XS2QEocKetONoWkbROj6hGx0FHM18qKUojhvcokQsxQx5nMkelZq2n37zbSGCJn+FSODSjA==}
+ vite-tsconfig-paths@5.1.3:
+ resolution: {integrity: sha512-0bz+PDlLpGfP2CigeSKL9NFTF1KtXkeHGZSSaGQSuPZH77GhoiQaA8IjYgOaynSuwlDTolSUEU0ErVvju3NURg==}
peerDependencies:
vite: '*'
peerDependenciesMeta:
@@ -7564,15 +7540,15 @@ packages:
vitest-environment-nuxt@1.0.1:
resolution: {integrity: sha512-eBCwtIQriXW5/M49FjqNKfnlJYlG2LWMSNFsRVKomc8CaMqmhQPBS5LZ9DlgYL9T8xIVsiA6RZn2lk7vxov3Ow==}
- vitest@2.1.5:
- resolution: {integrity: sha512-P4ljsdpuzRTPI/kbND2sDZ4VmieerR2c9szEZpjc+98Z9ebvnXmM5+0tHEKqYZumXqlvnmfWsjeFOjXVriDG7A==}
+ vitest@2.1.8:
+ resolution: {integrity: sha512-1vBKTZskHw/aosXqQUlVWWlGUxSJR8YtiyZDJAFeW2kPAeX6S3Sool0mjspO+kXLuxVWlEDDowBAeqeAQefqLQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': 2.1.5
- '@vitest/ui': 2.1.5
+ '@vitest/browser': 2.1.8
+ '@vitest/ui': 2.1.8
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -7654,13 +7630,13 @@ packages:
resolution: {integrity: sha512-dCWwwh7OngblFqUvD/pilS++TVnTHY1Nft2Tp02mHYv8ZrxFHN3NDMOKOoIg8lo7WR3TKxi3+bD/rmnN9tS2yw==}
hasBin: true
- vue-router@4.4.5:
- resolution: {integrity: sha512-4fKZygS8cH1yCyuabAXGUAsyi1b2/o/OKgu/RUb+znIYOxPRxdkytJEx+0wGcpBE1pX6vUgh5jwWOKRGvuA/7Q==}
+ vue-router@4.5.0:
+ resolution: {integrity: sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w==}
peerDependencies:
vue: ^3.2.0
- vue-sonner@1.2.5:
- resolution: {integrity: sha512-dAFCdq2cYxEwvW4gHuJhySCXklmxOWzjl5QwkNL9IIdkqyvSkdu+YnAbnJBdIAH/zo1bhXTuGG+m0Two4AX/KA==}
+ vue-sonner@1.3.0:
+ resolution: {integrity: sha512-jAodBy4Mri8rQjVZGQAPs4ZYymc1ywPiwfa81qU0fFl+Suk7U8NaOxIDdI1oBGLeQJqRZi/oxNIuhCLqsBmOwg==}
vue-tsc@2.1.10:
resolution: {integrity: sha512-RBNSfaaRHcN5uqVqJSZh++Gy/YUzryuv9u1aFWhsammDJXNtUiJMNoJ747lZcQ68wUQFx6E73y4FY3D8E7FGMA==}
@@ -7803,8 +7779,8 @@ packages:
engines: {node: '>= 14'}
hasBin: true
- yaml@2.6.0:
- resolution: {integrity: sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==}
+ yaml@2.6.1:
+ resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==}
engines: {node: '>= 14'}
hasBin: true
@@ -7843,110 +7819,110 @@ packages:
snapshots:
- '@algolia/autocomplete-core@1.17.7(@algolia/client-search@5.14.2)(algoliasearch@5.14.2)(search-insights@2.17.2)':
+ '@algolia/autocomplete-core@1.17.7(@algolia/client-search@5.15.0)(algoliasearch@5.15.0)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.17.7(@algolia/client-search@5.14.2)(algoliasearch@5.14.2)(search-insights@2.17.2)
- '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.14.2)(algoliasearch@5.14.2)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.17.7(@algolia/client-search@5.15.0)(algoliasearch@5.15.0)(search-insights@2.17.3)
+ '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.15.0)(algoliasearch@5.15.0)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
- '@algolia/autocomplete-plugin-algolia-insights@1.17.7(@algolia/client-search@5.14.2)(algoliasearch@5.14.2)(search-insights@2.17.2)':
+ '@algolia/autocomplete-plugin-algolia-insights@1.17.7(@algolia/client-search@5.15.0)(algoliasearch@5.15.0)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.14.2)(algoliasearch@5.14.2)
- search-insights: 2.17.2
+ '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.15.0)(algoliasearch@5.15.0)
+ search-insights: 2.17.3
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- '@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.14.2)(algoliasearch@5.14.2)':
+ '@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.15.0)(algoliasearch@5.15.0)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.14.2)(algoliasearch@5.14.2)
- '@algolia/client-search': 5.14.2
- algoliasearch: 5.14.2
+ '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.15.0)(algoliasearch@5.15.0)
+ '@algolia/client-search': 5.15.0
+ algoliasearch: 5.15.0
- '@algolia/autocomplete-shared@1.17.7(@algolia/client-search@5.14.2)(algoliasearch@5.14.2)':
+ '@algolia/autocomplete-shared@1.17.7(@algolia/client-search@5.15.0)(algoliasearch@5.15.0)':
dependencies:
- '@algolia/client-search': 5.14.2
- algoliasearch: 5.14.2
+ '@algolia/client-search': 5.15.0
+ algoliasearch: 5.15.0
- '@algolia/client-abtesting@5.14.2':
+ '@algolia/client-abtesting@5.15.0':
dependencies:
- '@algolia/client-common': 5.14.2
- '@algolia/requester-browser-xhr': 5.14.2
- '@algolia/requester-fetch': 5.14.2
- '@algolia/requester-node-http': 5.14.2
+ '@algolia/client-common': 5.15.0
+ '@algolia/requester-browser-xhr': 5.15.0
+ '@algolia/requester-fetch': 5.15.0
+ '@algolia/requester-node-http': 5.15.0
- '@algolia/client-analytics@5.14.2':
+ '@algolia/client-analytics@5.15.0':
dependencies:
- '@algolia/client-common': 5.14.2
- '@algolia/requester-browser-xhr': 5.14.2
- '@algolia/requester-fetch': 5.14.2
- '@algolia/requester-node-http': 5.14.2
+ '@algolia/client-common': 5.15.0
+ '@algolia/requester-browser-xhr': 5.15.0
+ '@algolia/requester-fetch': 5.15.0
+ '@algolia/requester-node-http': 5.15.0
- '@algolia/client-common@5.14.2': {}
+ '@algolia/client-common@5.15.0': {}
- '@algolia/client-insights@5.14.2':
+ '@algolia/client-insights@5.15.0':
dependencies:
- '@algolia/client-common': 5.14.2
- '@algolia/requester-browser-xhr': 5.14.2
- '@algolia/requester-fetch': 5.14.2
- '@algolia/requester-node-http': 5.14.2
+ '@algolia/client-common': 5.15.0
+ '@algolia/requester-browser-xhr': 5.15.0
+ '@algolia/requester-fetch': 5.15.0
+ '@algolia/requester-node-http': 5.15.0
- '@algolia/client-personalization@5.14.2':
+ '@algolia/client-personalization@5.15.0':
dependencies:
- '@algolia/client-common': 5.14.2
- '@algolia/requester-browser-xhr': 5.14.2
- '@algolia/requester-fetch': 5.14.2
- '@algolia/requester-node-http': 5.14.2
+ '@algolia/client-common': 5.15.0
+ '@algolia/requester-browser-xhr': 5.15.0
+ '@algolia/requester-fetch': 5.15.0
+ '@algolia/requester-node-http': 5.15.0
- '@algolia/client-query-suggestions@5.14.2':
+ '@algolia/client-query-suggestions@5.15.0':
dependencies:
- '@algolia/client-common': 5.14.2
- '@algolia/requester-browser-xhr': 5.14.2
- '@algolia/requester-fetch': 5.14.2
- '@algolia/requester-node-http': 5.14.2
+ '@algolia/client-common': 5.15.0
+ '@algolia/requester-browser-xhr': 5.15.0
+ '@algolia/requester-fetch': 5.15.0
+ '@algolia/requester-node-http': 5.15.0
- '@algolia/client-search@5.14.2':
+ '@algolia/client-search@5.15.0':
dependencies:
- '@algolia/client-common': 5.14.2
- '@algolia/requester-browser-xhr': 5.14.2
- '@algolia/requester-fetch': 5.14.2
- '@algolia/requester-node-http': 5.14.2
+ '@algolia/client-common': 5.15.0
+ '@algolia/requester-browser-xhr': 5.15.0
+ '@algolia/requester-fetch': 5.15.0
+ '@algolia/requester-node-http': 5.15.0
- '@algolia/ingestion@1.14.2':
+ '@algolia/ingestion@1.15.0':
dependencies:
- '@algolia/client-common': 5.14.2
- '@algolia/requester-browser-xhr': 5.14.2
- '@algolia/requester-fetch': 5.14.2
- '@algolia/requester-node-http': 5.14.2
+ '@algolia/client-common': 5.15.0
+ '@algolia/requester-browser-xhr': 5.15.0
+ '@algolia/requester-fetch': 5.15.0
+ '@algolia/requester-node-http': 5.15.0
- '@algolia/monitoring@1.14.2':
+ '@algolia/monitoring@1.15.0':
dependencies:
- '@algolia/client-common': 5.14.2
- '@algolia/requester-browser-xhr': 5.14.2
- '@algolia/requester-fetch': 5.14.2
- '@algolia/requester-node-http': 5.14.2
+ '@algolia/client-common': 5.15.0
+ '@algolia/requester-browser-xhr': 5.15.0
+ '@algolia/requester-fetch': 5.15.0
+ '@algolia/requester-node-http': 5.15.0
- '@algolia/recommend@5.14.2':
+ '@algolia/recommend@5.15.0':
dependencies:
- '@algolia/client-common': 5.14.2
- '@algolia/requester-browser-xhr': 5.14.2
- '@algolia/requester-fetch': 5.14.2
- '@algolia/requester-node-http': 5.14.2
+ '@algolia/client-common': 5.15.0
+ '@algolia/requester-browser-xhr': 5.15.0
+ '@algolia/requester-fetch': 5.15.0
+ '@algolia/requester-node-http': 5.15.0
- '@algolia/requester-browser-xhr@5.14.2':
+ '@algolia/requester-browser-xhr@5.15.0':
dependencies:
- '@algolia/client-common': 5.14.2
+ '@algolia/client-common': 5.15.0
- '@algolia/requester-fetch@5.14.2':
+ '@algolia/requester-fetch@5.15.0':
dependencies:
- '@algolia/client-common': 5.14.2
+ '@algolia/client-common': 5.15.0
- '@algolia/requester-node-http@5.14.2':
+ '@algolia/requester-node-http@5.15.0':
dependencies:
- '@algolia/client-common': 5.14.2
+ '@algolia/client-common': 5.15.0
'@alloc/quick-lru@5.2.0': {}
@@ -7955,42 +7931,42 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- '@antfu/eslint-config@3.9.2(@typescript-eslint/utils@8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3))(@vue/compiler-sfc@3.5.13)(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)(vitest@2.1.5(@types/node@22.9.0)(@vitest/ui@2.1.5)(stylus@0.57.0)(terser@5.36.0))':
+ '@antfu/eslint-config@3.11.2(@typescript-eslint/utils@8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2))(@vue/compiler-sfc@3.5.13)(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)(vitest@2.1.8)':
dependencies:
- '@antfu/install-pkg': 0.4.1
- '@clack/prompts': 0.8.1
- '@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.15.0(jiti@2.4.0))
+ '@antfu/install-pkg': 0.5.0
+ '@clack/prompts': 0.8.2
+ '@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.16.0(jiti@2.4.1))
'@eslint/markdown': 6.2.1
- '@stylistic/eslint-plugin': 2.11.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)
- '@typescript-eslint/eslint-plugin': 8.15.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3))(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)
- '@typescript-eslint/parser': 8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)
- '@vitest/eslint-plugin': 1.1.10(@typescript-eslint/utils@8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3))(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)(vitest@2.1.5(@types/node@22.9.0)(@vitest/ui@2.1.5)(stylus@0.57.0)(terser@5.36.0))
- eslint: 9.15.0(jiti@2.4.0)
- eslint-config-flat-gitignore: 0.3.0(eslint@9.15.0(jiti@2.4.0))
+ '@stylistic/eslint-plugin': 2.11.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)
+ '@typescript-eslint/eslint-plugin': 8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2))(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)
+ '@typescript-eslint/parser': 8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)
+ '@vitest/eslint-plugin': 1.1.14(@typescript-eslint/utils@8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2))(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)(vitest@2.1.8)
+ eslint: 9.16.0(jiti@2.4.1)
+ eslint-config-flat-gitignore: 0.3.0(eslint@9.16.0(jiti@2.4.1))
eslint-flat-config-utils: 0.4.0
- eslint-merge-processors: 0.1.0(eslint@9.15.0(jiti@2.4.0))
- eslint-plugin-antfu: 2.7.0(eslint@9.15.0(jiti@2.4.0))
- eslint-plugin-command: 0.2.6(eslint@9.15.0(jiti@2.4.0))
- eslint-plugin-import-x: 4.4.2(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)
- eslint-plugin-jsdoc: 50.5.0(eslint@9.15.0(jiti@2.4.0))
- eslint-plugin-jsonc: 2.18.2(eslint@9.15.0(jiti@2.4.0))
- eslint-plugin-n: 17.13.2(eslint@9.15.0(jiti@2.4.0))
+ eslint-merge-processors: 0.1.0(eslint@9.16.0(jiti@2.4.1))
+ eslint-plugin-antfu: 2.7.0(eslint@9.16.0(jiti@2.4.1))
+ eslint-plugin-command: 0.2.6(eslint@9.16.0(jiti@2.4.1))
+ eslint-plugin-import-x: 4.5.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)
+ eslint-plugin-jsdoc: 50.6.0(eslint@9.16.0(jiti@2.4.1))
+ eslint-plugin-jsonc: 2.18.2(eslint@9.16.0(jiti@2.4.1))
+ eslint-plugin-n: 17.14.0(eslint@9.16.0(jiti@2.4.1))
eslint-plugin-no-only-tests: 3.3.0
- eslint-plugin-perfectionist: 3.9.1(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)(vue-eslint-parser@9.4.3(eslint@9.15.0(jiti@2.4.0)))
- eslint-plugin-regexp: 2.7.0(eslint@9.15.0(jiti@2.4.0))
- eslint-plugin-toml: 0.11.1(eslint@9.15.0(jiti@2.4.0))
- eslint-plugin-unicorn: 56.0.0(eslint@9.15.0(jiti@2.4.0))
- eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.15.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3))(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3))(eslint@9.15.0(jiti@2.4.0))
- eslint-plugin-vue: 9.31.0(eslint@9.15.0(jiti@2.4.0))
- eslint-plugin-yml: 1.15.0(eslint@9.15.0(jiti@2.4.0))
- eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.5.13)(eslint@9.15.0(jiti@2.4.0))
- globals: 15.12.0
+ eslint-plugin-perfectionist: 4.2.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)
+ eslint-plugin-regexp: 2.7.0(eslint@9.16.0(jiti@2.4.1))
+ eslint-plugin-toml: 0.11.1(eslint@9.16.0(jiti@2.4.1))
+ eslint-plugin-unicorn: 56.0.1(eslint@9.16.0(jiti@2.4.1))
+ eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2))(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2))(eslint@9.16.0(jiti@2.4.1))
+ eslint-plugin-vue: 9.32.0(eslint@9.16.0(jiti@2.4.1))
+ eslint-plugin-yml: 1.16.0(eslint@9.16.0(jiti@2.4.1))
+ eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.5.13)(eslint@9.16.0(jiti@2.4.1))
+ globals: 15.13.0
jsonc-eslint-parser: 2.4.0
local-pkg: 0.5.1
parse-gitignore: 2.0.0
picocolors: 1.1.1
toml-eslint-parser: 0.10.0
- vue-eslint-parser: 9.4.3(eslint@9.15.0(jiti@2.4.0))
+ vue-eslint-parser: 9.4.3(eslint@9.16.0(jiti@2.4.1))
yaml-eslint-parser: 1.2.3
yargs: 17.7.2
transitivePeerDependencies:
@@ -7998,13 +7974,17 @@ snapshots:
- '@typescript-eslint/utils'
- '@vue/compiler-sfc'
- supports-color
- - svelte
- typescript
- vitest
'@antfu/install-pkg@0.4.1':
dependencies:
- package-manager-detector: 0.2.4
+ package-manager-detector: 0.2.7
+ tinyexec: 0.3.1
+
+ '@antfu/install-pkg@0.5.0':
+ dependencies:
+ package-manager-detector: 0.2.7
tinyexec: 0.3.1
'@antfu/ni@0.23.1': {}
@@ -8017,20 +7997,20 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/compat-data@7.26.2': {}
+ '@babel/compat-data@7.26.3': {}
'@babel/core@7.26.0':
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.2
+ '@babel/generator': 7.26.3
'@babel/helper-compilation-targets': 7.25.9
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
'@babel/helpers': 7.26.0
- '@babel/parser': 7.26.2
+ '@babel/parser': 7.26.3
'@babel/template': 7.25.9
- '@babel/traverse': 7.25.9
- '@babel/types': 7.26.0
+ '@babel/traverse': 7.26.3
+ '@babel/types': 7.26.3
convert-source-map: 2.0.0
debug: 4.3.7(supports-color@9.4.0)
gensync: 1.0.0-beta.2
@@ -8039,21 +8019,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.26.2':
+ '@babel/generator@7.26.3':
dependencies:
- '@babel/parser': 7.26.2
- '@babel/types': 7.26.0
+ '@babel/parser': 7.26.3
+ '@babel/types': 7.26.3
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.0.2
'@babel/helper-annotate-as-pure@7.25.9':
dependencies:
- '@babel/types': 7.26.0
+ '@babel/types': 7.26.3
'@babel/helper-compilation-targets@7.25.9':
dependencies:
- '@babel/compat-data': 7.26.2
+ '@babel/compat-data': 7.26.3
'@babel/helper-validator-option': 7.25.9
browserslist: 4.24.2
lru-cache: 5.1.1
@@ -8067,22 +8047,22 @@ snapshots:
'@babel/helper-optimise-call-expression': 7.25.9
'@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/traverse': 7.25.9
+ '@babel/traverse': 7.26.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
'@babel/helper-member-expression-to-functions@7.25.9':
dependencies:
- '@babel/traverse': 7.25.9
- '@babel/types': 7.26.0
+ '@babel/traverse': 7.26.3
+ '@babel/types': 7.26.3
transitivePeerDependencies:
- supports-color
'@babel/helper-module-imports@7.25.9':
dependencies:
- '@babel/traverse': 7.25.9
- '@babel/types': 7.26.0
+ '@babel/traverse': 7.26.3
+ '@babel/types': 7.26.3
transitivePeerDependencies:
- supports-color
@@ -8091,13 +8071,13 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-module-imports': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.25.9
+ '@babel/traverse': 7.26.3
transitivePeerDependencies:
- supports-color
'@babel/helper-optimise-call-expression@7.25.9':
dependencies:
- '@babel/types': 7.26.0
+ '@babel/types': 7.26.3
'@babel/helper-plugin-utils@7.25.9': {}
@@ -8106,21 +8086,14 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-member-expression-to-functions': 7.25.9
'@babel/helper-optimise-call-expression': 7.25.9
- '@babel/traverse': 7.25.9
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-simple-access@7.25.9':
- dependencies:
- '@babel/traverse': 7.25.9
- '@babel/types': 7.26.0
+ '@babel/traverse': 7.26.3
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
dependencies:
- '@babel/traverse': 7.25.9
- '@babel/types': 7.26.0
+ '@babel/traverse': 7.26.3
+ '@babel/types': 7.26.3
transitivePeerDependencies:
- supports-color
@@ -8133,11 +8106,11 @@ snapshots:
'@babel/helpers@7.26.0':
dependencies:
'@babel/template': 7.25.9
- '@babel/types': 7.26.0
+ '@babel/types': 7.26.3
- '@babel/parser@7.26.2':
+ '@babel/parser@7.26.3':
dependencies:
- '@babel/types': 7.26.0
+ '@babel/types': 7.26.3
'@babel/parser@8.0.0-alpha.12': {}
@@ -8175,16 +8148,15 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-modules-commonjs@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
- '@babel/helper-simple-access': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-typescript@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-typescript@7.26.3(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-annotate-as-pure': 7.25.9
@@ -8201,8 +8173,8 @@ snapshots:
'@babel/helper-plugin-utils': 7.25.9
'@babel/helper-validator-option': 7.25.9
'@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
@@ -8210,39 +8182,39 @@ snapshots:
dependencies:
regenerator-runtime: 0.14.1
- '@babel/standalone@7.26.2': {}
+ '@babel/standalone@7.26.3': {}
'@babel/template@7.25.9':
dependencies:
'@babel/code-frame': 7.26.2
- '@babel/parser': 7.26.2
- '@babel/types': 7.26.0
+ '@babel/parser': 7.26.3
+ '@babel/types': 7.26.3
- '@babel/traverse@7.25.9':
+ '@babel/traverse@7.26.3':
dependencies:
'@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.2
- '@babel/parser': 7.26.2
+ '@babel/generator': 7.26.3
+ '@babel/parser': 7.26.3
'@babel/template': 7.25.9
- '@babel/types': 7.26.0
+ '@babel/types': 7.26.3
debug: 4.3.7(supports-color@9.4.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.26.0':
+ '@babel/types@7.26.3':
dependencies:
'@babel/helper-string-parser': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
- '@clack/core@0.3.4':
+ '@clack/core@0.3.5':
dependencies:
picocolors: 1.1.1
sisteransi: 1.0.5
- '@clack/prompts@0.8.1':
+ '@clack/prompts@0.8.2':
dependencies:
- '@clack/core': 0.3.4
+ '@clack/core': 0.3.5
picocolors: 1.1.1
sisteransi: 1.0.5
@@ -8250,11 +8222,11 @@ snapshots:
dependencies:
mime: 3.0.0
- '@commitlint/cli@19.5.0(@types/node@22.9.0)(typescript@5.6.3)':
+ '@commitlint/cli@19.6.0(@types/node@22.10.1)(typescript@5.7.2)':
dependencies:
'@commitlint/format': 19.5.0
- '@commitlint/lint': 19.5.0
- '@commitlint/load': 19.5.0(@types/node@22.9.0)(typescript@5.6.3)
+ '@commitlint/lint': 19.6.0
+ '@commitlint/load': 19.5.0(@types/node@22.10.1)(typescript@5.7.2)
'@commitlint/read': 19.5.0
'@commitlint/types': 19.5.0
tinyexec: 0.3.1
@@ -8263,7 +8235,7 @@ snapshots:
- '@types/node'
- typescript
- '@commitlint/config-conventional@19.5.0':
+ '@commitlint/config-conventional@19.6.0':
dependencies:
'@commitlint/types': 19.5.0
conventional-changelog-conventionalcommits: 7.0.2
@@ -8289,27 +8261,27 @@ snapshots:
'@commitlint/types': 19.5.0
chalk: 5.3.0
- '@commitlint/is-ignored@19.5.0':
+ '@commitlint/is-ignored@19.6.0':
dependencies:
'@commitlint/types': 19.5.0
semver: 7.6.3
- '@commitlint/lint@19.5.0':
+ '@commitlint/lint@19.6.0':
dependencies:
- '@commitlint/is-ignored': 19.5.0
+ '@commitlint/is-ignored': 19.6.0
'@commitlint/parse': 19.5.0
- '@commitlint/rules': 19.5.0
+ '@commitlint/rules': 19.6.0
'@commitlint/types': 19.5.0
- '@commitlint/load@19.5.0(@types/node@22.9.0)(typescript@5.6.3)':
+ '@commitlint/load@19.5.0(@types/node@22.10.1)(typescript@5.7.2)':
dependencies:
'@commitlint/config-validator': 19.5.0
'@commitlint/execute-rule': 19.5.0
'@commitlint/resolve-extends': 19.5.0
'@commitlint/types': 19.5.0
chalk: 5.3.0
- cosmiconfig: 9.0.0(typescript@5.6.3)
- cosmiconfig-typescript-loader: 5.1.0(@types/node@22.9.0)(cosmiconfig@9.0.0(typescript@5.6.3))(typescript@5.6.3)
+ cosmiconfig: 9.0.0(typescript@5.7.2)
+ cosmiconfig-typescript-loader: 5.1.0(@types/node@22.10.1)(cosmiconfig@9.0.0(typescript@5.7.2))(typescript@5.7.2)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
@@ -8342,7 +8314,7 @@ snapshots:
lodash.mergewith: 4.6.2
resolve-from: 5.0.0
- '@commitlint/rules@19.5.0':
+ '@commitlint/rules@19.6.0':
dependencies:
'@commitlint/ensure': 19.5.0
'@commitlint/message': 19.5.0
@@ -8357,7 +8329,7 @@ snapshots:
'@commitlint/types@19.5.0':
dependencies:
- '@types/conventional-commits-parser': 5.0.0
+ '@types/conventional-commits-parser': 5.0.1
chalk: 5.3.0
'@csstools/selector-resolve-nested@3.0.0(postcss-selector-parser@7.0.0)':
@@ -8370,10 +8342,10 @@ snapshots:
'@docsearch/css@3.8.0': {}
- '@docsearch/js@3.8.0(@algolia/client-search@5.14.2)(search-insights@2.17.2)':
+ '@docsearch/js@3.8.0(@algolia/client-search@5.15.0)(search-insights@2.17.3)':
dependencies:
- '@docsearch/react': 3.8.0(@algolia/client-search@5.14.2)(search-insights@2.17.2)
- preact: 10.24.3
+ '@docsearch/react': 3.8.0(@algolia/client-search@5.15.0)(search-insights@2.17.3)
+ preact: 10.25.1
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/react'
@@ -8381,24 +8353,24 @@ snapshots:
- react-dom
- search-insights
- '@docsearch/react@3.8.0(@algolia/client-search@5.14.2)(search-insights@2.17.2)':
+ '@docsearch/react@3.8.0(@algolia/client-search@5.15.0)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-core': 1.17.7(@algolia/client-search@5.14.2)(algoliasearch@5.14.2)(search-insights@2.17.2)
- '@algolia/autocomplete-preset-algolia': 1.17.7(@algolia/client-search@5.14.2)(algoliasearch@5.14.2)
+ '@algolia/autocomplete-core': 1.17.7(@algolia/client-search@5.15.0)(algoliasearch@5.15.0)(search-insights@2.17.3)
+ '@algolia/autocomplete-preset-algolia': 1.17.7(@algolia/client-search@5.15.0)(algoliasearch@5.15.0)
'@docsearch/css': 3.8.0
- algoliasearch: 5.14.2
+ algoliasearch: 5.15.0
optionalDependencies:
- search-insights: 2.17.2
+ search-insights: 2.17.3
transitivePeerDependencies:
- '@algolia/client-search'
- '@emotion/babel-plugin@11.12.0':
+ '@emotion/babel-plugin@11.13.5':
dependencies:
'@babel/helper-module-imports': 7.25.9
'@babel/runtime': 7.26.0
'@emotion/hash': 0.9.2
'@emotion/memoize': 0.9.0
- '@emotion/serialize': 1.3.2
+ '@emotion/serialize': 1.3.3
babel-plugin-macros: 3.1.0
convert-source-map: 1.9.0
escape-string-regexp: 4.0.0
@@ -8408,21 +8380,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@emotion/cache@11.13.1':
+ '@emotion/cache@11.13.5':
dependencies:
'@emotion/memoize': 0.9.0
'@emotion/sheet': 1.4.0
- '@emotion/utils': 1.4.1
+ '@emotion/utils': 1.4.2
'@emotion/weak-memoize': 0.4.0
stylis: 4.2.0
- '@emotion/css@11.13.4':
+ '@emotion/css@11.13.5':
dependencies:
- '@emotion/babel-plugin': 11.12.0
- '@emotion/cache': 11.13.1
- '@emotion/serialize': 1.3.2
+ '@emotion/babel-plugin': 11.13.5
+ '@emotion/cache': 11.13.5
+ '@emotion/serialize': 1.3.3
'@emotion/sheet': 1.4.0
- '@emotion/utils': 1.4.1
+ '@emotion/utils': 1.4.2
transitivePeerDependencies:
- supports-color
@@ -8430,19 +8402,19 @@ snapshots:
'@emotion/memoize@0.9.0': {}
- '@emotion/serialize@1.3.2':
+ '@emotion/serialize@1.3.3':
dependencies:
'@emotion/hash': 0.9.2
'@emotion/memoize': 0.9.0
'@emotion/unitless': 0.10.0
- '@emotion/utils': 1.4.1
+ '@emotion/utils': 1.4.2
csstype: 3.1.3
'@emotion/sheet@1.4.0': {}
'@emotion/unitless@0.10.0': {}
- '@emotion/utils@1.4.1': {}
+ '@emotion/utils@1.4.2': {}
'@emotion/weak-memoize@0.4.0': {}
@@ -8740,22 +8712,22 @@ snapshots:
'@esbuild/win32-x64@0.24.0':
optional: true
- '@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.15.0(jiti@2.4.0))':
+ '@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.16.0(jiti@2.4.1))':
dependencies:
escape-string-regexp: 4.0.0
- eslint: 9.15.0(jiti@2.4.0)
+ eslint: 9.16.0(jiti@2.4.1)
ignore: 5.3.2
- '@eslint-community/eslint-utils@4.4.1(eslint@9.15.0(jiti@2.4.0))':
+ '@eslint-community/eslint-utils@4.4.1(eslint@9.16.0(jiti@2.4.1))':
dependencies:
- eslint: 9.15.0(jiti@2.4.0)
+ eslint: 9.16.0(jiti@2.4.1)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {}
- '@eslint/compat@1.2.3(eslint@9.15.0(jiti@2.4.0))':
+ '@eslint/compat@1.2.3(eslint@9.16.0(jiti@2.4.1))':
optionalDependencies:
- eslint: 9.15.0(jiti@2.4.0)
+ eslint: 9.16.0(jiti@2.4.1)
'@eslint/config-array@0.19.0':
dependencies:
@@ -8781,7 +8753,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.15.0': {}
+ '@eslint/js@9.16.0': {}
'@eslint/markdown@6.2.1':
dependencies:
@@ -8809,11 +8781,11 @@ snapshots:
'@floating-ui/utils@0.2.8': {}
- '@floating-ui/vue@1.1.5(vue@3.5.13(typescript@5.6.3))':
+ '@floating-ui/vue@1.1.5(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@floating-ui/dom': 1.6.12
'@floating-ui/utils': 0.2.8
- vue-demi: 0.14.10(vue@3.5.13(typescript@5.6.3))
+ vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.2))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -8837,7 +8809,7 @@ snapshots:
dependencies:
'@iconify/types': 2.0.0
- '@iconify-json/lucide@1.2.15':
+ '@iconify-json/lucide@1.2.17':
dependencies:
'@iconify/types': 2.0.0
@@ -8853,11 +8825,11 @@ snapshots:
dependencies:
'@iconify/types': 2.0.0
- '@iconify-json/simple-icons@1.2.11':
+ '@iconify-json/simple-icons@1.2.14':
dependencies:
'@iconify/types': 2.0.0
- '@iconify-json/tabler@1.2.8':
+ '@iconify-json/tabler@1.2.10':
dependencies:
'@iconify/types': 2.0.0
@@ -8875,16 +8847,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@iconify/vue@4.1.2(vue@3.5.13(typescript@5.6.3))':
+ '@iconify/vue@4.1.2(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@iconify/types': 2.0.0
- vue: 3.5.13(typescript@5.6.3)
+ vue: 3.5.13(typescript@5.7.2)
- '@internationalized/date@3.5.6':
+ '@internationalized/date@3.6.0':
dependencies:
'@swc/helpers': 0.5.15
- '@internationalized/number@3.5.4':
+ '@internationalized/number@3.6.0':
dependencies:
'@swc/helpers': 0.5.15
@@ -9015,18 +8987,18 @@ snapshots:
'@nuxt/devalue@2.0.2': {}
- '@nuxt/devtools-kit@1.6.0(magicast@0.3.5)(rollup@4.27.3)(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))':
+ '@nuxt/devtools-kit@1.6.3(magicast@0.3.5)(rollup@4.28.0)(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))':
dependencies:
- '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
- '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.28.0)
+ '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.28.0)
execa: 7.2.0
- vite: 5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0)
+ vite: 5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0)
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- '@nuxt/devtools-wizard@1.6.0':
+ '@nuxt/devtools-wizard@1.6.3':
dependencies:
consola: 3.2.3
diff: 7.0.0
@@ -9039,17 +9011,17 @@ snapshots:
rc9: 2.1.2
semver: 7.6.3
- '@nuxt/devtools@1.6.0(rollup@4.27.3)(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))':
+ '@nuxt/devtools@1.6.3(rollup@4.28.0)(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@antfu/utils': 0.7.10
- '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.27.3)(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))
- '@nuxt/devtools-wizard': 1.6.0
- '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
- '@vue/devtools-core': 7.4.4(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))
- '@vue/devtools-kit': 7.4.4
+ '@nuxt/devtools-kit': 1.6.3(magicast@0.3.5)(rollup@4.28.0)(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))
+ '@nuxt/devtools-wizard': 1.6.3
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.28.0)
+ '@vue/devtools-core': 7.6.4(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.7.2))
+ '@vue/devtools-kit': 7.6.4
birpc: 0.2.19
consola: 3.2.3
- cronstrue: 2.51.0
+ cronstrue: 2.52.0
destr: 2.0.3
error-stack-parser-es: 0.1.5
execa: 7.2.0
@@ -9062,7 +9034,7 @@ snapshots:
launch-editor: 2.9.1
local-pkg: 0.5.1
magicast: 0.3.5
- nypm: 0.3.12
+ nypm: 0.4.1
ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
@@ -9071,12 +9043,12 @@ snapshots:
scule: 1.3.0
semver: 7.6.3
simple-git: 3.27.0
- sirv: 2.0.4
+ sirv: 3.0.0
tinyglobby: 0.2.10
- unimport: 3.13.2(rollup@4.27.3)
- vite: 5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0)
- vite-plugin-inspect: 0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.27.3))(rollup@4.27.3)(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))
- vite-plugin-vue-inspector: 5.1.3(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))
+ unimport: 3.14.3(rollup@4.28.0)
+ vite: 5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0)
+ vite-plugin-inspect: 0.8.9(@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@4.28.0))(rollup@4.28.0)(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))
+ vite-plugin-vue-inspector: 5.1.3(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))
which: 3.0.1
ws: 8.18.0
transitivePeerDependencies:
@@ -9086,41 +9058,41 @@ snapshots:
- utf-8-validate
- vue
- '@nuxt/eslint-config@0.5.7(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)':
+ '@nuxt/eslint-config@0.5.7(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)':
dependencies:
- '@eslint/js': 9.15.0
- '@nuxt/eslint-plugin': 0.5.7(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)
- '@stylistic/eslint-plugin': 2.11.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)
- '@typescript-eslint/eslint-plugin': 8.15.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3))(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)
- '@typescript-eslint/parser': 8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)
- eslint: 9.15.0(jiti@2.4.0)
- eslint-config-flat-gitignore: 0.3.0(eslint@9.15.0(jiti@2.4.0))
+ '@eslint/js': 9.16.0
+ '@nuxt/eslint-plugin': 0.5.7(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)
+ '@stylistic/eslint-plugin': 2.11.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)
+ '@typescript-eslint/eslint-plugin': 8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2))(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)
+ '@typescript-eslint/parser': 8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)
+ eslint: 9.16.0(jiti@2.4.1)
+ eslint-config-flat-gitignore: 0.3.0(eslint@9.16.0(jiti@2.4.1))
eslint-flat-config-utils: 0.4.0
- eslint-plugin-import-x: 4.4.2(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)
- eslint-plugin-jsdoc: 50.5.0(eslint@9.15.0(jiti@2.4.0))
- eslint-plugin-regexp: 2.7.0(eslint@9.15.0(jiti@2.4.0))
- eslint-plugin-unicorn: 55.0.0(eslint@9.15.0(jiti@2.4.0))
- eslint-plugin-vue: 9.31.0(eslint@9.15.0(jiti@2.4.0))
- globals: 15.12.0
+ eslint-plugin-import-x: 4.5.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)
+ eslint-plugin-jsdoc: 50.6.0(eslint@9.16.0(jiti@2.4.1))
+ eslint-plugin-regexp: 2.7.0(eslint@9.16.0(jiti@2.4.1))
+ eslint-plugin-unicorn: 55.0.0(eslint@9.16.0(jiti@2.4.1))
+ eslint-plugin-vue: 9.32.0(eslint@9.16.0(jiti@2.4.1))
+ globals: 15.13.0
local-pkg: 0.5.1
pathe: 1.1.2
- vue-eslint-parser: 9.4.3(eslint@9.15.0(jiti@2.4.0))
+ vue-eslint-parser: 9.4.3(eslint@9.16.0(jiti@2.4.1))
transitivePeerDependencies:
- supports-color
- typescript
- '@nuxt/eslint-plugin@0.5.7(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)':
+ '@nuxt/eslint-plugin@0.5.7(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)':
dependencies:
- '@typescript-eslint/types': 8.15.0
- '@typescript-eslint/utils': 8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)
- eslint: 9.15.0(jiti@2.4.0)
+ '@typescript-eslint/types': 8.17.0
+ '@typescript-eslint/utils': 8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)
+ eslint: 9.16.0(jiti@2.4.1)
transitivePeerDependencies:
- supports-color
- typescript
- '@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.27.3)':
+ '@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@4.28.0)':
dependencies:
- '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
+ '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.28.0)
c12: 2.0.1(magicast@0.3.5)
consola: 3.2.3
defu: 6.1.4
@@ -9128,7 +9100,7 @@ snapshots:
globby: 14.0.2
hash-sum: 2.0.0
ignore: 6.0.2
- jiti: 2.4.0
+ jiti: 2.4.1
klona: 2.0.6
knitwork: 1.1.0
mlly: 1.7.3
@@ -9138,33 +9110,33 @@ snapshots:
semver: 7.6.3
ufo: 1.5.4
unctx: 2.3.1
- unimport: 3.13.2(rollup@4.27.3)
+ unimport: 3.14.3(rollup@4.28.0)
untyped: 1.5.1
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- '@nuxt/module-builder@0.8.4(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.27.3))(nuxi@3.15.0)(typescript@5.6.3)(vue-tsc@2.1.10(typescript@5.6.3))':
+ '@nuxt/module-builder@0.8.4(@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@4.28.0))(nuxi@3.16.0)(typescript@5.7.2)(vue-tsc@2.1.10(typescript@5.7.2))':
dependencies:
- '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.28.0)
citty: 0.1.6
consola: 3.2.3
defu: 6.1.4
magic-regexp: 0.8.0
mlly: 1.7.3
- nuxi: 3.15.0
+ nuxi: 3.16.0
pathe: 1.1.2
pkg-types: 1.2.1
- tsconfck: 3.1.4(typescript@5.6.3)
- unbuild: 2.0.0(typescript@5.6.3)(vue-tsc@2.1.10(typescript@5.6.3))
+ tsconfck: 3.1.4(typescript@5.7.2)
+ unbuild: 2.0.0(typescript@5.7.2)(vue-tsc@2.1.10(typescript@5.7.2))
transitivePeerDependencies:
- sass
- supports-color
- typescript
- vue-tsc
- '@nuxt/schema@3.14.159(magicast@0.3.5)(rollup@4.27.3)':
+ '@nuxt/schema@3.14.1592(magicast@0.3.5)(rollup@4.28.0)':
dependencies:
c12: 2.0.1(magicast@0.3.5)
compatx: 0.1.8
@@ -9177,29 +9149,29 @@ snapshots:
std-env: 3.8.0
ufo: 1.5.4
uncrypto: 0.1.3
- unimport: 3.13.2(rollup@4.27.3)
+ unimport: 3.14.3(rollup@4.28.0)
untyped: 1.5.1
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- '@nuxt/telemetry@2.6.0(magicast@0.3.5)(rollup@4.27.3)':
+ '@nuxt/telemetry@2.6.0(magicast@0.3.5)(rollup@4.28.0)':
dependencies:
- '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.28.0)
ci-info: 4.1.0
consola: 3.2.3
create-require: 1.1.1
defu: 6.1.4
destr: 2.0.3
- dotenv: 16.4.5
+ dotenv: 16.4.7
git-url-parse: 15.0.0
is-docker: 3.0.0
jiti: 1.21.6
mri: 1.2.0
- nanoid: 5.0.8
+ nanoid: 5.0.9
ofetch: 1.4.1
- package-manager-detector: 0.2.4
+ package-manager-detector: 0.2.7
parse-git-config: 3.0.0
pathe: 1.1.2
rc9: 2.1.2
@@ -9209,10 +9181,10 @@ snapshots:
- rollup
- supports-color
- '@nuxt/test-utils@3.14.4(@vitest/ui@2.1.5(vitest@2.1.5))(h3@1.13.0)(magicast@0.3.5)(nitropack@2.10.4(encoding@0.1.13)(typescript@5.6.3))(rollup@4.27.3)(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))(vitest@2.1.5(@types/node@20.17.6)(@vitest/ui@2.1.5)(stylus@0.57.0)(terser@5.36.0))(vue-router@4.4.5(vue@3.5.13(typescript@5.6.3)))(vue@3.5.13(typescript@5.6.3))':
+ '@nuxt/test-utils@3.14.4(@vitest/ui@2.1.8)(h3@1.13.0)(magicast@0.3.5)(nitropack@2.10.4(encoding@0.1.13)(typescript@5.7.2))(rollup@4.28.0)(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))(vitest@2.1.8)(vue-router@4.5.0(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2))':
dependencies:
- '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
- '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.28.0)
+ '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.28.0)
c12: 2.0.1(magicast@0.3.5)
consola: 3.2.3
defu: 6.1.4
@@ -9222,8 +9194,8 @@ snapshots:
get-port-please: 3.1.2
h3: 1.13.0
local-pkg: 0.5.1
- magic-string: 0.30.13
- nitropack: 2.10.4(encoding@0.1.13)(typescript@5.6.3)
+ magic-string: 0.30.14
+ nitropack: 2.10.4(encoding@0.1.13)(typescript@5.7.2)
node-fetch-native: 1.6.4
ofetch: 1.4.1
pathe: 1.1.2
@@ -9235,24 +9207,24 @@ snapshots:
ufo: 1.5.4
unenv: 1.10.0
unplugin: 1.16.0
- vite: 5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0)
- vitest-environment-nuxt: 1.0.1(@vitest/ui@2.1.5(vitest@2.1.5))(h3@1.13.0)(magicast@0.3.5)(nitropack@2.10.4(encoding@0.1.13)(typescript@5.6.3))(rollup@4.27.3)(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))(vitest@2.1.5(@types/node@20.17.6)(@vitest/ui@2.1.5)(stylus@0.57.0)(terser@5.36.0))(vue-router@4.4.5(vue@3.5.13(typescript@5.6.3)))(vue@3.5.13(typescript@5.6.3))
- vue: 3.5.13(typescript@5.6.3)
- vue-router: 4.4.5(vue@3.5.13(typescript@5.6.3))
+ vite: 5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0)
+ vitest-environment-nuxt: 1.0.1(@vitest/ui@2.1.8)(h3@1.13.0)(magicast@0.3.5)(nitropack@2.10.4(encoding@0.1.13)(typescript@5.7.2))(rollup@4.28.0)(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))(vitest@2.1.8)(vue-router@4.5.0(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2))
+ vue: 3.5.13(typescript@5.7.2)
+ vue-router: 4.5.0(vue@3.5.13(typescript@5.7.2))
optionalDependencies:
- '@vitest/ui': 2.1.5(vitest@2.1.5)
- vitest: 2.1.5(@types/node@20.17.6)(@vitest/ui@2.1.5)(stylus@0.57.0)(terser@5.36.0)
+ '@vitest/ui': 2.1.8(vitest@2.1.8)
+ vitest: 2.1.8(@types/node@20.17.9)(@vitest/ui@2.1.8)(stylus@0.57.0)(terser@5.36.0)
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- '@nuxt/vite-builder@3.14.159(@types/node@20.17.6)(eslint@9.15.0(jiti@2.4.0))(magicast@0.3.5)(optionator@0.9.4)(rollup@4.27.3)(stylus@0.57.0)(terser@5.36.0)(typescript@5.6.3)(vue-tsc@2.1.10(typescript@5.6.3))(vue@3.5.13(typescript@5.6.3))':
+ '@nuxt/vite-builder@3.14.1592(@types/node@20.17.9)(eslint@9.16.0(jiti@2.4.1))(magicast@0.3.5)(optionator@0.9.4)(rollup@4.28.0)(stylus@0.57.0)(terser@5.36.0)(typescript@5.7.2)(vue-tsc@2.1.10(typescript@5.7.2))(vue@3.5.13(typescript@5.7.2))':
dependencies:
- '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
- '@rollup/plugin-replace': 6.0.1(rollup@4.27.3)
- '@vitejs/plugin-vue': 5.2.0(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))
- '@vitejs/plugin-vue-jsx': 4.1.0(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.28.0)
+ '@rollup/plugin-replace': 6.0.1(rollup@4.28.0)
+ '@vitejs/plugin-vue': 5.2.1(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.7.2))
+ '@vitejs/plugin-vue-jsx': 4.1.1(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.7.2))
autoprefixer: 10.4.20(postcss@8.4.49)
clear: 0.1.0
consola: 3.2.3
@@ -9264,25 +9236,25 @@ snapshots:
externality: 1.0.2
get-port-please: 3.1.2
h3: 1.13.0
- jiti: 2.4.0
+ jiti: 2.4.1
knitwork: 1.1.0
- magic-string: 0.30.13
+ magic-string: 0.30.14
mlly: 1.7.3
ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
pkg-types: 1.2.1
postcss: 8.4.49
- rollup-plugin-visualizer: 5.12.0(rollup@4.27.3)
+ rollup-plugin-visualizer: 5.12.0(rollup@4.28.0)
std-env: 3.8.0
- strip-literal: 2.1.0
+ strip-literal: 2.1.1
ufo: 1.5.4
unenv: 1.10.0
unplugin: 1.16.0
- vite: 5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0)
- vite-node: 2.1.5(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0)
- vite-plugin-checker: 0.8.0(eslint@9.15.0(jiti@2.4.0))(optionator@0.9.4)(typescript@5.6.3)(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))(vue-tsc@2.1.10(typescript@5.6.3))
- vue: 3.5.13(typescript@5.6.3)
+ vite: 5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0)
+ vite-node: 2.1.8(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0)
+ vite-plugin-checker: 0.8.0(eslint@9.16.0(jiti@2.4.1))(optionator@0.9.4)(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))(vue-tsc@2.1.10(typescript@5.7.2))
+ vue: 3.5.13(typescript@5.7.2)
vue-bundle-renderer: 2.1.1
transitivePeerDependencies:
- '@biomejs/biome'
@@ -9306,9 +9278,9 @@ snapshots:
- vti
- vue-tsc
- '@nuxtjs/color-mode@3.5.2(magicast@0.3.5)(rollup@4.27.3)':
+ '@nuxtjs/color-mode@3.5.2(magicast@0.3.5)(rollup@4.28.0)':
dependencies:
- '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.28.0)
pathe: 1.1.2
pkg-types: 1.2.1
semver: 7.6.3
@@ -9317,9 +9289,9 @@ snapshots:
- rollup
- supports-color
- '@nuxtjs/tailwindcss@6.12.2(magicast@0.3.5)(rollup@4.27.3)':
+ '@nuxtjs/tailwindcss@6.12.2(magicast@0.3.5)(rollup@4.28.0)':
dependencies:
- '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.28.0)
autoprefixer: 10.4.20(postcss@8.4.49)
consola: 3.2.3
defu: 6.1.4
@@ -9328,8 +9300,8 @@ snapshots:
pathe: 1.1.2
postcss: 8.4.49
postcss-nesting: 13.0.1(postcss@8.4.49)
- tailwind-config-viewer: 2.0.4(tailwindcss@3.4.15)
- tailwindcss: 3.4.15
+ tailwind-config-viewer: 2.0.4(tailwindcss@3.4.16)
+ tailwindcss: 3.4.16
ufo: 1.5.4
unctx: 2.3.1
transitivePeerDependencies:
@@ -9412,9 +9384,9 @@ snapshots:
'@polka/url@1.0.0-next.28': {}
- '@radix-icons/vue@1.0.0(vue@3.5.13(typescript@5.6.3))':
+ '@radix-icons/vue@1.0.0(vue@3.5.13(typescript@5.7.2))':
dependencies:
- vue: 3.5.13(typescript@5.6.3)
+ vue: 3.5.13(typescript@5.7.2)
'@redocly/ajv@8.11.2':
dependencies:
@@ -9423,12 +9395,12 @@ snapshots:
require-from-string: 2.0.2
uri-js-replace: 1.0.1
- '@redocly/config@0.16.0': {}
+ '@redocly/config@0.17.1': {}
- '@redocly/openapi-core@1.25.11(encoding@0.1.13)(supports-color@9.4.0)':
+ '@redocly/openapi-core@1.25.15(encoding@0.1.13)(supports-color@9.4.0)':
dependencies:
'@redocly/ajv': 8.11.2
- '@redocly/config': 0.16.0
+ '@redocly/config': 0.17.1
colorette: 1.4.0
https-proxy-agent: 7.0.5(supports-color@9.4.0)
js-levenshtein: 1.1.6
@@ -9446,9 +9418,9 @@ snapshots:
optionalDependencies:
rollup: 3.29.5
- '@rollup/plugin-alias@5.1.1(rollup@4.27.3)':
+ '@rollup/plugin-alias@5.1.1(rollup@4.28.0)':
optionalDependencies:
- rollup: 4.27.3
+ rollup: 4.28.0
'@rollup/plugin-commonjs@25.0.8(rollup@3.29.5)':
dependencies:
@@ -9457,29 +9429,29 @@ snapshots:
estree-walker: 2.0.2
glob: 8.1.0
is-reference: 1.2.1
- magic-string: 0.30.13
+ magic-string: 0.30.14
optionalDependencies:
rollup: 3.29.5
- '@rollup/plugin-commonjs@28.0.1(rollup@4.27.3)':
+ '@rollup/plugin-commonjs@28.0.1(rollup@4.28.0)':
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
+ '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
commondir: 1.0.1
estree-walker: 2.0.2
fdir: 6.4.2(picomatch@4.0.2)
is-reference: 1.2.1
- magic-string: 0.30.13
+ magic-string: 0.30.14
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.27.3
+ rollup: 4.28.0
- '@rollup/plugin-inject@5.0.5(rollup@4.27.3)':
+ '@rollup/plugin-inject@5.0.5(rollup@4.28.0)':
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
+ '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
estree-walker: 2.0.2
- magic-string: 0.30.13
+ magic-string: 0.30.14
optionalDependencies:
- rollup: 4.27.3
+ rollup: 4.28.0
'@rollup/plugin-json@6.1.0(rollup@3.29.5)':
dependencies:
@@ -9487,11 +9459,11 @@ snapshots:
optionalDependencies:
rollup: 3.29.5
- '@rollup/plugin-json@6.1.0(rollup@4.27.3)':
+ '@rollup/plugin-json@6.1.0(rollup@4.28.0)':
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
+ '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
optionalDependencies:
- rollup: 4.27.3
+ rollup: 4.28.0
'@rollup/plugin-node-resolve@15.3.0(rollup@3.29.5)':
dependencies:
@@ -9503,42 +9475,37 @@ snapshots:
optionalDependencies:
rollup: 3.29.5
- '@rollup/plugin-node-resolve@15.3.0(rollup@4.27.3)':
+ '@rollup/plugin-node-resolve@15.3.0(rollup@4.28.0)':
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
+ '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
resolve: 1.22.8
optionalDependencies:
- rollup: 4.27.3
+ rollup: 4.28.0
'@rollup/plugin-replace@5.0.7(rollup@3.29.5)':
dependencies:
'@rollup/pluginutils': 5.1.3(rollup@3.29.5)
- magic-string: 0.30.13
+ magic-string: 0.30.14
optionalDependencies:
rollup: 3.29.5
- '@rollup/plugin-replace@6.0.1(rollup@4.27.3)':
+ '@rollup/plugin-replace@6.0.1(rollup@4.28.0)':
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
- magic-string: 0.30.13
+ '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
+ magic-string: 0.30.14
optionalDependencies:
- rollup: 4.27.3
+ rollup: 4.28.0
- '@rollup/plugin-terser@0.4.4(rollup@4.27.3)':
+ '@rollup/plugin-terser@0.4.4(rollup@4.28.0)':
dependencies:
serialize-javascript: 6.0.2
smob: 1.5.0
terser: 5.36.0
optionalDependencies:
- rollup: 4.27.3
-
- '@rollup/pluginutils@4.2.1':
- dependencies:
- estree-walker: 2.0.2
- picomatch: 2.3.1
+ rollup: 4.28.0
'@rollup/pluginutils@5.1.3(rollup@3.29.5)':
dependencies:
@@ -9548,93 +9515,93 @@ snapshots:
optionalDependencies:
rollup: 3.29.5
- '@rollup/pluginutils@5.1.3(rollup@4.27.3)':
+ '@rollup/pluginutils@5.1.3(rollup@4.28.0)':
dependencies:
'@types/estree': 1.0.6
estree-walker: 2.0.2
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.27.3
+ rollup: 4.28.0
- '@rollup/rollup-android-arm-eabi@4.27.3':
+ '@rollup/rollup-android-arm-eabi@4.28.0':
optional: true
- '@rollup/rollup-android-arm64@4.27.3':
+ '@rollup/rollup-android-arm64@4.28.0':
optional: true
- '@rollup/rollup-darwin-arm64@4.27.3':
+ '@rollup/rollup-darwin-arm64@4.28.0':
optional: true
- '@rollup/rollup-darwin-x64@4.27.3':
+ '@rollup/rollup-darwin-x64@4.28.0':
optional: true
- '@rollup/rollup-freebsd-arm64@4.27.3':
+ '@rollup/rollup-freebsd-arm64@4.28.0':
optional: true
- '@rollup/rollup-freebsd-x64@4.27.3':
+ '@rollup/rollup-freebsd-x64@4.28.0':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.27.3':
+ '@rollup/rollup-linux-arm-gnueabihf@4.28.0':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.27.3':
+ '@rollup/rollup-linux-arm-musleabihf@4.28.0':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.27.3':
+ '@rollup/rollup-linux-arm64-gnu@4.28.0':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.27.3':
+ '@rollup/rollup-linux-arm64-musl@4.28.0':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.27.3':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.28.0':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.27.3':
+ '@rollup/rollup-linux-riscv64-gnu@4.28.0':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.27.3':
+ '@rollup/rollup-linux-s390x-gnu@4.28.0':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.27.3':
+ '@rollup/rollup-linux-x64-gnu@4.28.0':
optional: true
- '@rollup/rollup-linux-x64-musl@4.27.3':
+ '@rollup/rollup-linux-x64-musl@4.28.0':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.27.3':
+ '@rollup/rollup-win32-arm64-msvc@4.28.0':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.27.3':
+ '@rollup/rollup-win32-ia32-msvc@4.28.0':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.27.3':
+ '@rollup/rollup-win32-x64-msvc@4.28.0':
optional: true
- '@shikijs/core@1.23.1':
+ '@shikijs/core@1.24.0':
dependencies:
- '@shikijs/engine-javascript': 1.23.1
- '@shikijs/engine-oniguruma': 1.23.1
- '@shikijs/types': 1.23.1
+ '@shikijs/engine-javascript': 1.24.0
+ '@shikijs/engine-oniguruma': 1.24.0
+ '@shikijs/types': 1.24.0
'@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
hast-util-to-html: 9.0.3
- '@shikijs/engine-javascript@1.23.1':
+ '@shikijs/engine-javascript@1.24.0':
dependencies:
- '@shikijs/types': 1.23.1
+ '@shikijs/types': 1.24.0
'@shikijs/vscode-textmate': 9.3.0
- oniguruma-to-es: 0.4.1
+ oniguruma-to-es: 0.7.0
- '@shikijs/engine-oniguruma@1.23.1':
+ '@shikijs/engine-oniguruma@1.24.0':
dependencies:
- '@shikijs/types': 1.23.1
+ '@shikijs/types': 1.24.0
'@shikijs/vscode-textmate': 9.3.0
- '@shikijs/transformers@1.23.1':
+ '@shikijs/transformers@1.24.0':
dependencies:
- shiki: 1.23.1
+ shiki: 1.24.0
- '@shikijs/types@1.23.1':
+ '@shikijs/types@1.24.0':
dependencies:
'@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
@@ -9645,10 +9612,10 @@ snapshots:
'@stackblitz/sdk@1.11.0': {}
- '@stylistic/eslint-plugin@2.11.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)':
+ '@stylistic/eslint-plugin@2.11.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)':
dependencies:
- '@typescript-eslint/utils': 8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)
- eslint: 9.15.0(jiti@2.4.0)
+ '@typescript-eslint/utils': 8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)
+ eslint: 9.16.0(jiti@2.4.1)
eslint-visitor-keys: 4.2.0
espree: 10.3.0
estraverse: 5.3.0
@@ -9665,15 +9632,15 @@ snapshots:
'@tanstack/virtual-core@3.10.9': {}
- '@tanstack/vue-table@8.20.5(vue@3.5.13(typescript@5.6.3))':
+ '@tanstack/vue-table@8.20.5(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@tanstack/table-core': 8.20.5
- vue: 3.5.13(typescript@5.6.3)
+ vue: 3.5.13(typescript@5.7.2)
- '@tanstack/vue-virtual@3.10.9(vue@3.5.13(typescript@5.6.3))':
+ '@tanstack/vue-virtual@3.10.9(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@tanstack/virtual-core': 3.10.9
- vue: 3.5.13(typescript@5.6.3)
+ vue: 3.5.13(typescript@5.7.2)
'@trysound/sax@0.2.0': {}
@@ -9683,9 +9650,9 @@ snapshots:
path-browserify: 1.0.1
tinyglobby: 0.2.10
- '@types/conventional-commits-parser@5.0.0':
+ '@types/conventional-commits-parser@5.0.1':
dependencies:
- '@types/node': 22.9.0
+ '@types/node': 22.10.1
'@types/d3-array@3.2.1': {}
@@ -9752,11 +9719,11 @@ snapshots:
dependencies:
'@types/d3-shape': 1.3.12
- '@types/d3-scale-chromatic@3.0.3': {}
+ '@types/d3-scale-chromatic@3.1.0': {}
'@types/d3-scale@4.0.8':
dependencies:
- '@types/d3-time': 3.0.3
+ '@types/d3-time': 3.0.4
'@types/d3-selection@3.0.11': {}
@@ -9770,7 +9737,7 @@ snapshots:
'@types/d3-time-format@4.0.3': {}
- '@types/d3-time@3.0.3': {}
+ '@types/d3-time@3.0.4': {}
'@types/d3-timer@3.0.2': {}
@@ -9807,10 +9774,10 @@ snapshots:
'@types/d3-quadtree': 3.0.6
'@types/d3-random': 3.0.3
'@types/d3-scale': 4.0.8
- '@types/d3-scale-chromatic': 3.0.3
+ '@types/d3-scale-chromatic': 3.1.0
'@types/d3-selection': 3.0.11
'@types/d3-shape': 3.1.6
- '@types/d3-time': 3.0.3
+ '@types/d3-time': 3.0.4
'@types/d3-time-format': 4.0.3
'@types/d3-timer': 3.0.2
'@types/d3-transition': 3.0.9
@@ -9829,7 +9796,7 @@ snapshots:
'@types/fs-extra@11.0.4':
dependencies:
'@types/jsonfile': 6.1.4
- '@types/node': 22.9.0
+ '@types/node': 22.10.1
'@types/geojson@7946.0.14': {}
@@ -9839,17 +9806,17 @@ snapshots:
'@types/http-proxy@1.17.15':
dependencies:
- '@types/node': 20.17.6
+ '@types/node': 20.17.9
'@types/json-schema@7.0.15': {}
'@types/jsonfile@6.1.4':
dependencies:
- '@types/node': 22.9.0
+ '@types/node': 22.10.1
'@types/keyv@3.1.4':
dependencies:
- '@types/node': 22.9.0
+ '@types/node': 22.10.1
'@types/leaflet@1.7.6':
dependencies:
@@ -9884,13 +9851,13 @@ snapshots:
'@types/ms@0.7.34': {}
- '@types/node@20.17.6':
+ '@types/node@20.17.9':
dependencies:
undici-types: 6.19.8
- '@types/node@22.9.0':
+ '@types/node@22.10.1':
dependencies:
- undici-types: 6.19.8
+ undici-types: 6.20.0
'@types/normalize-package-data@2.4.4': {}
@@ -9900,14 +9867,14 @@ snapshots:
'@types/prompts@2.4.9':
dependencies:
- '@types/node': 22.9.0
+ '@types/node': 22.10.1
kleur: 3.0.3
'@types/resolve@1.20.2': {}
'@types/responselike@1.0.3':
dependencies:
- '@types/node': 22.9.0
+ '@types/node': 22.10.1
'@types/stringify-object@4.0.5': {}
@@ -9950,117 +9917,117 @@ snapshots:
'@types/web-bluetooth@0.0.20': {}
- '@typescript-eslint/eslint-plugin@8.15.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3))(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)':
+ '@typescript-eslint/eslint-plugin@8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2))(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)
- '@typescript-eslint/scope-manager': 8.15.0
- '@typescript-eslint/type-utils': 8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)
- '@typescript-eslint/utils': 8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)
- '@typescript-eslint/visitor-keys': 8.15.0
- eslint: 9.15.0(jiti@2.4.0)
+ '@typescript-eslint/parser': 8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)
+ '@typescript-eslint/scope-manager': 8.17.0
+ '@typescript-eslint/type-utils': 8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)
+ '@typescript-eslint/utils': 8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)
+ '@typescript-eslint/visitor-keys': 8.17.0
+ eslint: 9.16.0(jiti@2.4.1)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
- ts-api-utils: 1.4.0(typescript@5.6.3)
+ ts-api-utils: 1.4.3(typescript@5.7.2)
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)':
+ '@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)':
dependencies:
- '@typescript-eslint/scope-manager': 8.15.0
- '@typescript-eslint/types': 8.15.0
- '@typescript-eslint/typescript-estree': 8.15.0(typescript@5.6.3)
- '@typescript-eslint/visitor-keys': 8.15.0
+ '@typescript-eslint/scope-manager': 8.17.0
+ '@typescript-eslint/types': 8.17.0
+ '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.7.2)
+ '@typescript-eslint/visitor-keys': 8.17.0
debug: 4.3.7(supports-color@9.4.0)
- eslint: 9.15.0(jiti@2.4.0)
+ eslint: 9.16.0(jiti@2.4.1)
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.15.0':
+ '@typescript-eslint/scope-manager@8.17.0':
dependencies:
- '@typescript-eslint/types': 8.15.0
- '@typescript-eslint/visitor-keys': 8.15.0
+ '@typescript-eslint/types': 8.17.0
+ '@typescript-eslint/visitor-keys': 8.17.0
- '@typescript-eslint/type-utils@8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)':
+ '@typescript-eslint/type-utils@8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.15.0(typescript@5.6.3)
- '@typescript-eslint/utils': 8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)
+ '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.7.2)
+ '@typescript-eslint/utils': 8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)
debug: 4.3.7(supports-color@9.4.0)
- eslint: 9.15.0(jiti@2.4.0)
- ts-api-utils: 1.4.0(typescript@5.6.3)
+ eslint: 9.16.0(jiti@2.4.1)
+ ts-api-utils: 1.4.3(typescript@5.7.2)
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@8.15.0': {}
+ '@typescript-eslint/types@8.17.0': {}
- '@typescript-eslint/typescript-estree@8.15.0(typescript@5.6.3)':
+ '@typescript-eslint/typescript-estree@8.17.0(typescript@5.7.2)':
dependencies:
- '@typescript-eslint/types': 8.15.0
- '@typescript-eslint/visitor-keys': 8.15.0
+ '@typescript-eslint/types': 8.17.0
+ '@typescript-eslint/visitor-keys': 8.17.0
debug: 4.3.7(supports-color@9.4.0)
fast-glob: 3.3.2
is-glob: 4.0.3
minimatch: 9.0.5
semver: 7.6.3
- ts-api-utils: 1.4.0(typescript@5.6.3)
+ ts-api-utils: 1.4.3(typescript@5.7.2)
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)':
+ '@typescript-eslint/utils@8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.15.0(jiti@2.4.0))
- '@typescript-eslint/scope-manager': 8.15.0
- '@typescript-eslint/types': 8.15.0
- '@typescript-eslint/typescript-estree': 8.15.0(typescript@5.6.3)
- eslint: 9.15.0(jiti@2.4.0)
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0(jiti@2.4.1))
+ '@typescript-eslint/scope-manager': 8.17.0
+ '@typescript-eslint/types': 8.17.0
+ '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.7.2)
+ eslint: 9.16.0(jiti@2.4.1)
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/visitor-keys@8.15.0':
+ '@typescript-eslint/visitor-keys@8.17.0':
dependencies:
- '@typescript-eslint/types': 8.15.0
+ '@typescript-eslint/types': 8.17.0
eslint-visitor-keys: 4.2.0
'@ungap/structured-clone@1.2.0': {}
- '@unhead/dom@1.11.11':
+ '@unhead/dom@1.11.13':
dependencies:
- '@unhead/schema': 1.11.11
- '@unhead/shared': 1.11.11
+ '@unhead/schema': 1.11.13
+ '@unhead/shared': 1.11.13
- '@unhead/schema@1.11.11':
+ '@unhead/schema@1.11.13':
dependencies:
hookable: 5.5.3
zhead: 2.2.4
- '@unhead/shared@1.11.11':
+ '@unhead/shared@1.11.13':
dependencies:
- '@unhead/schema': 1.11.11
+ '@unhead/schema': 1.11.13
- '@unhead/ssr@1.11.11':
+ '@unhead/ssr@1.11.13':
dependencies:
- '@unhead/schema': 1.11.11
- '@unhead/shared': 1.11.11
+ '@unhead/schema': 1.11.13
+ '@unhead/shared': 1.11.13
- '@unhead/vue@1.11.11(vue@3.5.13(typescript@5.6.3))':
+ '@unhead/vue@1.11.13(vue@3.5.13(typescript@5.7.2))':
dependencies:
- '@unhead/schema': 1.11.11
- '@unhead/shared': 1.11.11
+ '@unhead/schema': 1.11.13
+ '@unhead/shared': 1.11.13
defu: 6.1.4
hookable: 5.5.3
- unhead: 1.11.11
- vue: 3.5.13(typescript@5.6.3)
+ unhead: 1.11.13
+ vue: 3.5.13(typescript@5.7.2)
'@unovis/dagre-layout@0.8.8-2':
dependencies:
@@ -10071,9 +10038,9 @@ snapshots:
dependencies:
lodash-es: 4.17.21
- '@unovis/ts@1.4.4':
+ '@unovis/ts@1.4.5':
dependencies:
- '@emotion/css': 11.13.4
+ '@emotion/css': 11.13.5
'@juggle/resize-observer': 3.4.0
'@types/d3': 7.4.3
'@types/d3-collection': 1.0.13
@@ -10108,10 +10075,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@unovis/vue@1.4.4(@unovis/ts@1.4.4)(vue@3.5.13(typescript@5.6.3))':
+ '@unovis/vue@1.4.5(@unovis/ts@1.4.5)(vue@3.5.13(typescript@5.7.2))':
dependencies:
- '@unovis/ts': 1.4.4
- vue: 3.5.13(typescript@5.6.3)
+ '@unovis/ts': 1.4.5
+ vue: 3.5.13(typescript@5.7.2)
'@unovue/detypes@0.8.4':
dependencies:
@@ -10121,23 +10088,23 @@ snapshots:
'@vue/compiler-sfc': 3.5.13
'@vuedx/template-ast-types': 0.7.1
fast-glob: 3.3.2
- prettier: 3.3.3
- typescript: 5.6.3
+ prettier: 3.4.2
+ typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@vee-validate/zod@4.14.7(vue@3.5.13(typescript@5.6.3))':
+ '@vee-validate/zod@4.14.7(vue@3.5.13(typescript@5.7.2))':
dependencies:
- type-fest: 4.27.0
- vee-validate: 4.14.7(vue@3.5.13(typescript@5.6.3))
+ type-fest: 4.30.0
+ vee-validate: 4.14.7(vue@3.5.13(typescript@5.7.2))
zod: 3.23.8
transitivePeerDependencies:
- vue
- '@vercel/nft@0.27.6(encoding@0.1.13)':
+ '@vercel/nft@0.27.7(encoding@0.1.13)(rollup@4.28.0)':
dependencies:
'@mapbox/node-pre-gyp': 1.0.11(encoding@0.1.13)
- '@rollup/pluginutils': 4.2.1
+ '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
acorn: 8.14.0
acorn-import-attributes: 1.9.5(acorn@8.14.0)
async-sema: 3.1.1
@@ -10146,107 +10113,108 @@ snapshots:
glob: 7.2.3
graceful-fs: 4.2.11
micromatch: 4.0.8
- node-gyp-build: 4.8.3
+ node-gyp-build: 4.8.4
resolve-from: 5.0.0
transitivePeerDependencies:
- encoding
+ - rollup
- supports-color
- '@vitejs/plugin-vue-jsx@4.1.0(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))':
+ '@vitejs/plugin-vue-jsx@4.1.1(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@babel/core': 7.26.0
- '@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0)
'@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0)
- vite: 5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0)
- vue: 3.5.13(typescript@5.6.3)
+ vite: 5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0)
+ vue: 3.5.13(typescript@5.7.2)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue-jsx@4.1.0(vite@5.4.11(@types/node@22.9.0)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))':
+ '@vitejs/plugin-vue-jsx@4.1.1(vite@5.4.11(@types/node@22.10.1)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@babel/core': 7.26.0
- '@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0)
'@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0)
- vite: 5.4.11(@types/node@22.9.0)(stylus@0.57.0)(terser@5.36.0)
- vue: 3.5.13(typescript@5.6.3)
+ vite: 5.4.11(@types/node@22.10.1)(stylus@0.57.0)(terser@5.36.0)
+ vue: 3.5.13(typescript@5.7.2)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue@5.2.0(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))':
+ '@vitejs/plugin-vue@5.2.1(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.7.2))':
dependencies:
- vite: 5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0)
- vue: 3.5.13(typescript@5.6.3)
+ vite: 5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0)
+ vue: 3.5.13(typescript@5.7.2)
- '@vitejs/plugin-vue@5.2.0(vite@5.4.11(@types/node@22.9.0)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))':
+ '@vitejs/plugin-vue@5.2.1(vite@5.4.11(@types/node@22.10.1)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.7.2))':
dependencies:
- vite: 5.4.11(@types/node@22.9.0)(stylus@0.57.0)(terser@5.36.0)
- vue: 3.5.13(typescript@5.6.3)
+ vite: 5.4.11(@types/node@22.10.1)(stylus@0.57.0)(terser@5.36.0)
+ vue: 3.5.13(typescript@5.7.2)
- '@vitest/eslint-plugin@1.1.10(@typescript-eslint/utils@8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3))(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)(vitest@2.1.5(@types/node@22.9.0)(@vitest/ui@2.1.5)(stylus@0.57.0)(terser@5.36.0))':
+ '@vitest/eslint-plugin@1.1.14(@typescript-eslint/utils@8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2))(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)(vitest@2.1.8)':
dependencies:
- '@typescript-eslint/utils': 8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)
- eslint: 9.15.0(jiti@2.4.0)
+ '@typescript-eslint/utils': 8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)
+ eslint: 9.16.0(jiti@2.4.1)
optionalDependencies:
- typescript: 5.6.3
- vitest: 2.1.5(@types/node@22.9.0)(@vitest/ui@2.1.5)(stylus@0.57.0)(terser@5.36.0)
+ typescript: 5.7.2
+ vitest: 2.1.8(@types/node@22.10.1)(@vitest/ui@2.1.8)(stylus@0.57.0)(terser@5.36.0)
- '@vitest/expect@2.1.5':
+ '@vitest/expect@2.1.8':
dependencies:
- '@vitest/spy': 2.1.5
- '@vitest/utils': 2.1.5
+ '@vitest/spy': 2.1.8
+ '@vitest/utils': 2.1.8
chai: 5.1.2
tinyrainbow: 1.2.0
- '@vitest/mocker@2.1.5(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))':
+ '@vitest/mocker@2.1.8(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))':
dependencies:
- '@vitest/spy': 2.1.5
+ '@vitest/spy': 2.1.8
estree-walker: 3.0.3
- magic-string: 0.30.13
+ magic-string: 0.30.14
optionalDependencies:
- vite: 5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0)
+ vite: 5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0)
optional: true
- '@vitest/mocker@2.1.5(vite@5.4.11(@types/node@22.9.0)(stylus@0.57.0)(terser@5.36.0))':
+ '@vitest/mocker@2.1.8(vite@5.4.11(@types/node@22.10.1)(stylus@0.57.0)(terser@5.36.0))':
dependencies:
- '@vitest/spy': 2.1.5
+ '@vitest/spy': 2.1.8
estree-walker: 3.0.3
- magic-string: 0.30.13
+ magic-string: 0.30.14
optionalDependencies:
- vite: 5.4.11(@types/node@22.9.0)(stylus@0.57.0)(terser@5.36.0)
+ vite: 5.4.11(@types/node@22.10.1)(stylus@0.57.0)(terser@5.36.0)
- '@vitest/pretty-format@2.1.5':
+ '@vitest/pretty-format@2.1.8':
dependencies:
tinyrainbow: 1.2.0
- '@vitest/runner@2.1.5':
+ '@vitest/runner@2.1.8':
dependencies:
- '@vitest/utils': 2.1.5
+ '@vitest/utils': 2.1.8
pathe: 1.1.2
- '@vitest/snapshot@2.1.5':
+ '@vitest/snapshot@2.1.8':
dependencies:
- '@vitest/pretty-format': 2.1.5
- magic-string: 0.30.13
+ '@vitest/pretty-format': 2.1.8
+ magic-string: 0.30.14
pathe: 1.1.2
- '@vitest/spy@2.1.5':
+ '@vitest/spy@2.1.8':
dependencies:
tinyspy: 3.0.2
- '@vitest/ui@2.1.5(vitest@2.1.5)':
+ '@vitest/ui@2.1.8(vitest@2.1.8)':
dependencies:
- '@vitest/utils': 2.1.5
+ '@vitest/utils': 2.1.8
fflate: 0.8.2
flatted: 3.3.2
pathe: 1.1.2
sirv: 3.0.0
tinyglobby: 0.2.10
tinyrainbow: 1.2.0
- vitest: 2.1.5(@types/node@22.9.0)(@vitest/ui@2.1.5)(stylus@0.57.0)(terser@5.36.0)
+ vitest: 2.1.8(@types/node@22.10.1)(@vitest/ui@2.1.8)(stylus@0.57.0)(terser@5.36.0)
- '@vitest/utils@2.1.5':
+ '@vitest/utils@2.1.8':
dependencies:
- '@vitest/pretty-format': 2.1.5
+ '@vitest/pretty-format': 2.1.8
loupe: 3.1.2
tinyrainbow: 1.2.0
@@ -10262,16 +10230,16 @@ snapshots:
path-browserify: 1.0.1
vscode-uri: 3.0.8
- '@vue-macros/common@1.15.0(rollup@4.27.3)(vue@3.5.13(typescript@5.6.3))':
+ '@vue-macros/common@1.15.0(rollup@4.28.0)(vue@3.5.13(typescript@5.7.2))':
dependencies:
- '@babel/types': 7.26.0
- '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
+ '@babel/types': 7.26.3
+ '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
'@vue/compiler-sfc': 3.5.13
- ast-kit: 1.3.1
+ ast-kit: 1.3.2
local-pkg: 0.5.1
- magic-string-ast: 0.6.2
+ magic-string-ast: 0.6.3
optionalDependencies:
- vue: 3.5.13(typescript@5.6.3)
+ vue: 3.5.13(typescript@5.7.2)
transitivePeerDependencies:
- rollup
@@ -10283,8 +10251,8 @@ snapshots:
'@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
'@babel/template': 7.25.9
- '@babel/traverse': 7.25.9
- '@babel/types': 7.26.0
+ '@babel/traverse': 7.26.3
+ '@babel/types': 7.26.3
'@vue/babel-helper-vue-transform-on': 1.2.5
'@vue/babel-plugin-resolve-type': 1.2.5(@babel/core@7.26.0)
html-tags: 3.3.1
@@ -10300,14 +10268,14 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-module-imports': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
- '@babel/parser': 7.26.2
+ '@babel/parser': 7.26.3
'@vue/compiler-sfc': 3.5.13
transitivePeerDependencies:
- supports-color
'@vue/compiler-core@3.5.13':
dependencies:
- '@babel/parser': 7.26.2
+ '@babel/parser': 7.26.3
'@vue/shared': 3.5.13
entities: 4.5.0
estree-walker: 2.0.2
@@ -10320,13 +10288,13 @@ snapshots:
'@vue/compiler-sfc@3.5.13':
dependencies:
- '@babel/parser': 7.26.2
+ '@babel/parser': 7.26.3
'@vue/compiler-core': 3.5.13
'@vue/compiler-dom': 3.5.13
'@vue/compiler-ssr': 3.5.13
'@vue/shared': 3.5.13
estree-walker: 2.0.2
- magic-string: 0.30.13
+ magic-string: 0.30.14
postcss: 8.4.49
source-map-js: 1.2.1
@@ -10342,35 +10310,25 @@ snapshots:
'@vue/devtools-api@6.6.4': {}
- '@vue/devtools-api@7.6.4':
+ '@vue/devtools-api@7.6.7':
+ dependencies:
+ '@vue/devtools-kit': 7.6.7
+
+ '@vue/devtools-core@7.6.4(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@vue/devtools-kit': 7.6.4
-
- '@vue/devtools-core@7.4.4(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))':
- dependencies:
- '@vue/devtools-kit': 7.4.4
- '@vue/devtools-shared': 7.6.4
+ '@vue/devtools-shared': 7.6.7
mitt: 3.0.1
- nanoid: 3.3.7
+ nanoid: 3.3.8
pathe: 1.1.2
- vite-hot-client: 0.2.3(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))
- vue: 3.5.13(typescript@5.6.3)
+ vite-hot-client: 0.2.4(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))
+ vue: 3.5.13(typescript@5.7.2)
transitivePeerDependencies:
- vite
- '@vue/devtools-kit@7.4.4':
- dependencies:
- '@vue/devtools-shared': 7.6.4
- birpc: 0.2.19
- hookable: 5.5.3
- mitt: 3.0.1
- perfect-debounce: 1.0.0
- speakingurl: 14.0.1
- superjson: 2.2.1
-
'@vue/devtools-kit@7.6.4':
dependencies:
- '@vue/devtools-shared': 7.6.4
+ '@vue/devtools-shared': 7.6.7
birpc: 0.2.19
hookable: 5.5.3
mitt: 3.0.1
@@ -10378,11 +10336,21 @@ snapshots:
speakingurl: 14.0.1
superjson: 2.2.1
- '@vue/devtools-shared@7.6.4':
+ '@vue/devtools-kit@7.6.7':
+ dependencies:
+ '@vue/devtools-shared': 7.6.7
+ birpc: 0.2.19
+ hookable: 5.5.3
+ mitt: 3.0.1
+ perfect-debounce: 1.0.0
+ speakingurl: 14.0.1
+ superjson: 2.2.1
+
+ '@vue/devtools-shared@7.6.7':
dependencies:
rfdc: 1.4.1
- '@vue/language-core@2.1.10(typescript@5.6.3)':
+ '@vue/language-core@2.1.10(typescript@5.7.2)':
dependencies:
'@volar/language-core': 2.4.10
'@vue/compiler-dom': 3.5.13
@@ -10393,7 +10361,7 @@ snapshots:
muggle-string: 0.4.1
path-browserify: 1.0.1
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.7.2
'@vue/reactivity@3.5.13':
dependencies:
@@ -10411,11 +10379,11 @@ snapshots:
'@vue/shared': 3.5.13
csstype: 3.1.3
- '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.6.3))':
+ '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@vue/compiler-ssr': 3.5.13
'@vue/shared': 3.5.13
- vue: 3.5.13(typescript@5.6.3)
+ vue: 3.5.13(typescript@5.7.2)
'@vue/shared@3.5.13': {}
@@ -10425,31 +10393,31 @@ snapshots:
dependencies:
'@vue/compiler-core': 3.5.13
- '@vueuse/core@10.11.1(vue@3.5.13(typescript@5.6.3))':
+ '@vueuse/core@10.11.1(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@types/web-bluetooth': 0.0.20
'@vueuse/metadata': 10.11.1
- '@vueuse/shared': 10.11.1(vue@3.5.13(typescript@5.6.3))
- vue-demi: 0.14.10(vue@3.5.13(typescript@5.6.3))
+ '@vueuse/shared': 10.11.1(vue@3.5.13(typescript@5.7.2))
+ vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.2))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/core@11.2.0(vue@3.5.13(typescript@5.6.3))':
+ '@vueuse/core@11.3.0(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@types/web-bluetooth': 0.0.20
- '@vueuse/metadata': 11.2.0
- '@vueuse/shared': 11.2.0(vue@3.5.13(typescript@5.6.3))
- vue-demi: 0.14.10(vue@3.5.13(typescript@5.6.3))
+ '@vueuse/metadata': 11.3.0
+ '@vueuse/shared': 11.3.0(vue@3.5.13(typescript@5.7.2))
+ vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.2))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/integrations@11.2.0(change-case@5.4.4)(focus-trap@7.6.2)(vue@3.5.13(typescript@5.6.3))':
+ '@vueuse/integrations@11.3.0(change-case@5.4.4)(focus-trap@7.6.2)(vue@3.5.13(typescript@5.7.2))':
dependencies:
- '@vueuse/core': 11.2.0(vue@3.5.13(typescript@5.6.3))
- '@vueuse/shared': 11.2.0(vue@3.5.13(typescript@5.6.3))
- vue-demi: 0.14.10(vue@3.5.13(typescript@5.6.3))
+ '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.7.2))
+ '@vueuse/shared': 11.3.0(vue@3.5.13(typescript@5.7.2))
+ vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.2))
optionalDependencies:
change-case: 5.4.4
focus-trap: 7.6.2
@@ -10459,18 +10427,18 @@ snapshots:
'@vueuse/metadata@10.11.1': {}
- '@vueuse/metadata@11.2.0': {}
+ '@vueuse/metadata@11.3.0': {}
- '@vueuse/shared@10.11.1(vue@3.5.13(typescript@5.6.3))':
+ '@vueuse/shared@10.11.1(vue@3.5.13(typescript@5.7.2))':
dependencies:
- vue-demi: 0.14.10(vue@3.5.13(typescript@5.6.3))
+ vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.2))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/shared@11.2.0(vue@3.5.13(typescript@5.6.3))':
+ '@vueuse/shared@11.3.0(vue@3.5.13(typescript@5.7.2))':
dependencies:
- vue-demi: 0.14.10(vue@3.5.13(typescript@5.6.3))
+ vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.2))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -10535,21 +10503,21 @@ snapshots:
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- algoliasearch@5.14.2:
+ algoliasearch@5.15.0:
dependencies:
- '@algolia/client-abtesting': 5.14.2
- '@algolia/client-analytics': 5.14.2
- '@algolia/client-common': 5.14.2
- '@algolia/client-insights': 5.14.2
- '@algolia/client-personalization': 5.14.2
- '@algolia/client-query-suggestions': 5.14.2
- '@algolia/client-search': 5.14.2
- '@algolia/ingestion': 1.14.2
- '@algolia/monitoring': 1.14.2
- '@algolia/recommend': 5.14.2
- '@algolia/requester-browser-xhr': 5.14.2
- '@algolia/requester-fetch': 5.14.2
- '@algolia/requester-node-http': 5.14.2
+ '@algolia/client-abtesting': 5.15.0
+ '@algolia/client-analytics': 5.15.0
+ '@algolia/client-common': 5.15.0
+ '@algolia/client-insights': 5.15.0
+ '@algolia/client-personalization': 5.15.0
+ '@algolia/client-query-suggestions': 5.15.0
+ '@algolia/client-search': 5.15.0
+ '@algolia/ingestion': 1.15.0
+ '@algolia/monitoring': 1.15.0
+ '@algolia/recommend': 5.15.0
+ '@algolia/requester-browser-xhr': 5.15.0
+ '@algolia/requester-fetch': 5.15.0
+ '@algolia/requester-node-http': 5.15.0
alien-signals@0.2.2: {}
@@ -10637,9 +10605,9 @@ snapshots:
assertion-error@2.0.1: {}
- ast-kit@1.3.1:
+ ast-kit@1.3.2:
dependencies:
- '@babel/parser': 7.26.2
+ '@babel/parser': 7.26.3
pathe: 1.1.2
ast-types@0.14.2:
@@ -10652,8 +10620,8 @@ snapshots:
ast-walker-scope@0.6.2:
dependencies:
- '@babel/parser': 7.26.2
- ast-kit: 1.3.1
+ '@babel/parser': 7.26.3
+ ast-kit: 1.3.2
astral-regex@2.0.0: {}
@@ -10672,7 +10640,7 @@ snapshots:
autoprefixer@10.4.20(postcss@8.4.49):
dependencies:
browserslist: 4.24.2
- caniuse-lite: 1.0.30001680
+ caniuse-lite: 1.0.30001686
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.1
@@ -10745,8 +10713,8 @@ snapshots:
browserslist@4.24.2:
dependencies:
- caniuse-lite: 1.0.30001680
- electron-to-chromium: 1.5.63
+ caniuse-lite: 1.0.30001686
+ electron-to-chromium: 1.5.68
node-releases: 2.0.18
update-browserslist-db: 1.1.1(browserslist@4.24.2)
@@ -10805,7 +10773,7 @@ snapshots:
chokidar: 3.6.0
confbox: 0.1.8
defu: 6.1.4
- dotenv: 16.4.5
+ dotenv: 16.4.7
giget: 1.2.3
jiti: 1.21.6
mlly: 1.7.3
@@ -10822,9 +10790,9 @@ snapshots:
chokidar: 4.0.1
confbox: 0.1.8
defu: 6.1.4
- dotenv: 16.4.5
+ dotenv: 16.4.7
giget: 1.2.3
- jiti: 2.4.0
+ jiti: 2.4.1
mlly: 1.7.3
ohash: 1.1.4
pathe: 1.1.2
@@ -10884,11 +10852,11 @@ snapshots:
caniuse-api@3.0.0:
dependencies:
browserslist: 4.24.2
- caniuse-lite: 1.0.30001680
+ caniuse-lite: 1.0.30001686
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- caniuse-lite@1.0.30001680: {}
+ caniuse-lite@1.0.30001686: {}
capture-stack-trace@1.0.2: {}
@@ -10955,9 +10923,9 @@ snapshots:
dependencies:
consola: 3.2.3
- class-variance-authority@0.7.0:
+ class-variance-authority@0.7.1:
dependencies:
- clsx: 2.0.0
+ clsx: 2.1.1
clean-regexp@1.0.0:
dependencies:
@@ -11002,8 +10970,6 @@ snapshots:
strip-ansi: 6.0.1
wrap-ansi: 7.0.0
- clsx@2.0.0: {}
-
clsx@2.1.1: {}
cluster-key-slot@1.1.2: {}
@@ -11174,12 +11140,12 @@ snapshots:
core-util-is@1.0.3: {}
- cosmiconfig-typescript-loader@5.1.0(@types/node@22.9.0)(cosmiconfig@9.0.0(typescript@5.6.3))(typescript@5.6.3):
+ cosmiconfig-typescript-loader@5.1.0(@types/node@22.10.1)(cosmiconfig@9.0.0(typescript@5.7.2))(typescript@5.7.2):
dependencies:
- '@types/node': 22.9.0
- cosmiconfig: 9.0.0(typescript@5.6.3)
+ '@types/node': 22.10.1
+ cosmiconfig: 9.0.0(typescript@5.7.2)
jiti: 1.21.6
- typescript: 5.6.3
+ typescript: 5.7.2
cosmiconfig@7.1.0:
dependencies:
@@ -11189,14 +11155,14 @@ snapshots:
path-type: 4.0.0
yaml: 1.10.2
- cosmiconfig@9.0.0(typescript@5.6.3):
+ cosmiconfig@9.0.0(typescript@5.7.2):
dependencies:
env-paths: 2.2.1
import-fresh: 3.3.0
js-yaml: 4.1.0
parse-json: 5.2.0
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.7.2
crc-32@1.2.2: {}
@@ -11213,7 +11179,7 @@ snapshots:
croner@9.0.0: {}
- cronstrue@2.51.0: {}
+ cronstrue@2.52.0: {}
cross-spawn@5.1.0:
dependencies:
@@ -11308,7 +11274,7 @@ snapshots:
cssnano@7.0.6(postcss@8.4.49):
dependencies:
cssnano-preset-default: 7.0.6(postcss@8.4.49)
- lilconfig: 3.1.2
+ lilconfig: 3.1.3
postcss: 8.4.49
csso@5.0.5:
@@ -11632,9 +11598,9 @@ snapshots:
dot-prop@9.0.0:
dependencies:
- type-fest: 4.27.0
+ type-fest: 4.30.0
- dotenv@16.4.5: {}
+ dotenv@16.4.7: {}
duplexer3@0.1.5: {}
@@ -11658,25 +11624,25 @@ snapshots:
ee-first@1.1.1: {}
- electron-to-chromium@1.5.63: {}
+ electron-to-chromium@1.5.68: {}
elkjs@0.8.2: {}
- embla-carousel-autoplay@8.4.0(embla-carousel@8.4.0):
+ embla-carousel-autoplay@8.5.1(embla-carousel@8.5.1):
dependencies:
- embla-carousel: 8.4.0
+ embla-carousel: 8.5.1
- embla-carousel-reactive-utils@8.4.0(embla-carousel@8.4.0):
+ embla-carousel-reactive-utils@8.5.1(embla-carousel@8.5.1):
dependencies:
- embla-carousel: 8.4.0
+ embla-carousel: 8.5.1
- embla-carousel-vue@8.4.0(vue@3.5.13(typescript@5.6.3)):
+ embla-carousel-vue@8.5.1(vue@3.5.13(typescript@5.7.2)):
dependencies:
- embla-carousel: 8.4.0
- embla-carousel-reactive-utils: 8.4.0(embla-carousel@8.4.0)
- vue: 3.5.13(typescript@5.6.3)
+ embla-carousel: 8.5.1
+ embla-carousel-reactive-utils: 8.5.1(embla-carousel@8.5.1)
+ vue: 3.5.13(typescript@5.7.2)
- embla-carousel@8.4.0: {}
+ embla-carousel@8.5.1: {}
emoji-regex-xs@1.0.0: {}
@@ -11845,20 +11811,20 @@ snapshots:
escape-string-regexp@5.0.0: {}
- eslint-compat-utils@0.5.1(eslint@9.15.0(jiti@2.4.0)):
+ eslint-compat-utils@0.5.1(eslint@9.16.0(jiti@2.4.1)):
dependencies:
- eslint: 9.15.0(jiti@2.4.0)
+ eslint: 9.16.0(jiti@2.4.1)
semver: 7.6.3
- eslint-compat-utils@0.6.3(eslint@9.15.0(jiti@2.4.0)):
+ eslint-compat-utils@0.6.4(eslint@9.16.0(jiti@2.4.1)):
dependencies:
- eslint: 9.15.0(jiti@2.4.0)
+ eslint: 9.16.0(jiti@2.4.1)
semver: 7.6.3
- eslint-config-flat-gitignore@0.3.0(eslint@9.15.0(jiti@2.4.0)):
+ eslint-config-flat-gitignore@0.3.0(eslint@9.16.0(jiti@2.4.1)):
dependencies:
- '@eslint/compat': 1.2.3(eslint@9.15.0(jiti@2.4.0))
- eslint: 9.15.0(jiti@2.4.0)
+ '@eslint/compat': 1.2.3(eslint@9.16.0(jiti@2.4.1))
+ eslint: 9.16.0(jiti@2.4.1)
find-up-simple: 1.0.0
eslint-flat-config-utils@0.4.0:
@@ -11873,39 +11839,40 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-json-compat-utils@0.2.1(eslint@9.15.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0):
+ eslint-json-compat-utils@0.2.1(eslint@9.16.0(jiti@2.4.1))(jsonc-eslint-parser@2.4.0):
dependencies:
- eslint: 9.15.0(jiti@2.4.0)
+ eslint: 9.16.0(jiti@2.4.1)
esquery: 1.6.0
jsonc-eslint-parser: 2.4.0
- eslint-merge-processors@0.1.0(eslint@9.15.0(jiti@2.4.0)):
+ eslint-merge-processors@0.1.0(eslint@9.16.0(jiti@2.4.1)):
dependencies:
- eslint: 9.15.0(jiti@2.4.0)
+ eslint: 9.16.0(jiti@2.4.1)
- eslint-plugin-antfu@2.7.0(eslint@9.15.0(jiti@2.4.0)):
+ eslint-plugin-antfu@2.7.0(eslint@9.16.0(jiti@2.4.1)):
dependencies:
'@antfu/utils': 0.7.10
- eslint: 9.15.0(jiti@2.4.0)
+ eslint: 9.16.0(jiti@2.4.1)
- eslint-plugin-command@0.2.6(eslint@9.15.0(jiti@2.4.0)):
+ eslint-plugin-command@0.2.6(eslint@9.16.0(jiti@2.4.1)):
dependencies:
'@es-joy/jsdoccomment': 0.48.0
- eslint: 9.15.0(jiti@2.4.0)
+ eslint: 9.16.0(jiti@2.4.1)
- eslint-plugin-es-x@7.8.0(eslint@9.15.0(jiti@2.4.0)):
+ eslint-plugin-es-x@7.8.0(eslint@9.16.0(jiti@2.4.1)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.15.0(jiti@2.4.0))
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0(jiti@2.4.1))
'@eslint-community/regexpp': 4.12.1
- eslint: 9.15.0(jiti@2.4.0)
- eslint-compat-utils: 0.5.1(eslint@9.15.0(jiti@2.4.0))
+ eslint: 9.16.0(jiti@2.4.1)
+ eslint-compat-utils: 0.5.1(eslint@9.16.0(jiti@2.4.1))
- eslint-plugin-import-x@4.4.2(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3):
+ eslint-plugin-import-x@4.5.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2):
dependencies:
- '@typescript-eslint/utils': 8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)
+ '@typescript-eslint/scope-manager': 8.17.0
+ '@typescript-eslint/utils': 8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)
debug: 4.3.7(supports-color@9.4.0)
doctrine: 3.0.0
- eslint: 9.15.0(jiti@2.4.0)
+ eslint: 9.16.0(jiti@2.4.1)
eslint-import-resolver-node: 0.3.9
get-tsconfig: 4.8.1
is-glob: 4.0.3
@@ -11917,14 +11884,14 @@ snapshots:
- supports-color
- typescript
- eslint-plugin-jsdoc@50.5.0(eslint@9.15.0(jiti@2.4.0)):
+ eslint-plugin-jsdoc@50.6.0(eslint@9.16.0(jiti@2.4.1)):
dependencies:
'@es-joy/jsdoccomment': 0.49.0
are-docs-informative: 0.0.2
comment-parser: 1.4.1
debug: 4.3.7(supports-color@9.4.0)
escape-string-regexp: 4.0.0
- eslint: 9.15.0(jiti@2.4.0)
+ eslint: 9.16.0(jiti@2.4.1)
espree: 10.3.0
esquery: 1.6.0
parse-imports: 2.2.1
@@ -11934,12 +11901,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-plugin-jsonc@2.18.2(eslint@9.15.0(jiti@2.4.0)):
+ eslint-plugin-jsonc@2.18.2(eslint@9.16.0(jiti@2.4.1)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.15.0(jiti@2.4.0))
- eslint: 9.15.0(jiti@2.4.0)
- eslint-compat-utils: 0.6.3(eslint@9.15.0(jiti@2.4.0))
- eslint-json-compat-utils: 0.2.1(eslint@9.15.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0)
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0(jiti@2.4.1))
+ eslint: 9.16.0(jiti@2.4.1)
+ eslint-compat-utils: 0.6.4(eslint@9.16.0(jiti@2.4.1))
+ eslint-json-compat-utils: 0.2.1(eslint@9.16.0(jiti@2.4.1))(jsonc-eslint-parser@2.4.0)
espree: 9.6.1
graphemer: 1.4.0
jsonc-eslint-parser: 2.4.0
@@ -11948,64 +11915,61 @@ snapshots:
transitivePeerDependencies:
- '@eslint/json'
- eslint-plugin-n@17.13.2(eslint@9.15.0(jiti@2.4.0)):
+ eslint-plugin-n@17.14.0(eslint@9.16.0(jiti@2.4.1)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.15.0(jiti@2.4.0))
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0(jiti@2.4.1))
enhanced-resolve: 5.17.1
- eslint: 9.15.0(jiti@2.4.0)
- eslint-plugin-es-x: 7.8.0(eslint@9.15.0(jiti@2.4.0))
+ eslint: 9.16.0(jiti@2.4.1)
+ eslint-plugin-es-x: 7.8.0(eslint@9.16.0(jiti@2.4.1))
get-tsconfig: 4.8.1
- globals: 15.12.0
+ globals: 15.13.0
ignore: 5.3.2
minimatch: 9.0.5
semver: 7.6.3
eslint-plugin-no-only-tests@3.3.0: {}
- eslint-plugin-perfectionist@3.9.1(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)(vue-eslint-parser@9.4.3(eslint@9.15.0(jiti@2.4.0))):
+ eslint-plugin-perfectionist@4.2.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2):
dependencies:
- '@typescript-eslint/types': 8.15.0
- '@typescript-eslint/utils': 8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)
- eslint: 9.15.0(jiti@2.4.0)
- minimatch: 9.0.5
- natural-compare-lite: 1.4.0
- optionalDependencies:
- vue-eslint-parser: 9.4.3(eslint@9.15.0(jiti@2.4.0))
+ '@typescript-eslint/types': 8.17.0
+ '@typescript-eslint/utils': 8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)
+ eslint: 9.16.0(jiti@2.4.1)
+ natural-orderby: 5.0.0
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-regexp@2.7.0(eslint@9.15.0(jiti@2.4.0)):
+ eslint-plugin-regexp@2.7.0(eslint@9.16.0(jiti@2.4.1)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.15.0(jiti@2.4.0))
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0(jiti@2.4.1))
'@eslint-community/regexpp': 4.12.1
comment-parser: 1.4.1
- eslint: 9.15.0(jiti@2.4.0)
+ eslint: 9.16.0(jiti@2.4.1)
jsdoc-type-pratt-parser: 4.1.0
refa: 0.12.1
regexp-ast-analysis: 0.7.1
scslre: 0.3.0
- eslint-plugin-toml@0.11.1(eslint@9.15.0(jiti@2.4.0)):
+ eslint-plugin-toml@0.11.1(eslint@9.16.0(jiti@2.4.1)):
dependencies:
debug: 4.3.7(supports-color@9.4.0)
- eslint: 9.15.0(jiti@2.4.0)
- eslint-compat-utils: 0.5.1(eslint@9.15.0(jiti@2.4.0))
+ eslint: 9.16.0(jiti@2.4.1)
+ eslint-compat-utils: 0.5.1(eslint@9.16.0(jiti@2.4.1))
lodash: 4.17.21
toml-eslint-parser: 0.10.0
transitivePeerDependencies:
- supports-color
- eslint-plugin-unicorn@55.0.0(eslint@9.15.0(jiti@2.4.0)):
+ eslint-plugin-unicorn@55.0.0(eslint@9.16.0(jiti@2.4.1)):
dependencies:
'@babel/helper-validator-identifier': 7.25.9
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.15.0(jiti@2.4.0))
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0(jiti@2.4.1))
ci-info: 4.1.0
clean-regexp: 1.0.0
core-js-compat: 3.39.0
- eslint: 9.15.0(jiti@2.4.0)
+ eslint: 9.16.0(jiti@2.4.1)
esquery: 1.6.0
- globals: 15.12.0
+ globals: 15.13.0
indent-string: 4.0.0
is-builtin-module: 3.2.1
jsesc: 3.0.2
@@ -12016,16 +11980,16 @@ snapshots:
semver: 7.6.3
strip-indent: 3.0.0
- eslint-plugin-unicorn@56.0.0(eslint@9.15.0(jiti@2.4.0)):
+ eslint-plugin-unicorn@56.0.1(eslint@9.16.0(jiti@2.4.1)):
dependencies:
'@babel/helper-validator-identifier': 7.25.9
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.15.0(jiti@2.4.0))
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0(jiti@2.4.1))
ci-info: 4.1.0
clean-regexp: 1.0.0
core-js-compat: 3.39.0
- eslint: 9.15.0(jiti@2.4.0)
+ eslint: 9.16.0(jiti@2.4.1)
esquery: 1.6.0
- globals: 15.12.0
+ globals: 15.13.0
indent-string: 4.0.0
is-builtin-module: 3.2.1
jsesc: 3.0.2
@@ -12036,41 +12000,41 @@ snapshots:
semver: 7.6.3
strip-indent: 3.0.0
- eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.15.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3))(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3))(eslint@9.15.0(jiti@2.4.0)):
+ eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2))(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2))(eslint@9.16.0(jiti@2.4.1)):
dependencies:
- eslint: 9.15.0(jiti@2.4.0)
+ eslint: 9.16.0(jiti@2.4.1)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.15.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3))(eslint@9.15.0(jiti@2.4.0))(typescript@5.6.3)
+ '@typescript-eslint/eslint-plugin': 8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2))(eslint@9.16.0(jiti@2.4.1))(typescript@5.7.2)
- eslint-plugin-vue@9.31.0(eslint@9.15.0(jiti@2.4.0)):
+ eslint-plugin-vue@9.32.0(eslint@9.16.0(jiti@2.4.1)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.15.0(jiti@2.4.0))
- eslint: 9.15.0(jiti@2.4.0)
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0(jiti@2.4.1))
+ eslint: 9.16.0(jiti@2.4.1)
globals: 13.24.0
natural-compare: 1.4.0
nth-check: 2.1.1
postcss-selector-parser: 6.1.2
semver: 7.6.3
- vue-eslint-parser: 9.4.3(eslint@9.15.0(jiti@2.4.0))
+ vue-eslint-parser: 9.4.3(eslint@9.16.0(jiti@2.4.1))
xml-name-validator: 4.0.0
transitivePeerDependencies:
- supports-color
- eslint-plugin-yml@1.15.0(eslint@9.15.0(jiti@2.4.0)):
+ eslint-plugin-yml@1.16.0(eslint@9.16.0(jiti@2.4.1)):
dependencies:
debug: 4.3.7(supports-color@9.4.0)
- eslint: 9.15.0(jiti@2.4.0)
- eslint-compat-utils: 0.5.1(eslint@9.15.0(jiti@2.4.0))
+ eslint: 9.16.0(jiti@2.4.1)
+ eslint-compat-utils: 0.6.4(eslint@9.16.0(jiti@2.4.1))
lodash: 4.17.21
natural-compare: 1.4.0
yaml-eslint-parser: 1.2.3
transitivePeerDependencies:
- supports-color
- eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.5.13)(eslint@9.15.0(jiti@2.4.0)):
+ eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.5.13)(eslint@9.16.0(jiti@2.4.1)):
dependencies:
'@vue/compiler-sfc': 3.5.13
- eslint: 9.15.0(jiti@2.4.0)
+ eslint: 9.16.0(jiti@2.4.1)
eslint-scope@7.2.2:
dependencies:
@@ -12086,14 +12050,14 @@ snapshots:
eslint-visitor-keys@4.2.0: {}
- eslint@9.15.0(jiti@2.4.0):
+ eslint@9.16.0(jiti@2.4.1):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.15.0(jiti@2.4.0))
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0(jiti@2.4.1))
'@eslint-community/regexpp': 4.12.1
'@eslint/config-array': 0.19.0
'@eslint/core': 0.9.0
'@eslint/eslintrc': 3.2.0
- '@eslint/js': 9.15.0
+ '@eslint/js': 9.16.0
'@eslint/plugin-kit': 0.2.3
'@humanfs/node': 0.16.6
'@humanwhocodes/module-importer': 1.0.1
@@ -12123,7 +12087,7 @@ snapshots:
natural-compare: 1.4.0
optionator: 0.9.4
optionalDependencies:
- jiti: 2.4.0
+ jiti: 2.4.1
transitivePeerDependencies:
- supports-color
@@ -12544,7 +12508,7 @@ snapshots:
globals@14.0.0: {}
- globals@15.12.0: {}
+ globals@15.13.0: {}
globby@13.2.2:
dependencies:
@@ -12610,11 +12574,11 @@ snapshots:
has-flag@4.0.0: {}
- has-symbols@1.0.3: {}
+ has-symbols@1.1.0: {}
has-tostringtag@1.0.2:
dependencies:
- has-symbols: 1.0.3
+ has-symbols: 1.1.0
has-unicode@2.0.1: {}
@@ -12767,9 +12731,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- impound@0.2.0(rollup@4.27.3):
+ impound@0.2.0(rollup@4.28.0):
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
+ '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
mlly: 1.7.3
pathe: 1.1.2
unenv: 1.10.0
@@ -12978,7 +12942,7 @@ snapshots:
jiti@2.0.0-beta.3: {}
- jiti@2.4.0: {}
+ jiti@2.4.1: {}
joycon@3.1.1: {}
@@ -12986,7 +12950,7 @@ snapshots:
js-tokens@4.0.0: {}
- js-tokens@9.0.0: {}
+ js-tokens@9.0.1: {}
js-yaml@4.1.0:
dependencies:
@@ -13047,8 +13011,6 @@ snapshots:
kleur@3.0.3: {}
- kleur@4.1.5: {}
-
klona@2.0.6: {}
knitwork@1.1.0: {}
@@ -13112,7 +13074,7 @@ snapshots:
launch-editor@2.9.1:
dependencies:
picocolors: 1.1.1
- shell-quote: 1.8.1
+ shell-quote: 1.8.2
lazy-cache@1.0.4: {}
@@ -13127,9 +13089,7 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
- lilconfig@2.1.0: {}
-
- lilconfig@3.1.2: {}
+ lilconfig@3.1.3: {}
lines-and-columns@1.2.4: {}
@@ -13143,7 +13103,7 @@ snapshots:
commander: 12.1.0
debug: 4.3.7(supports-color@9.4.0)
execa: 8.0.1
- lilconfig: 3.1.2
+ lilconfig: 3.1.3
listr2: 8.2.5
micromatch: 4.0.8
pidtree: 0.6.0
@@ -13164,7 +13124,7 @@ snapshots:
get-port-please: 3.1.2
h3: 1.13.0
http-shutdown: 1.2.2
- jiti: 2.4.0
+ jiti: 2.4.1
mlly: 1.7.3
node-forge: 1.3.1
pathe: 1.1.2
@@ -13273,34 +13233,34 @@ snapshots:
dependencies:
yallist: 3.1.1
- lucide-vue-next@0.441.0(vue@3.5.13(typescript@5.6.3)):
+ lucide-vue-next@0.441.0(vue@3.5.13(typescript@5.7.2)):
dependencies:
- vue: 3.5.13(typescript@5.6.3)
+ vue: 3.5.13(typescript@5.7.2)
lz-string@1.5.0: {}
magic-regexp@0.8.0:
dependencies:
estree-walker: 3.0.3
- magic-string: 0.30.13
+ magic-string: 0.30.14
mlly: 1.7.3
regexp-tree: 0.1.27
type-level-regexp: 0.1.17
ufo: 1.5.4
unplugin: 1.16.0
- magic-string-ast@0.6.2:
+ magic-string-ast@0.6.3:
dependencies:
- magic-string: 0.30.13
+ magic-string: 0.30.14
- magic-string@0.30.13:
+ magic-string@0.30.14:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
magicast@0.3.5:
dependencies:
- '@babel/parser': 7.26.2
- '@babel/types': 7.26.0
+ '@babel/parser': 7.26.3
+ '@babel/types': 7.26.3
source-map-js: 1.2.1
make-dir@1.3.0:
@@ -13512,7 +13472,7 @@ snapshots:
micromark-util-html-tag-name: 2.0.1
micromark-util-normalize-identifier: 2.0.1
micromark-util-resolve-all: 2.0.1
- micromark-util-subtokenize: 2.0.2
+ micromark-util-subtokenize: 2.0.3
micromark-util-symbol: 2.0.1
micromark-util-types: 2.0.1
@@ -13655,7 +13615,7 @@ snapshots:
micromark-util-encode: 2.0.1
micromark-util-symbol: 2.0.1
- micromark-util-subtokenize@2.0.2:
+ micromark-util-subtokenize@2.0.3:
dependencies:
devlop: 1.1.0
micromark-util-chunked: 2.0.1
@@ -13682,7 +13642,7 @@ snapshots:
micromark-util-normalize-identifier: 2.0.1
micromark-util-resolve-all: 2.0.1
micromark-util-sanitize-uri: 2.0.1
- micromark-util-subtokenize: 2.0.2
+ micromark-util-subtokenize: 2.0.3
micromark-util-symbol: 2.0.1
micromark-util-types: 2.0.1
transitivePeerDependencies:
@@ -13741,7 +13701,7 @@ snapshots:
minipass@7.1.2: {}
- minisearch@7.1.0: {}
+ minisearch@7.1.1: {}
minizlib@2.1.2:
dependencies:
@@ -13782,7 +13742,7 @@ snapshots:
mkdirp@1.0.4: {}
- mkdist@1.6.0(typescript@5.6.3)(vue-tsc@2.1.10(typescript@5.6.3)):
+ mkdist@1.6.0(typescript@5.7.2)(vue-tsc@2.1.10(typescript@5.7.2)):
dependencies:
autoprefixer: 10.4.20(postcss@8.4.49)
citty: 0.1.6
@@ -13798,8 +13758,8 @@ snapshots:
semver: 7.6.3
tinyglobby: 0.2.10
optionalDependencies:
- typescript: 5.6.3
- vue-tsc: 2.1.10(typescript@5.6.3)
+ typescript: 5.7.2
+ vue-tsc: 2.1.10(typescript@5.7.2)
mlly@1.7.3:
dependencies:
@@ -13839,32 +13799,32 @@ snapshots:
nanoid@2.1.11: {}
- nanoid@3.3.7: {}
+ nanoid@3.3.8: {}
- nanoid@5.0.8: {}
+ nanoid@5.0.9: {}
nanotar@0.1.1: {}
- natural-compare-lite@1.4.0: {}
-
natural-compare@1.4.0: {}
+ natural-orderby@5.0.0: {}
+
negotiator@0.6.3: {}
- nitropack@2.10.4(encoding@0.1.13)(typescript@5.6.3):
+ nitropack@2.10.4(encoding@0.1.13)(typescript@5.7.2):
dependencies:
'@cloudflare/kv-asset-handler': 0.3.4
'@netlify/functions': 2.8.2
- '@rollup/plugin-alias': 5.1.1(rollup@4.27.3)
- '@rollup/plugin-commonjs': 28.0.1(rollup@4.27.3)
- '@rollup/plugin-inject': 5.0.5(rollup@4.27.3)
- '@rollup/plugin-json': 6.1.0(rollup@4.27.3)
- '@rollup/plugin-node-resolve': 15.3.0(rollup@4.27.3)
- '@rollup/plugin-replace': 6.0.1(rollup@4.27.3)
- '@rollup/plugin-terser': 0.4.4(rollup@4.27.3)
- '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
+ '@rollup/plugin-alias': 5.1.1(rollup@4.28.0)
+ '@rollup/plugin-commonjs': 28.0.1(rollup@4.28.0)
+ '@rollup/plugin-inject': 5.0.5(rollup@4.28.0)
+ '@rollup/plugin-json': 6.1.0(rollup@4.28.0)
+ '@rollup/plugin-node-resolve': 15.3.0(rollup@4.28.0)
+ '@rollup/plugin-replace': 6.0.1(rollup@4.28.0)
+ '@rollup/plugin-terser': 0.4.4(rollup@4.28.0)
+ '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
'@types/http-proxy': 1.17.15
- '@vercel/nft': 0.27.6(encoding@0.1.13)
+ '@vercel/nft': 0.27.7(encoding@0.1.13)(rollup@4.28.0)
archiver: 7.0.1
c12: 2.0.1(magicast@0.3.5)
chokidar: 3.6.0
@@ -13889,25 +13849,25 @@ snapshots:
hookable: 5.5.3
httpxy: 0.1.5
ioredis: 5.4.1
- jiti: 2.4.0
+ jiti: 2.4.1
klona: 2.0.6
knitwork: 1.1.0
listhen: 1.9.0
- magic-string: 0.30.13
+ magic-string: 0.30.14
magicast: 0.3.5
mime: 4.0.4
mlly: 1.7.3
node-fetch-native: 1.6.4
ofetch: 1.4.1
ohash: 1.1.4
- openapi-typescript: 7.4.3(encoding@0.1.13)(typescript@5.6.3)
+ openapi-typescript: 7.4.4(encoding@0.1.13)(typescript@5.7.2)
pathe: 1.1.2
perfect-debounce: 1.0.0
pkg-types: 1.2.1
pretty-bytes: 6.1.1
radix3: 1.1.2
- rollup: 4.27.3
- rollup-plugin-visualizer: 5.12.0(rollup@4.27.3)
+ rollup: 4.28.0
+ rollup-plugin-visualizer: 5.12.0(rollup@4.28.0)
scule: 1.3.0
semver: 7.6.3
serve-placeholder: 2.0.2
@@ -13917,7 +13877,7 @@ snapshots:
uncrypto: 0.1.3
unctx: 2.3.1
unenv: 1.10.0
- unimport: 3.13.2(rollup@4.27.3)
+ unimport: 3.14.3(rollup@4.28.0)
unstorage: 1.13.1(ioredis@5.4.1)
untyped: 1.5.1
unwasm: 0.3.9
@@ -13961,7 +13921,7 @@ snapshots:
node-forge@1.3.1: {}
- node-gyp-build@4.8.3: {}
+ node-gyp-build@4.8.4: {}
node-html-parser@6.1.13:
dependencies:
@@ -14020,20 +13980,20 @@ snapshots:
dependencies:
boolbase: 1.0.0
- nuxi@3.15.0: {}
+ nuxi@3.16.0: {}
- nuxt@3.14.159(@parcel/watcher@2.5.0)(@types/node@20.17.6)(encoding@0.1.13)(eslint@9.15.0(jiti@2.4.0))(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.27.3)(stylus@0.57.0)(terser@5.36.0)(typescript@5.6.3)(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))(vue-tsc@2.1.10(typescript@5.6.3)):
+ nuxt@3.14.1592(@parcel/watcher@2.5.0)(@types/node@20.17.9)(encoding@0.1.13)(eslint@9.16.0(jiti@2.4.1))(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.28.0)(stylus@0.57.0)(terser@5.36.0)(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))(vue-tsc@2.1.10(typescript@5.7.2)):
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.6.0(rollup@4.27.3)(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))
- '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
- '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
- '@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@4.27.3)
- '@nuxt/vite-builder': 3.14.159(@types/node@20.17.6)(eslint@9.15.0(jiti@2.4.0))(magicast@0.3.5)(optionator@0.9.4)(rollup@4.27.3)(stylus@0.57.0)(terser@5.36.0)(typescript@5.6.3)(vue-tsc@2.1.10(typescript@5.6.3))(vue@3.5.13(typescript@5.6.3))
- '@unhead/dom': 1.11.11
- '@unhead/shared': 1.11.11
- '@unhead/ssr': 1.11.11
- '@unhead/vue': 1.11.11(vue@3.5.13(typescript@5.6.3))
+ '@nuxt/devtools': 1.6.3(rollup@4.28.0)(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.7.2))
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.28.0)
+ '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.28.0)
+ '@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@4.28.0)
+ '@nuxt/vite-builder': 3.14.1592(@types/node@20.17.9)(eslint@9.16.0(jiti@2.4.1))(magicast@0.3.5)(optionator@0.9.4)(rollup@4.28.0)(stylus@0.57.0)(terser@5.36.0)(typescript@5.7.2)(vue-tsc@2.1.10(typescript@5.7.2))(vue@3.5.13(typescript@5.7.2))
+ '@unhead/dom': 1.11.13
+ '@unhead/shared': 1.11.13
+ '@unhead/ssr': 1.11.13
+ '@unhead/vue': 1.11.13(vue@3.5.13(typescript@5.7.2))
'@vue/shared': 3.5.13
acorn: 8.14.0
c12: 2.0.1(magicast@0.3.5)
@@ -14052,15 +14012,15 @@ snapshots:
h3: 1.13.0
hookable: 5.5.3
ignore: 6.0.2
- impound: 0.2.0(rollup@4.27.3)
- jiti: 2.4.0
+ impound: 0.2.0(rollup@4.28.0)
+ jiti: 2.4.1
klona: 2.0.6
knitwork: 1.1.0
- magic-string: 0.30.13
+ magic-string: 0.30.14
mlly: 1.7.3
nanotar: 0.1.1
- nitropack: 2.10.4(encoding@0.1.13)(typescript@5.6.3)
- nuxi: 3.15.0
+ nitropack: 2.10.4(encoding@0.1.13)(typescript@5.7.2)
+ nuxi: 3.16.0
nypm: 0.3.12
ofetch: 1.4.1
ohash: 1.1.4
@@ -14071,26 +14031,26 @@ snapshots:
scule: 1.3.0
semver: 7.6.3
std-env: 3.8.0
- strip-literal: 2.1.0
+ strip-literal: 2.1.1
tinyglobby: 0.2.10
ufo: 1.5.4
ultrahtml: 1.5.3
uncrypto: 0.1.3
unctx: 2.3.1
unenv: 1.10.0
- unhead: 1.11.11
- unimport: 3.13.2(rollup@4.27.3)
+ unhead: 1.11.13
+ unimport: 3.14.3(rollup@4.28.0)
unplugin: 1.16.0
- unplugin-vue-router: 0.10.8(rollup@4.27.3)(vue-router@4.4.5(vue@3.5.13(typescript@5.6.3)))(vue@3.5.13(typescript@5.6.3))
+ unplugin-vue-router: 0.10.9(rollup@4.28.0)(vue-router@4.5.0(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2))
unstorage: 1.13.1(ioredis@5.4.1)
untyped: 1.5.1
- vue: 3.5.13(typescript@5.6.3)
+ vue: 3.5.13(typescript@5.7.2)
vue-bundle-renderer: 2.1.1
vue-devtools-stub: 0.1.0
- vue-router: 4.4.5(vue@3.5.13(typescript@5.6.3))
+ vue-router: 4.5.0(vue@3.5.13(typescript@5.7.2))
optionalDependencies:
'@parcel/watcher': 2.5.0
- '@types/node': 20.17.6
+ '@types/node': 20.17.9
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -14144,6 +14104,15 @@ snapshots:
pkg-types: 1.2.1
ufo: 1.5.4
+ nypm@0.4.1:
+ dependencies:
+ citty: 0.1.6
+ consola: 3.2.3
+ pathe: 1.1.2
+ pkg-types: 1.2.1
+ tinyexec: 0.3.1
+ ufo: 1.5.4
+
object-assign@4.1.1: {}
object-hash@3.0.0: {}
@@ -14176,11 +14145,11 @@ snapshots:
dependencies:
mimic-function: 5.0.1
- oniguruma-to-es@0.4.1:
+ oniguruma-to-es@0.7.0:
dependencies:
emoji-regex-xs: 1.0.0
regex: 5.0.2
- regex-recursion: 4.2.1
+ regex-recursion: 4.3.0
only@0.0.2: {}
@@ -14206,14 +14175,14 @@ snapshots:
is-docker: 2.2.1
is-wsl: 2.2.0
- openapi-typescript@7.4.3(encoding@0.1.13)(typescript@5.6.3):
+ openapi-typescript@7.4.4(encoding@0.1.13)(typescript@5.7.2):
dependencies:
- '@redocly/openapi-core': 1.25.11(encoding@0.1.13)(supports-color@9.4.0)
+ '@redocly/openapi-core': 1.25.15(encoding@0.1.13)(supports-color@9.4.0)
ansi-colors: 4.1.3
change-case: 5.4.4
parse-json: 8.1.0
supports-color: 9.4.0
- typescript: 5.6.3
+ typescript: 5.7.2
yargs-parser: 21.1.1
transitivePeerDependencies:
- encoding
@@ -14292,7 +14261,7 @@ snapshots:
registry-url: 3.1.0
semver: 5.7.2
- package-manager-detector@0.2.4: {}
+ package-manager-detector@0.2.7: {}
pacote@2.7.38:
dependencies:
@@ -14364,7 +14333,7 @@ snapshots:
dependencies:
'@babel/code-frame': 7.26.2
index-to-position: 0.1.2
- type-fest: 4.27.0
+ type-fest: 4.30.0
parse-passwd@1.0.0: {}
@@ -14510,19 +14479,19 @@ snapshots:
postcss-load-config@4.0.2(postcss@8.4.49):
dependencies:
- lilconfig: 3.1.2
- yaml: 2.6.0
+ lilconfig: 3.1.3
+ yaml: 2.6.1
optionalDependencies:
postcss: 8.4.49
- postcss-load-config@6.0.1(jiti@2.4.0)(postcss@8.4.49)(tsx@4.19.2)(yaml@2.6.0):
+ postcss-load-config@6.0.1(jiti@2.4.1)(postcss@8.4.49)(tsx@4.19.2)(yaml@2.6.1):
dependencies:
- lilconfig: 3.1.2
+ lilconfig: 3.1.3
optionalDependencies:
- jiti: 2.4.0
+ jiti: 2.4.1
postcss: 8.4.49
tsx: 4.19.2
- yaml: 2.6.0
+ yaml: 2.6.1
postcss-merge-longhand@7.0.4(postcss@8.4.49):
dependencies:
@@ -14681,19 +14650,19 @@ snapshots:
postcss@8.4.49:
dependencies:
- nanoid: 3.3.7
+ nanoid: 3.3.8
picocolors: 1.1.1
source-map-js: 1.2.1
potpack@1.0.2: {}
- preact@10.24.3: {}
+ preact@10.25.1: {}
prelude-ls@1.2.1: {}
prepend-http@1.0.4: {}
- prettier@3.3.3: {}
+ prettier@3.4.2: {}
pretty-bytes@6.1.1: {}
@@ -14757,20 +14726,20 @@ snapshots:
quickselect@2.0.0: {}
- radix-vue@1.9.8(vue@3.5.13(typescript@5.6.3)):
+ radix-vue@1.9.10(vue@3.5.13(typescript@5.7.2)):
dependencies:
'@floating-ui/dom': 1.6.12
- '@floating-ui/vue': 1.1.5(vue@3.5.13(typescript@5.6.3))
- '@internationalized/date': 3.5.6
- '@internationalized/number': 3.5.4
- '@tanstack/vue-virtual': 3.10.9(vue@3.5.13(typescript@5.6.3))
- '@vueuse/core': 10.11.1(vue@3.5.13(typescript@5.6.3))
- '@vueuse/shared': 10.11.1(vue@3.5.13(typescript@5.6.3))
+ '@floating-ui/vue': 1.1.5(vue@3.5.13(typescript@5.7.2))
+ '@internationalized/date': 3.6.0
+ '@internationalized/number': 3.6.0
+ '@tanstack/vue-virtual': 3.10.9(vue@3.5.13(typescript@5.7.2))
+ '@vueuse/core': 10.11.1(vue@3.5.13(typescript@5.7.2))
+ '@vueuse/shared': 10.11.1(vue@3.5.13(typescript@5.7.2))
aria-hidden: 1.2.4
defu: 6.1.4
fast-deep-equal: 3.1.3
- nanoid: 5.0.8
- vue: 3.5.13(typescript@5.6.3)
+ nanoid: 5.0.9
+ vue: 3.5.13(typescript@5.7.2)
transitivePeerDependencies:
- '@vue/composition-api'
@@ -14865,7 +14834,7 @@ snapshots:
regenerator-runtime@0.14.1: {}
- regex-recursion@4.2.1:
+ regex-recursion@4.3.0:
dependencies:
regex-utilities: 2.3.0
@@ -14895,20 +14864,20 @@ snapshots:
dependencies:
jsesc: 0.5.0
- reka-ui@1.0.0-alpha.5(vue@3.5.13(typescript@5.6.3)):
+ reka-ui@1.0.0-alpha.5(vue@3.5.13(typescript@5.7.2)):
dependencies:
'@floating-ui/dom': 1.6.12
- '@floating-ui/vue': 1.1.5(vue@3.5.13(typescript@5.6.3))
- '@internationalized/date': 3.5.6
- '@internationalized/number': 3.5.4
- '@tanstack/vue-virtual': 3.10.9(vue@3.5.13(typescript@5.6.3))
- '@vueuse/core': 11.2.0(vue@3.5.13(typescript@5.6.3))
- '@vueuse/shared': 11.2.0(vue@3.5.13(typescript@5.6.3))
+ '@floating-ui/vue': 1.1.5(vue@3.5.13(typescript@5.7.2))
+ '@internationalized/date': 3.6.0
+ '@internationalized/number': 3.6.0
+ '@tanstack/vue-virtual': 3.10.9(vue@3.5.13(typescript@5.7.2))
+ '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.7.2))
+ '@vueuse/shared': 11.3.0(vue@3.5.13(typescript@5.7.2))
aria-hidden: 1.2.4
defu: 6.1.4
fast-deep-equal: 3.1.3
- nanoid: 5.0.8
- vue: 3.5.13(typescript@5.6.3)
+ nanoid: 5.0.9
+ vue: 3.5.13(typescript@5.7.2)
transitivePeerDependencies:
- '@vue/composition-api'
@@ -14987,49 +14956,49 @@ snapshots:
robust-predicates@3.0.2: {}
- rollup-plugin-dts@6.1.1(rollup@3.29.5)(typescript@5.6.3):
+ rollup-plugin-dts@6.1.1(rollup@3.29.5)(typescript@5.7.2):
dependencies:
- magic-string: 0.30.13
+ magic-string: 0.30.14
rollup: 3.29.5
- typescript: 5.6.3
+ typescript: 5.7.2
optionalDependencies:
'@babel/code-frame': 7.26.2
- rollup-plugin-visualizer@5.12.0(rollup@4.27.3):
+ rollup-plugin-visualizer@5.12.0(rollup@4.28.0):
dependencies:
open: 8.4.2
picomatch: 2.3.1
source-map: 0.7.4
yargs: 17.7.2
optionalDependencies:
- rollup: 4.27.3
+ rollup: 4.28.0
rollup@3.29.5:
optionalDependencies:
fsevents: 2.3.3
- rollup@4.27.3:
+ rollup@4.28.0:
dependencies:
'@types/estree': 1.0.6
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.27.3
- '@rollup/rollup-android-arm64': 4.27.3
- '@rollup/rollup-darwin-arm64': 4.27.3
- '@rollup/rollup-darwin-x64': 4.27.3
- '@rollup/rollup-freebsd-arm64': 4.27.3
- '@rollup/rollup-freebsd-x64': 4.27.3
- '@rollup/rollup-linux-arm-gnueabihf': 4.27.3
- '@rollup/rollup-linux-arm-musleabihf': 4.27.3
- '@rollup/rollup-linux-arm64-gnu': 4.27.3
- '@rollup/rollup-linux-arm64-musl': 4.27.3
- '@rollup/rollup-linux-powerpc64le-gnu': 4.27.3
- '@rollup/rollup-linux-riscv64-gnu': 4.27.3
- '@rollup/rollup-linux-s390x-gnu': 4.27.3
- '@rollup/rollup-linux-x64-gnu': 4.27.3
- '@rollup/rollup-linux-x64-musl': 4.27.3
- '@rollup/rollup-win32-arm64-msvc': 4.27.3
- '@rollup/rollup-win32-ia32-msvc': 4.27.3
- '@rollup/rollup-win32-x64-msvc': 4.27.3
+ '@rollup/rollup-android-arm-eabi': 4.28.0
+ '@rollup/rollup-android-arm64': 4.28.0
+ '@rollup/rollup-darwin-arm64': 4.28.0
+ '@rollup/rollup-darwin-x64': 4.28.0
+ '@rollup/rollup-freebsd-arm64': 4.28.0
+ '@rollup/rollup-freebsd-x64': 4.28.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.28.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.28.0
+ '@rollup/rollup-linux-arm64-gnu': 4.28.0
+ '@rollup/rollup-linux-arm64-musl': 4.28.0
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.28.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.28.0
+ '@rollup/rollup-linux-s390x-gnu': 4.28.0
+ '@rollup/rollup-linux-x64-gnu': 4.28.0
+ '@rollup/rollup-linux-x64-musl': 4.28.0
+ '@rollup/rollup-win32-arm64-msvc': 4.28.0
+ '@rollup/rollup-win32-ia32-msvc': 4.28.0
+ '@rollup/rollup-win32-x64-msvc': 4.28.0
fsevents: 2.3.3
run-applescript@7.0.0: {}
@@ -15066,7 +15035,7 @@ snapshots:
scule@1.3.0: {}
- search-insights@2.17.2: {}
+ search-insights@2.17.3: {}
semver-diff@2.1.0:
dependencies:
@@ -15131,14 +15100,14 @@ snapshots:
shebang-regex@3.0.0: {}
- shell-quote@1.8.1: {}
+ shell-quote@1.8.2: {}
- shiki@1.23.1:
+ shiki@1.24.0:
dependencies:
- '@shikijs/core': 1.23.1
- '@shikijs/engine-javascript': 1.23.1
- '@shikijs/engine-oniguruma': 1.23.1
- '@shikijs/types': 1.23.1
+ '@shikijs/core': 1.24.0
+ '@shikijs/engine-javascript': 1.24.0
+ '@shikijs/engine-oniguruma': 1.24.0
+ '@shikijs/types': 1.24.0
'@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
@@ -15162,12 +15131,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- sirv@2.0.4:
- dependencies:
- '@polka/url': 1.0.0-next.28
- mrmime: 2.0.0
- totalist: 3.0.1
-
sirv@3.0.0:
dependencies:
'@polka/url': 1.0.0-next.28
@@ -15288,7 +15251,7 @@ snapshots:
stream-shift@1.0.3: {}
- streamx@2.20.2:
+ streamx@2.21.0:
dependencies:
fast-fifo: 1.3.2
queue-tick: 1.0.1
@@ -15370,9 +15333,9 @@ snapshots:
strip-json-comments@3.1.1: {}
- strip-literal@2.1.0:
+ strip-literal@2.1.1:
dependencies:
- js-tokens: 9.0.0
+ js-tokens: 9.0.1
striptags@3.2.0: {}
@@ -15450,7 +15413,7 @@ snapshots:
tabbable@6.2.0: {}
- table@6.8.2:
+ table@6.9.0:
dependencies:
ajv: 8.17.1
lodash.truncate: 4.4.2
@@ -15458,7 +15421,7 @@ snapshots:
string-width: 4.2.3
strip-ansi: 6.0.1
- tailwind-config-viewer@2.0.4(tailwindcss@3.4.15):
+ tailwind-config-viewer@2.0.4(tailwindcss@3.4.16):
dependencies:
'@koa/router': 12.0.2
commander: 6.2.1
@@ -15468,17 +15431,17 @@ snapshots:
open: 7.4.2
portfinder: 1.0.32
replace-in-file: 6.3.5
- tailwindcss: 3.4.15
+ tailwindcss: 3.4.16
transitivePeerDependencies:
- supports-color
- tailwind-merge@2.5.4: {}
+ tailwind-merge@2.5.5: {}
- tailwindcss-animate@1.0.7(tailwindcss@3.4.15):
+ tailwindcss-animate@1.0.7(tailwindcss@3.4.16):
dependencies:
- tailwindcss: 3.4.15
+ tailwindcss: 3.4.16
- tailwindcss@3.4.15:
+ tailwindcss@3.4.16:
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -15489,7 +15452,7 @@ snapshots:
glob-parent: 6.0.2
is-glob: 4.0.3
jiti: 1.21.6
- lilconfig: 2.1.0
+ lilconfig: 3.1.3
micromatch: 4.0.8
normalize-path: 3.0.0
object-hash: 3.0.0
@@ -15528,7 +15491,7 @@ snapshots:
dependencies:
b4a: 1.6.7
fast-fifo: 1.3.2
- streamx: 2.20.2
+ streamx: 2.21.0
tar@6.2.1:
dependencies:
@@ -15544,7 +15507,7 @@ snapshots:
'@antfu/ni': 0.23.1
js-yaml: 4.1.0
ofetch: 1.4.1
- package-manager-detector: 0.2.4
+ package-manager-detector: 0.2.7
tinyexec: 0.3.1
unconfig: 0.5.5
yargs: 17.7.2
@@ -15644,9 +15607,9 @@ snapshots:
trim-lines@3.0.1: {}
- ts-api-utils@1.4.0(typescript@5.6.3):
+ ts-api-utils@1.4.3(typescript@5.7.2):
dependencies:
- typescript: 5.6.3
+ typescript: 5.7.2
ts-interface-checker@0.1.13: {}
@@ -15655,9 +15618,9 @@ snapshots:
'@ts-morph/common': 0.25.0
code-block-writer: 13.0.3
- tsconfck@3.1.4(typescript@5.6.3):
+ tsconfck@3.1.4(typescript@5.7.2):
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.7.2
tsconfig-paths@4.2.0:
dependencies:
@@ -15671,7 +15634,7 @@ snapshots:
tsscmp@1.0.6: {}
- tsup@8.3.5(jiti@2.4.0)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.0):
+ tsup@8.3.5(jiti@2.4.1)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1):
dependencies:
bundle-require: 5.0.0(esbuild@0.24.0)
cac: 6.7.14
@@ -15681,9 +15644,9 @@ snapshots:
esbuild: 0.24.0
joycon: 3.1.1
picocolors: 1.1.1
- postcss-load-config: 6.0.1(jiti@2.4.0)(postcss@8.4.49)(tsx@4.19.2)(yaml@2.6.0)
+ postcss-load-config: 6.0.1(jiti@2.4.1)(postcss@8.4.49)(tsx@4.19.2)(yaml@2.6.1)
resolve-from: 5.0.0
- rollup: 4.27.3
+ rollup: 4.28.0
source-map: 0.8.0-beta.0
sucrase: 3.35.0
tinyexec: 0.3.1
@@ -15691,7 +15654,7 @@ snapshots:
tree-kill: 1.2.2
optionalDependencies:
postcss: 8.4.49
- typescript: 5.6.3
+ typescript: 5.7.2
transitivePeerDependencies:
- jiti
- supports-color
@@ -15719,7 +15682,7 @@ snapshots:
type-fest@0.8.1: {}
- type-fest@4.27.0: {}
+ type-fest@4.30.0: {}
type-is@1.6.18:
dependencies:
@@ -15728,7 +15691,7 @@ snapshots:
type-level-regexp@0.1.17: {}
- typescript@5.6.3: {}
+ typescript@5.7.2: {}
uc.micro@2.1.0: {}
@@ -15736,7 +15699,7 @@ snapshots:
ultrahtml@1.5.3: {}
- unbuild@2.0.0(typescript@5.6.3)(vue-tsc@2.1.10(typescript@5.6.3)):
+ unbuild@2.0.0(typescript@5.7.2)(vue-tsc@2.1.10(typescript@5.7.2)):
dependencies:
'@rollup/plugin-alias': 5.1.1(rollup@3.29.5)
'@rollup/plugin-commonjs': 25.0.8(rollup@3.29.5)
@@ -15752,18 +15715,18 @@ snapshots:
globby: 13.2.2
hookable: 5.5.3
jiti: 1.21.6
- magic-string: 0.30.13
- mkdist: 1.6.0(typescript@5.6.3)(vue-tsc@2.1.10(typescript@5.6.3))
+ magic-string: 0.30.14
+ mkdist: 1.6.0(typescript@5.7.2)(vue-tsc@2.1.10(typescript@5.7.2))
mlly: 1.7.3
pathe: 1.1.2
pkg-types: 1.2.1
pretty-bytes: 6.1.1
rollup: 3.29.5
- rollup-plugin-dts: 6.1.1(rollup@3.29.5)(typescript@5.6.3)
+ rollup-plugin-dts: 6.1.1(rollup@3.29.5)(typescript@5.7.2)
scule: 1.3.0
untyped: 1.5.1
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.7.2
transitivePeerDependencies:
- sass
- supports-color
@@ -15783,11 +15746,15 @@ snapshots:
dependencies:
acorn: 8.14.0
estree-walker: 3.0.3
- magic-string: 0.30.13
+ magic-string: 0.30.14
unplugin: 1.16.0
undici-types@6.19.8: {}
+ undici-types@6.20.0: {}
+
+ undici@7.1.0: {}
+
unenv@1.10.0:
dependencies:
consola: 3.2.3
@@ -15796,29 +15763,30 @@ snapshots:
node-fetch-native: 1.6.4
pathe: 1.1.2
- unhead@1.11.11:
+ unhead@1.11.13:
dependencies:
- '@unhead/dom': 1.11.11
- '@unhead/schema': 1.11.11
- '@unhead/shared': 1.11.11
+ '@unhead/dom': 1.11.13
+ '@unhead/schema': 1.11.13
+ '@unhead/shared': 1.11.13
hookable: 5.5.3
unicorn-magic@0.1.0: {}
- unimport@3.13.2(rollup@4.27.3):
+ unimport@3.14.3(rollup@4.28.0):
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
+ '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
acorn: 8.14.0
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
- fast-glob: 3.3.2
local-pkg: 0.5.1
- magic-string: 0.30.13
+ magic-string: 0.30.14
mlly: 1.7.3
pathe: 1.1.2
+ picomatch: 4.0.2
pkg-types: 1.2.1
scule: 1.3.0
- strip-literal: 2.1.0
+ strip-literal: 2.1.1
+ tinyglobby: 0.2.10
unplugin: 1.16.0
transitivePeerDependencies:
- rollup
@@ -15876,24 +15844,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
- unplugin-vue-router@0.10.8(rollup@4.27.3)(vue-router@4.4.5(vue@3.5.13(typescript@5.6.3)))(vue@3.5.13(typescript@5.6.3)):
+ unplugin-vue-router@0.10.9(rollup@4.28.0)(vue-router@4.5.0(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2)):
dependencies:
- '@babel/types': 7.26.0
- '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
- '@vue-macros/common': 1.15.0(rollup@4.27.3)(vue@3.5.13(typescript@5.6.3))
+ '@babel/types': 7.26.3
+ '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
+ '@vue-macros/common': 1.15.0(rollup@4.28.0)(vue@3.5.13(typescript@5.7.2))
ast-walker-scope: 0.6.2
chokidar: 3.6.0
fast-glob: 3.3.2
json5: 2.2.3
local-pkg: 0.5.1
- magic-string: 0.30.13
+ magic-string: 0.30.14
mlly: 1.7.3
pathe: 1.1.2
scule: 1.3.0
- unplugin: 1.16.0
- yaml: 2.6.0
+ unplugin: 2.0.0-beta.1
+ yaml: 2.6.1
optionalDependencies:
- vue-router: 4.4.5(vue@3.5.13(typescript@5.6.3))
+ vue-router: 4.5.0(vue@3.5.13(typescript@5.7.2))
transitivePeerDependencies:
- rollup
- vue
@@ -15903,6 +15871,11 @@ snapshots:
acorn: 8.14.0
webpack-virtual-modules: 0.6.2
+ unplugin@2.0.0-beta.1:
+ dependencies:
+ acorn: 8.14.0
+ webpack-virtual-modules: 0.6.2
+
unstorage@1.13.1(ioredis@5.4.1):
dependencies:
anymatch: 3.1.3
@@ -15927,10 +15900,10 @@ snapshots:
untyped@1.5.1:
dependencies:
'@babel/core': 7.26.0
- '@babel/standalone': 7.26.2
- '@babel/types': 7.26.0
+ '@babel/standalone': 7.26.3
+ '@babel/types': 7.26.3
defu: 6.1.4
- jiti: 2.4.0
+ jiti: 2.4.1
mri: 1.2.0
scule: 1.3.0
transitivePeerDependencies:
@@ -15939,7 +15912,7 @@ snapshots:
unwasm@0.3.9:
dependencies:
knitwork: 1.1.0
- magic-string: 0.30.13
+ magic-string: 0.30.14
mlly: 1.7.3
pathe: 1.1.2
pkg-types: 1.2.1
@@ -15993,25 +15966,25 @@ snapshots:
vary@1.1.2: {}
- vaul-vue@0.2.0(radix-vue@1.9.8(vue@3.5.13(typescript@5.6.3)))(vue@3.5.13(typescript@5.6.3)):
+ vaul-vue@0.2.0(radix-vue@1.9.10(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2)):
dependencies:
- '@vueuse/core': 10.11.1(vue@3.5.13(typescript@5.6.3))
- radix-vue: 1.9.8(vue@3.5.13(typescript@5.6.3))
- vue: 3.5.13(typescript@5.6.3)
+ '@vueuse/core': 10.11.1(vue@3.5.13(typescript@5.7.2))
+ radix-vue: 1.9.10(vue@3.5.13(typescript@5.7.2))
+ vue: 3.5.13(typescript@5.7.2)
transitivePeerDependencies:
- '@vue/composition-api'
- vee-validate@4.13.2(vue@3.5.13(typescript@5.6.3)):
+ vee-validate@4.13.2(vue@3.5.13(typescript@5.7.2)):
dependencies:
'@vue/devtools-api': 6.6.4
- type-fest: 4.27.0
- vue: 3.5.13(typescript@5.6.3)
+ type-fest: 4.30.0
+ vue: 3.5.13(typescript@5.7.2)
- vee-validate@4.14.7(vue@3.5.13(typescript@5.6.3)):
+ vee-validate@4.14.7(vue@3.5.13(typescript@5.7.2)):
dependencies:
- '@vue/devtools-api': 7.6.4
- type-fest: 4.27.0
- vue: 3.5.13(typescript@5.6.3)
+ '@vue/devtools-api': 7.6.7
+ type-fest: 4.30.0
+ vue: 3.5.13(typescript@5.7.2)
vfile-message@4.0.2:
dependencies:
@@ -16023,17 +15996,17 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.2
- vite-hot-client@0.2.3(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0)):
+ vite-hot-client@0.2.4(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0)):
dependencies:
- vite: 5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0)
+ vite: 5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0)
- vite-node@2.1.5(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0):
+ vite-node@2.1.8(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0):
dependencies:
cac: 6.7.14
debug: 4.3.7(supports-color@9.4.0)
es-module-lexer: 1.5.4
pathe: 1.1.2
- vite: 5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0)
+ vite: 5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -16045,13 +16018,13 @@ snapshots:
- supports-color
- terser
- vite-node@2.1.5(@types/node@22.9.0)(stylus@0.57.0)(terser@5.36.0):
+ vite-node@2.1.8(@types/node@22.10.1)(stylus@0.57.0)(terser@5.36.0):
dependencies:
cac: 6.7.14
debug: 4.3.7(supports-color@9.4.0)
es-module-lexer: 1.5.4
pathe: 1.1.2
- vite: 5.4.11(@types/node@22.9.0)(stylus@0.57.0)(terser@5.36.0)
+ vite: 5.4.11(@types/node@22.10.1)(stylus@0.57.0)(terser@5.36.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -16063,7 +16036,7 @@ snapshots:
- supports-color
- terser
- vite-plugin-checker@0.8.0(eslint@9.15.0(jiti@2.4.0))(optionator@0.9.4)(typescript@5.6.3)(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))(vue-tsc@2.1.10(typescript@5.6.3)):
+ vite-plugin-checker@0.8.0(eslint@9.16.0(jiti@2.4.1))(optionator@0.9.4)(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))(vue-tsc@2.1.10(typescript@5.7.2)):
dependencies:
'@babel/code-frame': 7.26.2
ansi-escapes: 4.3.2
@@ -16075,103 +16048,103 @@ snapshots:
npm-run-path: 4.0.1
strip-ansi: 6.0.1
tiny-invariant: 1.3.3
- vite: 5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0)
+ vite: 5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0)
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
vscode-languageserver-textdocument: 1.0.12
vscode-uri: 3.0.8
optionalDependencies:
- eslint: 9.15.0(jiti@2.4.0)
+ eslint: 9.16.0(jiti@2.4.1)
optionator: 0.9.4
- typescript: 5.6.3
- vue-tsc: 2.1.10(typescript@5.6.3)
+ typescript: 5.7.2
+ vue-tsc: 2.1.10(typescript@5.7.2)
- vite-plugin-inspect@0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.27.3))(rollup@4.27.3)(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0)):
+ vite-plugin-inspect@0.8.9(@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@4.28.0))(rollup@4.28.0)(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0)):
dependencies:
'@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
+ '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
debug: 4.3.7(supports-color@9.4.0)
error-stack-parser-es: 0.1.5
fs-extra: 11.2.0
open: 10.1.0
perfect-debounce: 1.0.0
picocolors: 1.1.1
- sirv: 2.0.4
- vite: 5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0)
+ sirv: 3.0.0
+ vite: 5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0)
optionalDependencies:
- '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.28.0)
transitivePeerDependencies:
- rollup
- supports-color
- vite-plugin-vue-inspector@5.1.3(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0)):
+ vite-plugin-vue-inspector@5.1.3(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0)):
dependencies:
'@babel/core': 7.26.0
'@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
- '@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0)
'@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0)
'@vue/compiler-dom': 3.5.13
kolorist: 1.8.0
- magic-string: 0.30.13
- vite: 5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0)
+ magic-string: 0.30.14
+ vite: 5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0)
transitivePeerDependencies:
- supports-color
- vite-tsconfig-paths@5.1.2(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.0)(stylus@0.57.0)(terser@5.36.0)):
+ vite-tsconfig-paths@5.1.3(typescript@5.7.2)(vite@5.4.11(@types/node@22.10.1)(stylus@0.57.0)(terser@5.36.0)):
dependencies:
debug: 4.3.7(supports-color@9.4.0)
globrex: 0.1.2
- tsconfck: 3.1.4(typescript@5.6.3)
+ tsconfck: 3.1.4(typescript@5.7.2)
optionalDependencies:
- vite: 5.4.11(@types/node@22.9.0)(stylus@0.57.0)(terser@5.36.0)
+ vite: 5.4.11(@types/node@22.10.1)(stylus@0.57.0)(terser@5.36.0)
transitivePeerDependencies:
- supports-color
- typescript
- vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0):
+ vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0):
dependencies:
esbuild: 0.21.5
postcss: 8.4.49
- rollup: 4.27.3
+ rollup: 4.28.0
optionalDependencies:
- '@types/node': 20.17.6
+ '@types/node': 20.17.9
fsevents: 2.3.3
stylus: 0.57.0
terser: 5.36.0
- vite@5.4.11(@types/node@22.9.0)(stylus@0.57.0)(terser@5.36.0):
+ vite@5.4.11(@types/node@22.10.1)(stylus@0.57.0)(terser@5.36.0):
dependencies:
esbuild: 0.21.5
postcss: 8.4.49
- rollup: 4.27.3
+ rollup: 4.28.0
optionalDependencies:
- '@types/node': 22.9.0
+ '@types/node': 22.10.1
fsevents: 2.3.3
stylus: 0.57.0
terser: 5.36.0
- vitepress@1.5.0(@algolia/client-search@5.14.2)(@types/node@22.9.0)(change-case@5.4.4)(postcss@8.4.49)(search-insights@2.17.2)(stylus@0.57.0)(terser@5.36.0)(typescript@5.6.3):
+ vitepress@1.5.0(@algolia/client-search@5.15.0)(@types/node@22.10.1)(change-case@5.4.4)(postcss@8.4.49)(search-insights@2.17.3)(stylus@0.57.0)(terser@5.36.0)(typescript@5.7.2):
dependencies:
'@docsearch/css': 3.8.0
- '@docsearch/js': 3.8.0(@algolia/client-search@5.14.2)(search-insights@2.17.2)
- '@iconify-json/simple-icons': 1.2.11
- '@shikijs/core': 1.23.1
- '@shikijs/transformers': 1.23.1
- '@shikijs/types': 1.23.1
+ '@docsearch/js': 3.8.0(@algolia/client-search@5.15.0)(search-insights@2.17.3)
+ '@iconify-json/simple-icons': 1.2.14
+ '@shikijs/core': 1.24.0
+ '@shikijs/transformers': 1.24.0
+ '@shikijs/types': 1.24.0
'@types/markdown-it': 14.1.2
- '@vitejs/plugin-vue': 5.2.0(vite@5.4.11(@types/node@22.9.0)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.6.3))
- '@vue/devtools-api': 7.6.4
+ '@vitejs/plugin-vue': 5.2.1(vite@5.4.11(@types/node@22.10.1)(stylus@0.57.0)(terser@5.36.0))(vue@3.5.13(typescript@5.7.2))
+ '@vue/devtools-api': 7.6.7
'@vue/shared': 3.5.13
- '@vueuse/core': 11.2.0(vue@3.5.13(typescript@5.6.3))
- '@vueuse/integrations': 11.2.0(change-case@5.4.4)(focus-trap@7.6.2)(vue@3.5.13(typescript@5.6.3))
+ '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.7.2))
+ '@vueuse/integrations': 11.3.0(change-case@5.4.4)(focus-trap@7.6.2)(vue@3.5.13(typescript@5.7.2))
focus-trap: 7.6.2
mark.js: 8.11.1
- minisearch: 7.1.0
- shiki: 1.23.1
- vite: 5.4.11(@types/node@22.9.0)(stylus@0.57.0)(terser@5.36.0)
- vue: 3.5.13(typescript@5.6.3)
+ minisearch: 7.1.1
+ shiki: 1.24.0
+ vite: 5.4.11(@types/node@22.10.1)(stylus@0.57.0)(terser@5.36.0)
+ vue: 3.5.13(typescript@5.7.2)
optionalDependencies:
postcss: 8.4.49
transitivePeerDependencies:
@@ -16202,9 +16175,9 @@ snapshots:
- typescript
- universal-cookie
- vitest-environment-nuxt@1.0.1(@vitest/ui@2.1.5(vitest@2.1.5))(h3@1.13.0)(magicast@0.3.5)(nitropack@2.10.4(encoding@0.1.13)(typescript@5.6.3))(rollup@4.27.3)(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))(vitest@2.1.5(@types/node@20.17.6)(@vitest/ui@2.1.5)(stylus@0.57.0)(terser@5.36.0))(vue-router@4.4.5(vue@3.5.13(typescript@5.6.3)))(vue@3.5.13(typescript@5.6.3)):
+ vitest-environment-nuxt@1.0.1(@vitest/ui@2.1.8)(h3@1.13.0)(magicast@0.3.5)(nitropack@2.10.4(encoding@0.1.13)(typescript@5.7.2))(rollup@4.28.0)(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))(vitest@2.1.8)(vue-router@4.5.0(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2)):
dependencies:
- '@nuxt/test-utils': 3.14.4(@vitest/ui@2.1.5(vitest@2.1.5))(h3@1.13.0)(magicast@0.3.5)(nitropack@2.10.4(encoding@0.1.13)(typescript@5.6.3))(rollup@4.27.3)(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))(vitest@2.1.5(@types/node@20.17.6)(@vitest/ui@2.1.5)(stylus@0.57.0)(terser@5.36.0))(vue-router@4.4.5(vue@3.5.13(typescript@5.6.3)))(vue@3.5.13(typescript@5.6.3))
+ '@nuxt/test-utils': 3.14.4(@vitest/ui@2.1.8)(h3@1.13.0)(magicast@0.3.5)(nitropack@2.10.4(encoding@0.1.13)(typescript@5.7.2))(rollup@4.28.0)(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))(vitest@2.1.8)(vue-router@4.5.0(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2))
transitivePeerDependencies:
- '@cucumber/cucumber'
- '@jest/globals'
@@ -16225,31 +16198,31 @@ snapshots:
- vue
- vue-router
- vitest@2.1.5(@types/node@20.17.6)(@vitest/ui@2.1.5)(stylus@0.57.0)(terser@5.36.0):
+ vitest@2.1.8(@types/node@20.17.9)(@vitest/ui@2.1.8)(stylus@0.57.0)(terser@5.36.0):
dependencies:
- '@vitest/expect': 2.1.5
- '@vitest/mocker': 2.1.5(vite@5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0))
- '@vitest/pretty-format': 2.1.5
- '@vitest/runner': 2.1.5
- '@vitest/snapshot': 2.1.5
- '@vitest/spy': 2.1.5
- '@vitest/utils': 2.1.5
+ '@vitest/expect': 2.1.8
+ '@vitest/mocker': 2.1.8(vite@5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0))
+ '@vitest/pretty-format': 2.1.8
+ '@vitest/runner': 2.1.8
+ '@vitest/snapshot': 2.1.8
+ '@vitest/spy': 2.1.8
+ '@vitest/utils': 2.1.8
chai: 5.1.2
debug: 4.3.7(supports-color@9.4.0)
expect-type: 1.1.0
- magic-string: 0.30.13
+ magic-string: 0.30.14
pathe: 1.1.2
std-env: 3.8.0
tinybench: 2.9.0
tinyexec: 0.3.1
tinypool: 1.0.2
tinyrainbow: 1.2.0
- vite: 5.4.11(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0)
- vite-node: 2.1.5(@types/node@20.17.6)(stylus@0.57.0)(terser@5.36.0)
+ vite: 5.4.11(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0)
+ vite-node: 2.1.8(@types/node@20.17.9)(stylus@0.57.0)(terser@5.36.0)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 20.17.6
- '@vitest/ui': 2.1.5(vitest@2.1.5)
+ '@types/node': 20.17.9
+ '@vitest/ui': 2.1.8(vitest@2.1.8)
transitivePeerDependencies:
- less
- lightningcss
@@ -16262,31 +16235,31 @@ snapshots:
- terser
optional: true
- vitest@2.1.5(@types/node@22.9.0)(@vitest/ui@2.1.5)(stylus@0.57.0)(terser@5.36.0):
+ vitest@2.1.8(@types/node@22.10.1)(@vitest/ui@2.1.8)(stylus@0.57.0)(terser@5.36.0):
dependencies:
- '@vitest/expect': 2.1.5
- '@vitest/mocker': 2.1.5(vite@5.4.11(@types/node@22.9.0)(stylus@0.57.0)(terser@5.36.0))
- '@vitest/pretty-format': 2.1.5
- '@vitest/runner': 2.1.5
- '@vitest/snapshot': 2.1.5
- '@vitest/spy': 2.1.5
- '@vitest/utils': 2.1.5
+ '@vitest/expect': 2.1.8
+ '@vitest/mocker': 2.1.8(vite@5.4.11(@types/node@22.10.1)(stylus@0.57.0)(terser@5.36.0))
+ '@vitest/pretty-format': 2.1.8
+ '@vitest/runner': 2.1.8
+ '@vitest/snapshot': 2.1.8
+ '@vitest/spy': 2.1.8
+ '@vitest/utils': 2.1.8
chai: 5.1.2
debug: 4.3.7(supports-color@9.4.0)
expect-type: 1.1.0
- magic-string: 0.30.13
+ magic-string: 0.30.14
pathe: 1.1.2
std-env: 3.8.0
tinybench: 2.9.0
tinyexec: 0.3.1
tinypool: 1.0.2
tinyrainbow: 1.2.0
- vite: 5.4.11(@types/node@22.9.0)(stylus@0.57.0)(terser@5.36.0)
- vite-node: 2.1.5(@types/node@22.9.0)(stylus@0.57.0)(terser@5.36.0)
+ vite: 5.4.11(@types/node@22.10.1)(stylus@0.57.0)(terser@5.36.0)
+ vite-node: 2.1.8(@types/node@22.10.1)(stylus@0.57.0)(terser@5.36.0)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 22.9.0
- '@vitest/ui': 2.1.5(vitest@2.1.5)
+ '@types/node': 22.10.1
+ '@vitest/ui': 2.1.8(vitest@2.1.8)
transitivePeerDependencies:
- less
- lightningcss
@@ -16331,27 +16304,27 @@ snapshots:
dependencies:
ufo: 1.5.4
- vue-component-meta@2.1.10(typescript@5.6.3):
+ vue-component-meta@2.1.10(typescript@5.7.2):
dependencies:
'@volar/typescript': 2.4.10
- '@vue/language-core': 2.1.10(typescript@5.6.3)
+ '@vue/language-core': 2.1.10(typescript@5.7.2)
path-browserify: 1.0.1
vue-component-type-helpers: 2.1.10
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.7.2
vue-component-type-helpers@2.1.10: {}
- vue-demi@0.14.10(vue@3.5.13(typescript@5.6.3)):
+ vue-demi@0.14.10(vue@3.5.13(typescript@5.7.2)):
dependencies:
- vue: 3.5.13(typescript@5.6.3)
+ vue: 3.5.13(typescript@5.7.2)
vue-devtools-stub@0.1.0: {}
- vue-eslint-parser@9.4.3(eslint@9.15.0(jiti@2.4.0)):
+ vue-eslint-parser@9.4.3(eslint@9.16.0(jiti@2.4.1)):
dependencies:
debug: 4.3.7(supports-color@9.4.0)
- eslint: 9.15.0(jiti@2.4.0)
+ eslint: 9.16.0(jiti@2.4.1)
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
espree: 9.6.1
@@ -16361,7 +16334,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- vue-metamorph@3.2.0(eslint@9.15.0(jiti@2.4.0)):
+ vue-metamorph@3.2.0(eslint@9.16.0(jiti@2.4.1)):
dependencies:
'@babel/parser': 8.0.0-alpha.12
ast-types: 0.14.2
@@ -16372,7 +16345,7 @@ snapshots:
fs-extra: 11.2.0
glob: 11.0.0
lodash-es: 4.17.21
- magic-string: 0.30.13
+ magic-string: 0.30.14
micromatch: 4.0.8
node-html-parser: 6.1.13
postcss: 8.4.49
@@ -16381,40 +16354,40 @@ snapshots:
postcss-scss: 4.0.9(postcss@8.4.49)
postcss-styl: 0.12.3
recast: 0.23.9
- table: 6.8.2
- vue-eslint-parser: 9.4.3(eslint@9.15.0(jiti@2.4.0))
+ table: 6.9.0
+ vue-eslint-parser: 9.4.3(eslint@9.16.0(jiti@2.4.1))
transitivePeerDependencies:
- eslint
- supports-color
- vue-router@4.4.5(vue@3.5.13(typescript@5.6.3)):
+ vue-router@4.5.0(vue@3.5.13(typescript@5.7.2)):
dependencies:
'@vue/devtools-api': 6.6.4
- vue: 3.5.13(typescript@5.6.3)
+ vue: 3.5.13(typescript@5.7.2)
- vue-sonner@1.2.5: {}
+ vue-sonner@1.3.0: {}
- vue-tsc@2.1.10(typescript@5.6.3):
+ vue-tsc@2.1.10(typescript@5.7.2):
dependencies:
'@volar/typescript': 2.4.10
- '@vue/language-core': 2.1.10(typescript@5.6.3)
+ '@vue/language-core': 2.1.10(typescript@5.7.2)
semver: 7.6.3
- typescript: 5.6.3
+ typescript: 5.7.2
- vue-wrap-balancer@1.2.1(vue@3.5.13(typescript@5.6.3)):
+ vue-wrap-balancer@1.2.1(vue@3.5.13(typescript@5.7.2)):
dependencies:
- nanoid: 3.3.7
- vue: 3.5.13(typescript@5.6.3)
+ nanoid: 3.3.8
+ vue: 3.5.13(typescript@5.7.2)
- vue@3.5.13(typescript@5.6.3):
+ vue@3.5.13(typescript@5.7.2):
dependencies:
'@vue/compiler-dom': 3.5.13
'@vue/compiler-sfc': 3.5.13
'@vue/runtime-dom': 3.5.13
- '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.6.3))
+ '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.7.2))
'@vue/shared': 3.5.13
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.7.2
webidl-conversions@3.0.1: {}
@@ -16512,13 +16485,13 @@ snapshots:
dependencies:
eslint-visitor-keys: 3.4.3
lodash: 4.17.21
- yaml: 2.6.0
+ yaml: 2.6.1
yaml@1.10.2: {}
yaml@2.5.1: {}
- yaml@2.6.0: {}
+ yaml@2.6.1: {}
yargs-parser@21.1.1: {}