diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts
index e8eab85c..73a42b23 100644
--- a/docs/.vitepress/config.ts
+++ b/docs/.vitepress/config.ts
@@ -1,6 +1,6 @@
-import { defineConfig } from 'vitepress'
-import { resolve } from 'pathe'
import { templateCompilerOptions } from '@tresjs/core'
+import { resolve } from 'pathe'
+import { defineConfig } from 'vitepress'
// https://vitepress.dev/reference/site-config
export default defineConfig({
diff --git a/docs/.vitepress/theme/components/BloomDemo.vue b/docs/.vitepress/theme/components/BloomDemo.vue
index 27dfe0a9..efce3e2a 100644
--- a/docs/.vitepress/theme/components/BloomDemo.vue
+++ b/docs/.vitepress/theme/components/BloomDemo.vue
@@ -1,9 +1,9 @@
diff --git a/docs/vite.config.ts b/docs/vite.config.ts
index 29417c89..59248fb8 100644
--- a/docs/vite.config.ts
+++ b/docs/vite.config.ts
@@ -1,8 +1,8 @@
-import { defineConfig } from 'vite'
+import { templateCompilerOptions } from '@tresjs/core'
import Unocss from 'unocss/vite'
-import svgLoader from 'vite-svg-loader'
import Components from 'unplugin-vue-components/vite'
-import { templateCompilerOptions } from '@tresjs/core'
+import { defineConfig } from 'vite'
+import svgLoader from 'vite-svg-loader'
export default defineConfig({
plugins: [
diff --git a/package.json b/package.json
index bc09da6b..1fcb04e7 100644
--- a/package.json
+++ b/package.json
@@ -54,8 +54,7 @@
},
"dependencies": {
"@vueuse/core": "^10.11.0",
- "postprocessing": "^6.36.0",
- "three-stdlib": "^2.30.5"
+ "postprocessing": "^6.36.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
diff --git a/playground-nuxt/pages/index.vue b/playground-nuxt/pages/index.vue
index bff08144..01a5f574 100644
--- a/playground-nuxt/pages/index.vue
+++ b/playground-nuxt/pages/index.vue
@@ -1,8 +1,8 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/playground/src/components/EffectListItem.vue b/playground/src/components/EffectListItem.vue
new file mode 100644
index 00000000..9a45068c
--- /dev/null
+++ b/playground/src/components/EffectListItem.vue
@@ -0,0 +1,22 @@
+
+
+
+
+
+ {{ route.meta.icon }}
+
+
+ {{ route.meta?.name }}
+
+
+
diff --git a/playground/src/components/GraphPane.vue b/playground/src/components/GraphPane.vue
index 79110e0f..f0cdd379 100644
--- a/playground/src/components/GraphPane.vue
+++ b/playground/src/components/GraphPane.vue
@@ -1,6 +1,6 @@
@@ -51,51 +52,19 @@ const sections = [
-
-
-
- {{ meta.icon }}
-
-
- {{ name }}
-
-
-
-
- {{ icon }}
-
-
- {{ title }}
-
-
+
+ {{ section.title }}
+
+
+
-
- {{ route.name }}
-
-
+ :route="route"
+ class="my-4 sm:my-0"
+ />
-
+
diff --git a/playground/src/pages/bloom.vue b/playground/src/pages/postprocessing/bloom.vue
similarity index 100%
rename from playground/src/pages/bloom.vue
rename to playground/src/pages/postprocessing/bloom.vue
index cd19f9a2..bb903eaa 100644
--- a/playground/src/pages/bloom.vue
+++ b/playground/src/pages/postprocessing/bloom.vue
@@ -1,11 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/playground/src/pages/three/halftone.vue b/playground/src/pages/three/halftone.vue
new file mode 100644
index 00000000..4cf090f6
--- /dev/null
+++ b/playground/src/pages/three/halftone.vue
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/playground/src/pages/three/pixelation.vue b/playground/src/pages/three/pixelation.vue
new file mode 100644
index 00000000..cf0df86d
--- /dev/null
+++ b/playground/src/pages/three/pixelation.vue
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
diff --git a/playground/src/pages/three/smaa.vue b/playground/src/pages/three/smaa.vue
new file mode 100644
index 00000000..97a642c7
--- /dev/null
+++ b/playground/src/pages/three/smaa.vue
@@ -0,0 +1,19 @@
+
+
+
+
+ enabled
+
+
+
+
+
+
+
+
diff --git a/playground/src/pages/three/unreal-bloom.vue b/playground/src/pages/three/unreal-bloom.vue
new file mode 100644
index 00000000..f07273cf
--- /dev/null
+++ b/playground/src/pages/three/unreal-bloom.vue
@@ -0,0 +1,25 @@
+
+
+
+
+ enabled
+ radius
+ strength
+ threshold
+
+
+
+
+
+
+
diff --git a/playground/src/router.ts b/playground/src/router.ts
index 139be94d..c0c9adab 100644
--- a/playground/src/router.ts
+++ b/playground/src/router.ts
@@ -2,45 +2,51 @@ import type { RouteRecordRaw } from 'vue-router'
import { createRouter, createWebHistory } from 'vue-router'
import { kebabCase } from './util/string'
-const makeRoute = (name: string, icon: string): RouteRecordRaw => {
+const makeRoute = (name: string, icon: string, isThreeEffect: boolean = true): RouteRecordRaw => {
const nameInKebab = kebabCase(name)
+ const folder = isThreeEffect ? 'three' : 'postprocessing'
return {
- path: `/${nameInKebab}`,
- name,
+ path: `/${folder}/${nameInKebab}`,
+ name: `${folder}-${nameInKebab}`,
meta: {
icon,
+ name,
},
- component: () => import(`./pages/${nameInKebab}.vue`),
+ component: () => import(`./pages/${folder}/${nameInKebab}.vue`),
}
}
-export const routes = [
- {
- path: '/',
- name: 'Home',
- component: () => import('./pages/index.vue'),
- },
- makeRoute('Outline', 'ðē'),
- makeRoute('Glitch', 'ðš'),
- makeRoute('Depth of Field', 'ð·'),
+
+const home: RouteRecordRaw = {
+ path: '/',
+ name: 'Home',
+ component: () => import('./pages/index.vue'),
+}
+
+export const threeRoutes = [
makeRoute('Pixelation', 'ðū'),
- makeRoute('Bloom', 'ðž'),
- makeRoute('Noise', 'ð'),
- makeRoute('Vignette', 'ðķïļ'),
+ makeRoute('Glitch', 'ðš'),
+ makeRoute('SMAA', 'ð'),
+ makeRoute('Halftone', 'ðĻ'),
+ makeRoute('Unreal Bloom', 'ðž'),
]
-export const advancedRoutes = [
- {
- path: '/advanced/on-demand',
- name: 'On-demand',
- component: () => import('./pages/advanced/on-demand.vue'),
- },
+export const postProcessingRoutes = [
+ makeRoute('Outline', 'ðē', false),
+ makeRoute('Glitch', 'ðš', false),
+ makeRoute('Depth of Field', 'ð·', false),
+ makeRoute('Pixelation', 'ðū', false),
+ makeRoute('Bloom', 'ðž', false),
+ makeRoute('Noise', 'ð', false),
+ makeRoute('Vignette', 'ðķïļ', false),
+ makeRoute('On-demand', 'ð', false),
]
export const router = createRouter({
history: createWebHistory(),
routes: [
- ...routes,
- ...advancedRoutes,
+ home,
+ ...threeRoutes,
+ ...postProcessingRoutes,
],
})
diff --git a/playground/vite.config.ts b/playground/vite.config.ts
index 9824fa5c..d784f2b6 100644
--- a/playground/vite.config.ts
+++ b/playground/vite.config.ts
@@ -1,10 +1,10 @@
-import { defineConfig } from 'vite'
+import { templateCompilerOptions } from '@tresjs/core'
import vue from '@vitejs/plugin-vue'
-import AutoImport from 'unplugin-auto-import/vite'
-import Components from 'unplugin-vue-components/vite'
import { resolve } from 'pathe'
import UnoCSS from 'unocss/vite'
-import { templateCompilerOptions } from '@tresjs/core'
+import AutoImport from 'unplugin-auto-import/vite'
+import Components from 'unplugin-vue-components/vite'
+import { defineConfig } from 'vite'
import { qrcode } from 'vite-plugin-qrcode'
// https://vitejs.dev/config/
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index b6d927db..1c6c4204 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,35 +10,32 @@ importers:
dependencies:
'@vueuse/core':
specifier: ^10.11.0
- version: 10.11.0(vue@3.4.34(typescript@5.5.4))
+ version: 10.11.1(vue@3.5.8(typescript@5.6.2))
postprocessing:
specifier: ^6.36.0
- version: 6.36.0(three@0.167.0)
- three-stdlib:
- specifier: ^2.30.5
- version: 2.30.5(three@0.167.0)
+ version: 6.36.2(three@0.167.1)
devDependencies:
'@release-it/conventional-changelog':
specifier: ^8.0.1
- version: 8.0.1(release-it@17.6.0(typescript@5.5.4))
+ version: 8.0.2(release-it@17.6.0(typescript@5.6.2))
'@tresjs/core':
specifier: ^4.2.2
- version: 4.2.2(three@0.167.0)(vue@3.4.34(typescript@5.5.4))
+ version: 4.2.10(three@0.167.1)(vue@3.5.8(typescript@5.6.2))
'@tresjs/eslint-config':
specifier: ^1.1.0
- version: 1.1.0(@vue/compiler-sfc@3.4.34)(eslint@9.7.0)(typescript@5.5.4)
+ version: 1.3.1(@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(@vue/compiler-sfc@3.5.8)(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
'@types/three':
specifier: ^0.167.0
- version: 0.167.0
+ version: 0.167.2
'@unocss/core':
specifier: ^0.61.5
- version: 0.61.5
+ version: 0.61.9
'@vitejs/plugin-vue':
specifier: ^5.1.0
- version: 5.1.0(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))(vue@3.4.34(typescript@5.5.4))
+ version: 5.1.4(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2))
eslint:
specifier: ^9.7.0
- version: 9.7.0
+ version: 9.11.0(jiti@1.21.6)
gsap:
specifier: ^3.12.5
version: 3.12.5
@@ -50,127 +47,127 @@ importers:
version: 1.1.2
release-it:
specifier: ^17.6.0
- version: 17.6.0(typescript@5.5.4)
+ version: 17.6.0(typescript@5.6.2)
rollup-plugin-analyzer:
specifier: ^4.0.0
version: 4.0.0
rollup-plugin-visualizer:
specifier: ^5.12.0
- version: 5.12.0(rollup@4.19.0)
+ version: 5.12.0(rollup@4.22.4)
three:
specifier: ^0.167.0
- version: 0.167.0
+ version: 0.167.1
typescript:
specifier: ^5.5.4
- version: 5.5.4
+ version: 5.6.2
unocss:
specifier: ^0.61.5
- version: 0.61.5(postcss@8.4.40)(rollup@4.19.0)(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))
+ version: 0.61.9(postcss@8.4.47)(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))
vite:
specifier: ^5.3.5
- version: 5.3.5(@types/node@20.14.12)(terser@5.31.3)
+ version: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
vite-plugin-banner:
specifier: ^0.7.1
version: 0.7.1
vite-plugin-dts:
specifier: 4.0.0-beta.1
- version: 4.0.0-beta.1(@types/node@20.14.12)(rollup@4.19.0)(typescript@5.5.4)(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))
+ version: 4.0.0-beta.1(@types/node@22.5.5)(rollup@4.22.4)(typescript@5.6.2)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))
vite-svg-loader:
specifier: ^5.1.0
- version: 5.1.0(vue@3.4.34(typescript@5.5.4))
+ version: 5.1.0(vue@3.5.8(typescript@5.6.2))
vitepress:
specifier: 1.3.1
- version: 1.3.1(@algolia/client-search@4.24.0)(@types/node@20.14.12)(postcss@8.4.40)(search-insights@2.15.0)(terser@5.31.3)(typescript@5.5.4)
+ version: 1.3.1(@algolia/client-search@4.24.0)(@types/node@22.5.5)(postcss@8.4.47)(search-insights@2.17.2)(terser@5.33.0)(typescript@5.6.2)
vue:
specifier: ^3.4.34
- version: 3.4.34(typescript@5.5.4)
+ version: 3.5.8(typescript@5.6.2)
vue-tsc:
specifier: ^2.0.29
- version: 2.0.29(typescript@5.5.4)
+ version: 2.1.6(typescript@5.6.2)
docs:
dependencies:
'@tresjs/cientos':
specifier: ^3.6.0
- version: 3.6.0(@tresjs/core@3.5.1(three@0.167.0)(vue@3.4.34(typescript@5.5.4)))(three@0.167.0)(tweakpane@4.0.4)(vue@3.4.34(typescript@5.5.4))
+ version: 3.9.0(@tresjs/core@3.9.0(three@0.167.1)(vue@3.5.8(typescript@5.6.2)))(three@0.167.1)(tweakpane@4.0.4)(vue@3.5.8(typescript@5.6.2))
'@tresjs/core':
specifier: ^3.5.1
- version: 3.5.1(three@0.167.0)(vue@3.4.34(typescript@5.5.4))
+ version: 3.9.0(three@0.167.1)(vue@3.5.8(typescript@5.6.2))
'@tresjs/post-processing':
specifier: workspace:^
version: link:..
gsap:
specifier: ^3.12.3
- version: 3.12.3
+ version: 3.12.5
devDependencies:
'@tresjs/leches':
specifier: ^0.14.0
- version: 0.14.0(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))(vue@3.4.34(typescript@5.5.4))
+ version: 0.14.0(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2))
unocss:
specifier: ^0.58.0
- version: 0.58.0(postcss@8.4.40)(rollup@4.19.0)(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))
+ version: 0.58.9(postcss@8.4.47)(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))
unplugin-vue-components:
specifier: ^0.26.0
- version: 0.26.0(@babel/parser@7.24.8)(@nuxt/kit@3.12.4(rollup@4.19.0))(rollup@4.19.0)(vue@3.4.34(typescript@5.5.4))
+ version: 0.26.0(@babel/parser@7.25.6)(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.22.4))(rollup@4.22.4)(vue@3.5.8(typescript@5.6.2))
vite-svg-loader:
specifier: ^5.1.0
- version: 5.1.0(vue@3.4.34(typescript@5.5.4))
+ version: 5.1.0(vue@3.5.8(typescript@5.6.2))
vitepress:
specifier: 1.0.0-rc.31
- version: 1.0.0-rc.31(@algolia/client-search@4.24.0)(@types/node@20.14.12)(postcss@8.4.40)(search-insights@2.15.0)(terser@5.31.3)(typescript@5.5.4)
+ version: 1.0.0-rc.31(@algolia/client-search@4.24.0)(@types/node@22.5.5)(postcss@8.4.47)(search-insights@2.17.2)(terser@5.33.0)(typescript@5.6.2)
playground:
dependencies:
'@tresjs/cientos':
- specifier: ^3.9.0
- version: 3.9.0(@tresjs/core@4.0.2(three@0.167.0)(vue@3.4.34(typescript@5.5.4)))(three@0.167.0)(tweakpane@4.0.4)(vue@3.4.34(typescript@5.5.4))
+ specifier: ^4.0.2
+ version: 4.0.2(@tresjs/core@4.2.10(three@0.167.1)(vue@3.5.8(typescript@5.6.2)))(three@0.167.1)(vue@3.5.8(typescript@5.6.2))
'@tresjs/core':
- specifier: 4.0.2
- version: 4.0.2(three@0.167.0)(vue@3.4.34(typescript@5.5.4))
+ specifier: 4.2.10
+ version: 4.2.10(three@0.167.1)(vue@3.5.8(typescript@5.6.2))
vue-router:
specifier: ^4.3.2
- version: 4.3.2(vue@3.4.34(typescript@5.5.4))
+ version: 4.4.5(vue@3.5.8(typescript@5.6.2))
devDependencies:
'@tresjs/leches':
specifier: ^0.14.0
- version: 0.14.0(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))(vue@3.4.34(typescript@5.5.4))
+ version: 0.14.0(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2))
'@types/three':
specifier: ^0.164.0
- version: 0.164.0
+ version: 0.164.1
unplugin-auto-import:
specifier: ^0.17.6
- version: 0.17.6(@nuxt/kit@3.12.4(rollup@4.19.0))(@vueuse/core@10.11.0(vue@3.4.34(typescript@5.5.4)))(rollup@4.19.0)
+ version: 0.17.8(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.22.4))(@vueuse/core@11.1.0(vue@3.5.8(typescript@5.6.2)))(rollup@4.22.4)
unplugin-vue-components:
specifier: ^0.27.0
- version: 0.27.0(@babel/parser@7.24.8)(@nuxt/kit@3.12.4(rollup@4.19.0))(rollup@4.19.0)(vue@3.4.34(typescript@5.5.4))
+ version: 0.27.4(@babel/parser@7.25.6)(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.22.4))(rollup@4.22.4)(vue@3.5.8(typescript@5.6.2))
vite-plugin-qrcode:
specifier: ^0.2.3
- version: 0.2.3(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))
+ version: 0.2.3(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))
playground-nuxt:
dependencies:
'@tresjs/cientos':
specifier: ^3.5.1
- version: 3.5.1(@tresjs/core@4.2.2(three@0.167.0)(vue@3.4.27(typescript@5.5.4)))(three@0.167.0)(tweakpane@4.0.4)(vue@3.4.27(typescript@5.5.4))
+ version: 3.9.0(@tresjs/core@4.2.10(three@0.167.1)(vue@3.5.8(typescript@5.6.2)))(three@0.167.1)(tweakpane@4.0.4)(vue@3.5.8(typescript@5.6.2))
'@tresjs/nuxt':
specifier: ^1.2.2
- version: 1.2.2(rollup@3.29.4)(three@0.167.0)(vue@3.4.27(typescript@5.5.4))
+ version: 1.3.0(magicast@0.3.5)(rollup@4.22.4)(three@0.167.1)(vue@3.5.8(typescript@5.6.2))
'@types/three':
specifier: ^0.152.1
version: 0.152.1
devDependencies:
'@nuxt/devtools':
specifier: latest
- version: 1.3.9(rollup@3.29.4)(vite@4.5.3(@types/node@20.14.12)(terser@5.31.3))
+ version: 1.5.0(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2))
nuxt:
specifier: ^3.8.0
- version: 3.8.0(@parcel/watcher@2.4.1)(@types/node@20.14.12)(encoding@0.1.13)(eslint@9.7.0)(optionator@0.9.4)(rollup@3.29.4)(terser@5.31.3)(typescript@5.5.4)(vite@4.5.3(@types/node@20.14.12)(terser@5.31.3))(vue-tsc@2.0.29(typescript@5.5.4))
+ version: 3.13.2(@parcel/watcher@2.4.1)(@types/node@22.5.5)(eslint@9.11.0(jiti@1.21.6))(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.22.4)(terser@5.33.0)(typescript@5.6.2)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))(vue-tsc@2.1.6(typescript@5.6.2))
vue:
specifier: ^3.4
- version: 3.4.27(typescript@5.5.4)
+ version: 3.5.8(typescript@5.6.2)
vue-router:
specifier: ^4.2.5
- version: 4.2.5(vue@3.4.27(typescript@5.5.4))
+ version: 4.4.5(vue@3.5.8(typescript@5.6.2))
packages:
@@ -194,125 +191,76 @@ packages:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
- '@algolia/cache-browser-local-storage@4.20.0':
- resolution: {integrity: sha512-uujahcBt4DxduBTvYdwO3sBfHuJvJokiC3BP1+O70fglmE1ShkH8lpXqZBac1rrU3FnNYSUs4pL9lBdTKeRPOQ==}
-
'@algolia/cache-browser-local-storage@4.24.0':
resolution: {integrity: sha512-t63W9BnoXVrGy9iYHBgObNXqYXM3tYXCjDSHeNwnsc324r4o5UiVKUiAB4THQ5z9U5hTj6qUvwg/Ez43ZD85ww==}
- '@algolia/cache-common@4.20.0':
- resolution: {integrity: sha512-vCfxauaZutL3NImzB2G9LjLt36vKAckc6DhMp05An14kVo8F1Yofb6SIl6U3SaEz8pG2QOB9ptwM5c+zGevwIQ==}
-
'@algolia/cache-common@4.24.0':
resolution: {integrity: sha512-emi+v+DmVLpMGhp0V9q9h5CdkURsNmFC+cOS6uK9ndeJm9J4TiqSvPYVu+THUP8P/S08rxf5x2P+p3CfID0Y4g==}
- '@algolia/cache-in-memory@4.20.0':
- resolution: {integrity: sha512-Wm9ak/IaacAZXS4mB3+qF/KCoVSBV6aLgIGFEtQtJwjv64g4ePMapORGmCyulCFwfePaRAtcaTbMcJF+voc/bg==}
-
'@algolia/cache-in-memory@4.24.0':
resolution: {integrity: sha512-gDrt2so19jW26jY3/MkFg5mEypFIPbPoXsQGQWAi6TrCPsNOSEYepBMPlucqWigsmEy/prp5ug2jy/N3PVG/8w==}
- '@algolia/client-account@4.20.0':
- resolution: {integrity: sha512-GGToLQvrwo7am4zVkZTnKa72pheQeez/16sURDWm7Seyz+HUxKi3BM6fthVVPUEBhtJ0reyVtuK9ArmnaKl10Q==}
-
'@algolia/client-account@4.24.0':
resolution: {integrity: sha512-adcvyJ3KjPZFDybxlqnf+5KgxJtBjwTPTeyG2aOyoJvx0Y8dUQAEOEVOJ/GBxX0WWNbmaSrhDURMhc+QeevDsA==}
- '@algolia/client-analytics@4.20.0':
- resolution: {integrity: sha512-EIr+PdFMOallRdBTHHdKI3CstslgLORQG7844Mq84ib5oVFRVASuuPmG4bXBgiDbcsMLUeOC6zRVJhv1KWI0ug==}
-
'@algolia/client-analytics@4.24.0':
resolution: {integrity: sha512-y8jOZt1OjwWU4N2qr8G4AxXAzaa8DBvyHTWlHzX/7Me1LX8OayfgHexqrsL4vSBcoMmVw2XnVW9MhL+Y2ZDJXg==}
- '@algolia/client-common@4.20.0':
- resolution: {integrity: sha512-P3WgMdEss915p+knMMSd/fwiHRHKvDu4DYRrCRaBrsfFw7EQHon+EbRSm4QisS9NYdxbS04kcvNoavVGthyfqQ==}
-
'@algolia/client-common@4.24.0':
resolution: {integrity: sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==}
- '@algolia/client-personalization@4.20.0':
- resolution: {integrity: sha512-N9+zx0tWOQsLc3K4PVRDV8GUeOLAY0i445En79Pr3zWB+m67V+n/8w4Kw1C5LlbHDDJcyhMMIlqezh6BEk7xAQ==}
-
'@algolia/client-personalization@4.24.0':
resolution: {integrity: sha512-l5FRFm/yngztweU0HdUzz1rC4yoWCFo3IF+dVIVTfEPg906eZg5BOd1k0K6rZx5JzyyoP4LdmOikfkfGsKVE9w==}
- '@algolia/client-search@4.20.0':
- resolution: {integrity: sha512-zgwqnMvhWLdpzKTpd3sGmMlr4c+iS7eyyLGiaO51zDZWGMkpgoNVmltkzdBwxOVXz0RsFMznIxB9zuarUv4TZg==}
-
'@algolia/client-search@4.24.0':
resolution: {integrity: sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==}
- '@algolia/logger-common@4.20.0':
- resolution: {integrity: sha512-xouigCMB5WJYEwvoWW5XDv7Z9f0A8VoXJc3VKwlHJw/je+3p2RcDXfksLI4G4lIVncFUYMZx30tP/rsdlvvzHQ==}
-
'@algolia/logger-common@4.24.0':
resolution: {integrity: sha512-LLUNjkahj9KtKYrQhFKCzMx0BY3RnNP4FEtO+sBybCjJ73E8jNdaKJ/Dd8A/VA4imVHP5tADZ8pn5B8Ga/wTMA==}
- '@algolia/logger-console@4.20.0':
- resolution: {integrity: sha512-THlIGG1g/FS63z0StQqDhT6bprUczBI8wnLT3JWvfAQDZX5P6fCg7dG+pIrUBpDIHGszgkqYEqECaKKsdNKOUA==}
-
'@algolia/logger-console@4.24.0':
resolution: {integrity: sha512-X4C8IoHgHfiUROfoRCV+lzSy+LHMgkoEEU1BbKcsfnV0i0S20zyy0NLww9dwVHUWNfPPxdMU+/wKmLGYf96yTg==}
'@algolia/recommend@4.24.0':
resolution: {integrity: sha512-P9kcgerfVBpfYHDfVZDvvdJv0lEoCvzNlOy2nykyt5bK8TyieYyiD0lguIJdRZZYGre03WIAFf14pgE+V+IBlw==}
- '@algolia/requester-browser-xhr@4.20.0':
- resolution: {integrity: sha512-HbzoSjcjuUmYOkcHECkVTwAelmvTlgs48N6Owt4FnTOQdwn0b8pdht9eMgishvk8+F8bal354nhx/xOoTfwiAw==}
-
'@algolia/requester-browser-xhr@4.24.0':
resolution: {integrity: sha512-Z2NxZMb6+nVXSjF13YpjYTdvV3032YTBSGm2vnYvYPA6mMxzM3v5rsCiSspndn9rzIW4Qp1lPHBvuoKJV6jnAA==}
- '@algolia/requester-common@4.20.0':
- resolution: {integrity: sha512-9h6ye6RY/BkfmeJp7Z8gyyeMrmmWsMOCRBXQDs4mZKKsyVlfIVICpcSibbeYcuUdurLhIlrOUkH3rQEgZzonng==}
-
'@algolia/requester-common@4.24.0':
resolution: {integrity: sha512-k3CXJ2OVnvgE3HMwcojpvY6d9kgKMPRxs/kVohrwF5WMr2fnqojnycZkxPoEg+bXm8fi5BBfFmOqgYztRtHsQA==}
- '@algolia/requester-node-http@4.20.0':
- resolution: {integrity: sha512-ocJ66L60ABSSTRFnCHIEZpNHv6qTxsBwJEPfYaSBsLQodm0F9ptvalFkHMpvj5DfE22oZrcrLbOYM2bdPJRHng==}
-
'@algolia/requester-node-http@4.24.0':
resolution: {integrity: sha512-JF18yTjNOVYvU/L3UosRcvbPMGT9B+/GQWNWnenIImglzNVGpyzChkXLnrSf6uxwVNO6ESGu6oN8MqcGQcjQJw==}
- '@algolia/transporter@4.20.0':
- resolution: {integrity: sha512-Lsii1pGWOAISbzeyuf+r/GPhvHMPHSPrTDWNcIzOE1SG1inlJHICaVe2ikuoRjcpgxZNU54Jl+if15SUCsaTUg==}
-
'@algolia/transporter@4.24.0':
resolution: {integrity: sha512-86nI7w6NzWxd1Zp9q3413dRshDqAzSbsQjhcDhPIatEFiZrL1/TjnHL8S7jVKFePlIMzDsZWXAXwXzcok9c5oA==}
- '@alvarosabu/utils@3.1.1':
- resolution: {integrity: sha512-DdZNe0i0UsqA2X/+JtaznG4qGorU24FaHqxMAhVspQaC1my+YAVQLpfw8GilHpzMxPxX4sGVzuTnBF8GOdG5oA==}
-
'@alvarosabu/utils@3.2.0':
resolution: {integrity: sha512-aoGWRfaQjOo9TUwrBA6W0zwTHktgrXy69GIFNILT4gHsqscw6+X8P6uoSlZVQFr887SPm8x3aDin5EBVq8y4pw==}
- '@ampproject/remapping@2.2.1':
- resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
- engines: {node: '>=6.0.0'}
-
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@antfu/eslint-config@2.18.1':
- resolution: {integrity: sha512-6LkzQa96SHt47ZCvAcLJbQLUXmcpl9wI+eo5OeyB2YhHbsUBX7ufT0r4x6fx6Ci2694HRNLl8wY42LUvwidduw==}
+ '@antfu/eslint-config@3.7.1':
+ resolution: {integrity: sha512-cDBAj+Le9XakAK83ZWVNxxyBJKeBfQ6H3VkUGnJPkXn/KJEzXC0fcHDtbu9k633hasLba5gXN5pjm4C70ik+Fg==}
hasBin: true
peerDependencies:
'@eslint-react/eslint-plugin': ^1.5.8
'@prettier/plugin-xml': ^3.4.1
'@unocss/eslint-plugin': '>=0.50.0'
- astro-eslint-parser: ^0.16.3
- eslint: '>=8.40.0'
- eslint-plugin-astro: ^0.31.4
+ astro-eslint-parser: ^1.0.2
+ eslint: ^9.10.0
+ eslint-plugin-astro: ^1.2.0
eslint-plugin-format: '>=0.1.0'
eslint-plugin-react-hooks: ^4.6.0
eslint-plugin-react-refresh: ^0.4.4
- eslint-plugin-solid: ^0.13.2
+ eslint-plugin-solid: ^0.14.3
eslint-plugin-svelte: '>=2.35.1'
prettier-plugin-astro: ^0.13.0
prettier-plugin-slidev: ^1.0.5
- svelte-eslint-parser: ^0.33.1
+ svelte-eslint-parser: '>=0.37.0'
peerDependenciesMeta:
'@eslint-react/eslint-plugin':
optional: true
@@ -341,307 +289,117 @@ packages:
svelte-eslint-parser:
optional: true
- '@antfu/install-pkg@0.1.1':
- resolution: {integrity: sha512-LyB/8+bSfa0DFGC06zpCEfs89/XoWZwws5ygEa5D+Xsm3OfI+aXQ86VgVG7Acyef+rSZ5HE7J8rrxzrQeM3PjQ==}
-
- '@antfu/install-pkg@0.3.3':
- resolution: {integrity: sha512-nHHsk3NXQ6xkCfiRRC8Nfrg8pU5kkr3P3Y9s9dKqiuRmBD0Yap7fymNDjGFKeWhZQHqqbCS5CfeMy9wtExM24w==}
+ '@antfu/install-pkg@0.4.1':
+ resolution: {integrity: sha512-T7yB5QNG29afhWVkVq7XeIMBa5U/vs9mX69YqayXypPRmYzUmzwnYltplHmPtZ4HPCn+sQKeXW8I47wCbuBOjw==}
'@antfu/utils@0.7.10':
resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
- '@antfu/utils@0.7.6':
- resolution: {integrity: sha512-pvFiLP2BeOKA/ZOS6jxx4XhKzdVLHDhGlFEaZ2flWWYf2xOqVniqpk38I04DFRyz+L0ASggl7SkItTc+ZLju4w==}
-
- '@antfu/utils@0.7.8':
- resolution: {integrity: sha512-rWQkqXRESdjXtc+7NRfK9lASQjpXJu1ayp7qi1d23zZorY+wBHVLHHoVcMsEnkqEBWTFqbztO7/QdJFzyEcLTg==}
-
- '@babel/code-frame@7.22.13':
- resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==}
- engines: {node: '>=6.9.0'}
-
- '@babel/code-frame@7.23.5':
- resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
- engines: {node: '>=6.9.0'}
-
'@babel/code-frame@7.24.7':
resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.23.2':
- resolution: {integrity: sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/compat-data@7.24.9':
- resolution: {integrity: sha512-e701mcfApCJqMMueQI0Fb68Amflj83+dvAvHawoBpAz+GDjCIyGHzNwnefjsWJ3xiYAqqiQFoWbspGYBdb2/ng==}
- engines: {node: '>=6.9.0'}
-
- '@babel/core@7.23.2':
- resolution: {integrity: sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/core@7.23.5':
- resolution: {integrity: sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==}
- engines: {node: '>=6.9.0'}
-
- '@babel/core@7.24.9':
- resolution: {integrity: sha512-5e3FI4Q3M3Pbr21+5xJwCv6ZT6KmGkI0vw3Tozy5ODAQFTIWe37iT8Cr7Ice2Ntb+M3iSKCEWMB1MBgKrW3whg==}
+ '@babel/compat-data@7.25.4':
+ resolution: {integrity: sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.23.0':
- resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==}
+ '@babel/core@7.25.2':
+ resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.23.5':
- resolution: {integrity: sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/generator@7.24.10':
- resolution: {integrity: sha512-o9HBZL1G2129luEUlG1hB4N/nlYNWHnpwlND9eOMclRqqu1YDy2sSYVCFUZwl8I1Gxh+QSRrP2vD7EpUmFVXxg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-annotate-as-pure@7.22.5':
- resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
+ '@babel/generator@7.25.6':
+ resolution: {integrity: sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.24.7':
resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.22.15':
- resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==}
+ '@babel/helper-compilation-targets@7.25.2':
+ resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.24.8':
- resolution: {integrity: sha512-oU+UoqCHdp+nWVDkpldqIQL/i/bvAv53tRqLG/s+cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-create-class-features-plugin@7.22.15':
- resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==}
+ '@babel/helper-create-class-features-plugin@7.25.4':
+ resolution: {integrity: sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-class-features-plugin@7.23.5':
- resolution: {integrity: sha512-QELlRWxSpgdwdJzSJn4WAhKC+hvw/AtHbbrIoncKHkhKKR/luAlKkgBDcri1EzWAo8f8VvYVryEHN4tax/V67A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/helper-create-class-features-plugin@7.24.8':
- resolution: {integrity: sha512-4f6Oqnmyp2PP3olgUMmOwC3akxSm5aBYraQ6YDdKy7NcAMkDECHWG0DEnV6M2UAkERgIBhYt8S27rURPg7SxWA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/helper-environment-visitor@7.22.20':
- resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-environment-visitor@7.24.7':
- resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-function-name@7.23.0':
- resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-function-name@7.24.7':
- resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-hoist-variables@7.22.5':
- resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-hoist-variables@7.24.7':
- resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-member-expression-to-functions@7.23.0':
- resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-member-expression-to-functions@7.24.8':
resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.22.15':
- resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-module-imports@7.24.7':
resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.23.0':
- resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/helper-module-transforms@7.23.3':
- resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
+ '@babel/helper-module-transforms@7.25.2':
+ resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-module-transforms@7.24.9':
- resolution: {integrity: sha512-oYbh+rtFKj/HwBQkFlUzvcybzklmVdVV3UU+mN7n2t/q3yGHbuVdNxyFvSBO1tfvjyArpHNcWMAzsSPdyI46hw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/helper-optimise-call-expression@7.22.5':
- resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-optimise-call-expression@7.24.7':
resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.22.5':
- resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-plugin-utils@7.24.8':
resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-replace-supers@7.22.20':
- resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/helper-replace-supers@7.24.7':
- resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==}
+ '@babel/helper-replace-supers@7.25.0':
+ resolution: {integrity: sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-simple-access@7.22.5':
- resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-simple-access@7.24.7':
resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
- resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-skip-transparent-expression-wrappers@7.24.7':
resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-split-export-declaration@7.22.6':
- resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-split-export-declaration@7.24.7':
- resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-string-parser@7.22.5':
- resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-string-parser@7.23.4':
- resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-string-parser@7.24.1':
- resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-string-parser@7.24.8':
resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.22.20':
- resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-validator-identifier@7.24.5':
- resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-validator-identifier@7.24.7':
resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.22.15':
- resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-validator-option@7.23.5':
- resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-validator-option@7.24.8':
resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.23.2':
- resolution: {integrity: sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helpers@7.23.5':
- resolution: {integrity: sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helpers@7.24.8':
- resolution: {integrity: sha512-gV2265Nkcz7weJJfvDoAEVzC1e2OTDpkGbEsebse8koXUJUXPsCMi7sRo/+SPMuMZ9MtUPnGwITTnQnU5YjyaQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/highlight@7.22.20':
- resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/highlight@7.23.4':
- resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==}
+ '@babel/helpers@7.25.6':
+ resolution: {integrity: sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==}
engines: {node: '>=6.9.0'}
'@babel/highlight@7.24.7':
resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.23.3':
- resolution: {integrity: sha512-uVsWNvlVsIninV2prNz/3lHCb+5CJ+e+IUBfbjToAHODtfGYLfCFuY4AU7TskI+dAKk+njsPiBjq1gKTvZOBaw==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
- '@babel/parser@7.23.5':
- resolution: {integrity: sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
- '@babel/parser@7.24.5':
- resolution: {integrity: sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==}
+ '@babel/parser@7.25.6':
+ resolution: {integrity: sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/parser@7.24.8':
- resolution: {integrity: sha512-WzfbgXOkGzZiXXCqk43kKwZjzwx4oulxZi3nq2TYL9mOjQv6kYwul9mz6ID36njuL7Xkp6nJEfok848Zj10j/w==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
- '@babel/plugin-proposal-decorators@7.23.2':
- resolution: {integrity: sha512-eR0gJQc830fJVGz37oKLvt9W9uUIQSAovUl0e9sJ3YeO09dlcoBVYD3CLrjCj4qHdXmfiyTyFt8yeQYSN5fxLg==}
+ '@babel/plugin-proposal-decorators@7.24.7':
+ resolution: {integrity: sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-decorators@7.22.10':
- resolution: {integrity: sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==}
+ '@babel/plugin-syntax-decorators@7.24.7':
+ resolution: {integrity: sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.22.5':
- resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==}
+ '@babel/plugin-syntax-import-attributes@7.25.6':
+ resolution: {integrity: sha512-sXaDXaJN9SNLymBdlWFA+bjzBhFD617ZaFiY13dGt7TVslVvVgA6fkZOP7Ki3IGElC45lwHdOTrCtKZGVAWeLQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -651,38 +409,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.23.3':
- resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-jsx@7.24.7':
resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.22.5':
- resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-typescript@7.23.3':
- resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-typescript@7.24.7':
- resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-modules-commonjs@7.23.3':
- resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
+ '@babel/plugin-syntax-typescript@7.25.4':
+ resolution: {integrity: sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -693,26 +427,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.22.15':
- resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-typescript@7.23.5':
- resolution: {integrity: sha512-2fMkXEJkrmwgu2Bsv1Saxgj30IXZdJ+84lQcKKI7sm719oXs0BBw2ZENKdJdR1PjWndgLCEBNXJOri0fk7RYQA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-typescript@7.24.8':
- resolution: {integrity: sha512-CgFgtN61BbdOGCP4fLaAMOPkzWUh6yQZNMr5YSt8uz2cZSSiQONCQFWqsE4NeVfOIhqDOlS9CR3WD91FzMeB2Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/preset-typescript@7.23.3':
- resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==}
+ '@babel/plugin-transform-typescript@7.25.2':
+ resolution: {integrity: sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -723,52 +439,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/standalone@7.23.2':
- resolution: {integrity: sha512-VJNw7OS26JvB6rE9XpbT6uQeQIEBWU5eeHGS4VR/+/4ZoKdLBXLcy66ZVJ/9IBkK1RMp8B0cohvhzdKWtJAGmg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/standalone@7.24.8':
- resolution: {integrity: sha512-qo6KonLh/hNmzRrg70rWc3noctWIh6oXuyBIa2RZlSqJpIGKvrSTWaI4zlOGZS19ChfA5uSEGuaXdN4xs6G+Cw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/template@7.22.15':
- resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
- engines: {node: '>=6.9.0'}
-
- '@babel/template@7.24.7':
- resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==}
- engines: {node: '>=6.9.0'}
-
- '@babel/traverse@7.23.2':
- resolution: {integrity: sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/traverse@7.23.5':
- resolution: {integrity: sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==}
- engines: {node: '>=6.9.0'}
-
- '@babel/traverse@7.24.8':
- resolution: {integrity: sha512-t0P1xxAPzEDcEPmjprAQq19NWum4K0EQPjMwZQZbHt+GiZqvjCHjj755Weq1YRPVzBI+3zSfvScfpnuIecVFJQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/types@7.23.0':
- resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==}
+ '@babel/standalone@7.25.6':
+ resolution: {integrity: sha512-Kf2ZcZVqsKbtYhlA7sP0z5A3q5hmCVYMKMWRWNK/5OVwHIve3JY1djVRmIVAx8FMueLIfZGKQDIILK2w8zO4mg==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.23.5':
- resolution: {integrity: sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w==}
+ '@babel/template@7.25.0':
+ resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.24.5':
- resolution: {integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==}
+ '@babel/traverse@7.25.6':
+ resolution: {integrity: sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.24.8':
- resolution: {integrity: sha512-SkSBEHwwJRU52QEVZBmMBnE5Ux2/6WU1grdYyOhpbCNxbmJrDuDCphBzKZSO3taf0zztp+qkWlymE5tVL5l0TA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/types@7.24.9':
- resolution: {integrity: sha512-xm8XrMKz0IlUdocVbYJe0Z9xEgidU7msskG8BbhnTPK/HZ2z/7FP7ykqPgrUH+C+r414mNfNWam1f2vqOjqjYQ==}
+ '@babel/types@7.25.6':
+ resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==}
engines: {node: '>=6.9.0'}
'@clack/core@0.3.4':
@@ -779,38 +463,28 @@ packages:
bundledDependencies:
- is-unicode-supported
- '@cloudflare/kv-asset-handler@0.3.0':
- resolution: {integrity: sha512-9CB/MKf/wdvbfkUdfrj+OkEwZ5b7rws0eogJ4293h+7b6KX5toPwym+VQKmILafNB9YiehqY0DlNrDcDhdWHSQ==}
+ '@cloudflare/kv-asset-handler@0.3.4':
+ resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==}
+ engines: {node: '>=16.13'}
- '@docsearch/css@3.5.2':
- resolution: {integrity: sha512-SPiDHaWKQZpwR2siD0KQUwlStvIAnEyK6tAE2h2Wuoq8ue9skzhlyVQ1ddzOxX6khULnAALDiR/isSF3bnuciA==}
+ '@conventional-changelog/git-client@1.0.1':
+ resolution: {integrity: sha512-PJEqBwAleffCMETaVm/fUgHldzBE35JFk3/9LL6NUA5EXa3qednu+UT6M7E5iBu3zIQZCULYIiZ90fBYHt6xUw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ conventional-commits-filter: ^5.0.0
+ conventional-commits-parser: ^6.0.0
+ peerDependenciesMeta:
+ conventional-commits-filter:
+ optional: true
+ conventional-commits-parser:
+ optional: true
'@docsearch/css@3.6.1':
resolution: {integrity: sha512-VtVb5DS+0hRIprU2CO6ZQjK2Zg4QU5HrDM1+ix6rT0umsYvFvatMAnf97NHZlVWDaaLlx7GRfR/7FikANiM2Fg==}
- '@docsearch/js@3.5.2':
- resolution: {integrity: sha512-p1YFTCDflk8ieHgFJYfmyHBki1D61+U9idwrLh+GQQMrBSP3DLGKpy0XUJtPjAOPltcVbqsTjiPFfH7JImjUNg==}
-
'@docsearch/js@3.6.1':
resolution: {integrity: sha512-erI3RRZurDr1xES5hvYJ3Imp7jtrXj6f1xYIzDzxiS7nNBufYWPbJwrmMqWC5g9y165PmxEmN9pklGCdLi0Iqg==}
- '@docsearch/react@3.5.2':
- resolution: {integrity: sha512-9Ahcrs5z2jq/DcAvYtvlqEBHImbm4YJI8M9y0x6Tqg598P40HTEkX7hsMcIuThI+hTFxRGZ9hll0Wygm2yEjng==}
- peerDependencies:
- '@types/react': '>= 16.8.0 < 19.0.0'
- react: '>= 16.8.0 < 19.0.0'
- react-dom: '>= 16.8.0 < 19.0.0'
- search-insights: '>= 1 < 3'
- peerDependenciesMeta:
- '@types/react':
- optional: true
- react:
- optional: true
- react-dom:
- optional: true
- search-insights:
- optional: true
-
'@docsearch/react@3.6.1':
resolution: {integrity: sha512-qXZkEPvybVhSXj0K7U3bXc233tk5e8PfhoZ6MhPOiik/qUQxYC+Dn9DnoS7CxHQQhHfCvTiN0eY9M12oRghEXw==}
peerDependencies:
@@ -828,33 +502,39 @@ packages:
search-insights:
optional: true
- '@dprint/formatter@0.2.1':
- resolution: {integrity: sha512-GCzgRt2o4mhZLy8L47k2A+q9EMG/jWhzZebE29EqKsxmjDrSfv2VisEj/Q+39OOf04jTkEfB/TRO+IZSyxHdYg==}
+ '@dprint/formatter@0.3.0':
+ resolution: {integrity: sha512-N9fxCxbaBOrDkteSOzaCqwWjso5iAe+WJPsHC021JfHNj2ThInPNEF13ORDKta3llq5D1TlclODCvOvipH7bWQ==}
- '@dprint/markdown@0.16.4':
- resolution: {integrity: sha512-WjsC4yLybR5/76+d/2s36nOBGjETe+jJR//ddFHohDXKdis+FTUv7dJ00kmd6g0AKQwDITayM1Nid10gFNG0Yg==}
+ '@dprint/markdown@0.17.8':
+ resolution: {integrity: sha512-ukHFOg+RpG284aPdIg7iPrCYmMs3Dqy43S1ejybnwlJoFiW02b+6Bbr5cfZKFRYNP3dKGM86BqHEnMzBOyLvvA==}
- '@dprint/toml@0.6.1':
- resolution: {integrity: sha512-1fmGui+BNLKNonG3fvjT+thtL8u0pL1GsIuRbhgRnP+UOkcfPgoUsgNFctDmOE13y6MX4TVvxXKKrMY/qwXqkA==}
+ '@dprint/toml@0.6.2':
+ resolution: {integrity: sha512-Mk5unEANsL/L+WHYU3NpDXt1ARU5bNU5k5OZELxaJodDycKG6RoRnSlZXpW6+7UN2PSnETAFVUdKrh937ZwtHA==}
- '@es-joy/jsdoccomment@0.43.0':
- resolution: {integrity: sha512-Q1CnsQrytI3TlCB1IVWXWeqUIPGVEKGaE7IbVdt13Nq/3i0JESAkQQERrfiQkmlpijl+++qyqPgaS31Bvc1jRQ==}
+ '@es-joy/jsdoccomment@0.48.0':
+ resolution: {integrity: sha512-G6QUWIcC+KvSwXNsJyDTHvqUdNoAVJPPgkc3+Uk4WBKqZvoXhlvazOgm9aL0HwihJLQf0l+tOE2UFzXBqCqgDw==}
engines: {node: '>=16'}
+ '@esbuild/aix-ppc64@0.20.2':
+ resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [aix]
+
'@esbuild/aix-ppc64@0.21.5':
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [aix]
- '@esbuild/android-arm64@0.18.20':
- resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
+ '@esbuild/aix-ppc64@0.23.1':
+ resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
- '@esbuild/android-arm64@0.19.5':
- resolution: {integrity: sha512-5d1OkoJxnYQfmC+Zd8NBFjkhyCNYwM4n9ODrycTFY6Jk1IGiZ+tjVJDDSwDt77nK+tfpGP4T50iMtVi4dEGzhQ==}
+ '@esbuild/android-arm64@0.20.2':
+ resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
@@ -865,14 +545,14 @@ packages:
cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.18.20':
- resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
- engines: {node: '>=12'}
- cpu: [arm]
+ '@esbuild/android-arm64@0.23.1':
+ resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.19.5':
- resolution: {integrity: sha512-bhvbzWFF3CwMs5tbjf3ObfGqbl/17ict2/uwOSfr3wmxDE6VdS2GqY/FuzIPe0q0bdhj65zQsvqfArI9MY6+AA==}
+ '@esbuild/android-arm@0.20.2':
+ resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
@@ -883,14 +563,14 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-x64@0.18.20':
- resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/android-arm@0.23.1':
+ resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==}
+ engines: {node: '>=18'}
+ cpu: [arm]
os: [android]
- '@esbuild/android-x64@0.19.5':
- resolution: {integrity: sha512-9t+28jHGL7uBdkBjL90QFxe7DVA+KGqWlHCF8ChTKyaKO//VLuoBricQCgwhOjA1/qOczsw843Fy4cbs4H3DVA==}
+ '@esbuild/android-x64@0.20.2':
+ resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
@@ -901,14 +581,14 @@ packages:
cpu: [x64]
os: [android]
- '@esbuild/darwin-arm64@0.18.20':
- resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
+ '@esbuild/android-x64@0.23.1':
+ resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
- '@esbuild/darwin-arm64@0.19.5':
- resolution: {integrity: sha512-mvXGcKqqIqyKoxq26qEDPHJuBYUA5KizJncKOAf9eJQez+L9O+KfvNFu6nl7SCZ/gFb2QPaRqqmG0doSWlgkqw==}
+ '@esbuild/darwin-arm64@0.20.2':
+ resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
@@ -919,14 +599,14 @@ packages:
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.18.20':
- resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/darwin-arm64@0.23.1':
+ resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.19.5':
- resolution: {integrity: sha512-Ly8cn6fGLNet19s0X4unjcniX24I0RqjPv+kurpXabZYSXGM4Pwpmf85WHJN3lAgB8GSth7s5A0r856S+4DyiA==}
+ '@esbuild/darwin-x64@0.20.2':
+ resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
@@ -937,14 +617,14 @@ packages:
cpu: [x64]
os: [darwin]
- '@esbuild/freebsd-arm64@0.18.20':
- resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
+ '@esbuild/darwin-x64@0.23.1':
+ resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
- '@esbuild/freebsd-arm64@0.19.5':
- resolution: {integrity: sha512-GGDNnPWTmWE+DMchq1W8Sd0mUkL+APvJg3b11klSGUDvRXh70JqLAO56tubmq1s2cgpVCSKYywEiKBfju8JztQ==}
+ '@esbuild/freebsd-arm64@0.20.2':
+ resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
@@ -955,14 +635,14 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.18.20':
- resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/freebsd-arm64@0.23.1':
+ resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.19.5':
- resolution: {integrity: sha512-1CCwDHnSSoA0HNwdfoNY0jLfJpd7ygaLAp5EHFos3VWJCRX9DMwWODf96s9TSse39Br7oOTLryRVmBoFwXbuuQ==}
+ '@esbuild/freebsd-x64@0.20.2':
+ resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
@@ -973,14 +653,14 @@ packages:
cpu: [x64]
os: [freebsd]
- '@esbuild/linux-arm64@0.18.20':
- resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
+ '@esbuild/freebsd-x64@0.23.1':
+ resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
- '@esbuild/linux-arm64@0.19.5':
- resolution: {integrity: sha512-o3vYippBmSrjjQUCEEiTZ2l+4yC0pVJD/Dl57WfPwwlvFkrxoSO7rmBZFii6kQB3Wrn/6GwJUPLU5t52eq2meA==}
+ '@esbuild/linux-arm64@0.20.2':
+ resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
@@ -991,14 +671,14 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.18.20':
- resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
- engines: {node: '>=12'}
- cpu: [arm]
+ '@esbuild/linux-arm64@0.23.1':
+ resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.19.5':
- resolution: {integrity: sha512-lrWXLY/vJBzCPC51QN0HM71uWgIEpGSjSZZADQhq7DKhPcI6NH1IdzjfHkDQws2oNpJKpR13kv7/pFHBbDQDwQ==}
+ '@esbuild/linux-arm@0.20.2':
+ resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
@@ -1009,14 +689,14 @@ packages:
cpu: [arm]
os: [linux]
- '@esbuild/linux-ia32@0.18.20':
- resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
- engines: {node: '>=12'}
- cpu: [ia32]
+ '@esbuild/linux-arm@0.23.1':
+ resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==}
+ engines: {node: '>=18'}
+ cpu: [arm]
os: [linux]
- '@esbuild/linux-ia32@0.19.5':
- resolution: {integrity: sha512-MkjHXS03AXAkNp1KKkhSKPOCYztRtK+KXDNkBa6P78F8Bw0ynknCSClO/ztGszILZtyO/lVKpa7MolbBZ6oJtQ==}
+ '@esbuild/linux-ia32@0.20.2':
+ resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
@@ -1027,14 +707,14 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.18.20':
- resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
- engines: {node: '>=12'}
- cpu: [loong64]
+ '@esbuild/linux-ia32@0.23.1':
+ resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.19.5':
- resolution: {integrity: sha512-42GwZMm5oYOD/JHqHska3Jg0r+XFb/fdZRX+WjADm3nLWLcIsN27YKtqxzQmGNJgu0AyXg4HtcSK9HuOk3v1Dw==}
+ '@esbuild/linux-loong64@0.20.2':
+ resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
@@ -1045,14 +725,14 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.18.20':
- resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
- engines: {node: '>=12'}
- cpu: [mips64el]
+ '@esbuild/linux-loong64@0.23.1':
+ resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.19.5':
- resolution: {integrity: sha512-kcjndCSMitUuPJobWCnwQ9lLjiLZUR3QLQmlgaBfMX23UEa7ZOrtufnRds+6WZtIS9HdTXqND4yH8NLoVVIkcg==}
+ '@esbuild/linux-mips64el@0.20.2':
+ resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
@@ -1063,14 +743,14 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.18.20':
- resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
- engines: {node: '>=12'}
- cpu: [ppc64]
+ '@esbuild/linux-mips64el@0.23.1':
+ resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.19.5':
- resolution: {integrity: sha512-yJAxJfHVm0ZbsiljbtFFP1BQKLc8kUF6+17tjQ78QjqjAQDnhULWiTA6u0FCDmYT1oOKS9PzZ2z0aBI+Mcyj7Q==}
+ '@esbuild/linux-ppc64@0.20.2':
+ resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
@@ -1081,14 +761,14 @@ packages:
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.18.20':
- resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
- engines: {node: '>=12'}
- cpu: [riscv64]
+ '@esbuild/linux-ppc64@0.23.1':
+ resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.19.5':
- resolution: {integrity: sha512-5u8cIR/t3gaD6ad3wNt1MNRstAZO+aNyBxu2We8X31bA8XUNyamTVQwLDA1SLoPCUehNCymhBhK3Qim1433Zag==}
+ '@esbuild/linux-riscv64@0.20.2':
+ resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
@@ -1099,14 +779,14 @@ packages:
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-s390x@0.18.20':
- resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
- engines: {node: '>=12'}
- cpu: [s390x]
+ '@esbuild/linux-riscv64@0.23.1':
+ resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
os: [linux]
- '@esbuild/linux-s390x@0.19.5':
- resolution: {integrity: sha512-Z6JrMyEw/EmZBD/OFEFpb+gao9xJ59ATsoTNlj39jVBbXqoZm4Xntu6wVmGPB/OATi1uk/DB+yeDPv2E8PqZGw==}
+ '@esbuild/linux-s390x@0.20.2':
+ resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
@@ -1117,14 +797,14 @@ packages:
cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.18.20':
- resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/linux-s390x@0.23.1':
+ resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.19.5':
- resolution: {integrity: sha512-psagl+2RlK1z8zWZOmVdImisMtrUxvwereIdyJTmtmHahJTKb64pAcqoPlx6CewPdvGvUKe2Jw+0Z/0qhSbG1A==}
+ '@esbuild/linux-x64@0.20.2':
+ resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
@@ -1135,14 +815,14 @@ packages:
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-x64@0.18.20':
- resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
- engines: {node: '>=12'}
+ '@esbuild/linux-x64@0.23.1':
+ resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==}
+ engines: {node: '>=18'}
cpu: [x64]
- os: [netbsd]
+ os: [linux]
- '@esbuild/netbsd-x64@0.19.5':
- resolution: {integrity: sha512-kL2l+xScnAy/E/3119OggX8SrWyBEcqAh8aOY1gr4gPvw76la2GlD4Ymf832UCVbmuWeTf2adkZDK+h0Z/fB4g==}
+ '@esbuild/netbsd-x64@0.20.2':
+ resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
@@ -1153,14 +833,20 @@ packages:
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-x64@0.18.20':
- resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
- engines: {node: '>=12'}
+ '@esbuild/netbsd-x64@0.23.1':
+ resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==}
+ engines: {node: '>=18'}
cpu: [x64]
+ os: [netbsd]
+
+ '@esbuild/openbsd-arm64@0.23.1':
+ resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.19.5':
- resolution: {integrity: sha512-sPOfhtzFufQfTBgRnE1DIJjzsXukKSvZxloZbkJDG383q0awVAq600pc1nfqBcl0ice/WN9p4qLc39WhBShRTA==}
+ '@esbuild/openbsd-x64@0.20.2':
+ resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
@@ -1171,14 +857,14 @@ packages:
cpu: [x64]
os: [openbsd]
- '@esbuild/sunos-x64@0.18.20':
- resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
- engines: {node: '>=12'}
+ '@esbuild/openbsd-x64@0.23.1':
+ resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==}
+ engines: {node: '>=18'}
cpu: [x64]
- os: [sunos]
+ os: [openbsd]
- '@esbuild/sunos-x64@0.19.5':
- resolution: {integrity: sha512-dGZkBXaafuKLpDSjKcB0ax0FL36YXCvJNnztjKV+6CO82tTYVDSH2lifitJ29jxRMoUhgkg9a+VA/B03WK5lcg==}
+ '@esbuild/sunos-x64@0.20.2':
+ resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
@@ -1189,14 +875,14 @@ packages:
cpu: [x64]
os: [sunos]
- '@esbuild/win32-arm64@0.18.20':
- resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
+ '@esbuild/sunos-x64@0.23.1':
+ resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
- '@esbuild/win32-arm64@0.19.5':
- resolution: {integrity: sha512-dWVjD9y03ilhdRQ6Xig1NWNgfLtf2o/STKTS+eZuF90fI2BhbwD6WlaiCGKptlqXlURVB5AUOxUj09LuwKGDTg==}
+ '@esbuild/win32-arm64@0.20.2':
+ resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
@@ -1207,14 +893,14 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.18.20':
- resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
- engines: {node: '>=12'}
- cpu: [ia32]
+ '@esbuild/win32-arm64@0.23.1':
+ resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.19.5':
- resolution: {integrity: sha512-4liggWIA4oDgUxqpZwrDhmEfAH4d0iljanDOK7AnVU89T6CzHon/ony8C5LeOdfgx60x5cnQJFZwEydVlYx4iw==}
+ '@esbuild/win32-ia32@0.20.2':
+ resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
@@ -1225,14 +911,14 @@ packages:
cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.18.20':
- resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/win32-ia32@0.23.1':
+ resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.19.5':
- resolution: {integrity: sha512-czTrygUsB/jlM8qEW5MD8bgYU2Xg14lo6kBDXW6HdxKjh8M5PzETGiSHaz9MtbXBYDloHNUAUW2tMiKW4KM9Mw==}
+ '@esbuild/win32-x64@0.20.2':
+ resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
@@ -1243,38 +929,60 @@ packages:
cpu: [x64]
os: [win32]
+ '@esbuild/win32-x64@0.23.1':
+ resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
+ '@eslint-community/eslint-plugin-eslint-comments@4.4.0':
+ resolution: {integrity: sha512-yljsWl5Qv3IkIRmJ38h3NrHXFCm4EUl55M8doGTF6hvzvFF8kRpextgSrg2dwHev9lzBZyafCr9RelGIyQm6fw==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
+
'@eslint-community/eslint-utils@4.4.0':
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- '@eslint-community/regexpp@4.10.0':
- resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
+ '@eslint-community/regexpp@4.11.1':
+ resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint-community/regexpp@4.11.0':
- resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==}
- engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+ '@eslint/compat@1.1.1':
+ resolution: {integrity: sha512-lpHyRyplhGPL5mGEh6M9O5nnKk0Gz4bFI+Zu6tKlPpDUN7XshWvH9C/px4UVm87IAANE0W81CEsNGbS1KlzXpA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/config-array@0.17.1':
- resolution: {integrity: sha512-BlYOpej8AQ8Ev9xVqroV7a02JK3SkBAaN9GfMMH9W6Ch8FlQlkjGw4Ir7+FgYwfirivAf4t+GtzuAxqfukmISA==}
+ '@eslint/config-array@0.18.0':
+ resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/eslintrc@3.1.0':
resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.7.0':
- resolution: {integrity: sha512-ChuWDQenef8OSFnvuxv0TCVxEwmu3+hPNKvM9B34qpM0rDRbjL8t5QkQeHHeAfsKQjuH9wS82WeCi1J/owatng==}
+ '@eslint/js@9.11.0':
+ resolution: {integrity: sha512-LPkkenkDqyzTFauZLLAPhIb48fj6drrfMvRGSL9tS3AcZBSVTllemLSNyCvHNNL2t797S/6DJNSIwRwXgMO/eQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/markdown@6.1.0':
+ resolution: {integrity: sha512-cX1tyD+aIbhzKrCKe/9M5s2jZhldWGOR+cy7cIVpxG9RkoaN4XU+gG3dy6oEKtBFXjDx06GtP0OGO7jgbqa2DA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: '>=9'
+
'@eslint/object-schema@2.1.4':
resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@fastify/busboy@2.0.0':
- resolution: {integrity: sha512-JUFJad5lv7jxj926GPgymrWQxxjPYuJNiNjNMzqT+HiuP6Vl3dk5xzG+8sTX96np0ZAluvaMzPsjhHZ5rNuNQQ==}
+ '@eslint/plugin-kit@0.2.0':
+ resolution: {integrity: sha512-vH9PiIMMwvhCx31Af3HiGzsVNULDbyVkHXwlemn/B0TFj/00ho3y55efXrUZTfQipxoHC5u4xq6zblww1zm1Ig==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@fastify/busboy@2.1.1':
+ resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==}
engines: {node: '>=14'}
'@humanwhocodes/module-importer@1.0.1':
@@ -1295,68 +1003,41 @@ packages:
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
- '@iconify/utils@2.1.12':
- resolution: {integrity: sha512-7vf3Uk6H7TKX4QMs2gbg5KR1X9J0NJzKSRNWhMZ+PWN92l0t6Q3tj2ZxLDG07rC3ppWBtTtA4FPmkQphuEmdsg==}
+ '@iconify/utils@2.1.33':
+ resolution: {integrity: sha512-jP9h6v/g0BIZx0p7XGJJVtkVnydtbgTgt9mVNcGDYwaa7UhdHdI9dvoq+gKj9sijMSJKxUPEG2JyjsgXjxL7Kw==}
- '@iconify/utils@2.1.25':
- resolution: {integrity: sha512-Y+iGko8uv/Fz5bQLLJyNSZGOdMW0G7cnlEX1CiNcKsRXX9cq/y/vwxrIAtLCZhKHr3m0VJmsjVPsvnM4uX8YLg==}
-
- '@inquirer/figures@1.0.5':
- resolution: {integrity: sha512-79hP/VWdZ2UVc9bFGJnoQ/lQMpL74mGgzSYX1xUqCVk7/v73vJCMw1VuyWN1jGkZ9B3z7THAbySqGbCNefcjfA==}
+ '@inquirer/figures@1.0.6':
+ resolution: {integrity: sha512-yfZzps3Cso2UbM7WlxKwZQh2Hs6plrbjs1QnzQDZhK2DgyCo6D8AaHps9olkNcUFlcYERMqU3uJSp1gmy3s/qQ==}
engines: {node: '>=18'}
'@ioredis/commands@1.2.0':
resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==}
- '@jridgewell/gen-mapping@0.3.3':
- resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
- engines: {node: '>=6.0.0'}
+ '@isaacs/cliui@8.0.2':
+ resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
+ engines: {node: '>=12'}
'@jridgewell/gen-mapping@0.3.5':
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
engines: {node: '>=6.0.0'}
- '@jridgewell/resolve-uri@3.1.1':
- resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
- engines: {node: '>=6.0.0'}
-
'@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
- '@jridgewell/set-array@1.1.2':
- resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
- engines: {node: '>=6.0.0'}
-
'@jridgewell/set-array@1.2.1':
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
engines: {node: '>=6.0.0'}
- '@jridgewell/source-map@0.3.5':
- resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==}
-
'@jridgewell/source-map@0.3.6':
resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
- '@jridgewell/sourcemap-codec@1.4.15':
- resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
-
'@jridgewell/sourcemap-codec@1.5.0':
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
- '@jridgewell/trace-mapping@0.3.19':
- resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==}
-
- '@jridgewell/trace-mapping@0.3.20':
- resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==}
-
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
- '@jsdevtools/ez-spawn@3.0.4':
- resolution: {integrity: sha512-f5DRIOZf7wxogefH03RjMPMdBF7ADTWUMoOs9kaJo06EfwF+aFhMZMDZxHg/Xe12hptN9xoZjGso2fdjapBRIA==}
- engines: {node: '>=10'}
-
'@kwsites/file-exists@1.1.1':
resolution: {integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==}
@@ -1380,17 +1061,17 @@ packages:
'@microsoft/tsdoc@0.15.0':
resolution: {integrity: sha512-HZpPoABogPvjeJOdzCOSJsXeL/SMCBgBZMVC3X3d7YYp2gf31MfxhUoYUNwf1ERPJOnQc0wkFn9trqI6ZEdZuA==}
- '@netlify/functions@2.3.0':
- resolution: {integrity: sha512-E3kzXPWMP/r1rAWhjTaXcaOT47dhEvg/eQUJjRLhD9Zzp0WqkdynHr+bqff4rFNv6tuXrtFZrpbPJFKHH0c0zw==}
+ '@netlify/functions@2.8.1':
+ resolution: {integrity: sha512-+6wtYdoz0yE06dSa9XkP47tw5zm6g13QMeCwM3MmHx1vn8hzwFa51JtmfraprdkL7amvb7gaNM+OOhQU1h6T8A==}
engines: {node: '>=14.0.0'}
'@netlify/node-cookies@0.1.0':
resolution: {integrity: sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g==}
engines: {node: ^14.16.0 || >=16.0.0}
- '@netlify/serverless-functions-api@1.9.0':
- resolution: {integrity: sha512-Jq4uk1Mwa5vyxImupJYXPP+I5yYcp3PtguvXtJRutKdm9DPALXfZVtCQzBWMNdZiqVWCM3La9hvaBsPjSMfeug==}
- engines: {node: ^14.18.0 || >=16.0.0}
+ '@netlify/serverless-functions-api@1.19.1':
+ resolution: {integrity: sha512-2KYkyluThg1AKfd0JWI7FzpS4A/fzVVGYIf6AM4ydWyNj8eI/86GQVLeRgDoH7CNOxt243R5tutWlmHpVq0/Ew==}
+ engines: {node: '>=18.0.0'}
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
@@ -1407,54 +1088,35 @@ packages:
'@nuxt/devalue@2.0.2':
resolution: {integrity: sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==}
- '@nuxt/devtools-kit@1.3.9':
- resolution: {integrity: sha512-tgr/F+4BbI53/JxgaXl3cuV9dMuCXMsd4GEXN+JqtCdAkDbH3wL79GGWx0/6I9acGzRsB6UZ1H6U96nfgcIrAw==}
+ '@nuxt/devtools-kit@1.5.0':
+ resolution: {integrity: sha512-Q8sOquz9CoUMTABo6Bq+nkbNMZi+WVN4xpz1USZPZazcJhSj9imSmQRSycY2fBYqkfB1AKBRhm2UV2ujCQfw0Q==}
peerDependencies:
vite: '*'
- '@nuxt/devtools-wizard@1.3.9':
- resolution: {integrity: sha512-WMgwWWuyng+Y6k7sfBI95wYnec8TPFkuYbHHOlYQgqE9dAewPisSbEm3WkB7p/W9UqxpN8mvKN5qUg4sTmEpgQ==}
+ '@nuxt/devtools-wizard@1.5.0':
+ resolution: {integrity: sha512-Yvc3MHzNZAN3hMoUr4FpVoBQ6etkp1STy56LntHgdEc9ngzcKzGuJJp5kxvytuY3dLUVFKQ6Ptvtv+yjLeoPZQ==}
hasBin: true
- '@nuxt/devtools@1.3.9':
- resolution: {integrity: sha512-tFKlbUPgSXw4tyD8xpztQtJeVn3egdKbFCV0xc92FbfGbclAyaa3XhKA2tMWXEGZQpykAWMRNrGWN24FtXFA6Q==}
+ '@nuxt/devtools@1.5.0':
+ resolution: {integrity: sha512-82LEPZUVU0osPRypSTq/bPXfl1Oo/+R2UaXx/pq9WkE8Vj1V/n0v7a40EVHJsusZ+e/JGjed8+8oYDwF8nNIQw==}
hasBin: true
peerDependencies:
vite: '*'
- '@nuxt/kit@3.12.3':
- resolution: {integrity: sha512-5R8FZLDxBKlkDWYsqwU1tctGJ5vwMA96WBrNkpQ0LznB2/p+3MWWTO6vz+0P0F9xvZZfkk/KKyZ3uUhnG9VJOA==}
- engines: {node: ^14.18.0 || >=16.10.0}
-
- '@nuxt/kit@3.12.4':
- resolution: {integrity: sha512-aNRD1ylzijY0oYolldNcZJXVyxdGzNTl+Xd0UYyFQCu9f4wqUZqQ9l+b7arCEzchr96pMK0xdpvLcS3xo1wDcw==}
+ '@nuxt/kit@3.13.2':
+ resolution: {integrity: sha512-KvRw21zU//wdz25IeE1E5m/aFSzhJloBRAQtv+evcFeZvuroIxpIQuUqhbzuwznaUwpiWbmwlcsp5uOWmi4vwA==}
engines: {node: ^14.18.0 || >=16.10.0}
- '@nuxt/kit@3.8.0':
- resolution: {integrity: sha512-oIthQxeMIVs4ESVP5FqLYn8tj0S1sLd+eYreh+dNYgnJ2pTi7+THR12ONBNHjk668jqEe7ErUJ8UlGwqBzgezg==}
+ '@nuxt/schema@3.13.2':
+ resolution: {integrity: sha512-CCZgpm+MkqtOMDEgF9SWgGPBXlQ01hV/6+2reDEpJuqFPGzV8HYKPBcIFvn7/z5ahtgutHLzjP71Na+hYcqSpw==}
engines: {node: ^14.18.0 || >=16.10.0}
- '@nuxt/schema@3.12.3':
- resolution: {integrity: sha512-Zw/2stN5CWVOHQ6pKyewk3tvYW5ROBloTGyIbie7/TprJT5mL+E9tTgAxOZtkoKSFaYEQXZgE1K2OzMelhLRzw==}
- engines: {node: ^14.18.0 || >=16.10.0}
-
- '@nuxt/schema@3.12.4':
- resolution: {integrity: sha512-H7FwBV4ChssMaeiLyPdVLOLUa0326ebp3pNbJfGgFt7rSoKh1MmgjorecA8JMxOQZziy3w6EELf4+5cgLh/F1w==}
- engines: {node: ^14.18.0 || >=16.10.0}
-
- '@nuxt/schema@3.8.0':
- resolution: {integrity: sha512-VEDVeCjdVowhoY5vIBSz94+SSwmM204jN6TNe/ShBJ2d/vZiy9EtLbhOwqaPNFHwnN1fl/XFHThwJiexdB9D1w==}
- engines: {node: ^14.18.0 || >=16.10.0}
-
- '@nuxt/telemetry@2.5.2':
- resolution: {integrity: sha512-kZ+rWq/5MZonMhp8KGFI5zMaR2VsiWpnlkOLJIuIX2WoJl0DkHvtxCtuFq2erAqMVruWLpKU+tgMC+1cno/QmA==}
+ '@nuxt/telemetry@2.6.0':
+ resolution: {integrity: sha512-h4YJ1d32cU7tDKjjhjtIIEck4WF/w3DTQBT348E9Pz85YLttnLqktLM0Ez9Xc2LzCeUgBDQv1el7Ob/zT3KUqg==}
hasBin: true
- '@nuxt/ui-templates@1.3.1':
- resolution: {integrity: sha512-5gc02Pu1HycOVUWJ8aYsWeeXcSTPe8iX8+KIrhyEtEoOSkY0eMBuo0ssljB8wALuEmepv31DlYe5gpiRwkjESA==}
-
- '@nuxt/vite-builder@3.8.0':
- resolution: {integrity: sha512-F9BfH+c/Idp6sBGVHR4QJSuoO42evtE4D0OelD45NgkqVvmBmOawlj0Oz5fDKoV64LDPI2+yE+xnBdQtsNv/VA==}
+ '@nuxt/vite-builder@3.13.2':
+ resolution: {integrity: sha512-3dzc3YH3UeTmzGtCevW1jTq0Q8/cm+yXqo/VS/EFM3aIO/tuNPS88is8ZF2YeBButFnLFllq/QenziPbq0YD6Q==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
vue: ^3.3.4
@@ -1511,164 +1173,92 @@ packages:
'@octokit/types@13.5.0':
resolution: {integrity: sha512-HdqWTf5Z3qwDVlzCrP8UJquMwunpDiMPt5er+QjGzL4hqr/vBVY/MauQgS1xWxCDT1oMx1EULyqxncdCY/NVSQ==}
- '@parcel/watcher-android-arm64@2.3.0':
- resolution: {integrity: sha512-f4o9eA3dgk0XRT3XhB0UWpWpLnKgrh1IwNJKJ7UJek7eTYccQ8LR7XUWFKqw6aEq5KUNlCcGvSzKqSX/vtWVVA==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm64]
- os: [android]
-
'@parcel/watcher-android-arm64@2.4.1':
resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [android]
- '@parcel/watcher-darwin-arm64@2.3.0':
- resolution: {integrity: sha512-mKY+oijI4ahBMc/GygVGvEdOq0L4DxhYgwQqYAz/7yPzuGi79oXrZG52WdpGA1wLBPrYb0T8uBaGFo7I6rvSKw==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm64]
- os: [darwin]
-
'@parcel/watcher-darwin-arm64@2.4.1':
resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [darwin]
- '@parcel/watcher-darwin-x64@2.3.0':
- resolution: {integrity: sha512-20oBj8LcEOnLE3mgpy6zuOq8AplPu9NcSSSfyVKgfOhNAc4eF4ob3ldj0xWjGGbOF7Dcy1Tvm6ytvgdjlfUeow==}
- engines: {node: '>= 10.0.0'}
- cpu: [x64]
- os: [darwin]
-
'@parcel/watcher-darwin-x64@2.4.1':
resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [darwin]
- '@parcel/watcher-freebsd-x64@2.3.0':
- resolution: {integrity: sha512-7LftKlaHunueAEiojhCn+Ef2CTXWsLgTl4hq0pkhkTBFI3ssj2bJXmH2L67mKpiAD5dz66JYk4zS66qzdnIOgw==}
- engines: {node: '>= 10.0.0'}
- cpu: [x64]
- os: [freebsd]
-
'@parcel/watcher-freebsd-x64@2.4.1':
resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [freebsd]
- '@parcel/watcher-linux-arm-glibc@2.3.0':
- resolution: {integrity: sha512-1apPw5cD2xBv1XIHPUlq0cO6iAaEUQ3BcY0ysSyD9Kuyw4MoWm1DV+W9mneWI+1g6OeP6dhikiFE6BlU+AToTQ==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm]
- os: [linux]
-
'@parcel/watcher-linux-arm-glibc@2.4.1':
resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==}
engines: {node: '>= 10.0.0'}
cpu: [arm]
os: [linux]
- '@parcel/watcher-linux-arm64-glibc@2.3.0':
- resolution: {integrity: sha512-mQ0gBSQEiq1k/MMkgcSB0Ic47UORZBmWoAWlMrTW6nbAGoLZP+h7AtUM7H3oDu34TBFFvjy4JCGP43JlylkTQA==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm64]
- os: [linux]
-
'@parcel/watcher-linux-arm64-glibc@2.4.1':
resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
- '@parcel/watcher-linux-arm64-musl@2.3.0':
- resolution: {integrity: sha512-LXZAExpepJew0Gp8ZkJ+xDZaTQjLHv48h0p0Vw2VMFQ8A+RKrAvpFuPVCVwKJCr5SE+zvaG+Etg56qXvTDIedw==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm64]
- os: [linux]
-
'@parcel/watcher-linux-arm64-musl@2.4.1':
resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
- '@parcel/watcher-linux-x64-glibc@2.3.0':
- resolution: {integrity: sha512-P7Wo91lKSeSgMTtG7CnBS6WrA5otr1K7shhSjKHNePVmfBHDoAOHYRXgUmhiNfbcGk0uMCHVcdbfxtuiZCHVow==}
- engines: {node: '>= 10.0.0'}
- cpu: [x64]
- os: [linux]
-
'@parcel/watcher-linux-x64-glibc@2.4.1':
resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
- '@parcel/watcher-linux-x64-musl@2.3.0':
- resolution: {integrity: sha512-+kiRE1JIq8QdxzwoYY+wzBs9YbJ34guBweTK8nlzLKimn5EQ2b2FSC+tAOpq302BuIMjyuUGvBiUhEcLIGMQ5g==}
- engines: {node: '>= 10.0.0'}
- cpu: [x64]
- os: [linux]
-
'@parcel/watcher-linux-x64-musl@2.4.1':
resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
- '@parcel/watcher-wasm@2.3.0':
- resolution: {integrity: sha512-ejBAX8H0ZGsD8lSICDNyMbSEtPMWgDL0WFCt/0z7hyf5v8Imz4rAM8xY379mBsECkq/Wdqa5WEDLqtjZ+6NxfA==}
+ '@parcel/watcher-wasm@2.4.1':
+ resolution: {integrity: sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==}
engines: {node: '>= 10.0.0'}
bundledDependencies:
- napi-wasm
- '@parcel/watcher-win32-arm64@2.3.0':
- resolution: {integrity: sha512-35gXCnaz1AqIXpG42evcoP2+sNL62gZTMZne3IackM+6QlfMcJLy3DrjuL6Iks7Czpd3j4xRBzez3ADCj1l7Aw==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm64]
- os: [win32]
-
'@parcel/watcher-win32-arm64@2.4.1':
resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [win32]
- '@parcel/watcher-win32-ia32@2.3.0':
- resolution: {integrity: sha512-FJS/IBQHhRpZ6PiCjFt1UAcPr0YmCLHRbTc00IBTrelEjlmmgIVLeOx4MSXzx2HFEy5Jo5YdhGpxCuqCyDJ5ow==}
- engines: {node: '>= 10.0.0'}
- cpu: [ia32]
- os: [win32]
-
'@parcel/watcher-win32-ia32@2.4.1':
resolution: {integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==}
engines: {node: '>= 10.0.0'}
cpu: [ia32]
os: [win32]
- '@parcel/watcher-win32-x64@2.3.0':
- resolution: {integrity: sha512-dLx+0XRdMnVI62kU3wbXvbIRhLck4aE28bIGKbRGS7BJNt54IIj9+c/Dkqb+7DJEbHUZAX1bwaoM8PqVlHJmCA==}
- engines: {node: '>= 10.0.0'}
- cpu: [x64]
- os: [win32]
-
'@parcel/watcher-win32-x64@2.4.1':
resolution: {integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [win32]
- '@parcel/watcher@2.3.0':
- resolution: {integrity: sha512-pW7QaFiL11O0BphO+bq3MgqeX/INAk9jgBldVDYjlQPO4VddoZnF22TcF9onMhnLVHuNqBJeRf+Fj7eezi/+rQ==}
- engines: {node: '>= 10.0.0'}
-
'@parcel/watcher@2.4.1':
resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==}
engines: {node: '>= 10.0.0'}
+ '@pkgjs/parseargs@0.11.0':
+ resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
+ engines: {node: '>=14'}
+
'@pkgr/core@0.1.1':
resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
@@ -1681,24 +1271,21 @@ packages:
resolution: {integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==}
engines: {node: '>=12.22.0'}
- '@pnpm/npm-conf@2.2.2':
- resolution: {integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==}
+ '@pnpm/npm-conf@2.3.1':
+ resolution: {integrity: sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==}
engines: {node: '>=12'}
- '@polka/url@1.0.0-next.23':
- resolution: {integrity: sha512-C16M+IYz0rgRhWZdCmK+h58JMv8vijAA61gmz2rspCSwKwzBebpdcsiUmwrtJRdphuY30i6BSLEOP8ppbNLyLg==}
-
- '@polka/url@1.0.0-next.25':
- resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}
+ '@polka/url@1.0.0-next.28':
+ resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
- '@release-it/conventional-changelog@8.0.1':
- resolution: {integrity: sha512-pwc9jaBYDaSX5TXw6rEnPfqDkKJN2sFBhYpON1kBi9T3sA9EOBncC4ed0Bv3L1ciNb6eqEJXPfp+tQMqVlv/eg==}
- engines: {node: '>=18'}
+ '@release-it/conventional-changelog@8.0.2':
+ resolution: {integrity: sha512-WpnWWRr7O0JeLoiejLrPEWnnwFhCscBn1wBTAXeitiz2/Ifaol0s+t8otf/HYq/OiQOri2iH8d0CnVb72tBdIQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || ^22.0.0}
peerDependencies:
release-it: ^17.0.0
- '@rollup/plugin-alias@5.0.1':
- resolution: {integrity: sha512-JObvbWdOHoMy9W7SU0lvGhDtWq9PllP5mjpAy+TUslZG/WzOId9u80Hsqq1vCUn9pFJ0cxpdcnAv+QzU2zFH3Q==}
+ '@rollup/plugin-alias@5.1.0':
+ resolution: {integrity: sha512-lpA3RZ9PdIG7qqhEfv79tBffNaoDuukFDrmhLqg9ifv99u/ehn+lOg30x2zmhf8AQqQUZaMk/B9fZraQ6/acDQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
@@ -1706,8 +1293,8 @@ packages:
rollup:
optional: true
- '@rollup/plugin-commonjs@25.0.7':
- resolution: {integrity: sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==}
+ '@rollup/plugin-commonjs@25.0.8':
+ resolution: {integrity: sha512-ZEZWTK5n6Qde0to4vS9Mr5x/0UZoqCxPVR9KRUjU4kA2sO7GEUn1fop0DAwpO6z0Nw/kJON9bDmSxdWxO/TT1A==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^2.68.0||^3.0.0||^4.0.0
@@ -1724,8 +1311,8 @@ packages:
rollup:
optional: true
- '@rollup/plugin-json@6.0.1':
- resolution: {integrity: sha512-RgVfl5hWMkxN1h/uZj8FVESvPuBJ/uf6ly6GTj0GONnkfoBN5KC0MSz+PN2OLDgYXMhtG0mWpTrkiOjoxAIevw==}
+ '@rollup/plugin-json@6.1.0':
+ resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
@@ -1742,8 +1329,8 @@ packages:
rollup:
optional: true
- '@rollup/plugin-replace@5.0.4':
- resolution: {integrity: sha512-E2hmRnlh09K8HGT0rOnnri9OTh+BILGr7NVJGB30S4E3cLRn3J0xjdiyOZ74adPs4NiAMgrjUMGAZNJDBgsdmQ==}
+ '@rollup/plugin-replace@5.0.7':
+ resolution: {integrity: sha512-PqxSfuorkHz/SPpyngLyg5GCEkOcee9M1bkxiVDr41Pd61mqP1PLOoDPbpl44SB2mQGKwV/In74gqQmGITOhEQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
@@ -1760,28 +1347,10 @@ packages:
rollup:
optional: true
- '@rollup/plugin-wasm@6.2.2':
- resolution: {integrity: sha512-gpC4R1G9Ni92ZIRTexqbhX7U+9estZrbhP+9SRb0DW9xpB9g7j34r+J2hqrcW/lRI7dJaU84MxZM0Rt82tqYPQ==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
- peerDependenciesMeta:
- rollup:
- optional: true
-
'@rollup/pluginutils@4.2.1':
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
engines: {node: '>= 8.0.0'}
- '@rollup/pluginutils@5.0.5':
- resolution: {integrity: sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
- peerDependenciesMeta:
- rollup:
- optional: true
-
'@rollup/pluginutils@5.1.0':
resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
engines: {node: '>=14.0.0'}
@@ -1791,83 +1360,83 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.19.0':
- resolution: {integrity: sha512-JlPfZ/C7yn5S5p0yKk7uhHTTnFlvTgLetl2VxqE518QgyM7C9bSfFTYvB/Q/ftkq0RIPY4ySxTz+/wKJ/dXC0w==}
+ '@rollup/rollup-android-arm-eabi@4.22.4':
+ resolution: {integrity: sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.19.0':
- resolution: {integrity: sha512-RDxUSY8D1tWYfn00DDi5myxKgOk6RvWPxhmWexcICt/MEC6yEMr4HNCu1sXXYLw8iAsg0D44NuU+qNq7zVWCrw==}
+ '@rollup/rollup-android-arm64@4.22.4':
+ resolution: {integrity: sha512-VXoK5UMrgECLYaMuGuVTOx5kcuap1Jm8g/M83RnCHBKOqvPPmROFJGQaZhGccnsFtfXQ3XYa4/jMCJvZnbJBdA==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.19.0':
- resolution: {integrity: sha512-emvKHL4B15x6nlNTBMtIaC9tLPRpeA5jMvRLXVbl/W9Ie7HhkrE7KQjvgS9uxgatL1HmHWDXk5TTS4IaNJxbAA==}
+ '@rollup/rollup-darwin-arm64@4.22.4':
+ resolution: {integrity: sha512-xMM9ORBqu81jyMKCDP+SZDhnX2QEVQzTcC6G18KlTQEzWK8r/oNZtKuZaCcHhnsa6fEeOBionoyl5JsAbE/36Q==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.19.0':
- resolution: {integrity: sha512-fO28cWA1dC57qCd+D0rfLC4VPbh6EOJXrreBmFLWPGI9dpMlER2YwSPZzSGfq11XgcEpPukPTfEVFtw2q2nYJg==}
+ '@rollup/rollup-darwin-x64@4.22.4':
+ resolution: {integrity: sha512-aJJyYKQwbHuhTUrjWjxEvGnNNBCnmpHDvrb8JFDbeSH3m2XdHcxDd3jthAzvmoI8w/kSjd2y0udT+4okADsZIw==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-linux-arm-gnueabihf@4.19.0':
- resolution: {integrity: sha512-2Rn36Ubxdv32NUcfm0wB1tgKqkQuft00PtM23VqLuCUR4N5jcNWDoV5iBC9jeGdgS38WK66ElncprqgMUOyomw==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.22.4':
+ resolution: {integrity: sha512-j63YtCIRAzbO+gC2L9dWXRh5BFetsv0j0va0Wi9epXDgU/XUi5dJKo4USTttVyK7fGw2nPWK0PbAvyliz50SCQ==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.19.0':
- resolution: {integrity: sha512-gJuzIVdq/X1ZA2bHeCGCISe0VWqCoNT8BvkQ+BfsixXwTOndhtLUpOg0A1Fcx/+eA6ei6rMBzlOz4JzmiDw7JQ==}
+ '@rollup/rollup-linux-arm-musleabihf@4.22.4':
+ resolution: {integrity: sha512-dJnWUgwWBX1YBRsuKKMOlXCzh2Wu1mlHzv20TpqEsfdZLb3WoJW2kIEsGwLkroYf24IrPAvOT/ZQ2OYMV6vlrg==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.19.0':
- resolution: {integrity: sha512-0EkX2HYPkSADo9cfeGFoQ7R0/wTKb7q6DdwI4Yn/ULFE1wuRRCHybxpl2goQrx4c/yzK3I8OlgtBu4xvted0ug==}
+ '@rollup/rollup-linux-arm64-gnu@4.22.4':
+ resolution: {integrity: sha512-AdPRoNi3NKVLolCN/Sp4F4N1d98c4SBnHMKoLuiG6RXgoZ4sllseuGioszumnPGmPM2O7qaAX/IJdeDU8f26Aw==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.19.0':
- resolution: {integrity: sha512-GlIQRj9px52ISomIOEUq/IojLZqzkvRpdP3cLgIE1wUWaiU5Takwlzpz002q0Nxxr1y2ZgxC2obWxjr13lvxNQ==}
+ '@rollup/rollup-linux-arm64-musl@4.22.4':
+ resolution: {integrity: sha512-Gl0AxBtDg8uoAn5CCqQDMqAx22Wx22pjDOjBdmG0VIWX3qUBHzYmOKh8KXHL4UpogfJ14G4wk16EQogF+v8hmA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.19.0':
- resolution: {integrity: sha512-N6cFJzssruDLUOKfEKeovCKiHcdwVYOT1Hs6dovDQ61+Y9n3Ek4zXvtghPPelt6U0AH4aDGnDLb83uiJMkWYzQ==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.22.4':
+ resolution: {integrity: sha512-3aVCK9xfWW1oGQpTsYJJPF6bfpWfhbRnhdlyhak2ZiyFLDaayz0EP5j9V1RVLAAxlmWKTDfS9wyRyY3hvhPoOg==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.19.0':
- resolution: {integrity: sha512-2DnD3mkS2uuam/alF+I7M84koGwvn3ZVD7uG+LEWpyzo/bq8+kKnus2EVCkcvh6PlNB8QPNFOz6fWd5N8o1CYg==}
+ '@rollup/rollup-linux-riscv64-gnu@4.22.4':
+ resolution: {integrity: sha512-ePYIir6VYnhgv2C5Xe9u+ico4t8sZWXschR6fMgoPUK31yQu7hTEJb7bCqivHECwIClJfKgE7zYsh1qTP3WHUA==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.19.0':
- resolution: {integrity: sha512-D6pkaF7OpE7lzlTOFCB2m3Ngzu2ykw40Nka9WmKGUOTS3xcIieHe82slQlNq69sVB04ch73thKYIWz/Ian8DUA==}
+ '@rollup/rollup-linux-s390x-gnu@4.22.4':
+ resolution: {integrity: sha512-GqFJ9wLlbB9daxhVlrTe61vJtEY99/xB3C8e4ULVsVfflcpmR6c8UZXjtkMA6FhNONhj2eA5Tk9uAVw5orEs4Q==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.19.0':
- resolution: {integrity: sha512-HBndjQLP8OsdJNSxpNIN0einbDmRFg9+UQeZV1eiYupIRuZsDEoeGU43NQsS34Pp166DtwQOnpcbV/zQxM+rWA==}
+ '@rollup/rollup-linux-x64-gnu@4.22.4':
+ resolution: {integrity: sha512-87v0ol2sH9GE3cLQLNEy0K/R0pz1nvg76o8M5nhMR0+Q+BBGLnb35P0fVz4CQxHYXaAOhE8HhlkaZfsdUOlHwg==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.19.0':
- resolution: {integrity: sha512-HxfbvfCKJe/RMYJJn0a12eiOI9OOtAUF4G6ozrFUK95BNyoJaSiBjIOHjZskTUffUrB84IPKkFG9H9nEvJGW6A==}
+ '@rollup/rollup-linux-x64-musl@4.22.4':
+ resolution: {integrity: sha512-UV6FZMUgePDZrFjrNGIWzDo/vABebuXBhJEqrHxrGiU6HikPy0Z3LfdtciIttEUQfuDdCn8fqh7wiFJjCNwO+g==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.19.0':
- resolution: {integrity: sha512-HxDMKIhmcguGTiP5TsLNolwBUK3nGGUEoV/BO9ldUBoMLBssvh4J0X8pf11i1fTV7WShWItB1bKAKjX4RQeYmg==}
+ '@rollup/rollup-win32-arm64-msvc@4.22.4':
+ resolution: {integrity: sha512-BjI+NVVEGAXjGWYHz/vv0pBqfGoUH0IGZ0cICTn7kB9PyjrATSkX+8WkguNjWoj2qSr1im/+tTGRaY+4/PdcQw==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.19.0':
- resolution: {integrity: sha512-xItlIAZZaiG/u0wooGzRsx11rokP4qyc/79LkAOdznGRAbOFc+SfEdfUOszG1odsHNgwippUJavag/+W/Etc6Q==}
+ '@rollup/rollup-win32-ia32-msvc@4.22.4':
+ resolution: {integrity: sha512-SiWG/1TuUdPvYmzmYnmd3IEifzR61Tragkbx9D3+R8mzQqDBz8v+BvZNDlkiTtI9T15KYZhP0ehn3Dld4n9J5g==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.19.0':
- resolution: {integrity: sha512-xNo5fV5ycvCCKqiZcpB65VMR11NJB+StnxHz20jdqRAktfdfzhgjTiJ2doTDQE/7dqGaV5I7ZGqKpgph6lCIag==}
+ '@rollup/rollup-win32-x64-msvc@4.22.4':
+ resolution: {integrity: sha512-j8pPKp53/lq9lMXN57S8cFz0MynJk8OWNuUnXct/9KCpKU7DgU3bYMJhwWmcqC0UU29p8Lr0/7KEVcaM6bf47Q==}
cpu: [x64]
os: [win32]
@@ -1893,11 +1462,23 @@ packages:
'@rushstack/ts-command-line@4.22.2':
resolution: {integrity: sha512-xkvrGd6D9dPlI3I401Thc640WNsEPB1sGEmy12a2VJaPQPwhE6Ik0gEVPZJ/2G1w213eaCAdxUY1xpiTulsmpA==}
- '@shikijs/core@1.11.2':
- resolution: {integrity: sha512-9IBY31lvOo2uhrZjqRt2wTqfqfrXJnddnIx0PFL5E8a5RQUNOhkx+PD11PogZtyrIHlL4aTYDVlb+eyryzy+pQ==}
+ '@shikijs/core@1.18.0':
+ resolution: {integrity: sha512-VK4BNVCd2leY62Nm2JjyxtRLkyrZT/tv104O81eyaCjHq4Adceq2uJVFJJAIof6lT1mBwZrEo2qT/T+grv3MQQ==}
+
+ '@shikijs/engine-javascript@1.18.0':
+ resolution: {integrity: sha512-qoP/aO/ATNwYAUw1YMdaip/YVEstMZEgrwhePm83Ll9OeQPuxDZd48szZR8oSQNQBT8m8UlWxZv8EA3lFuyI5A==}
- '@shikijs/transformers@1.11.2':
- resolution: {integrity: sha512-5ge1XsuZvboCID8onSGe546iVHNiSZBZMTCk+CAgTbiLGst8j0KlYKq8aaDGIg7wCt5yntvXDEq1u+pu5rdbdA==}
+ '@shikijs/engine-oniguruma@1.18.0':
+ resolution: {integrity: sha512-B9u0ZKI/cud+TcmF8Chyh+R4V5qQVvyDOqXC2l2a4x73PBSBc6sZ0JRAX3eqyJswqir6ktwApUUGBYePdKnMJg==}
+
+ '@shikijs/transformers@1.18.0':
+ resolution: {integrity: sha512-EdX/UIVaaS8qp9NWRyHIXp2dmuLpdVvx+UVpbIn9eafFlLemAuljPb2+K40ie6jrlg0uUIqkg25CM/8I34yBNw==}
+
+ '@shikijs/types@1.18.0':
+ resolution: {integrity: sha512-O9N36UEaGGrxv1yUrN2nye7gDLG5Uq0/c1LyfmxsvzNPqlHzWo9DI0A4+fhW2y3bGKuQu/fwS7EPdKJJCowcVA==}
+
+ '@shikijs/vscode-textmate@9.2.2':
+ resolution: {integrity: sha512-TMp15K+GGYrWlZM8+Lnj9EaHEFmOen0WJBrfa17hF7taDOYthuPPV0GWzfd/9iMij0akS/8Yw2ikquH7uVi/fg==}
'@sindresorhus/is@5.6.0':
resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==}
@@ -1907,31 +1488,8 @@ packages:
resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
engines: {node: '>=18'}
- '@stylistic/eslint-plugin-js@2.1.0':
- resolution: {integrity: sha512-gdXUjGNSsnY6nPyqxu6lmDTtVrwCOjun4x8PUn0x04d5ucLI74N3MT1Q0UhdcOR9No3bo5PGDyBgXK+KmD787A==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- peerDependencies:
- eslint: '>=8.40.0'
-
- '@stylistic/eslint-plugin-jsx@2.1.0':
- resolution: {integrity: sha512-mMD7S+IndZo2vxmwpHVTCwx2O1VdtE5tmpeNwgaEcXODzWV1WTWpnsc/PECQKIr/mkLPFWiSIqcuYNhQ/3l6AQ==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- peerDependencies:
- eslint: '>=8.40.0'
-
- '@stylistic/eslint-plugin-plus@2.1.0':
- resolution: {integrity: sha512-S5QAlgYXESJaSBFhBSBLZy9o36gXrXQwWSt6QkO+F0SrT9vpV5JF/VKoh+ojO7tHzd8Ckmyouq02TT9Sv2B0zQ==}
- peerDependencies:
- eslint: '*'
-
- '@stylistic/eslint-plugin-ts@2.1.0':
- resolution: {integrity: sha512-2ioFibufHYBALx2TBrU4KXovCkN8qCqcb9yIHc0fyOfTaO5jw4d56WW7YRcF3Zgde6qFyXwAN6z/+w4pnmos1g==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- peerDependencies:
- eslint: '>=8.40.0'
-
- '@stylistic/eslint-plugin@2.1.0':
- resolution: {integrity: sha512-cBBowKP2u/+uE5CzgH5w8pE9VKqcM7BXdIDPIbGt2rmLJGnA6MJPr9vYGaqgMoJFs7R/FzsMQerMvvEP40g2uw==}
+ '@stylistic/eslint-plugin@2.8.0':
+ resolution: {integrity: sha512-Ufvk7hP+bf+pD35R/QfunF793XlSRIC7USr3/EdgduK9j13i2JjmsM0LUz3/foS+jDYp2fzyWZA9N44CPur0Ow==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=8.40.0'
@@ -1940,24 +1498,8 @@ packages:
resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==}
engines: {node: '>=14.16'}
- '@tootallnate/quickjs-emscripten@0.23.0':
- resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==}
-
- '@tresjs/cientos@3.5.1':
- resolution: {integrity: sha512-GQARgRmw906U0VZKHtyG2zuEL6FjPPpJOzxpyLznfsqyXxQgBRStVIgsbuGgserhyTjFlvXTVn0oyDylABnfVA==}
- peerDependencies:
- '@tresjs/core': '>=3.2'
- three: '>=0.133'
- tweakpane: '>=3.0.0'
- vue: '>=3.3'
-
- '@tresjs/cientos@3.6.0':
- resolution: {integrity: sha512-VM6LamAFlcKufbrtbYN71ncuAw2JPVfKUC6Ey9+scq05qvHdQM8fU0WoppNZEtmIL7m2aUqroOZRnr9LXyZPCg==}
- peerDependencies:
- '@tresjs/core': '>=3.2'
- three: '>=0.133'
- tweakpane: '>=3.0.0'
- vue: '>=3.3'
+ '@tootallnate/quickjs-emscripten@0.23.0':
+ resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==}
'@tresjs/cientos@3.9.0':
resolution: {integrity: sha512-LAtMveKlecKvWh7TNWdwEs3nQUYMLqz9DZy0YhSZ6OVTfL2vevx2K4sH9744UME8OedUf4fkFFkX4OWQRHaDRQ==}
@@ -1967,9 +1509,10 @@ packages:
tweakpane: '>=3.0.0'
vue: '>=3.3'
- '@tresjs/core@3.4.1':
- resolution: {integrity: sha512-C48PNObHT9F85ci6xvo0ifngDQSSeZjKcxsaLyrHGq65XYGSN1XCFXA/FgsSE20WUkpeG2lPWBxNwE5dnhPqHw==}
+ '@tresjs/cientos@4.0.2':
+ resolution: {integrity: sha512-72Y+tHdysx+ZGv81c1kZixnLfc5bgMKKc2kacW6AQ2XSaRfDQ87ZRhQp78kHYgPNgx6SUd9mXGaub15brMGNFQ==}
peerDependencies:
+ '@tresjs/core': '>=4.2.1'
three: '>=0.133'
vue: '>=3.3'
@@ -1979,20 +1522,20 @@ packages:
three: '>=0.133'
vue: '>=3.3'
- '@tresjs/core@4.0.2':
- resolution: {integrity: sha512-+Shy5ch4m9gQSHRlArZAn4nv2apaFJJv21bAvpOKRXTCtGu0BakKGUpWcTzzmDsTs9t6yndbjCWzyifggjFpQQ==}
+ '@tresjs/core@3.9.0':
+ resolution: {integrity: sha512-6el70oXSduTvSA3XCI8/rQV2GzcgCLceZKA443CTU/MBPmRDULJ12q/UYl18Ij4CJ68rTqgVi0Da+WNMrs784A==}
peerDependencies:
three: '>=0.133'
- vue: '>=3.4'
+ vue: '>=3.3'
- '@tresjs/core@4.2.2':
- resolution: {integrity: sha512-CpNrICgqg9jGCrNMjWv+W2mNWChzbukA7hPi9D16YaQDNEzUFuc0fFwGVA5wLEigtEWcEJfQvkYiyEQ1uGcyjg==}
+ '@tresjs/core@4.2.10':
+ resolution: {integrity: sha512-ZKS/G9s86t69TfPUdvAzQkcgqvsLhTGhSKI0BssT/+RZDU0ueFMDKW8g15rNjvs/OM0KEHEPl/W8g87H1YhAbw==}
peerDependencies:
three: '>=0.133'
vue: '>=3.4'
- '@tresjs/eslint-config@1.1.0':
- resolution: {integrity: sha512-Iyxqj1MMLC6TnFxFG9UtPkJgxOWqxF2gJfuMvHF/oRpQQKrMNlPUqJdV6ieQoGjLVTfudnHOSYv9Sl96zZSgfA==}
+ '@tresjs/eslint-config@1.3.1':
+ resolution: {integrity: sha512-6bUTERPINUY4kTq54+EShmA4krEP7JI1V6me2pgZAic0GtROPltCOVPq3Av2J87grQ6GFsLq0B1m3R279olSAw==}
peerDependencies:
eslint: 9.x
@@ -2001,8 +1544,8 @@ packages:
peerDependencies:
vue: '>=3.3.4'
- '@tresjs/nuxt@1.2.2':
- resolution: {integrity: sha512-t+CzZvyRxkolLqP+o1nlfSf5qu5hJN43jKc04rBp5HXA0XqDHnL+351vEmXzG/3H+s3sTuKJlBMJh0smyRGDfQ==}
+ '@tresjs/nuxt@1.3.0':
+ resolution: {integrity: sha512-qcz2b6VCC8DLVq3ODl7Y14lFHTDdr7OrOgPqt2Cs6NBKSJJcqCVRMysp3i0/n1AnMCk0WDgYK5fKGvFtJbEQ0g==}
peerDependencies:
three: '>=0.133'
@@ -2013,29 +1556,23 @@ packages:
'@tweenjs/tween.js@18.6.4':
resolution: {integrity: sha512-lB9lMjuqjtuJrx7/kOkqQBtllspPIN+96OvTCeJ2j5FEzinoAXTdAMFnDAQT1KVPRlnYfBrqxtqP66vDM40xxQ==}
- '@tweenjs/tween.js@23.1.2':
- resolution: {integrity: sha512-kMCNaZCJugWI86xiEHaY338CU5JpD0B97p1j1IKNn/Zto8PgACjQx0UxbHjmOcLl/dDOBnItwD07KmCs75pxtQ==}
-
'@tweenjs/tween.js@23.1.3':
resolution: {integrity: sha512-vJmvvwFxYuGnF2axRtPYocag6Clbb5YS7kLL+SO/TeVFzHqDIWrNKYtcsPMibjDx9O+bu+psAy9NKfWklassUA==}
'@types/argparse@1.0.38':
resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==}
+ '@types/debug@4.1.12':
+ resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
+
'@types/draco3d@1.4.10':
resolution: {integrity: sha512-AX22jp8Y7wwaBgAixaSvkoG4M/+PlAcm3Qs4OW8yT9DM4xUpWKeFhLueTAyZF39pviAdcDdeJoACapiAceqNcw==}
- '@types/eslint@8.56.10':
- resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==}
-
- '@types/estree@1.0.1':
- resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==}
-
'@types/estree@1.0.5':
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
- '@types/hast@3.0.3':
- resolution: {integrity: sha512-2fYGlaDy/qyLlhidX42wAH0KBi2TCjKMH8CHmBXgRlJ3Y+OXTiqsPQ6IWarZKwF1JoUcAJdPogv1d4b0COTpmQ==}
+ '@types/estree@1.0.6':
+ resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
'@types/hast@3.0.4':
resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
@@ -2043,11 +1580,8 @@ packages:
'@types/http-cache-semantics@4.0.4':
resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==}
- '@types/http-proxy@1.17.13':
- resolution: {integrity: sha512-GkhdWcMNiR5QSQRYnJ+/oXzu0+7JJEPC8vkWXK351BkhjraZF+1W13CUYARUvX9+NqIU2n6YHA4iwywsc/M6Sw==}
-
- '@types/json-schema@7.0.14':
- resolution: {integrity: sha512-U3PUjAudAdJBeC2pgN8uTIKgxrb4nlDF3SF0++EldXQvQBGkpFZMSnwQiIoDU77tv45VgNkl/L4ouD+rEomujw==}
+ '@types/http-proxy@1.17.15':
+ resolution: {integrity: sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==}
'@types/linkify-it@3.0.5':
resolution: {integrity: sha512-yg6E+u0/+Zjva+buc3EIb+29XEg4wltq7cSmd4Uc2EE/1nUVmxyzpX6gUXD0V8jIrG0r7YeOGVIbYRkxeooCtw==}
@@ -2055,17 +1589,14 @@ packages:
'@types/linkify-it@5.0.0':
resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==}
- '@types/markdown-it@13.0.7':
- resolution: {integrity: sha512-U/CBi2YUUcTHBt5tjO2r5QV/x0Po6nsYwQU4Y04fBS6vfoImaiZ6f8bi3CjTCxBPQSO1LMyUqkByzi8AidyxfA==}
+ '@types/markdown-it@13.0.9':
+ resolution: {integrity: sha512-1XPwR0+MgXLWfTn9gCsZ55AHOKW1WN+P9vr0PaQh5aerR9LLQXUbjfEAFhjmEmyoYFWAyuN2Mqkn40MZ4ukjBw==}
'@types/markdown-it@14.1.2':
resolution: {integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==}
- '@types/mdast@3.0.14':
- resolution: {integrity: sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==}
-
- '@types/mdast@4.0.3':
- resolution: {integrity: sha512-LsjtqsyF+d2/yFOYaN22dHZI1Cpwkrj+g06G8+qtUKlhovPW89YhqSnfKtMbkgmEtYpH2gydRNULd6y8mciAFg==}
+ '@types/mdast@4.0.4':
+ resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
'@types/mdurl@1.0.5':
resolution: {integrity: sha512-6L6VymKTzYSrEf4Nev4Xa1LCHKrlTlYCBMTlQKFuddo1CvQcE52I0mwfOJayueUC7MJuXOeHTcIU683lzd0cUA==}
@@ -2073,14 +1604,11 @@ packages:
'@types/mdurl@2.0.0':
resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==}
- '@types/node@20.14.12':
- resolution: {integrity: sha512-r7wNXakLeSsGT0H1AU863vS2wa5wBOK4bWMjZz2wj+8nBx+m5PeIn0k8AloSLpRuiwdRQZwarZqHE4FNArPuJQ==}
+ '@types/ms@0.7.34':
+ resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
- '@types/node@20.8.9':
- resolution: {integrity: sha512-UzykFsT3FhHb1h7yD4CA4YhBHq545JC0YnEz41xkipN88eKQtL6rSgocL5tbAP6Ola9Izm/Aw4Ora8He4x0BHg==}
-
- '@types/normalize-package-data@2.4.3':
- resolution: {integrity: sha512-ehPtgRgaULsFG8x0NeYJvmyH1hmlfsNLujHe9dQEia/7MAJYdzMSi19JtchUHjmBA6XC/75dK55mzZH+RyieSg==}
+ '@types/node@22.5.5':
+ resolution: {integrity: sha512-Xjs4y5UPO/CLdzpgR6GirZJx36yScjh73+2NlLlkFRSoQN8B0DpfXPdZGnvVmLRLOsqDpOfTNv7D9trgGhmOIA==}
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -2091,8 +1619,8 @@ packages:
'@types/resolve@1.20.2':
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
- '@types/stats.js@0.17.2':
- resolution: {integrity: sha512-j1oI+BOPiAAAKFysNNutE9aAIjvHqqILubCs2EeHKc19pi4uybaGAgBfLXsCgJYcyKWkiilEvl8CkFF/SL+baA==}
+ '@types/semver@7.5.8':
+ resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
'@types/stats.js@0.17.3':
resolution: {integrity: sha512-pXNfAD3KHOdif9EQXZ9deK82HVNaXP5ZIF5RP2QG6OQFNTaY2YIetfrE9t528vEreGQvEPRDDc8muaoYeK0SxQ==}
@@ -2100,299 +1628,289 @@ packages:
'@types/three@0.152.1':
resolution: {integrity: sha512-PMOCQnx9JRmq+2OUGTPoY9h1hTWD2L7/nmuW/SyNq1Vbq3Lwt3MNdl3wYSa4DvLTGv62NmIXD9jYdAOwohwJyw==}
- '@types/three@0.157.2':
- resolution: {integrity: sha512-2kykrMgvO5LTAiahadM6ijoER+GcbEJ61pQVOyGxIJTCASoUnzwJvfhilsLxvEw4+glzhLYUDvvTvNjx+58Vzw==}
+ '@types/three@0.159.0':
+ resolution: {integrity: sha512-2gybdh7HtX+rGUgslzK7QEJfzD2I0qrbUGzKk+dK0FDx49UHkNX0rqZVRzIgeFjBd1HzzhNNgwNoMacm3Wyc7w==}
'@types/three@0.163.0':
resolution: {integrity: sha512-uIdDhsXRpQiBUkflBS/i1l3JX14fW6Ot9csed60nfbZNXHDTRsnV2xnTVwXcgbvTiboAR4IW+t+lTL5f1rqIqA==}
- '@types/three@0.164.0':
- resolution: {integrity: sha512-SFDofn9dJVrE+1DKta7xj7lc4ru7B3S3yf10NsxOserW57aQlB6GxtAS1UK5To3LfEMN5HUHMu3n5v+M5rApgA==}
-
- '@types/three@0.167.0':
- resolution: {integrity: sha512-BC+Vbm0d6yMzct7dhTBe9ZjEh6ygupyn1k/UcZncIIS/5aNIbfvF77gQw1IFP09Oyj1UxWj0EUBBqc1GkqzsOw==}
+ '@types/three@0.164.1':
+ resolution: {integrity: sha512-dR/trWDhyaNqJV38rl1TonlCA9DpnX7OPYDWD81bmBGn/+uEc3+zNalFxQcV4FlPTeDBhCY3SFWKvK6EJwL88g==}
- '@types/unist@2.0.9':
- resolution: {integrity: sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ==}
+ '@types/three@0.167.2':
+ resolution: {integrity: sha512-onxnIUNYpXcZJ5DTiIsxfnr4F9kAWkkxAUWx5yqzz/u0a4IygCLCjMuOl2DEeCxyJdJ2nOJZvKpu48sBMqfmkQ==}
- '@types/unist@3.0.2':
- resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==}
+ '@types/unist@3.0.3':
+ resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
'@types/web-bluetooth@0.0.20':
resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
- '@types/webxr@0.5.16':
- resolution: {integrity: sha512-0E0Cl84FECtzrB4qG19TNTqpunw0F1YF0QZZnFMF6pDw1kNKJtrlTKlVB34stGIsHbZsYQ7H0tNjPfZftkHHoA==}
+ '@types/webxr@0.5.20':
+ resolution: {integrity: sha512-JGpU6qiIJQKUuVSKx1GtQnHJGxRjtfGIhzO2ilq43VZZS//f1h1Sgexbdk+Lq+7569a6EYhOWrUpIruR/1Enmg==}
- '@types/webxr@0.5.19':
- resolution: {integrity: sha512-4hxA+NwohSgImdTSlPXEqDqqFktNgmTXQ05ff1uWam05tNGroCMp4G+4XVl6qWm1p7GQ/9oD41kAYsSssF6Mzw==}
-
- '@types/webxr@0.5.7':
- resolution: {integrity: sha512-Rcgs5c2eNFnHp53YOjgtKfl/zWX1Y+uFGUwlSXrWcZWu3yhANRezmph4MninmqybUYT6g9ZE0aQ9QIdPkLR3Kg==}
-
- '@typescript-eslint/eslint-plugin@7.9.0':
- resolution: {integrity: sha512-6e+X0X3sFe/G/54aC3jt0txuMTURqLyekmEHViqyA2VnxhLMpvA6nqmcjIy+Cr9tLDHPssA74BP5Mx9HQIxBEA==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/eslint-plugin@8.6.0':
+ resolution: {integrity: sha512-UOaz/wFowmoh2G6Mr9gw60B1mm0MzUtm6Ic8G2yM1Le6gyj5Loi/N+O5mocugRGY+8OeeKmkMmbxNqUCq3B4Sg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- '@typescript-eslint/parser': ^7.0.0
- eslint: ^8.56.0
+ '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
+ eslint: ^8.57.0 || ^9.0.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- '@typescript-eslint/parser@7.9.0':
- resolution: {integrity: sha512-qHMJfkL5qvgQB2aLvhUSXxbK7OLnDkwPzFalg458pxQgfxKDfT1ZDbHQM/I6mDIf/svlMkj21kzKuQ2ixJlatQ==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/parser@8.6.0':
+ resolution: {integrity: sha512-eQcbCuA2Vmw45iGfcyG4y6rS7BhWfz9MQuk409WD47qMM+bKCGQWXxvoOs1DUp+T7UBMTtRTVT+kXr7Sh4O9Ow==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.56.0
+ eslint: ^8.57.0 || ^9.0.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- '@typescript-eslint/scope-manager@7.9.0':
- resolution: {integrity: sha512-ZwPK4DeCDxr3GJltRz5iZejPFAAr4Wk3+2WIBaj1L5PYK5RgxExu/Y68FFVclN0y6GGwH8q+KgKRCvaTmFBbgQ==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/scope-manager@8.6.0':
+ resolution: {integrity: sha512-ZuoutoS5y9UOxKvpc/GkvF4cuEmpokda4wRg64JEia27wX+PysIE9q+lzDtlHHgblwUWwo5/Qn+/WyTUvDwBHw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@7.9.0':
- resolution: {integrity: sha512-6Qy8dfut0PFrFRAZsGzuLoM4hre4gjzWJB6sUvdunCYZsYemTkzZNwF1rnGea326PHPT3zn5Lmg32M/xfJfByA==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/type-utils@8.6.0':
+ resolution: {integrity: sha512-dtePl4gsuenXVwC7dVNlb4mGDcKjDT/Ropsk4za/ouMBPplCLyznIaR+W65mvCvsyS97dymoBRrioEXI7k0XIg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.56.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- '@typescript-eslint/types@7.9.0':
- resolution: {integrity: sha512-oZQD9HEWQanl9UfsbGVcZ2cGaR0YT5476xfWE0oE5kQa2sNK2frxOlkeacLOTh9po4AlUT5rtkGyYM5kew0z5w==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/types@8.6.0':
+ resolution: {integrity: sha512-rojqFZGd4MQxw33SrOy09qIDS8WEldM8JWtKQLAjf/X5mGSeEFh5ixQlxssMNyPslVIk9yzWqXCsV2eFhYrYUw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@7.9.0':
- resolution: {integrity: sha512-zBCMCkrb2YjpKV3LA0ZJubtKCDxLttxfdGmwZvTqqWevUPN0FZvSI26FalGFFUZU/9YQK/A4xcQF9o/VVaCKAg==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/typescript-estree@8.6.0':
+ resolution: {integrity: sha512-MOVAzsKJIPIlLK239l5s06YXjNqpKTVhBVDnqUumQJja5+Y94V3+4VUFRA0G60y2jNnTVwRCkhyGQpavfsbq/g==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- '@typescript-eslint/utils@7.9.0':
- resolution: {integrity: sha512-5KVRQCzZajmT4Ep+NEgjXCvjuypVvYHUW7RHlXzNPuak2oWpVoD1jf5xCP0dPAuNIchjC7uQyvbdaSTFaLqSdA==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/utils@8.6.0':
+ resolution: {integrity: sha512-eNp9cWnYf36NaOVjkEUznf6fEgVy1TWpE0o52e4wtojjBx7D1UV2WAWGzR+8Y5lVFtpMLPwNbC67T83DWSph4A==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.56.0
+ eslint: ^8.57.0 || ^9.0.0
- '@typescript-eslint/visitor-keys@7.9.0':
- resolution: {integrity: sha512-iESPx2TNLDNGQLyjKhUvIKprlP49XNEK+MvIf9nIO7ZZaZdbnfWKHnXAgufpxqfA0YryH8XToi4+CjBgVnFTSQ==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/visitor-keys@8.6.0':
+ resolution: {integrity: sha512-wapVFfZg9H0qOYh4grNVQiMklJGluQrOUiOhYRrQWhx7BY/+I1IYb8BczWNbbUpO+pqy0rDciv3lQH5E1bCLrg==}
+ 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.7.4':
- resolution: {integrity: sha512-xanQMtGmgikqTvDtuyJy6GXgqvUXOdrdnIyqAabpeS8goD8udxo0stzjtbT8ERbMQibzPGSGcN+Ux+MKoWzrjQ==}
+ '@unhead/dom@1.11.6':
+ resolution: {integrity: sha512-FYU8Cu+XWcpbO4OvXdB6x7m6GTPcl6CW7igI8rNu6Kc0Ilxb+atxIvyFXdTGAyB7h/F0w3ex06ZVWJ65f3EW8A==}
- '@unhead/schema@1.7.4':
- resolution: {integrity: sha512-wUL4CK0NSEm3KH4kYsiqVYQw5xBk1hpBi5tiNj0BTZgpQVrRufICdK5EHA9Fh7OIAR6tOTWwTvsf5+nK0BgQDA==}
+ '@unhead/schema@1.11.6':
+ resolution: {integrity: sha512-Ava5+kQERaZ2fi66phgR9KZQr9SsheN1YhhKM8fCP2A4Jb5lHUssVQ19P0+89V6RX9iUg/Q27WdEbznm75LzhQ==}
- '@unhead/shared@1.7.4':
- resolution: {integrity: sha512-YUNA2UxAuDPnDps41BQ8aEIY5hdyvruSB1Vs3AALhRo07MxMivSq5DjNKfYr/JvRN6593RtfI1NHnP9x5M57xA==}
+ '@unhead/shared@1.11.6':
+ resolution: {integrity: sha512-aGrtzRCcFlVh9iru73fBS8FA1vpQskS190t5cCRRMpisOEunVv3ueqXN1F8CseQd0W4wyEr/ycDvdfKt+RPv5g==}
- '@unhead/ssr@1.7.4':
- resolution: {integrity: sha512-2QqaHdC48XJGP9Pd0F2fblPv9/6G4IU04iZ5qLRAs6MFFmFEzrdvoooFlcwdcoH/WDGRnpYBmo+Us2nzQz1MMQ==}
+ '@unhead/ssr@1.11.6':
+ resolution: {integrity: sha512-jmRkJB3UWlaAV6aoTBcsi2cLOje8hJxWqbmcLmekmCBZcCgR8yHEjxVCzLtYnAQg68Trgg9+uqMt+8UFY40tDA==}
- '@unhead/vue@1.7.4':
- resolution: {integrity: sha512-ZfgzOhg1Bxo9xwp3upawqerw4134hc9Lhz6t005ixcBwPX+39Wpgc9dC3lf+owFQEVuWkf8F+eAwK2sghVBK4A==}
+ '@unhead/vue@1.11.6':
+ resolution: {integrity: sha512-CMuDJGTi4n4wKdOp6/JmB9roGshjTdoFKF34PEkXu4+g97BiVFiZ9LvgY44+UlWCUzQHcqEPRQIzm9iKEqcfKw==}
peerDependencies:
vue: '>=2.7 || >=3'
- '@unocss/astro@0.58.0':
- resolution: {integrity: sha512-df+tEFO5eKXjQOwSWQhS9IdjD0sfLHLtn8U09sEKR2Nmh5CvpwyBxmvLQgOCilPou7ehmyKfsyGRLZg7IMp+Ew==}
+ '@unocss/astro@0.58.9':
+ resolution: {integrity: sha512-VWfHNC0EfawFxLfb3uI+QcMGBN+ju+BYtutzeZTjilLKj31X2UpqIh8fepixL6ljgZzB3fweqg2xtUMC0gMnoQ==}
peerDependencies:
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
peerDependenciesMeta:
vite:
optional: true
- '@unocss/astro@0.61.5':
- resolution: {integrity: sha512-keyh6/EsPMBEiLguaOsh47UcMkWCGT0rW3KV5aYRUfYXlgccSzDd4SLmTNsdlGXIso2XCl/14BJQuwjP0UEU0Q==}
+ '@unocss/astro@0.61.9':
+ resolution: {integrity: sha512-adOXz4itYHxqhvQgJHlEU58EHDTtY2qrcEPVmQVk4qI1W+ezQV6nQMQvti8mS/HbFw3MOJhIY1MlJoZK36/cyw==}
peerDependencies:
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
peerDependenciesMeta:
vite:
optional: true
- '@unocss/cli@0.58.0':
- resolution: {integrity: sha512-rhsrDBxAVueygMcAbMkbuvsHbBL2rG6N96LllYwHn16FLgOE3Sf4JW1/LlNjQje3BtwMMtbSCCAeu2SryFhzbw==}
+ '@unocss/cli@0.58.9':
+ resolution: {integrity: sha512-q7qlwX3V6UaqljWUQ5gMj36yTA9eLuuRywahdQWt1ioy4aPF/MEEfnMBZf/ntrqf5tIT5TO8fE11nvCco2Q/sA==}
engines: {node: '>=14'}
hasBin: true
- '@unocss/cli@0.61.5':
- resolution: {integrity: sha512-Y5mKSoQGEYRmjUi5Tia3EesQbLgQTTPGmeE7LFrbeyP1c7PDiW3wSR5fRNZ7PBrr6/C5oo2sId3MhWJQl3tFSA==}
+ '@unocss/cli@0.61.9':
+ resolution: {integrity: sha512-W5pN2cOKAOkeKKXMqsGD/J7dpEAmxODtOH2Afjk41qsjqUlzGlUbmgG9PjAz7TDHrAmvuf3nvmMeeT3fii2UFg==}
engines: {node: '>=14'}
hasBin: true
- '@unocss/config@0.58.0':
- resolution: {integrity: sha512-WQD29gCZ7cajnMzezD1PRW0qQSxo/C6PX9ktygwhdinFx9nXuLZnKFOz65TiI8y48e53g1i7ivvgY3m4Sq5mIg==}
+ '@unocss/config@0.58.9':
+ resolution: {integrity: sha512-90wRXIyGNI8UenWxvHUcH4l4rgq813MsTzYWsf6ZKyLLvkFjV2b2EfGXI27GPvZ7fVE1OAqx+wJNTw8CyQxwag==}
engines: {node: '>=14'}
- '@unocss/config@0.61.5':
- resolution: {integrity: sha512-VIIln/1aD9cqU95+3IVZG9U1yO7Ys6RqyqtgD5pIJ77rg57v/2sey+S2ScFx3KB24Bal3FxAgHA5CdjFpQZldA==}
+ '@unocss/config@0.61.9':
+ resolution: {integrity: sha512-ATvZEFMQiW3/oUaaplVMBYuagEELtnLbHSYH4pUGbJ5MALAfV98mZRyk4FkKkYoMYqWLGdCylzpgMPFDOuFQlQ==}
engines: {node: '>=14'}
'@unocss/core@0.57.7':
resolution: {integrity: sha512-1d36M0CV3yC80J0pqOa5rH1BX6g2iZdtKmIb3oSBN4AWnMCSrrJEPBrUikyMq2TEQTrYWJIVDzv5A9hBUat3TA==}
- '@unocss/core@0.58.0':
- resolution: {integrity: sha512-KhABQXGE2AgtO9vE28d+HnciuyGDcuygsnQdUwlzUuR4K05OSw2kRE9emRN4HaMycD+gA/zDbQrJxTXb6mQUiA==}
+ '@unocss/core@0.58.9':
+ resolution: {integrity: sha512-wYpPIPPsOIbIoMIDuH8ihehJk5pAZmyFKXIYO/Kro98GEOFhz6lJoLsy6/PZuitlgp2/TSlubUuWGjHWvp5osw==}
- '@unocss/core@0.61.5':
- resolution: {integrity: sha512-hB8zr2rnrCzz9x8ho2SAXQiYTEjwAPMiBzpaEe2C0+CFWeL1179h9508YVyZHHAzMyZILIG9YrVAWrrMdt2/Xg==}
+ '@unocss/core@0.61.9':
+ resolution: {integrity: sha512-2W1YZQIWXcueGdbXU/ZCqn/8yQhWk8e8kAHFkVlbc9rictkd2UmPB9nIZ8Ii1tMwt6F0TT6vfHbLJEGCV08o2g==}
- '@unocss/extractor-arbitrary-variants@0.58.0':
- resolution: {integrity: sha512-s9wK2UugJM0WK1HpgPz2kTbpeyQc46zais+nauN/ykVX6NMq8PtGzSWszzf+0aIbtWAQGiqAfiYNTpf09tJHfg==}
+ '@unocss/extractor-arbitrary-variants@0.58.9':
+ resolution: {integrity: sha512-M/BvPdbEEMdhcFQh/z2Bf9gylO1Ky/ZnpIvKWS1YJPLt4KA7UWXSUf+ZNTFxX+X58Is5qAb5hNh/XBQmL3gbXg==}
- '@unocss/extractor-arbitrary-variants@0.61.5':
- resolution: {integrity: sha512-UB1EweAaJrUxv+h3n5FqoizKHrnUgUzkdmOdJTfV6xvow90ITqbUoza+L6iVMNfcrcXTx8QpDnWh6rhLRyKY+g==}
+ '@unocss/extractor-arbitrary-variants@0.61.9':
+ resolution: {integrity: sha512-ii42/hKbhgeBBOy86729t6/HeGmxUcHM8FprPeb/v/DfYsCkjDvMYVynX3FN/K5pR2WV+HHp6TQS7GbTmRIN0g==}
- '@unocss/inspector@0.58.0':
- resolution: {integrity: sha512-ZC4QauFGdh3/VkzW/FqkO2R03JEbzGNuX0DK03pwas8/jFIGh8pPldesj8GEKm1YWr1emx9cw7JUnhR8XSUBlA==}
+ '@unocss/inspector@0.58.9':
+ resolution: {integrity: sha512-uRzqkCNeBmEvFePXcfIFcQPMlCXd9/bLwa5OkBthiOILwQdH1uRIW3GWAa2SWspu+kZLP0Ly3SjZ9Wqi+5ZtTw==}
- '@unocss/inspector@0.61.5':
- resolution: {integrity: sha512-DIT+hgTphHXZTJEe4ZWUoYoQUNszmVJr06+gGhBkKwpdetQa6B2N+zGLkAxgAvo/BUmk29tOORIBu7AyoloRUA==}
+ '@unocss/inspector@0.61.9':
+ resolution: {integrity: sha512-kUcQ/h8/yAfkqL2eCGVFyB0IGSPdR0dx2HH4V+mdSMfd8yKFR/BQys3mBvqZwSZu5a0+iisFHHq9wr+/I5DtHQ==}
- '@unocss/postcss@0.58.0':
- resolution: {integrity: sha512-2hAwLbfUFqysi8FN1cn3xkHy5GhLMlYy6W4NrAZ2ws7F2MKpsCT2xCj7dT5cI2tW8ulD2YoVbKH15dBhNsMNUA==}
+ '@unocss/postcss@0.58.9':
+ resolution: {integrity: sha512-PnKmH6Qhimw35yO6u6yx9SHaX2NmvbRNPDvMDHA/1xr3M8L0o8U88tgKbWfm65NEGF3R1zJ9A8rjtZn/LPkgPA==}
engines: {node: '>=14'}
peerDependencies:
postcss: ^8.4.21
- '@unocss/postcss@0.61.5':
- resolution: {integrity: sha512-FbN9G3v5X6TEzBRytnFvqOr1oeeUv1ZzprBIyXnQFg17D8rx7uRS9kAfUMoSiqAqnFxkJObv43fH+W3E41+JYQ==}
+ '@unocss/postcss@0.61.9':
+ resolution: {integrity: sha512-HuFE/TUH6tt5f/AwiKNhQ/FO/lvFeW0JHPkx9SCURcKKoD3rpJUbhTqVv7c0zlCVQnRFX0hxpimoetp5Dh8qdA==}
engines: {node: '>=14'}
peerDependencies:
postcss: ^8.4.21
- '@unocss/preset-attributify@0.58.0':
- resolution: {integrity: sha512-Ew78noYes12K9gk4dF36MkjpiIqTi1XVqcniiAzxCkzuctxN4B57vW3LVTwjInGmWNNKWN3UNR4q1o0VxH4xJg==}
+ '@unocss/preset-attributify@0.58.9':
+ resolution: {integrity: sha512-ucP+kXRFcwmBmHohUVv31bE/SejMAMo7Hjb0QcKVLyHlzRWUJsfNR+jTAIGIUSYxN7Q8MeigYsongGo3nIeJnQ==}
- '@unocss/preset-attributify@0.61.5':
- resolution: {integrity: sha512-D2KDHPj8Qvp0hafA4JT5GXebO49gHsuKT6QvzwBpP9wzwAefAkd6PIY8cSKqSD6sjjVSfOpCfbZIzbwLEbXV5w==}
+ '@unocss/preset-attributify@0.61.9':
+ resolution: {integrity: sha512-AHlEF7PiIBz1jHZZ62+AZ1u5ITrPNL/mgN8XyKwocoAr9HH8aQ3xzUgIuEX6vfV4a8rTdawffY99BQ12msePWQ==}
- '@unocss/preset-icons@0.58.0':
- resolution: {integrity: sha512-niT32avw+8l+L40LGhrmX6qDV9Z8/gOn4xjjRhLZZouKni3CJOpz9taILyF4xp1nak5nxGT4wa0tuC/htvOF5A==}
+ '@unocss/preset-icons@0.58.9':
+ resolution: {integrity: sha512-9dS48+yAunsbS0ylOW2Wisozwpn3nGY1CqTiidkUnrMnrZK3al579A7srUX9NyPWWDjprO7eU/JkWbdDQSmFFA==}
- '@unocss/preset-icons@0.61.5':
- resolution: {integrity: sha512-Fx1WZz6A7wtUDU+mt6KdjWOu9fEGG2XgzE8t8YFfUu22KjXyyef7Lto90uUNs9z+vYLevXqeDfthOZQFwNSfIg==}
+ '@unocss/preset-icons@0.61.9':
+ resolution: {integrity: sha512-5XZO511ksu3EVwpV2nIZKa5NzyJAb+JARKaUpQIXssHUVdRKk5nJYr1XtrpBDLgB6VEf/1skViLEa1bpOUI5Wg==}
- '@unocss/preset-mini@0.58.0':
- resolution: {integrity: sha512-oMliJZVTN3ecAvf52yN+MyJszaJOZoKwMMbUAFqVis62MaqRzZ8mSw12QFLFyX2pltulDFpMBTAKro+hP0wXEg==}
+ '@unocss/preset-mini@0.58.9':
+ resolution: {integrity: sha512-m4aDGYtueP8QGsU3FsyML63T/w5Mtr4htme2jXy6m50+tzC1PPHaIBstMTMQfLc6h8UOregPJyGHB5iYQZGEvQ==}
- '@unocss/preset-mini@0.61.5':
- resolution: {integrity: sha512-gVm7Z9X0krx8CK/+pKAqcVmpqzRk1+SH7bfgRxKtKhyFSxJlwpjNp1rKm3gCT0F1Tlp3d8aufYRksaXGZhs8Ow==}
+ '@unocss/preset-mini@0.61.9':
+ resolution: {integrity: sha512-qhagWfdM7ytRWf4wFfrAcdeCUCVD9wDVrM+9evAmuOnMXWEiVZCjfwhjjFu+8lM7g+38n+gi7VcrNuTiZ8fHBA==}
- '@unocss/preset-tagify@0.58.0':
- resolution: {integrity: sha512-I+dzfs/bofiGb2AUxkhcTDhB+r2+/3SO81PFwf3Ae7afnzhA2SLsKAkEqO8YN3M3mwZL7IfXn6vpsWeEAlk/yw==}
+ '@unocss/preset-tagify@0.58.9':
+ resolution: {integrity: sha512-obh75XrRmxYwrQMflzvhQUMeHwd/R9bEDhTWUW9aBTolBy4eNypmQwOhHCKh5Xi4Dg6o0xj6GWC/jcCj1SPLog==}
- '@unocss/preset-tagify@0.61.5':
- resolution: {integrity: sha512-kxO20pV7Bwg7U3hPpxShFSn6CXH+EMaTFC+WXsh2wTOEs43Tta7L6kCSUPzrZ9pX/Pq4oInRQY9gqiZqlGETmQ==}
+ '@unocss/preset-tagify@0.61.9':
+ resolution: {integrity: sha512-E+54+uSe+btOnQDlh8XjDUXhwxJd6/TL/8Rdl+7Pg6m+JNXudEt7xOd81L/KlDPD2tYYH9g/dQUaDN5aJyfRPQ==}
- '@unocss/preset-typography@0.58.0':
- resolution: {integrity: sha512-8qo+Z1CJtXFMDbAvtizUTRLuLxCIzytgYU0GmuRkfc2iwASSDNDsvh8nAYQfWpyAEOV7QEHtS9c9xL4b0c89FA==}
+ '@unocss/preset-typography@0.58.9':
+ resolution: {integrity: sha512-hrsaqKlcZni3Vh4fwXC+lP9e92FQYbqtmlZw2jpxlVwwH5aLzwk4d4MiFQGyhCfzuSDYm0Zd52putFVV02J7bA==}
- '@unocss/preset-typography@0.61.5':
- resolution: {integrity: sha512-CQIleFkmfk/dAOlY7nPA1SOYHzXA6ia7+BCqGrTKxQVFOyBL7iHeNl0yV7lFtKFQn8zyFNEiBVW+fYi0QrouYw==}
+ '@unocss/preset-typography@0.61.9':
+ resolution: {integrity: sha512-ZDoRViHtzI1Ny0sZyjajeCGEdFQCBn5CeIYgxO/KCpN107KTGLnYfoabv0gHtj/qaeAh30obeOMxZaIuxYoW3Q==}
- '@unocss/preset-uno@0.58.0':
- resolution: {integrity: sha512-DpgfjtvSgsWeyZH+jQHc1k5IReiZNb7oGpHVnfF6SlHETTnMHSeNetxkPQWYrqJLPI6llNLPTdTa5j47NtmOiA==}
+ '@unocss/preset-uno@0.58.9':
+ resolution: {integrity: sha512-Fze+X2Z/EegCkRdDRgwwvFBmXBenNR1AG8KxAyz8iPeWbhOBaRra2sn2ScryrfH6SbJHpw26ZyJXycAdS0Fq3A==}
- '@unocss/preset-uno@0.61.5':
- resolution: {integrity: sha512-CflB0l9CeZx+b/Q8mA4Ow4d63Caf+vFJ+1EGA06jG9qYjPLy76Rkci//0m9cEtO+vPnYtgLc7HZAZv0X6wh4Tg==}
+ '@unocss/preset-uno@0.61.9':
+ resolution: {integrity: sha512-N4R/BCMphrHvAMZ+qgR/FPoh724uXDuZ/1DEGuirUQJMg7makqrI6czL+P99q1bP8nWzxWEXiRXnKKLiyD9pJw==}
- '@unocss/preset-web-fonts@0.58.0':
- resolution: {integrity: sha512-QarDDEUlexQ2IIn23pE1eHDskG2Tz+JjCe+FAN0DoNLLhvUUWSB4cQIMFWP6dSMJ047Blj9IpgAl9dERICW1qQ==}
+ '@unocss/preset-web-fonts@0.58.9':
+ resolution: {integrity: sha512-XtiO+Z+RYnNYomNkS2XxaQiY++CrQZKOfNGw5htgIrb32QtYVQSkyYQ3jDw7JmMiCWlZ4E72cV/zUb++WrZLxg==}
- '@unocss/preset-web-fonts@0.61.5':
- resolution: {integrity: sha512-hVIMPGayxg7xvlvfQnJxB0N3KTvmrglbH3v5BCYNjbh37+5hv+x22K6iWewY3BkGtaWqOtLO3H1n5a1rxPMyaw==}
+ '@unocss/preset-web-fonts@0.61.9':
+ resolution: {integrity: sha512-fjQv74+FiAvGJM5vSLkD15Taku0cbi5F7qAr5T85EIQOpUB1fiH2kPoXIOT1WS2lKbQZh6pNGBxLrbBRgnVPew==}
- '@unocss/preset-wind@0.58.0':
- resolution: {integrity: sha512-2zgaIy9RAGie9CsUYCkYRDSERBi8kG6Q/mQLgNfP9HMz5IThlnDHFWF/hLAVD51xQUg9gH8qWBR9kN/1ioT5Tw==}
+ '@unocss/preset-wind@0.58.9':
+ resolution: {integrity: sha512-7l+7Vx5UoN80BmJKiqDXaJJ6EUqrnUQYv8NxCThFi5lYuHzxsYWZPLU3k3XlWRUQt8XL+6rYx7mMBmD7EUSHyw==}
- '@unocss/preset-wind@0.61.5':
- resolution: {integrity: sha512-n4uepxv3gVoVQb0tv7iV8M4W0CgwLw0QaMX+3ECYzFLMynjCkZmFDtdQAX720yTvLZxwCxEZfQCgydOSt0qjZA==}
+ '@unocss/preset-wind@0.61.9':
+ resolution: {integrity: sha512-AzbjJrNL9Rb2BzTiREyssd8v7KFVVLERQ/PNILGzo6yYelYMl4AhKXZ3jgxWEsIABArVa3UkGBigG4h/L+2JHA==}
- '@unocss/reset@0.58.0':
- resolution: {integrity: sha512-UVZ5kz37JGbwAA06k/gjKYcekcTwi6oIhev1EpTtCvHLL6XYcYqcwb/u4Wjzprd3L3lxDGYXvGdjREGm2u7vbQ==}
+ '@unocss/reset@0.58.9':
+ resolution: {integrity: sha512-nA2pg3tnwlquq+FDOHyKwZvs20A6iBsKPU7Yjb48JrNnzoaXqE+O9oN6782IG2yKVW4AcnsAnAnM4cxXhGzy1w==}
- '@unocss/reset@0.61.5':
- resolution: {integrity: sha512-5FKNsHnke9J1Z0T4prOZn9hkWh86c6Px+Oh3xf8mDd6dDw8CjzYMRxZEKti0gt13NcsO29G1vLGM7UjG1sCamg==}
+ '@unocss/reset@0.61.9':
+ resolution: {integrity: sha512-A1KtJiFgLM0N3FqJ9r5M3mVULcwsn+14tq5WkvSPF9ik3zQeJh8/NhxKdJImWClwBOzn795NQFXXFB70Ja+2RA==}
- '@unocss/rule-utils@0.58.0':
- resolution: {integrity: sha512-LBJ9dJ/j5UIMzJF7pmIig55MtJAYtG+tn/zQRveZuPRVahzP+KqwlyB7u3uCUnQhdgo/MJODMcqyr0jl6+kTuA==}
+ '@unocss/rule-utils@0.58.9':
+ resolution: {integrity: sha512-45bDa+elmlFLthhJmKr2ltKMAB0yoXnDMQ6Zp5j3OiRB7dDMBkwYRPvHLvIe+34Ey7tDt/kvvDPtWMpPl2quUQ==}
engines: {node: '>=14'}
- '@unocss/rule-utils@0.61.5':
- resolution: {integrity: sha512-sCHnpCQoj3/ZmCjYo+oW3+4r5Z8kFI2snEL+miU2Uk0SqCgY1k0cUIYivj5L9ghp29p8VjEusX9M01QEZOYK7g==}
+ '@unocss/rule-utils@0.61.9':
+ resolution: {integrity: sha512-54Hw0nF+3ga70ETo3kes4He62wdsB4dHMgEiD/DEmJzyVY3ZuG/sIVAgkxjMQDo5w4SSYU/Ys1QaY+IQmeJHFQ==}
engines: {node: '>=14'}
- '@unocss/scope@0.58.0':
- resolution: {integrity: sha512-XgUXZJvbxWSRC/DNOWI5DYdR6Nd6IZxsE5ls3AFA5msgtk5OH4YNQELLMabQw7xbRbU/fftlRJa3vncSfOyl6w==}
+ '@unocss/scope@0.58.9':
+ resolution: {integrity: sha512-BIwcpx0R3bE0rYa9JVDJTk0GX32EBvnbvufBpNkWfC5tb7g+B7nMkVq9ichanksYCCxrIQQo0mrIz5PNzu9sGA==}
- '@unocss/scope@0.61.5':
- resolution: {integrity: sha512-GSmnSYWQ4oiSmJdyT5bmf0McXXhFJcVY7jgweAK2WltQgrxs1C3FWl9XIJtkWvaP3DIJjf4mKJf+zc6TjYxxEw==}
+ '@unocss/scope@0.61.9':
+ resolution: {integrity: sha512-a9/vdg7YTFZEnJSaJBh/GqkLokYh3ZjEd3gHUxl/TZDSkGOz3WnkR2h+lgaLZm9MJ7RlSvJxYP8ySezH7jU1Pw==}
- '@unocss/transformer-attributify-jsx-babel@0.58.0':
- resolution: {integrity: sha512-ckDq/q476x2yikjS8usmSUGuakqMQrg2pm8sdBINTPdJxGc7kJRvI5UDnzRw4W9hE5IH+E4gg0XfCtFad0O3eg==}
+ '@unocss/transformer-attributify-jsx-babel@0.58.9':
+ resolution: {integrity: sha512-UGaQoGZg+3QrsPtnGHPECmsGn4EQb2KSdZ4eGEn2YssjKv+CcQhzRvpEUgnuF/F+jGPkCkS/G/YEQBHRWBY54Q==}
- '@unocss/transformer-attributify-jsx-babel@0.61.5':
- resolution: {integrity: sha512-wBwjBCh6N95Bv3fJg8iokbDO9P5F+ee4n4gCecoePi6qSW22cBowj/UakP++L92GWX8FNZcphKOqMxx61q9gOg==}
+ '@unocss/transformer-attributify-jsx-babel@0.61.9':
+ resolution: {integrity: sha512-+fojHVJhA2MVd3VTCjlEKXf8Vnoy4N+lEl0CrYOD+im44sH5CWogm0RWs9rbeemy1uel6NI1wkP4xTfIA4vEgQ==}
- '@unocss/transformer-attributify-jsx@0.58.0':
- resolution: {integrity: sha512-QDdBEFDE7ntfCH7+8zHRW72MIQ9NH3uYGUE7lYgr5Ap8qzBHCxMT1kUrY6gwuoo3U4dMu2wruglYRHD88hvGkw==}
+ '@unocss/transformer-attributify-jsx@0.58.9':
+ resolution: {integrity: sha512-jpL3PRwf8t43v1agUdQn2EHGgfdWfvzsMxFtoybO88xzOikzAJaaouteNtojc/fQat2T9iBduDxVj5egdKmhdQ==}
- '@unocss/transformer-attributify-jsx@0.61.5':
- resolution: {integrity: sha512-w9vSBfgRdfofFnqzBvxrMi/FmP+ZtXz9W07wnoS6Yea7uhADilgx1h7wNfJECmK8kM8gWhjl5e6svZNAUQbI7A==}
+ '@unocss/transformer-attributify-jsx@0.61.9':
+ resolution: {integrity: sha512-tKZpZ64Lr6/CX96PhDtKEsqWDo1qjtswEulzIDLxpS90SMyann3azTs6mSuOwGbkbwc4gaJe6H38eCNos0ZqHg==}
- '@unocss/transformer-compile-class@0.58.0':
- resolution: {integrity: sha512-/BysfTg2q9sGPfiRHqWw/bT60/gjpBGBRVkIFsG4WVT2pgf3BfQUPu5FumSvZSRd0rA/pR57Lp6ZREAdj6+q+A==}
+ '@unocss/transformer-compile-class@0.58.9':
+ resolution: {integrity: sha512-l2VpCqelJ6Tgc1kfSODxBtg7fCGPVRr2EUzTg1LrGYKa2McbKuc/wV/2DWKHGxL6+voWi7a2C9XflqGDXXutuQ==}
- '@unocss/transformer-compile-class@0.61.5':
- resolution: {integrity: sha512-5WLi5MgRt8DJiANoWUK49noCgdyU/IKneGs3RJYDRNONEh2HdsL6ktACSRe9Y185ICGaD9MOk3cHBZALj07gew==}
+ '@unocss/transformer-compile-class@0.61.9':
+ resolution: {integrity: sha512-jezMpssFJGIaZNE/rw5U+9Rk1RoDrZqXZokRkqt4tamEn1SiXjRMPWoE/hLg5Kw4oybxwCXTuAk2OsD+kTb7iA==}
- '@unocss/transformer-directives@0.58.0':
- resolution: {integrity: sha512-sU2U/aIykRkGGbA4Qo9Z5XE/KqWf7KhBwC1m8pUoqjawsZex4aVnQgXzDPfcjtmy6pElwK0z2U5DnO+OK9vCgQ==}
+ '@unocss/transformer-directives@0.58.9':
+ resolution: {integrity: sha512-pLOUsdoY2ugVntJXg0xuGjO9XZ2xCiMxTPRtpZ4TsEzUtdEzMswR06Y8VWvNciTB/Zqxcz9ta8rD0DKePOfSuw==}
- '@unocss/transformer-directives@0.61.5':
- resolution: {integrity: sha512-vQvgLicgFJt/rUTh3nd8yZz5l0AMoE9qmtZqpgb9iDMOTHUZrlWpI3hsVsU6AB9kvL/NoyMI16hVkP8x6y7b9g==}
+ '@unocss/transformer-directives@0.61.9':
+ resolution: {integrity: sha512-e4uIbHYdAYJSVpvxOv6kAsyI18X3gHkBsmBYWcUlPLVv+8tYo4eZtc0rn6ZvpiLzkFywG9e9cmpqVQwOR6pBVg==}
- '@unocss/transformer-variant-group@0.58.0':
- resolution: {integrity: sha512-O2n8uVIpNic57rrkaaQ8jnC1WJ9N6FkoqxatRDXZ368aJ1CJNya0ZcVUL6lGGND0bOLXen4WmEN62ZxEWTqdkA==}
+ '@unocss/transformer-variant-group@0.58.9':
+ resolution: {integrity: sha512-3A6voHSnFcyw6xpcZT6oxE+KN4SHRnG4z862tdtWvRGcN+jGyNr20ylEZtnbk4xj0VNMeGHHQRZ0WLvmrAwvOQ==}
- '@unocss/transformer-variant-group@0.61.5':
- resolution: {integrity: sha512-7Is7PChplNYTkLTiQm5fL5zFKf+LV6d9TpzNuwXNK2oa1pQARMXNmnHjFPpzaDgxpTjn9sqQON72gziuXcpOsg==}
+ '@unocss/transformer-variant-group@0.61.9':
+ resolution: {integrity: sha512-iewADYlY0LoeCb80E/4feHVSCKHl+QzGH4xUvW0zU85evMqNOa0/t0dCIoEG22wr/9piyEsg6OdHprZ2QliYqg==}
- '@unocss/vite@0.58.0':
- resolution: {integrity: sha512-OCUOLMSOBEtXOEyBbAvMI3/xdR175BWRzmvV9Wc34ANZclEvCdVH8+WU725ibjY4VT0gVIuX68b13fhXdHV41A==}
+ '@unocss/vite@0.58.9':
+ resolution: {integrity: sha512-mmppBuulAHCal+sC0Qz36Y99t0HicAmznpj70Kzwl7g/yvXwm58/DW2OnpCWw+uA8/JBft/+z3zE+XvrI+T1HA==}
peerDependencies:
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
- '@unocss/vite@0.61.5':
- resolution: {integrity: sha512-+U5Ey5Z2csjLy7zcaDCtUqs08+ugRK87UWGm65W8yMAGW7me72f36QR8IHJUTqlVVEdhbJVIAy+yNFjGHYffjA==}
+ '@unocss/vite@0.61.9':
+ resolution: {integrity: sha512-hP/sL9rq1DvVCbSSx05m+bwYqen1nHm9tW6elKFkfV7X5jBUywu24WRq551NZI33KmgHA525ApX++DSWye+0uw==}
peerDependencies:
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
- '@vercel/nft@0.24.3':
- resolution: {integrity: sha512-IyBdIxmFAeGZnEfMgt4QrGK7XX4lWazlQj34HEi9dw04/WeDBJ7r1yaOIO5tTf9pbfvwUFodj9b0H+NDGGoOMg==}
+ '@vercel/nft@0.26.5':
+ resolution: {integrity: sha512-NHxohEqad6Ra/r4lGknO52uc/GrWILXAMs1BB4401GTqww0fw1bAqzpG1XHuDO+dprg4GvsD9ZLLSsdo78p9hQ==}
engines: {node: '>=16'}
hasBin: true
- '@vitejs/plugin-vue-jsx@3.0.2':
- resolution: {integrity: sha512-obF26P2Z4Ogy3cPp07B4VaW6rpiu0ue4OT2Y15UxT5BZZ76haUY9guOsZV3uWh/I6xc+VeiW+ZVabRE82FyzWw==}
- engines: {node: ^14.18.0 || >=16.0.0}
+ '@vitejs/plugin-vue-jsx@4.0.1':
+ resolution: {integrity: sha512-7mg9HFGnFHMEwCdB6AY83cVK4A6sCqnrjFYF4WIlebYAQVVJ/sC/CiTruVdrRlhrFoeZ8rlMxY9wYpPTIRhhAg==}
+ engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
- vite: ^4.0.0
+ vite: ^5.0.0
vue: ^3.0.0
'@vitejs/plugin-vue@4.6.2':
@@ -2402,42 +1920,48 @@ packages:
vite: ^4.0.0 || ^5.0.0
vue: ^3.2.25
- '@vitejs/plugin-vue@5.1.0':
- resolution: {integrity: sha512-QMRxARyrdiwi1mj3AW4fLByoHTavreXq0itdEW696EihXglf1MB3D4C2gBvE0jMPH29ZjC3iK8aIaUMLf4EOGA==}
+ '@vitejs/plugin-vue@5.1.4':
+ resolution: {integrity: sha512-N2XSI2n3sQqp5w7Y/AN/L2XDjBIRGqXko+eDp42sydYSBeJuSm5a1sLf8zakmo8u7tA8NmBgoDLA1HeOESjp9A==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
vite: ^5.0.0
vue: ^3.2.25
+ '@vitest/eslint-plugin@1.1.4':
+ resolution: {integrity: sha512-kudjgefmJJ7xQ2WfbUU6pZbm7Ou4gLYRaao/8Ynide3G0QhVKHd978sDyWX4KOH0CCMH9cyrGAkFd55eGzJ48Q==}
+ peerDependencies:
+ '@typescript-eslint/utils': '>= 8.0'
+ eslint: '>= 8.57.0'
+ typescript: '>= 5.0.0'
+ vitest: '*'
+ peerDependenciesMeta:
+ '@typescript-eslint/utils':
+ optional: true
+ typescript:
+ optional: true
+ vitest:
+ optional: true
+
'@volar/language-core@2.2.5':
resolution: {integrity: sha512-2htyAuxRrAgETmFeUhT4XLELk3LiEcqoW/B8YUXMF6BrGWLMwIR09MFaZYvrA2UhbdAeSyeQ726HaWSWkexUcQ==}
- '@volar/language-core@2.3.4':
- resolution: {integrity: sha512-wXBhY11qG6pCDAqDnbBRFIDSIwbqkWI7no+lj5+L7IlA7HRIjRP7YQLGzT0LF4lS6eHkMSsclXqy9DwYJasZTQ==}
-
- '@volar/language-core@2.4.0-alpha.18':
- resolution: {integrity: sha512-JAYeJvYQQROmVRtSBIczaPjP3DX4QW1fOqW1Ebs0d3Y3EwSNRglz03dSv0Dm61dzd0Yx3WgTW3hndDnTQqgmyg==}
+ '@volar/language-core@2.4.5':
+ resolution: {integrity: sha512-F4tA0DCO5Q1F5mScHmca0umsi2ufKULAnMOVBfMsZdT4myhVl4WdKRwCaKcfOkIEuyrAVvtq1ESBdZ+rSyLVww==}
'@volar/source-map@2.2.5':
resolution: {integrity: sha512-wrOEIiZNf4E+PWB0AxyM4tfhkfldPsb3bxg8N6FHrxJH2ohar7aGu48e98bp3pR9HUA7P/pR9VrLmkTrgCCnWQ==}
- '@volar/source-map@2.3.4':
- resolution: {integrity: sha512-C+t63nwcblqLIVTYXaVi/+gC8NukDaDIQI72J3R7aXGvtgaVB16c+J8Iz7/VfOy7kjYv7lf5GhBny6ACw9fTGQ==}
-
- '@volar/source-map@2.4.0-alpha.18':
- resolution: {integrity: sha512-MTeCV9MUwwsH0sNFiZwKtFrrVZUK6p8ioZs3xFzHc2cvDXHWlYN3bChdQtwKX+FY2HG6H3CfAu1pKijolzIQ8g==}
+ '@volar/source-map@2.4.5':
+ resolution: {integrity: sha512-varwD7RaKE2J/Z+Zu6j3mNNJbNT394qIxXwdvz/4ao/vxOfyClZpSDtLKkwWmecinkOVos5+PWkWraelfMLfpw==}
'@volar/typescript@2.2.5':
resolution: {integrity: sha512-eSV/n75+ppfEVugMC/salZsI44nXDPAyL6+iTYCNLtiLHGJsnMv9GwiDMujrvAUj/aLQyqRJgYtXRoxop2clCw==}
- '@volar/typescript@2.3.4':
- resolution: {integrity: sha512-acCvt7dZECyKcvO5geNybmrqOsu9u8n5XP1rfiYsOLYGPxvHRav9BVmEdRyZ3vvY6mNyQ1wLL5Hday4IShe17w==}
-
- '@volar/typescript@2.4.0-alpha.18':
- resolution: {integrity: sha512-sXh5Y8sqGUkgxpMWUGvRXggxYHAVxg0Pa1C42lQZuPDrW6vHJPR0VCK8Sr7WJsAW530HuNQT/ZIskmXtxjybMQ==}
+ '@volar/typescript@2.4.5':
+ resolution: {integrity: sha512-mcT1mHvLljAEtHviVcBuOyAwwMKz1ibXTi5uYtP/pf4XxoAzpdkQ+Br2IC0NPCvLCbjPZmbf3I0udndkfB1CDg==}
- '@vue-macros/common@1.8.0':
- resolution: {integrity: sha512-auDJJzE0z3uRe3867e0DsqcseKImktNf5ojCZgUKqiVxb2yTlwlgOVAYCgoep9oITqxkXQymSvFeKhedi8PhaA==}
+ '@vue-macros/common@1.14.0':
+ resolution: {integrity: sha512-xwQhDoEXRNXobNQmdqOD20yUGdVLVLZe4zhDlT9q/E+z+mvT3wukaAoJG80XRnv/BcgOOCVpxqpkQZ3sNTgjWA==}
engines: {node: '>=16.14.0'}
peerDependencies:
vue: ^2.7.0 || ^3.2.25
@@ -2445,67 +1969,56 @@ packages:
vue:
optional: true
- '@vue/babel-helper-vue-transform-on@1.1.5':
- resolution: {integrity: sha512-SgUymFpMoAyWeYWLAY+MkCK3QEROsiUnfaw5zxOVD/M64KQs8D/4oK6Q5omVA2hnvEOE0SCkH2TZxs/jnnUj7w==}
+ '@vue/babel-helper-vue-transform-on@1.2.5':
+ resolution: {integrity: sha512-lOz4t39ZdmU4DJAa2hwPYmKc8EsuGa2U0L9KaZaOJUt0UwQNjNA3AZTq6uEivhOKhhG1Wvy96SvYBoFmCg3uuw==}
- '@vue/babel-plugin-jsx@1.1.5':
- resolution: {integrity: sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==}
+ '@vue/babel-plugin-jsx@1.2.5':
+ resolution: {integrity: sha512-zTrNmOd4939H9KsRIGmmzn3q2zvv1mjxkYZHgqHZgDrXz5B1Q3WyGEjO2f+JrmKghvl1JIRcvo63LgM1kH5zFg==}
peerDependencies:
'@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
- '@vue/compiler-core@3.4.27':
- resolution: {integrity: sha512-E+RyqY24KnyDXsCuQrI+mlcdW3ALND6U7Gqa/+bVwbcpcR3BRRIckFoz7Qyd4TTlnugtwuI7YgjbvsLmxb+yvg==}
-
- '@vue/compiler-core@3.4.34':
- resolution: {integrity: sha512-Z0izUf32+wAnQewjHu+pQf1yw00EGOmevl1kE+ljjjMe7oEfpQ+BI3/JNK7yMB4IrUsqLDmPecUrpj3mCP+yJQ==}
-
- '@vue/compiler-dom@3.4.27':
- resolution: {integrity: sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==}
-
- '@vue/compiler-dom@3.4.34':
- resolution: {integrity: sha512-3PUOTS1h5cskdOJMExCu2TInXuM0j60DRPpSCJDqOCupCfUZCJoyQmKtRmA8EgDNZ5kcEE7vketamRZfrEuVDw==}
+ '@vue/babel-plugin-resolve-type@1.2.5':
+ resolution: {integrity: sha512-U/ibkQrf5sx0XXRnUZD1mo5F7PkpKyTbfXM3a3rC4YnUz6crHEz9Jg09jzzL6QYlXNto/9CePdOg/c87O4Nlfg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
- '@vue/compiler-sfc@3.4.27':
- resolution: {integrity: sha512-nDwntUEADssW8e0rrmE0+OrONwmRlegDA1pD6QhVeXxjIytV03yDqTey9SBDiALsvAd5U4ZrEKbMyVXhX6mCGA==}
+ '@vue/compiler-core@3.5.8':
+ resolution: {integrity: sha512-Uzlxp91EPjfbpeO5KtC0KnXPkuTfGsNDeaKQJxQN718uz+RqDYarEf7UhQJGK+ZYloD2taUbHTI2J4WrUaZQNA==}
- '@vue/compiler-sfc@3.4.34':
- resolution: {integrity: sha512-x6lm0UrM03jjDXTPZgD9Ad8bIVD1ifWNit2EaWQIZB5CULr46+FbLQ5RpK7AXtDHGjx9rmvC7QRCTjsiGkAwRw==}
+ '@vue/compiler-dom@3.5.8':
+ resolution: {integrity: sha512-GUNHWvoDSbSa5ZSHT9SnV5WkStWfzJwwTd6NMGzilOE/HM5j+9EB9zGXdtu/fCNEmctBqMs6C9SvVPpVPuk1Eg==}
- '@vue/compiler-ssr@3.4.27':
- resolution: {integrity: sha512-CVRzSJIltzMG5FcidsW0jKNQnNRYC8bT21VegyMMtHmhW3UOI7knmUehzswXLrExDLE6lQCZdrhD4ogI7c+vuw==}
+ '@vue/compiler-sfc@3.5.8':
+ resolution: {integrity: sha512-taYpngQtSysrvO9GULaOSwcG5q821zCoIQBtQQSx7Uf7DxpR6CIHR90toPr9QfDD2mqHQPCSgoWBvJu0yV9zjg==}
- '@vue/compiler-ssr@3.4.34':
- resolution: {integrity: sha512-8TDBcLaTrFm5rnF+Qm4BlliaopJgqJ28Nsrc80qazynm5aJO+Emu7y0RWw34L8dNnTRdcVBpWzJxhGYzsoVu4g==}
+ '@vue/compiler-ssr@3.5.8':
+ resolution: {integrity: sha512-W96PtryNsNG9u0ZnN5Q5j27Z/feGrFV6zy9q5tzJVyJaLiwYxvC0ek4IXClZygyhjm+XKM7WD9pdKi/wIRVC/Q==}
'@vue/compiler-vue2@2.7.16':
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
- '@vue/devtools-api@6.5.1':
- resolution: {integrity: sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==}
-
- '@vue/devtools-api@6.6.1':
- resolution: {integrity: sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA==}
+ '@vue/devtools-api@6.6.4':
+ resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
- '@vue/devtools-api@6.6.3':
- resolution: {integrity: sha512-0MiMsFma/HqA6g3KLKn+AGpL1kgKhFWszC9U29NfpWK5LE7bjeXxySWJrOJ77hBz+TBrBQ7o4QJqbPbqbs8rJw==}
+ '@vue/devtools-api@7.4.5':
+ resolution: {integrity: sha512-PX9uXirHOY2P99kb1cP3DxWZojFW3acNMqd+l4i5nKcqY59trXTOfwDZXt2Qifu0OU1izAQb76Ur6NPVldF2KQ==}
- '@vue/devtools-api@7.3.7':
- resolution: {integrity: sha512-kvjQ6nmsqTp7SrmpwI2G0MgbC4ys0bPsgQirHXJM8y1m7siQ5RnWQUHJVfyUrHNguCySW1cevAdIw87zrPTl9g==}
-
- '@vue/devtools-core@7.3.3':
- resolution: {integrity: sha512-i6Bwkx4OwfY0QVHjAdsivhlzZ2HMj7fbNRYJsWspQ+dkA1f3nTzycPqZmVUsm2TGkbQlhTMhCAdDoP97JKoc+g==}
-
- '@vue/devtools-kit@7.3.3':
- resolution: {integrity: sha512-m+dFI57BrzKYPKq73mt4CJ5GWld5OLBseLHPHGVP7CaILNY9o1gWVJWAJeF8XtQ9LTiMxZSaK6NcBsFuxAhD0g==}
+ '@vue/devtools-core@7.4.4':
+ resolution: {integrity: sha512-DLxgA3DfeADkRzhAfm3G2Rw/cWxub64SdP5b+s5dwL30+whOGj+QNhmyFpwZ8ZTrHDFRIPj0RqNzJ8IRR1pz7w==}
+ peerDependencies:
+ vue: ^3.0.0
- '@vue/devtools-kit@7.3.7':
- resolution: {integrity: sha512-ktHhhjI4CoUrwdSUF5b/MFfjrtAtK8r4vhOkFyRN5Yp9kdXTwsRBYcwarHuP+wFPKf4/KM7DVBj2ELO8SBwdsw==}
+ '@vue/devtools-kit@7.4.4':
+ resolution: {integrity: sha512-awK/4NfsUG0nQ7qnTM37m7ZkEUMREyPh8taFCX+uQYps/MTFEum0AD05VeGDRMXwWvMmGIcWX9xp8ZiBddY0jw==}
- '@vue/devtools-shared@7.3.5':
- resolution: {integrity: sha512-Rqii3VazmWTi67a86rYopi61n5Ved05EybJCwyrfoO9Ok3MaS/4yRFl706ouoISMlyrASJFEzM0/AiDA6w4f9A==}
+ '@vue/devtools-kit@7.4.5':
+ resolution: {integrity: sha512-Uuki4Z6Bc/ExvtlPkeDNGSAe4580R+HPcVABfTE9TF7BTz3Nntk7vxIRUyWblZkUEcB/x+wn2uofyt5i2LaUew==}
- '@vue/devtools-shared@7.3.7':
- resolution: {integrity: sha512-M9EU1/bWi5GNS/+IZrAhwGOVZmUTN4MH22Hvh35nUZZg9AZP2R2OhfCb+MG4EtAsrUEYlu3R43/SIj3G7EZYtQ==}
+ '@vue/devtools-shared@7.4.5':
+ resolution: {integrity: sha512-2XgUOkL/7QDmyYI9J7cm+rz/qBhcGv+W5+i1fhwdQ0HQ1RowhdK66F0QBuJSz/5k12opJY8eN6m03/XZMs7imQ==}
'@vue/language-core@2.0.19':
resolution: {integrity: sha512-A9EGOnvb51jOvnCYoRLnMP+CcoPlbZVxI9gZXE/y2GksRWM6j/PrLEIC++pnosWTN08tFpJgxhSS//E9v/Sg+Q==}
@@ -2515,62 +2028,42 @@ packages:
typescript:
optional: true
- '@vue/language-core@2.0.29':
- resolution: {integrity: sha512-o2qz9JPjhdoVj8D2+9bDXbaI4q2uZTHQA/dbyZT4Bj1FR9viZxDJnLcKVHfxdn6wsOzRgpqIzJEEmSSvgMvDTQ==}
+ '@vue/language-core@2.1.6':
+ resolution: {integrity: sha512-MW569cSky9R/ooKMh6xa2g1D0AtRKbL56k83dzus/bx//RDJk24RHWkMzbAlXjMdDNyxAaagKPRquBIxkxlCkg==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- '@vue/reactivity@3.4.27':
- resolution: {integrity: sha512-kK0g4NknW6JX2yySLpsm2jlunZJl2/RJGZ0H9ddHdfBVHcNzxmQ0sS0b09ipmBoQpY8JM2KmUw+a6sO8Zo+zIA==}
-
- '@vue/reactivity@3.4.34':
- resolution: {integrity: sha512-ua+Lo+wBRlBEX9TtgPOShE2JwIO7p6BTZ7t1KZVPoaBRfqbC7N3c8Mpzicx173fXxx5VXeU6ykiHo7WgLzJQDA==}
-
- '@vue/runtime-core@3.4.27':
- resolution: {integrity: sha512-7aYA9GEbOOdviqVvcuweTLe5Za4qBZkUY7SvET6vE8kyypxVgaT1ixHLg4urtOlrApdgcdgHoTZCUuTGap/5WA==}
-
- '@vue/runtime-core@3.4.34':
- resolution: {integrity: sha512-PXhkiRPwcPGJ1BnyBZFI96GfInCVskd0HPNIAZn7i3YOmLbtbTZpB7/kDTwC1W7IqdGPkTVC63IS7J2nZs4Ebg==}
-
- '@vue/runtime-dom@3.4.27':
- resolution: {integrity: sha512-ScOmP70/3NPM+TW9hvVAz6VWWtZJqkbdf7w6ySsws+EsqtHvkhxaWLecrTorFxsawelM5Ys9FnDEMt6BPBDS0Q==}
+ '@vue/reactivity@3.5.8':
+ resolution: {integrity: sha512-mlgUyFHLCUZcAYkqvzYnlBRCh0t5ZQfLYit7nukn1GR96gc48Bp4B7OIcSfVSvlG1k3BPfD+p22gi1t2n9tsXg==}
- '@vue/runtime-dom@3.4.34':
- resolution: {integrity: sha512-dXqIe+RqFAK2Euak4UsvbIupalrhc67OuQKpD7HJ3W2fv8jlqvI7szfBCsAEcE8o/wyNpkloxB6J8viuF/E3gw==}
+ '@vue/runtime-core@3.5.8':
+ resolution: {integrity: sha512-fJuPelh64agZ8vKkZgp5iCkPaEqFJsYzxLk9vSC0X3G8ppknclNDr61gDc45yBGTaN5Xqc1qZWU3/NoaBMHcjQ==}
- '@vue/server-renderer@3.4.27':
- resolution: {integrity: sha512-dlAMEuvmeA3rJsOMJ2J1kXU7o7pOxgsNHVr9K8hB3ImIkSuBrIdy0vF66h8gf8Tuinf1TK3mPAz2+2sqyf3KzA==}
- peerDependencies:
- vue: 3.4.27
+ '@vue/runtime-dom@3.5.8':
+ resolution: {integrity: sha512-DpAUz+PKjTZPUOB6zJgkxVI3GuYc2iWZiNeeHQUw53kdrparSTG6HeXUrYDjaam8dVsCdvQxDz6ZWxnyjccUjQ==}
- '@vue/server-renderer@3.4.34':
- resolution: {integrity: sha512-GeyEUfMVRZMD/mZcNONEqg7MiU10QQ1DB3O/Qr6+8uXpbwdlmVgQ5Qs1/ZUAFX1X2UUtqMoGrDRbxdWfOJFT7Q==}
+ '@vue/server-renderer@3.5.8':
+ resolution: {integrity: sha512-7AmC9/mEeV9mmXNVyUIm1a1AjUhyeeGNbkLh39J00E7iPeGks8OGRB5blJiMmvqSh8SkaS7jkLWSpXtxUCeagA==}
peerDependencies:
- vue: 3.4.34
-
- '@vue/shared@3.3.4':
- resolution: {integrity: sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==}
+ vue: 3.5.8
- '@vue/shared@3.4.27':
- resolution: {integrity: sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==}
+ '@vue/shared@3.5.8':
+ resolution: {integrity: sha512-mJleSWbAGySd2RJdX1RBtcrUBX6snyOc0qHpgk3lGi4l9/P/3ny3ELqFWqYdkXIwwNN/kdm8nD9ky8o6l/Lx2A==}
- '@vue/shared@3.4.34':
- resolution: {integrity: sha512-x5LmiRLpRsd9KTjAB8MPKf0CDPMcuItjP0gbNqFCIgL1I8iYp4zglhj9w9FPCdIbHG2M91RVeIbArFfFTz9I3A==}
+ '@vueuse/components@10.11.1':
+ resolution: {integrity: sha512-ThcreQCX/eq61sLkLKjigD4PQvs3Wy4zglICvQH9tP6xl87y5KsQEoizn6OI+R3hrOgwQHLJe7Y0wLLh3fBKcg==}
- '@vueuse/components@10.6.1':
- resolution: {integrity: sha512-Yx7h201xJG3V4+rY1wRAYy8EI9Q1r+gpwCJzgyZ0CWPyDWyZCxPXNjPhBJsXcSzJ1h1ph9tE5cVqEXHtEs6bjg==}
+ '@vueuse/core@10.11.1':
+ resolution: {integrity: sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==}
- '@vueuse/core@10.11.0':
- resolution: {integrity: sha512-x3sD4Mkm7PJ+pcq3HX8PLPBadXCAlSDR/waK87dz0gQE+qJnaaFhc/dZVfJz+IUYzTMVGum2QlR7ImiJQN4s6g==}
+ '@vueuse/core@11.1.0':
+ resolution: {integrity: sha512-P6dk79QYA6sKQnghrUz/1tHi0n9mrb/iO1WTMk/ElLmTyNqgDeSZ3wcDf6fRBGzRJbeG1dxzEOvLENMjr+E3fg==}
- '@vueuse/core@10.6.1':
- resolution: {integrity: sha512-Pc26IJbqgC9VG1u6VY/xrXXfxD33hnvxBnKrLlA2LJlyHII+BSrRoTPJgGYq7qZOu61itITFUnm6QbacwZ4H8Q==}
-
- '@vueuse/integrations@10.11.0':
- resolution: {integrity: sha512-Pp6MtWEIr+NDOccWd8j59Kpjy5YDXogXI61Kb1JxvSfVBO8NzFQkmrKmSZz47i+ZqHnIzxaT38L358yDHTncZg==}
+ '@vueuse/integrations@10.11.1':
+ resolution: {integrity: sha512-Y5hCGBguN+vuVYTZmdd/IMXLOdfS60zAmDmFYc4BKBcMUPZH1n4tdyDECCPjXm0bNT3ZRUy1xzTLGaUje8Xyaw==}
peerDependencies:
async-validator: ^4
axios: ^1
@@ -2610,58 +2103,17 @@ packages:
universal-cookie:
optional: true
- '@vueuse/integrations@10.6.1':
- resolution: {integrity: sha512-mPDupuofMJ4DPmtX/FfP1MajmWRzYDv8WSaTCo8LQ5kFznjWgmUQ16ApjYqgMquqffNY6+IRMdMgosLDRZOSZA==}
- peerDependencies:
- async-validator: '*'
- axios: '*'
- change-case: '*'
- drauu: '*'
- focus-trap: '*'
- fuse.js: '*'
- idb-keyval: '*'
- jwt-decode: '*'
- nprogress: '*'
- qrcode: '*'
- sortablejs: '*'
- universal-cookie: '*'
- peerDependenciesMeta:
- async-validator:
- optional: true
- axios:
- optional: true
- change-case:
- optional: true
- drauu:
- optional: true
- focus-trap:
- optional: true
- fuse.js:
- optional: true
- idb-keyval:
- optional: true
- jwt-decode:
- optional: true
- nprogress:
- optional: true
- qrcode:
- optional: true
- sortablejs:
- optional: true
- universal-cookie:
- optional: true
-
- '@vueuse/metadata@10.11.0':
- resolution: {integrity: sha512-kQX7l6l8dVWNqlqyN3ePW3KmjCQO3ZMgXuBMddIu83CmucrsBfXlH+JoviYyRBws/yLTQO8g3Pbw+bdIoVm4oQ==}
+ '@vueuse/metadata@10.11.1':
+ resolution: {integrity: sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==}
- '@vueuse/metadata@10.6.1':
- resolution: {integrity: sha512-qhdwPI65Bgcj23e5lpGfQsxcy0bMjCAsUGoXkJ7DsoeDUdasbZ2DBa4dinFCOER3lF4gwUv+UD2AlA11zdzMFw==}
+ '@vueuse/metadata@11.1.0':
+ resolution: {integrity: sha512-l9Q502TBTaPYGanl1G+hPgd3QX5s4CGnpXriVBR5fEZ/goI6fvDaVmIl3Td8oKFurOxTmbXvBPSsgrd6eu6HYg==}
- '@vueuse/shared@10.11.0':
- resolution: {integrity: sha512-fyNoIXEq3PfX1L3NkNhtVQUSRtqYwJtJg+Bp9rIzculIZWHTkKSysujrOk2J+NrRulLTQH9+3gGSfYLWSEWU1A==}
+ '@vueuse/shared@10.11.1':
+ resolution: {integrity: sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==}
- '@vueuse/shared@10.6.1':
- resolution: {integrity: sha512-TECVDTIedFlL0NUfHWncf3zF9Gc4VfdxfQc8JFwoVZQmxpONhLxFrlm0eHQeidHj4rdTPL3KXJa0TZCk1wnc5Q==}
+ '@vueuse/shared@11.1.0':
+ resolution: {integrity: sha512-YUtIpY122q7osj+zsNMFAfMTubGz0sn5QzE5gPzAIiCmtt2ha3uQUY1+JPyL4gRCTsLPX82Y9brNbo/aqlA91w==}
JSONStream@1.3.5:
resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==}
@@ -2670,26 +2122,20 @@ packages:
abbrev@1.1.1:
resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
+ abort-controller@3.0.0:
+ resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
+ engines: {node: '>=6.5'}
+
+ acorn-import-attributes@1.9.5:
+ resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==}
+ peerDependencies:
+ acorn: ^8
+
acorn-jsx@5.3.2:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- acorn@8.10.0:
- resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
- acorn@8.11.2:
- resolution: {integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
- acorn@8.11.3:
- resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
acorn@8.12.1:
resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
engines: {node: '>=0.4.0'}
@@ -2731,9 +2177,6 @@ packages:
ajv@8.13.0:
resolution: {integrity: sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==}
- algoliasearch@4.20.0:
- resolution: {integrity: sha512-y+UHEjnOItoNy0bYO+WWmLWBlPwDjKHW6mNHrPi0NkuhpQOOEbrkwQH/wgKFDLh7qlKjzoKeiRtlpewDPDG23g==}
-
algoliasearch@4.24.0:
resolution: {integrity: sha512-bf0QV/9jVejssFBmz2HQLxUadxk574t4iwjCKp5E7NBzwKkrDEhKPISIIjAU/p6K5qDx3qoeh4+26zWN1jmw3g==}
@@ -2752,8 +2195,8 @@ packages:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- ansi-regex@6.0.1:
- resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
+ ansi-regex@6.1.0:
+ resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
engines: {node: '>=12'}
ansi-styles@3.2.1:
@@ -2775,16 +2218,13 @@ packages:
aproba@2.0.0:
resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==}
- arch@2.2.0:
- resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==}
-
- archiver-utils@4.0.1:
- resolution: {integrity: sha512-Q4Q99idbvzmgCTEAAhi32BkOyq8iVI5EwdO0PmBDSGIzzjYNdcFn7Q7k3OzbLy4kLUPXfJtG6fO2RjftXbobBg==}
- engines: {node: '>= 12.0.0'}
+ archiver-utils@5.0.2:
+ resolution: {integrity: sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==}
+ engines: {node: '>= 14'}
- archiver@6.0.1:
- resolution: {integrity: sha512-CXGy4poOLBKptiZH//VlWdFuUC1RESbdZjGjILwBuZ73P7WkAUN0htfSfBq/7k6FRFlpu7bg4JOkj1vU9G6jcQ==}
- engines: {node: '>= 12.0.0'}
+ archiver@7.0.1:
+ resolution: {integrity: sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==}
+ engines: {node: '>= 14'}
are-docs-informative@0.0.2:
resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==}
@@ -2804,24 +2244,16 @@ packages:
array-ify@1.0.0:
resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==}
- array-union@2.1.0:
- resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
- engines: {node: '>=8'}
-
- ast-kit@0.11.2:
- resolution: {integrity: sha512-Q0DjXK4ApbVoIf9GLyCo252tUH44iTnD/hiJ2TQaJeydYWSpKk0sI34+WMel8S9Wt5pbLgG02oJ+gkgX5DV3sQ==}
- engines: {node: '>=16.14.0'}
-
- ast-kit@0.9.5:
- resolution: {integrity: sha512-kbL7ERlqjXubdDd+szuwdlQ1xUxEz9mCz1+m07ftNVStgwRb2RWw+U6oKo08PAvOishMxiqz1mlJyLl8yQx2Qg==}
+ ast-kit@1.2.0:
+ resolution: {integrity: sha512-7TnogTQQZEagrHcOcddY0PqXPxVqFoNPPsKoa42Peyc83iinzT+QPKoRLDmzpaUVWZbgqSoHtezsTIoJyyBE+Q==}
engines: {node: '>=16.14.0'}
ast-types@0.13.4:
resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==}
engines: {node: '>=4'}
- ast-walker-scope@0.5.0:
- resolution: {integrity: sha512-NsyHMxBh4dmdEHjBo1/TBZvCKxffmZxRYhmclfu0PP6Aftre47jOHYaYaNqJcV0bxihxFXhDkzLHUwHc0ocd0Q==}
+ ast-walker-scope@0.6.2:
+ resolution: {integrity: sha512-1UWOyC50xI3QZkRuDj6PqDtpm1oHWtYs+NQGwqL/2R11eN3Q81PHAHPM0SWW3BNQm53UDwS//Jv8L4CCVLM1bQ==}
engines: {node: '>=16.14.0'}
async-retry@1.3.3:
@@ -2830,22 +2262,25 @@ packages:
async-sema@3.1.1:
resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==}
- async@3.2.4:
- resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==}
+ async@3.2.6:
+ resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
- autoprefixer@10.4.16:
- resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==}
+ autoprefixer@10.4.20:
+ resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
- b4a@1.6.4:
- resolution: {integrity: sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==}
+ b4a@1.6.6:
+ resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==}
balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
+ bare-events@2.4.2:
+ resolution: {integrity: sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==}
+
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
@@ -2856,8 +2291,8 @@ packages:
before-after-hook@2.2.3:
resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==}
- binary-extensions@2.2.0:
- resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
+ binary-extensions@2.3.0:
+ resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
bindings@1.5.0:
@@ -2882,31 +2317,18 @@ packages:
brace-expansion@2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
- braces@3.0.2:
- resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
- engines: {node: '>=8'}
-
braces@3.0.3:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
- browserslist@4.22.1:
- resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
-
- browserslist@4.23.0:
- resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
-
- browserslist@4.23.2:
- resolution: {integrity: sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==}
+ browserslist@4.23.3:
+ resolution: {integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
- buffer-crc32@0.2.13:
- resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
+ buffer-crc32@1.0.0:
+ resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==}
+ engines: {node: '>=8.0.0'}
buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
@@ -2914,6 +2336,9 @@ packages:
buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
+ buffer@6.0.3:
+ resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
+
builtin-modules@3.3.0:
resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
engines: {node: '>=6'}
@@ -2922,17 +2347,20 @@ packages:
resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
engines: {node: '>=18'}
- c12@1.11.1:
- resolution: {integrity: sha512-KDU0TvSvVdaYcQKQ6iPHATGz/7p/KiVjPg4vQrB6Jg/wX9R0yl5RZxWm9IoZqaIHD2+6PZd81+KMGwRr/lRIUg==}
+ bundle-require@5.0.0:
+ resolution: {integrity: sha512-GuziW3fSSmopcx4KRymQEJVbZUfqlCqcq7dvs6TYwKRZiegK/2buMxQTPs6MGlNv50wms1699qYO54R8XfRX4w==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ peerDependencies:
+ esbuild: '>=0.18'
+
+ c12@1.11.2:
+ resolution: {integrity: sha512-oBs8a4uvSDO9dm8b7OCFW7+dgtVrwmwnrVXYzLm43ta7ep2jCn/0MhoUFygIWtxhyy6+/MG7/agvpY0U1Iemew==}
peerDependencies:
magicast: ^0.3.4
peerDependenciesMeta:
magicast:
optional: true
- c12@1.5.1:
- resolution: {integrity: sha512-BWZRJgDEveT8uI+cliCwvYSSSSvb4xKoiiu5S0jaDbKBopQLQF7E+bq9xKk1pTcG+mUa3yXuFO7bD9d8Lr9Xxg==}
-
cac@6.7.14:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
@@ -2945,42 +2373,24 @@ packages:
resolution: {integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==}
engines: {node: '>=14.16'}
- call-me-maybe@1.0.2:
- resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==}
-
callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- camelcase@6.3.0:
- resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
- engines: {node: '>=10'}
-
camelcase@7.0.1:
resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==}
engines: {node: '>=14.16'}
- camera-controls@2.7.3:
- resolution: {integrity: sha512-L4mxjBd3u8qiOLozdWrH2P8ZybSsDXBF7iyNyqNEFJhPUkovmuARWR8JTc1B/qlclOIg6FvZZA/0uAZMMim0mw==}
- peerDependencies:
- three: '>=0.126.1'
-
- camera-controls@2.8.3:
- resolution: {integrity: sha512-zFjqUR6onLkG+z1A6vAWfzovxZxWVSvp6e5t3lfZgfgPZtX3n74aykNAUaoRbq8Y3tOxadHkDjbfGDOP9hFf2w==}
+ camera-controls@2.9.0:
+ resolution: {integrity: sha512-TpCujnP0vqPppTXXJRYpvIy0xq9Tro6jQf2iYUxlDpPCNxkvE/XGaTuwIxnhINOkVP/ob2CRYXtY3iVYXeMEzA==}
peerDependencies:
three: '>=0.126.1'
caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
- caniuse-lite@1.0.30001554:
- resolution: {integrity: sha512-A2E3U//MBwbJVzebddm1YfNp7Nud5Ip+IPn4BozBmn4KqVX7AvluoIDFWjsv5OkGnKUXQVmMSoMKLa3ScCblcQ==}
-
- caniuse-lite@1.0.30001620:
- resolution: {integrity: sha512-WJvYsOjd1/BYUY6SNGUosK9DUidBPDTnOARHp3fSmFO1ekdxaY6nKRttEVrfMmYi80ctS0kz1wiWmm14fVc3ew==}
-
- caniuse-lite@1.0.30001643:
- resolution: {integrity: sha512-ERgWGNleEilSrHM6iUz/zJNSQTP8Mr21wDWpdgvRwcTXGAq6jMtOUPP4dqFPTdKqZ2wKTdtB+uucZ3MRpAUSmg==}
+ caniuse-lite@1.0.30001662:
+ resolution: {integrity: sha512-sgMUVwLmGseH8ZIrm1d51UbrhqMCH3jvS7gF/M6byuHOnKyLOBL7W8yz5V02OHwgLGA36o/AFhWzzh4uc5aqTA==}
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
@@ -3000,25 +2410,15 @@ packages:
character-entities-html4@2.1.0:
resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
- character-entities-legacy@1.1.4:
- resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==}
-
character-entities-legacy@3.0.0:
resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
- character-entities@1.2.4:
- resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==}
-
- character-reference-invalid@1.1.4:
- resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==}
+ character-entities@2.0.2:
+ resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
chardet@0.7.0:
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
- chokidar@3.5.3:
- resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
- engines: {node: '>= 8.10.0'}
-
chokidar@3.6.0:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
@@ -3027,10 +2427,6 @@ packages:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
- ci-info@3.8.0:
- resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==}
- engines: {node: '>=8'}
-
ci-info@3.9.0:
resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
engines: {node: '>=8'}
@@ -3039,9 +2435,6 @@ packages:
resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==}
engines: {node: '>=8'}
- citty@0.1.4:
- resolution: {integrity: sha512-Q3bK1huLxzQrvj7hImJ7Z1vKYJRPQCDnd0EjXfHMidcjecGOMuLrmuQmtWmFkuKLcMThlGh1yCKG8IEc6VeNXQ==}
-
citty@0.1.6:
resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
@@ -3072,9 +2465,9 @@ packages:
resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
engines: {node: '>= 12'}
- clipboardy@3.0.0:
- resolution: {integrity: sha512-Su+uU5sr1jkUy1sGRpLKjKrvEOVXgSgiSInwa/qeID6aJ07yh+5NWc3h2QfjHjBnfX4LhtFcuAWKUsJ3r+fjbg==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ clipboardy@4.0.0:
+ resolution: {integrity: sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==}
+ engines: {node: '>=18'}
cliui@8.0.1:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
@@ -3141,9 +2534,9 @@ packages:
compatx@0.1.8:
resolution: {integrity: sha512-jcbsEAR81Bt5s1qOFymBufmCbXCXbk0Ql+K5ouj6gCyx2yHlu6AgmGIi9HxfKixpUDO5bCFJUHQ5uM6ecbTebw==}
- compress-commons@5.0.1:
- resolution: {integrity: sha512-MPh//1cERdLtqwO3pOFLeXtpuai0Y2WCd5AhtKxznqM7WtaMYaOEMSgn45d9D10sIHSfIKE603HlOp8OPGrvag==}
- engines: {node: '>= 12.0.0'}
+ compress-commons@6.0.2:
+ resolution: {integrity: sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==}
+ engines: {node: '>= 14'}
computeds@0.0.1:
resolution: {integrity: sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==}
@@ -3242,15 +2635,15 @@ packages:
convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
- cookie-es@1.0.0:
- resolution: {integrity: sha512-mWYvfOLrfEc996hlKcdABeIiPHUPC6DM2QYZdGGOvhOTbA3tjm2eBwqlJpoFdjC89NI4Qt6h0Pu06Mp+1Pj5OQ==}
+ cookie-es@1.2.2:
+ resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==}
copy-anything@3.0.5:
resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==}
engines: {node: '>=12.13'}
- core-js-compat@3.37.1:
- resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==}
+ core-js-compat@3.38.1:
+ resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==}
core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@@ -3269,13 +2662,17 @@ packages:
engines: {node: '>=0.8'}
hasBin: true
- crc32-stream@5.0.0:
- resolution: {integrity: sha512-B0EPa1UK+qnpBZpG+7FgPCu0J2ETLpXq09o9BkLkEAhdB6Z61Qo4pJ3JYu0c+Qi+/SAL7QThqnzS06pmSSyZaw==}
- engines: {node: '>= 12.0.0'}
+ crc32-stream@6.0.0:
+ resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==}
+ engines: {node: '>= 14'}
create-require@1.1.1:
resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
+ croner@8.1.1:
+ resolution: {integrity: sha512-1VdUuRnQP4drdFkS8NKvDR1NBgevm8TOuflcaZEKsxw42CxonjW/2vkj1AKlinJb4ZLwBcuWF9GiPr7FQc6AQA==}
+ engines: {node: '>=18.0'}
+
cronstrue@2.50.0:
resolution: {integrity: sha512-ULYhWIonJzlScCCQrPUG5uMXzXxSixty4djud9SS37DoNxDdkeRocxzHuAo4ImRBUK+mAuU5X9TSwEDccnnuPg==}
hasBin: true
@@ -3284,13 +2681,21 @@ packages:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
+ crossws@0.2.4:
+ resolution: {integrity: sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg==}
+ peerDependencies:
+ uWebSockets.js: '*'
+ peerDependenciesMeta:
+ uWebSockets.js:
+ optional: true
+
crypto-random-string@4.0.0:
resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==}
engines: {node: '>=12'}
- css-declaration-sorter@6.4.1:
- resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==}
- engines: {node: ^10 || ^12 || >=14}
+ css-declaration-sorter@7.2.0:
+ resolution: {integrity: sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==}
+ engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.0.9
@@ -3314,23 +2719,23 @@ packages:
engines: {node: '>=4'}
hasBin: true
- cssnano-preset-default@6.0.1:
- resolution: {integrity: sha512-7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ cssnano-preset-default@7.0.6:
+ resolution: {integrity: sha512-ZzrgYupYxEvdGGuqL+JKOY70s7+saoNlHSCK/OGn1vB2pQK8KSET8jvenzItcY+kA7NoWvfbb/YhlzuzNKjOhQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- cssnano-utils@4.0.0:
- resolution: {integrity: sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==}
- engines: {node: ^14 || ^16 || >=18.0}
+ cssnano-utils@5.0.0:
+ resolution: {integrity: sha512-Uij0Xdxc24L6SirFr25MlwC2rCFX6scyUmuKpzI+JQ7cyqDEwD42fJ0xfB3yLfOnRDU5LKGgjQ9FA6LYh76GWQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- cssnano@6.0.1:
- resolution: {integrity: sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg==}
- engines: {node: ^14 || ^16 || >=18.0}
+ cssnano@7.0.6:
+ resolution: {integrity: sha512-54woqx8SCbp8HwvNZYn68ZFAepuouZW4lTwiMVnBErM3VkO7/Sd4oTOt3Zz3bPx3kxQ36aISppyXj2Md4lg8bw==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
csso@5.0.5:
resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==}
@@ -3339,9 +2744,6 @@ packages:
csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
- cuint@0.2.2:
- resolution: {integrity: sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==}
-
dargs@8.1.0:
resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==}
engines: {node: '>=12'}
@@ -3354,6 +2756,20 @@ packages:
resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==}
engines: {node: '>= 14'}
+ db0@0.1.4:
+ resolution: {integrity: sha512-Ft6eCwONYxlwLjBXSJxw0t0RYtA5gW9mq8JfBXn9TtC0nDPlqePAhpv9v4g9aONBi6JI1OXHTKKkUYGd+BOrCA==}
+ peerDependencies:
+ '@libsql/client': ^0.5.2
+ better-sqlite3: ^9.4.3
+ drizzle-orm: ^0.29.4
+ peerDependenciesMeta:
+ '@libsql/client':
+ optional: true
+ better-sqlite3:
+ optional: true
+ drizzle-orm:
+ optional: true
+
de-indent@1.0.2:
resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
@@ -3373,8 +2789,8 @@ packages:
supports-color:
optional: true
- debug@4.3.4:
- resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
+ debug@4.3.7:
+ resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -3382,14 +2798,8 @@ packages:
supports-color:
optional: true
- debug@4.3.5:
- resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
+ decode-named-character-reference@1.0.2:
+ resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
decompress-response@6.0.0:
resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
@@ -3429,12 +2839,6 @@ packages:
resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
engines: {node: '>=12'}
- defu@6.1.2:
- resolution: {integrity: sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==}
-
- defu@6.1.3:
- resolution: {integrity: sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==}
-
defu@6.1.4:
resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
@@ -3460,12 +2864,6 @@ packages:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
- destr@2.0.1:
- resolution: {integrity: sha512-M1Ob1zPSIvlARiJUkKqvAZ3VAqQY6Jcuth/pBKQ2b1dX/Qx0OnJ8Vux6J2H5PTMQeRzWrrbTu70VxBfv/OPDJA==}
-
- destr@2.0.2:
- resolution: {integrity: sha512-65AlobnZMiCET00KaFFjUefxDX0khFA/E4myqZ7a6Sq1yZtR8+FVIvilVX66vF2uobSumxooYZChiRPCKNqhmg==}
-
destr@2.0.3:
resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==}
@@ -3478,24 +2876,20 @@ packages:
engines: {node: '>=0.10'}
hasBin: true
- detect-libc@2.0.2:
- resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==}
+ detect-libc@2.0.3:
+ resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
engines: {node: '>=8'}
- devalue@4.3.2:
- resolution: {integrity: sha512-KqFl6pOgOW+Y6wJgu80rHpo2/3H07vr8ntR9rkkFIRETewbf5GaYYcakYfiKz89K+sLsuPkQIZaXDMjUObZwWg==}
+ devalue@5.0.0:
+ resolution: {integrity: sha512-gO+/OMXF7488D+u3ue+G7Y4AA3ZmUnB3eHJXmBTgNHvr4ZNzl36A0ZtG+XCRNYCkYx/bFmw4qtkoFLa+wSrwAA==}
devlop@1.1.0:
resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
- diff@5.2.0:
- resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
+ diff@7.0.0:
+ resolution: {integrity: sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==}
engines: {node: '>=0.3.1'}
- dir-glob@3.0.1:
- resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
- engines: {node: '>=8'}
-
doctrine@3.0.0:
resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
engines: {node: '>=6.0.0'}
@@ -3525,10 +2919,6 @@ packages:
resolution: {integrity: sha512-xaBe6ZT4DHPkg0k4Ytbvn5xoxgpG0jOS1dYxSOwAHPuNLjP3/OzN0gH55SrLqpx8cBfSaVt91lXYkApjb+nYdQ==}
engines: {node: '>=16'}
- dotenv@16.3.1:
- resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==}
- engines: {node: '>=12'}
-
dotenv@16.4.5:
resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
engines: {node: '>=12'}
@@ -3545,17 +2935,11 @@ packages:
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.4.567:
- resolution: {integrity: sha512-8KR114CAYQ4/r5EIEsOmOMqQ9j0MRbJZR3aXD/KFA8RuKzyoUB4XrUCg+l8RUGqTVQgKNIgTpjaG8YHRPAbX2w==}
-
- electron-to-chromium@1.4.774:
- resolution: {integrity: sha512-132O1XCd7zcTkzS3FgkAzKmnBuNJjK8WjcTtNuoylj7MYbqw5eXehjQ5OK91g0zm7OTKIPeaAG4CPoRfD9M1Mg==}
-
- electron-to-chromium@1.5.1:
- resolution: {integrity: sha512-FKbOCOQ5QRB3VlIbl1LZQefWIYwszlBloaXcY2rbfpu9ioJnNh3TK03YtIDKDo3WKBi8u+YV4+Fn2CkEozgf4w==}
+ electron-to-chromium@1.5.27:
+ resolution: {integrity: sha512-o37j1vZqCoEgBuWWXLHQgTN/KDKe7zwpiY5CPeq2RvUqOyJw9xnrULzZAEVQ5p4h+zjMk7hgtOoPdnLxr7m/jw==}
- emoji-regex@10.3.0:
- resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==}
+ emoji-regex@10.4.0:
+ resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -3567,15 +2951,12 @@ packages:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
- encoding@0.1.13:
- resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
-
- enhanced-resolve@4.5.0:
- resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==}
- engines: {node: '>=6.9.0'}
+ encodeurl@2.0.0:
+ resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
+ engines: {node: '>= 0.8'}
- enhanced-resolve@5.15.0:
- resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==}
+ enhanced-resolve@5.17.1:
+ resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
engines: {node: '>=10.13.0'}
entities@4.5.0:
@@ -3586,23 +2967,20 @@ packages:
resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
engines: {node: '>=6'}
- errno@0.1.8:
- resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
- hasBin: true
-
error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
- error-stack-parser-es@0.1.4:
- resolution: {integrity: sha512-l0uy0kAoo6toCgVOYaAayqtPa2a1L15efxUMEnQebKwLQX2X0OpS6wMMQdc4juJXmxd9i40DuaUHq+mjIya9TQ==}
+ error-stack-parser-es@0.1.5:
+ resolution: {integrity: sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg==}
- esbuild@0.18.20:
- resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
- engines: {node: '>=12'}
- hasBin: true
+ errx@0.1.0:
+ resolution: {integrity: sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q==}
+
+ es-module-lexer@1.5.4:
+ resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==}
- esbuild@0.19.5:
- resolution: {integrity: sha512-bUxalY7b1g8vNhQKdB24QDmHeY4V4tw/s6Ak5z+jJX9laP5MoQseTOMemAr0gxssjNcH0MCViG8ONI2kksvfFQ==}
+ esbuild@0.20.2:
+ resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==}
engines: {node: '>=12'}
hasBin: true
@@ -3611,12 +2989,13 @@ packages:
engines: {node: '>=12'}
hasBin: true
- escalade@3.1.1:
- resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
- engines: {node: '>=6'}
+ esbuild@0.23.1:
+ resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==}
+ engines: {node: '>=18'}
+ hasBin: true
- escalade@3.1.2:
- resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
+ escalade@3.2.0:
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
escape-goat@4.0.0:
@@ -3643,17 +3022,19 @@ packages:
engines: {node: '>=6.0'}
hasBin: true
- eslint-compat-utils@0.5.0:
- resolution: {integrity: sha512-dc6Y8tzEcSYZMHa+CMPLi/hyo1FzNeonbhJL7Ol0ccuKQkwopJcJBA9YL/xmMTLU1eKigXo9vj9nALElWYSowg==}
+ eslint-compat-utils@0.5.1:
+ resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
engines: {node: '>=12'}
peerDependencies:
eslint: '>=6.0.0'
- eslint-config-flat-gitignore@0.1.5:
- resolution: {integrity: sha512-hEZLwuZjDBGDERA49c2q7vxc8sCGv8EdBp6PQYzGOMcHIgrfG9YOM6s/4jx24zhD+wnK9AI8mgN5RxSss5nClQ==}
+ eslint-config-flat-gitignore@0.3.0:
+ resolution: {integrity: sha512-0Ndxo4qGhcewjTzw52TK06Mc00aDtHNTdeeW2JfONgDcLkRO/n/BteMRzNVpLQYxdCC/dFEilfM9fjjpGIJ9Og==}
+ peerDependencies:
+ eslint: ^9.5.0
- eslint-flat-config-utils@0.2.5:
- resolution: {integrity: sha512-iO+yLZtC/LKgACerkpvsZ6NoRVB2sxT04mOpnNcEM1aTwKy+6TsT46PUvrML4y2uVBS6I67hRCd2JiKAPaL/Uw==}
+ eslint-flat-config-utils@0.4.0:
+ resolution: {integrity: sha512-kfd5kQZC+BMO0YwTol6zxjKX1zAsk8JfSAopbKjKqmENTJcew+yBejuvccAg37cvOrN0Mh+DVbeyznuNWEjt4A==}
eslint-formatting-reporter@0.0.0:
resolution: {integrity: sha512-k9RdyTqxqN/wNYVaTk/ds5B5rA8lgoAmvceYN7bcZMBwU7TuXx5ntewJv81eF3pIL/CiJE+pJZm36llG8yhyyw==}
@@ -3671,74 +3052,63 @@ packages:
eslint-parser-plain@0.1.0:
resolution: {integrity: sha512-oOeA6FWU0UJT/Rxc3XF5Cq0nbIZbylm7j8+plqq0CZoE6m4u32OXJrR+9iy4srGMmF6v6pmgvP1zPxSRIGh3sg==}
- eslint-plugin-antfu@2.2.0:
- resolution: {integrity: sha512-QHzHYP+fyfhSkIdcuT9JZ4rCPuJOoHRE27gglPYHlJ6lxB7pO9i45yAy4aurx/rleBuEC27U4c//1Nwtbasj4Q==}
+ eslint-plugin-antfu@2.7.0:
+ resolution: {integrity: sha512-gZM3jq3ouqaoHmUNszb1Zo2Ux7RckSvkGksjLWz9ipBYGSv1EwwBETN6AdiUXn+RpVHXTbEMPAPlXJazcA6+iA==}
peerDependencies:
eslint: '*'
- eslint-plugin-command@0.2.3:
- resolution: {integrity: sha512-1bBYNfjZg60N2ZpLV5ATYSYyueIJ+zl5yKrTs0UFDdnyu07dNSZ7Xplnc+Wb6SXTdc1sIaoIrnuyhvztcltX6A==}
+ eslint-plugin-command@0.2.5:
+ resolution: {integrity: sha512-mbCaSHD37MT8nVJnJUz2oeDfhz0wdOjfrqQVWkSpXuj3uU8m7/FK/niV2bL922af3M1js5x7Xcu3PwqWsrahfA==}
peerDependencies:
eslint: '*'
- eslint-plugin-es-x@7.6.0:
- resolution: {integrity: sha512-I0AmeNgevgaTR7y2lrVCJmGYF0rjoznpDvqV/kIkZSZbZ8Rw3eu4cGlvBBULScfkSOCzqKbff5LR4CNrV7mZHA==}
+ eslint-plugin-es-x@7.8.0:
+ resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
eslint: '>=8'
- eslint-plugin-eslint-comments@3.2.0:
- resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==}
- engines: {node: '>=6.5.0'}
- peerDependencies:
- eslint: '>=4.19.1'
-
- eslint-plugin-format@0.1.1:
- resolution: {integrity: sha512-jzk70D3RbaseNIdMtimMqiJHDPUw9bzZjmZTT9tQ6x3HU9U9bGqnsieQK5H0FIZUpx4qC41CidLDWwVCylICRQ==}
+ eslint-plugin-format@0.1.2:
+ resolution: {integrity: sha512-ZrcO3aiumgJ6ENAv65IWkPjtW77ML/5mp0YrRK0jdvvaZJb+4kKWbaQTMr/XbJo6CtELRmCApAziEKh7L2NbdQ==}
peerDependencies:
eslint: ^8.40.0 || ^9.0.0
- eslint-plugin-import-x@0.5.0:
- resolution: {integrity: sha512-C7R8Z4IzxmsoOPMtSzwuOBW5FH6iRlxHR6iTks+MzVlrk3r3TUxokkWTx3ypdj9nGOEP+CG/5e6ebZzHbxgbbQ==}
- engines: {node: '>=16'}
+ eslint-plugin-import-x@4.3.0:
+ resolution: {integrity: sha512-PxGzP7gAjF2DLeRnQtbYkkgZDg1intFyYr/XS1LgTYXUDrSXMHGkXx8++6i2eDv2jMs0jfeO6G6ykyeWxiFX7w==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.56.0 || ^9.0.0-0
+ eslint: ^8.57.0 || ^9.0.0
- eslint-plugin-jsdoc@48.2.5:
- resolution: {integrity: sha512-ZeTfKV474W1N9niWfawpwsXGu+ZoMXu4417eBROX31d7ZuOk8zyG66SO77DpJ2+A9Wa2scw/jRqBPnnQo7VbcQ==}
+ eslint-plugin-jsdoc@50.2.4:
+ resolution: {integrity: sha512-020jA+dXaXdb+TML3ZJBvpPmzwbNROjnYuTYi/g6A5QEmEjhptz4oPJDKkOGMIByNxsPpdTLzSU1HYVqebOX1w==}
engines: {node: '>=18'}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
- eslint-plugin-jsonc@2.15.1:
- resolution: {integrity: sha512-PVFrqIJa8BbM/e828RSn0SwB/Z5ye+2LDuy2XqG6AymNgPsfApRRcznsbxP7VrjdLEU4Nb+g9n/d6opyp0jp9A==}
+ eslint-plugin-jsonc@2.16.0:
+ resolution: {integrity: sha512-Af/ZL5mgfb8FFNleH6KlO4/VdmDuTqmM+SPnWcdoWywTetv7kq+vQe99UyQb9XO3b0OWLVuTH7H0d/PXYCMdSg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=6.0.0'
- eslint-plugin-markdown@5.0.0:
- resolution: {integrity: sha512-kY2u9yDhzvfZ0kmRTsvgm3mTnvZgTSGIIPeHg3yesSx4R5CTCnITUjCPhzCD1MUhNcqHU5Tr6lzx+02EclVPbw==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- peerDependencies:
- eslint: '>=8'
-
- eslint-plugin-n@17.7.0:
- resolution: {integrity: sha512-4Jg4ZKVE4VjHig2caBqPHYNW5na84RVufUuipFLJbgM/G57O6FdpUKJbHakCDJb/yjQuyqVzYWRtU3HNYaZUwg==}
+ eslint-plugin-n@17.10.3:
+ resolution: {integrity: sha512-ySZBfKe49nQZWR1yFaA0v/GsH6Fgp8ah6XV0WDz6CN8WO0ek4McMzb7A2xnf4DCYV43frjCygvb9f/wx7UUxRw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=8.23.0'
- eslint-plugin-no-only-tests@3.1.0:
- resolution: {integrity: sha512-Lf4YW/bL6Un1R6A76pRZyE1dl1vr31G/ev8UzIc/geCgFWyrKil8hVjYqWVKGB/UIGmb6Slzs9T0wNezdSVegw==}
+ eslint-plugin-no-only-tests@3.3.0:
+ resolution: {integrity: sha512-brcKcxGnISN2CcVhXJ/kEQlNa0MEfGRtwKtWA16SkqXHKitaKIMrfemJKLKX1YqDU5C/5JY3PvZXd5jEW04e0Q==}
engines: {node: '>=5.0.0'}
- eslint-plugin-perfectionist@2.10.0:
- resolution: {integrity: sha512-P+tdrkHeMWBc55+DZsoDOAftV1WCsEoHaKm6JC7zajFus/syfT4vUPBFb3atGFSuyaVnGQGHlcKpP9X3Q0gH/w==}
+ eslint-plugin-perfectionist@3.6.0:
+ resolution: {integrity: sha512-sA6ljy6dL/9cM5ruZ/pMqRVt0FQ4Z7mbQWlBYpyX9941LVfm65d2jl2k1ZbWD3ud9Wm+/NKgOvRnAatsKhMJbA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
- astro-eslint-parser: ^0.16.0
+ astro-eslint-parser: ^1.0.2
eslint: '>=8.0.0'
svelte: '>=3.0.0'
- svelte-eslint-parser: ^0.33.0
+ svelte-eslint-parser: ^0.41.1
vue-eslint-parser: '>=9.0.0'
peerDependenciesMeta:
astro-eslint-parser:
@@ -3750,49 +3120,35 @@ packages:
vue-eslint-parser:
optional: true
- eslint-plugin-regexp@2.5.0:
- resolution: {integrity: sha512-I7vKcP0o75WS5SHiVNXN+Eshq49sbrweMQIuqSL3AId9AwDe9Dhbfug65vw64LxmOd4v+yf5l5Xt41y9puiq0g==}
+ eslint-plugin-regexp@2.6.0:
+ resolution: {integrity: sha512-FCL851+kislsTEQEMioAlpDuK5+E5vs0hi1bF8cFlPlHcEjeRhuAzEsGikXRreE+0j4WhW2uO54MqTjXtYOi3A==}
engines: {node: ^18 || >=20}
peerDependencies:
eslint: '>=8.44.0'
- eslint-plugin-toml@0.11.0:
- resolution: {integrity: sha512-sau+YvPU4fWTjB+qtBt3n8WS87aoDCs+BVbSUAemGaIsRNbvR9uEk+Tt892iLHTGvp/DPWYoCX4/8DoyAbB+sQ==}
+ eslint-plugin-toml@0.11.1:
+ resolution: {integrity: sha512-Y1WuMSzfZpeMIrmlP1nUh3kT8p96mThIq4NnHrYUhg10IKQgGfBZjAWnrg9fBqguiX4iFps/x/3Hb5TxBisfdw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=6.0.0'
- eslint-plugin-unicorn@53.0.0:
- resolution: {integrity: sha512-kuTcNo9IwwUCfyHGwQFOK/HjJAYzbODHN3wP0PgqbW+jbXqpNWxNVpVhj2tO9SixBwuAdmal8rVcWKBxwFnGuw==}
+ eslint-plugin-unicorn@55.0.0:
+ resolution: {integrity: sha512-n3AKiVpY2/uDcGrS3+QsYDkjPfaOrNrsfQxU9nt5nitd9KuvVXrfAvgCO9DYPSfap+Gqjw9EOrXIsBp5tlHZjA==}
engines: {node: '>=18.18'}
peerDependencies:
eslint: '>=8.56.0'
- eslint-plugin-unused-imports@3.2.0:
- resolution: {integrity: sha512-6uXyn6xdINEpxE1MtDjxQsyXB37lfyO2yKGVVgtD7WEWQGORSOZjgrD6hBhvGv4/SO+TOlS+UnC6JppRqbuwGQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- '@typescript-eslint/eslint-plugin': 6 - 7
- eslint: '8'
- peerDependenciesMeta:
- '@typescript-eslint/eslint-plugin':
- optional: true
-
- eslint-plugin-vitest@0.5.4:
- resolution: {integrity: sha512-um+odCkccAHU53WdKAw39MY61+1x990uXjSPguUCq3VcEHdqJrOb8OTMrbYlY6f9jAKx7x98kLVlIe3RJeJqoQ==}
- engines: {node: ^18.0.0 || >= 20.0.0}
+ eslint-plugin-unused-imports@4.1.4:
+ resolution: {integrity: sha512-YptD6IzQjDardkl0POxnnRBhU1OEePMV0nd6siHaRBbd+lyh6NAhFEobiznKU7kTsSsDeSD62Pe7kAM1b7dAZQ==}
peerDependencies:
- '@typescript-eslint/eslint-plugin': '*'
- eslint: ^8.57.0 || ^9.0.0
- vitest: '*'
+ '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0
+ eslint: ^9.0.0 || ^8.0.0
peerDependenciesMeta:
'@typescript-eslint/eslint-plugin':
optional: true
- vitest:
- optional: true
- eslint-plugin-vue@9.26.0:
- resolution: {integrity: sha512-eTvlxXgd4ijE1cdur850G6KalZqk65k1JKoOI2d1kT3hr8sPD07j1q98FRFdNnpxBELGPWxZmInxeHGF/GxtqQ==}
+ eslint-plugin-vue@9.28.0:
+ resolution: {integrity: sha512-ShrihdjIhOTxs+MfWun6oJWuk+g/LAhN+CiuOl/jjkG3l0F2AuK5NMTaWqyvBgkFtpYmyks6P4603mLmhNJW8g==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
@@ -3809,10 +3165,6 @@ packages:
'@vue/compiler-sfc': ^3.3.0
eslint: ^8.50.0 || ^9.0.0
- eslint-rule-composer@0.3.0:
- resolution: {integrity: sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==}
- engines: {node: '>=4.0.0'}
-
eslint-scope@7.2.2:
resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -3829,10 +3181,15 @@ packages:
resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.7.0:
- resolution: {integrity: sha512-FzJ9D/0nGiCGBf8UXO/IGLTgLVzIxze1zpfA8Ton2mjLovXdAPlYDv+MQDcqj3TmrhAGYfOpz9RfR+ent0AgAw==}
+ eslint@9.11.0:
+ resolution: {integrity: sha512-yVS6XODx+tMFMDFcG4+Hlh+qG7RM6cCJXtQhCKLSsr3XkLvWggHjCqjfh0XsPPnt1c56oaT6PMgW9XWQQjdHXA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
+ peerDependencies:
+ jiti: '*'
+ peerDependenciesMeta:
+ jiti:
+ optional: true
espree@10.1.0:
resolution: {integrity: sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==}
@@ -3847,10 +3204,6 @@ packages:
engines: {node: '>=4'}
hasBin: true
- esquery@1.5.0:
- resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
- engines: {node: '>=0.10'}
-
esquery@1.6.0:
resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
engines: {node: '>=0.10'}
@@ -3877,6 +3230,14 @@ packages:
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
+ event-target-shim@5.0.1:
+ resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
+ engines: {node: '>=6'}
+
+ events@3.3.0:
+ resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
+ engines: {node: '>=0.8.x'}
+
execa@5.1.1:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
@@ -3905,10 +3266,6 @@ packages:
fast-fifo@1.3.2:
resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
- fast-glob@3.3.1:
- resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
- engines: {node: '>=8.6.0'}
-
fast-glob@3.3.2:
resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
engines: {node: '>=8.6.0'}
@@ -3919,12 +3276,20 @@ packages:
fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
- fast-npm-meta@0.1.1:
- resolution: {integrity: sha512-uS9DjGncI/9XZ6HJFrci0WzSi++N8Jskbb2uB7+9SQlrgA3VaLhXhV9Gl5HwIGESHkayYYZFGnVNhJwRDKCWIA==}
+ fast-npm-meta@0.2.2:
+ resolution: {integrity: sha512-E+fdxeaOQGo/CMWc9f4uHFfgUPJRAu7N3uB8GBvB3SDPAIWJK4GKyYhkAGFq+GYrcbKNfQIz5VVQyJnDuPPCrg==}
fastq@1.17.1:
resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
+ fdir@6.3.0:
+ resolution: {integrity: sha512-QOnuT+BOtivR77wYvCWHfGt9s4Pz1VIMbD463vegT5MLqNXy8rYFT/lPVEqf/bhYeT6qmqrNHhsX+rWwe3rOCQ==}
+ peerDependencies:
+ picomatch: ^3 || ^4
+ peerDependenciesMeta:
+ picomatch:
+ optional: true
+
fetch-blob@3.2.0:
resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
engines: {node: ^12.20 || >= 14.13}
@@ -3942,14 +3307,14 @@ packages:
file-uri-to-path@1.0.0:
resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
- fill-range@7.0.1:
- resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
- engines: {node: '>=8'}
-
fill-range@7.1.1:
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
+ find-up-simple@1.0.0:
+ resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==}
+ engines: {node: '>=18'}
+
find-up@4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
engines: {node: '>=8'}
@@ -3962,23 +3327,19 @@ packages:
resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- find-up@7.0.0:
- resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==}
- engines: {node: '>=18'}
-
flat-cache@4.0.1:
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
engines: {node: '>=16'}
- flat@5.0.2:
- resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
- hasBin: true
-
flatted@3.3.1:
resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
- focus-trap@7.5.4:
- resolution: {integrity: sha512-N7kHdlgsO/v+iD/dMoJKtsSqs5Dz/dXZVebRgJw23LDk+jMi/974zyiOYDziY2JPp8xivq9BmUGwIJMiuSBi7w==}
+ focus-trap@7.6.0:
+ resolution: {integrity: sha512-1td0l3pMkWJLFipobUcGaf+5DTY4PLDDrcqoSaKP8ediO/CoWCCYk/fT/Y2A4e6TNB+Sh6clRJCjOPPnKoNHnQ==}
+
+ foreground-child@3.3.0:
+ resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
+ engines: {node: '>=14'}
form-data-encoder@2.1.4:
resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==}
@@ -3995,10 +3356,6 @@ packages:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
- fs-extra@11.1.1:
- resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==}
- engines: {node: '>=14.14'}
-
fs-extra@11.2.0:
resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
engines: {node: '>=14.14'}
@@ -4039,9 +3396,6 @@ packages:
resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==}
engines: {node: '>=18'}
- get-port-please@3.1.1:
- resolution: {integrity: sha512-3UBAyM3u4ZBVYDsxOQfJDxEa6XTbpBDrOjp4mf7ExFRt5BKs/QywQQiJsh2B+hxcZLSapWqCRvElUe8DnKcFHA==}
-
get-port-please@3.1.2:
resolution: {integrity: sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==}
@@ -4053,20 +3407,13 @@ packages:
resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
engines: {node: '>=16'}
- get-tsconfig@4.7.2:
- resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==}
-
- get-tsconfig@4.7.5:
- resolution: {integrity: sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==}
+ get-tsconfig@4.8.1:
+ resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==}
get-uri@6.0.3:
resolution: {integrity: sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==}
engines: {node: '>= 14'}
- giget@1.1.3:
- resolution: {integrity: sha512-zHuCeqtfgqgDwvXlR84UNgnJDuUHQcNI5OqWqFxxuk2BshuKbYhJWdxBsEo4PvKqoGh23lUAIvBNpChMLv7/9Q==}
- hasBin: true
-
giget@1.2.3:
resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==}
hasBin: true
@@ -4085,15 +3432,20 @@ packages:
engines: {node: '>=16'}
hasBin: true
+ git-semver-tags@8.0.0:
+ resolution: {integrity: sha512-N7YRIklvPH3wYWAR2vysaqGLPRcpwQ0GKdlqTiVN5w1UmCdaeY3K8s6DMKRCh54DDdzyt/OAB6C8jgVtb7Y2Fg==}
+ engines: {node: '>=18'}
+ hasBin: true
+
git-up@7.0.0:
resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==}
- git-url-parse@13.1.1:
- resolution: {integrity: sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==}
-
git-url-parse@14.0.0:
resolution: {integrity: sha512-NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ==}
+ git-url-parse@15.0.0:
+ resolution: {integrity: sha512-5reeBufLi+i4QD3ZFftcJs9jC26aULFLBU23FeKM/b1rI0K6ofIeAblmDVO7Ht22zTDE9+CkJ3ZVb0CgJmz3UQ==}
+
glob-parent@5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
engines: {node: '>= 6'}
@@ -4102,6 +3454,10 @@ packages:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
+ glob@10.4.5:
+ resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
+ hasBin: true
+
glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
deprecated: Glob versions prior to v9 are no longer supported
@@ -4127,18 +3483,10 @@ packages:
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
engines: {node: '>=18'}
- globals@15.2.0:
- resolution: {integrity: sha512-FQ5YwCHZM3nCmtb5FzEWwdUc9K5d3V/w9mzcz8iGD1gC/aOTHc6PouYu0kkKipNJqHAT7m51sqzQjEjIP+cK0A==}
+ globals@15.9.0:
+ resolution: {integrity: sha512-SmSKyLLKFbSr6rptvP8izbyxJL4ILwqO9Jg23UA0sDlGlu58V59D1//I3vlc0KJphVdUR7vMjHIplYnzBxorQA==}
engines: {node: '>=18'}
- globby@11.1.0:
- resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
- engines: {node: '>=10'}
-
- globby@13.2.2:
- resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
globby@14.0.2:
resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==}
engines: {node: '>=18'}
@@ -4165,9 +3513,6 @@ packages:
graphemer@1.4.0:
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
- gsap@3.12.3:
- resolution: {integrity: sha512-TySXTE+ABiAVa61W+h5wv2p5GkJT1Uj//4nWpK8EjmhcDqwH++35IvtbQlVVFj+rdcJdFCdCt0SKgb+SwdPq/A==}
-
gsap@3.12.5:
resolution: {integrity: sha512-srBfnk4n+Oe/ZnMIOXt3gT605BX9x5+rh/prT2F1SsNJsU1XuMiP0E2aptW481OnonOGACZWBqseH5Z7csHxhQ==}
@@ -4179,8 +3524,8 @@ packages:
resolution: {integrity: sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- h3@1.8.2:
- resolution: {integrity: sha512-1Ca0orJJlCaiFY68BvzQtP2lKLk46kcLAxVM8JgYbtm2cUg6IY7pjpYgWMwUvDO9QI30N5JAukOKoT8KD3Q0PQ==}
+ h3@1.12.0:
+ resolution: {integrity: sha512-Zi/CcNeWBXDrFNlV0hUBJQR9F7a96RjMeAZweW/ZWkR9fuXrMcvKnSA63f/zZ9l0GgQOZDVHGvXivNN9PWOwhA==}
handlebars@4.7.8:
resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==}
@@ -4205,27 +3550,12 @@ packages:
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
- hast-util-from-parse5@8.0.1:
- resolution: {integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==}
-
- hast-util-parse-selector@4.0.0:
- resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==}
-
- hast-util-raw@9.0.1:
- resolution: {integrity: sha512-5m1gmba658Q+lO5uqL5YNGQWeh1MYWZbZmWrM5lncdcuiXuo5E2HT/CIOp0rLF8ksfSwiCVJ3twlgVRyTGThGA==}
-
- hast-util-to-html@9.0.0:
- resolution: {integrity: sha512-IVGhNgg7vANuUA2XKrT6sOIIPgaYZnmLx3l/CCOAK0PtgfoHrZwX7jCSYyFxHTrGmC6S9q8aQQekjp4JPZF+cw==}
-
- hast-util-to-parse5@8.0.0:
- resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==}
+ hast-util-to-html@9.0.3:
+ resolution: {integrity: sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==}
hast-util-whitespace@3.0.0:
resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
- hastscript@8.0.0:
- resolution: {integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==}
-
he@1.2.0:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
@@ -4236,8 +3566,8 @@ packages:
hosted-git-info@2.8.9:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
- hosted-git-info@7.0.1:
- resolution: {integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==}
+ hosted-git-info@7.0.2:
+ resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==}
engines: {node: ^16.14.0 || >=18.0.0}
html-tags@3.3.1:
@@ -4293,15 +3623,11 @@ packages:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
engines: {node: '>=0.10.0'}
- iconv-lite@0.6.3:
- resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
- engines: {node: '>=0.10.0'}
-
ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- ignore@5.3.1:
- resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
+ ignore@5.3.2:
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
image-meta@0.2.1:
@@ -4315,6 +3641,12 @@ packages:
resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==}
engines: {node: '>=8'}
+ importx@0.4.4:
+ resolution: {integrity: sha512-Lo1pukzAREqrBnnHC+tj+lreMTAvyxtkKsMxLY8H15M/bvLl54p3YuoTI70Tz7Il0AsgSlD7Lrk/FaApRcBL7w==}
+
+ impound@0.1.0:
+ resolution: {integrity: sha512-F9nJgOsDc3tysjN74edE0vGPEQrU7DAje6g5nNAL5Jc9Tv4JW3mH7XMGne+EaadTniDXLeUrVR21opkNfWO1zQ==}
+
imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
@@ -4345,22 +3677,16 @@ packages:
resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==}
engines: {node: '>= 0.10'}
- ioredis@5.3.2:
- resolution: {integrity: sha512-1DKMMzlIHM02eBBVOFQ1+AolGjs6+xEcM4PDL7NqOS6szq7H9jSaEkIUH6/a5Hl241LzW6JLSiAbNvTQjUupUA==}
+ ioredis@5.4.1:
+ resolution: {integrity: sha512-2YZsvl7jopIa1gaePkeMtd9rAcSjOOjPtpcLlOeusyO+XH2SK5ZcT+UCrElPP+WVIInh2TzeI4XW9ENaSLVVHA==}
engines: {node: '>=12.22.0'}
ip-address@9.0.5:
resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
engines: {node: '>= 12'}
- iron-webcrypto@0.10.1:
- resolution: {integrity: sha512-QGOS8MRMnj/UiOa+aMIgfyHcvkhqNUsUxb1XzskENvbo+rEfp6TOwqd1KPuDzXC4OnGHcMSVxDGRoilqB8ViqA==}
-
- is-alphabetical@1.0.4:
- resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==}
-
- is-alphanumerical@1.0.4:
- resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==}
+ iron-webcrypto@1.2.1:
+ resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==}
is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
@@ -4377,11 +3703,9 @@ packages:
resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
hasBin: true
- is-core-module@2.13.1:
- resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
-
- is-decimal@1.0.4:
- resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==}
+ is-core-module@2.15.1:
+ resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
+ engines: {node: '>= 0.4'}
is-docker@2.2.1:
resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
@@ -4405,9 +3729,6 @@ packages:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
- is-hexadecimal@1.0.4:
- resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==}
-
is-in-ci@0.1.0:
resolution: {integrity: sha512-d9PXLEY0v1iJ64xLiQMJ51J128EYHAaOR4yZqQi8aHGfw6KgifM3/Viw1oZZ1GCVmb3gBuyhLyHj0HgR2DhSXQ==}
engines: {node: '>=18'}
@@ -4453,13 +3774,6 @@ packages:
resolution: {integrity: sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==}
engines: {node: '>=12'}
- is-primitive@3.0.1:
- resolution: {integrity: sha512-GljRxhWvlCNRfZyORiH77FwdFwGcMO620o37EOYC0ORWdq+WYNVqW0w2Juzew4M+L81l6/QS3t5gkkihyRqv9w==}
- engines: {node: '>=0.10.0'}
-
- is-promise@4.0.0:
- resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==}
-
is-reference@1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
@@ -4489,8 +3803,8 @@ packages:
resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==}
engines: {node: '>=12'}
- is-unicode-supported@2.0.0:
- resolution: {integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==}
+ is-unicode-supported@2.1.0:
+ resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
engines: {node: '>=18'}
is-what@4.1.16:
@@ -4505,6 +3819,10 @@ packages:
resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
engines: {node: '>=16'}
+ is64bit@2.0.0:
+ resolution: {integrity: sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==}
+ engines: {node: '>=18'}
+
isarray@0.0.1:
resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
@@ -4518,18 +3836,17 @@ packages:
resolution: {integrity: sha512-3YZcUUR2Wt1WsapF+S/WiA2WmlW0cWAoPccMqne7AxEBhCdFeTPjfv/Axb8V2gyCgY3nRw+ksZ3xSUX+R47iAg==}
engines: {node: ^18.17 || >=20.6.1}
- jiti@1.20.0:
- resolution: {integrity: sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA==}
- hasBin: true
-
- jiti@1.21.0:
- resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
- hasBin: true
+ jackspeak@3.4.3:
+ resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
jiti@1.21.6:
resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
hasBin: true
+ jiti@2.0.0-beta.3:
+ resolution: {integrity: sha512-pmfRbVRs/7khFrSAYnSiJ8C0D5GvzkE4Ey2pAvUcJsw1ly/p+7ut27jbJrjY79BpAJQJ4gXYFtK6d1Aub+9baQ==}
+ hasBin: true
+
jju@1.4.0:
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
@@ -4546,8 +3863,8 @@ packages:
jsbn@1.1.0:
resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==}
- jsdoc-type-pratt-parser@4.0.0:
- resolution: {integrity: sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==}
+ jsdoc-type-pratt-parser@4.1.0:
+ resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==}
engines: {node: '>=12.0.0'}
jsesc@0.5.0:
@@ -4570,8 +3887,8 @@ packages:
json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
- json-parse-even-better-errors@3.0.0:
- resolution: {integrity: sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==}
+ json-parse-even-better-errors@3.0.2:
+ resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
json-schema-traverse@0.4.1:
@@ -4595,9 +3912,6 @@ packages:
resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- jsonc-parser@3.2.0:
- resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
-
jsonfile@4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
@@ -4619,25 +3933,22 @@ packages:
resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
- knitwork@1.0.0:
- resolution: {integrity: sha512-dWl0Dbjm6Xm+kDxhPQJsCBTxrJzuGl0aP9rhr+TG8D3l+GL90N8O8lYUi7dTSAN2uuDqCtNgb6aEuQH5wsiV8Q==}
-
knitwork@1.1.0:
resolution: {integrity: sha512-oHnmiBUVHz1V+URE77PNot2lv3QiYU2zQf1JjOVkMt3YDKGbu8NAFr+c4mcNOhdsGrB/VpVbRwPwhiXrPhxQbw==}
kolorist@1.8.0:
resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
- ky@1.5.0:
- resolution: {integrity: sha512-bkQo+UqryW6Zmo/DsixYZE4Z9t2mzvNMhceyIhuMuInb3knm5Q+GNGMKveydJAj+Z6piN1SwI6eR/V0G+Z0BtA==}
+ ky@1.7.2:
+ resolution: {integrity: sha512-OzIvbHKKDpi60TnF9t7UUVAF1B4mcqc02z5PIvrm08Wyb+yOcz63GRvEuVxNT18a9E1SrNouhB4W2NNLeD7Ykg==}
engines: {node: '>=18'}
latest-version@9.0.0:
resolution: {integrity: sha512-7W0vV3rqv5tokqkBAFV1LbR7HPOWzXQDpDgEuib/aJ1jsZZx6x3c2mBI+TJhJzOhkGeaLbCKEHXEXLfirtG2JA==}
engines: {node: '>=18'}
- launch-editor@2.8.0:
- resolution: {integrity: sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==}
+ launch-editor@2.9.1:
+ resolution: {integrity: sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==}
lazystream@1.0.1:
resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
@@ -4650,9 +3961,9 @@ packages:
lil-gui@0.17.0:
resolution: {integrity: sha512-MVBHmgY+uEbmJNApAaPbtvNh1RCAeMnKym82SBjtp5rODTYKWtM+MXHCifLe2H2Ti1HuBGBtK/5SyG4ShQ3pUQ==}
- lilconfig@2.1.0:
- resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
- engines: {node: '>=10'}
+ lilconfig@3.1.2:
+ resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
+ engines: {node: '>=14'}
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
@@ -4661,10 +3972,14 @@ packages:
resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- listhen@1.5.5:
- resolution: {integrity: sha512-LXe8Xlyh3gnxdv4tSjTjscD1vpr/2PRpzq8YIaMJgyKzRG8wdISlWVWnGThJfHnlJ6hmLt2wq1yeeix0TEbuoA==}
+ listhen@1.7.2:
+ resolution: {integrity: sha512-7/HamOm5YD9Wb7CFgAZkKgVPA96WwhcTQoqtm2VTZGVbVVn3IWKRBTgrU7cchA3Q8k9iCsG8Osoi9GX4JsGM9g==}
hasBin: true
+ load-tsconfig@0.2.5:
+ resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
local-pkg@0.4.3:
resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==}
engines: {node: '>=14'}
@@ -4688,9 +4003,6 @@ packages:
lodash.capitalize@4.2.1:
resolution: {integrity: sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==}
- lodash.debounce@4.0.8:
- resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
-
lodash.defaults@4.2.0:
resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==}
@@ -4712,9 +4024,6 @@ packages:
lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
- lodash.pick@4.4.0:
- resolution: {integrity: sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==}
-
lodash.uniq@4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
@@ -4732,14 +4041,13 @@ packages:
resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==}
engines: {node: '>=18'}
+ longest-streak@3.1.0:
+ resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
+
lowercase-keys@3.0.0:
resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- lru-cache@10.0.1:
- resolution: {integrity: sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==}
- engines: {node: 14 || >=16.14}
-
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
@@ -4754,23 +4062,19 @@ packages:
resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
engines: {node: '>=12'}
- macos-release@3.2.0:
- resolution: {integrity: sha512-fSErXALFNsnowREYZ49XCdOHF8wOPWuFOGQrAhP7x5J/BqQv+B02cNsTykGpDgRVx43EKg++6ANmTaGTtW+hUA==}
+ macos-release@3.3.0:
+ resolution: {integrity: sha512-tPJQ1HeyiU2vRruNGhZ+VleWuMQRro8iFtJxYgnS4NQe+EukKF6aGiIT+7flZhISAt2iaXBCfFGvAyif7/f8nQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- magic-string-ast@0.3.0:
- resolution: {integrity: sha512-0shqecEPgdFpnI3AP90epXyxZy9g6CRZ+SZ7BcqFwYmtFEnZ1jpevcV5HoyVnlDS9gCnc1UIg3Rsvp3Ci7r8OA==}
+ magic-string-ast@0.6.2:
+ resolution: {integrity: sha512-oN3Bcd7ZVt+0VGEs7402qR/tjgjbM7kPlH/z7ufJnzTLVBzXJITRHOJiwMmmYMgZfdoWQsfQcY+iKlxiBppnMA==}
engines: {node: '>=16.14.0'}
- magic-string@0.30.10:
- resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}
-
- magic-string@0.30.5:
- resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==}
- engines: {node: '>=12'}
+ magic-string@0.30.11:
+ resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
- magicast@0.3.4:
- resolution: {integrity: sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q==}
+ magicast@0.3.5:
+ resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==}
make-dir@3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
@@ -4779,14 +4083,44 @@ packages:
mark.js@8.11.1:
resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==}
- mdast-util-from-markdown@0.8.5:
- resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==}
+ markdown-table@3.0.3:
+ resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==}
- mdast-util-to-hast@13.0.2:
- resolution: {integrity: sha512-U5I+500EOOw9e3ZrclN3Is3fRpw8c19SMyNZlZ2IS+7vLsNzb2Om11VpIVOR+/0137GhZsFEF6YiKD5+0Hr2Og==}
+ mdast-util-find-and-replace@3.0.1:
+ resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==}
- mdast-util-to-string@2.0.0:
- resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==}
+ mdast-util-from-markdown@2.0.1:
+ resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==}
+
+ mdast-util-gfm-autolink-literal@2.0.1:
+ resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==}
+
+ mdast-util-gfm-footnote@2.0.0:
+ resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==}
+
+ mdast-util-gfm-strikethrough@2.0.0:
+ resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==}
+
+ mdast-util-gfm-table@2.0.0:
+ resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==}
+
+ mdast-util-gfm-task-list-item@2.0.0:
+ resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==}
+
+ mdast-util-gfm@3.0.0:
+ resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==}
+
+ mdast-util-phrasing@4.1.0:
+ resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
+
+ mdast-util-to-hast@13.2.0:
+ resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==}
+
+ mdast-util-to-markdown@2.1.0:
+ resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==}
+
+ mdast-util-to-string@4.0.0:
+ resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
mdn-data@2.0.28:
resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==}
@@ -4794,14 +4128,14 @@ packages:
mdn-data@2.0.30:
resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
- memory-fs@0.5.0:
- resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==}
- engines: {node: '>=4.3.0 <5.0.0 || >=5.10'}
-
meow@12.1.1:
resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==}
engines: {node: '>=16.10'}
+ meow@13.2.0:
+ resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==}
+ engines: {node: '>=18'}
+
merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
@@ -4812,30 +4146,92 @@ packages:
meshoptimizer@0.18.1:
resolution: {integrity: sha512-ZhoIoL7TNV4s5B6+rx5mC//fw8/POGyNxS/DZyCJeiZ12ScLfVwRE/GfsxwiTkMYYD5DmK2/JXnEVXqL4rF+Sw==}
- micromark-util-character@2.0.1:
- resolution: {integrity: sha512-3wgnrmEAJ4T+mGXAUfMvMAbxU9RDG43XmGce4j6CwPtVxB3vfwXSZ6KhFwDzZ3mZHhmPimMAXg71veiBGzeAZw==}
+ micromark-core-commonmark@2.0.1:
+ resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==}
+
+ micromark-extension-gfm-autolink-literal@2.1.0:
+ resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==}
+
+ micromark-extension-gfm-footnote@2.1.0:
+ resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==}
+
+ micromark-extension-gfm-strikethrough@2.1.0:
+ resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==}
+
+ micromark-extension-gfm-table@2.1.0:
+ resolution: {integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==}
+
+ micromark-extension-gfm-tagfilter@2.0.0:
+ resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==}
+
+ micromark-extension-gfm-task-list-item@2.1.0:
+ resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==}
+
+ micromark-extension-gfm@3.0.0:
+ resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==}
+
+ micromark-factory-destination@2.0.0:
+ resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==}
+
+ micromark-factory-label@2.0.0:
+ resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==}
+
+ micromark-factory-space@2.0.0:
+ resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==}
+
+ micromark-factory-title@2.0.0:
+ resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==}
+
+ micromark-factory-whitespace@2.0.0:
+ resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==}
+
+ micromark-util-character@2.1.0:
+ resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==}
+
+ micromark-util-chunked@2.0.0:
+ resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==}
+
+ micromark-util-classify-character@2.0.0:
+ resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==}
+
+ micromark-util-combine-extensions@2.0.0:
+ resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==}
+
+ micromark-util-decode-numeric-character-reference@2.0.1:
+ resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==}
+
+ micromark-util-decode-string@2.0.0:
+ resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==}
micromark-util-encode@2.0.0:
resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==}
+ micromark-util-html-tag-name@2.0.0:
+ resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==}
+
+ micromark-util-normalize-identifier@2.0.0:
+ resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==}
+
+ micromark-util-resolve-all@2.0.0:
+ resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==}
+
micromark-util-sanitize-uri@2.0.0:
resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==}
+ micromark-util-subtokenize@2.0.1:
+ resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==}
+
micromark-util-symbol@2.0.0:
resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==}
micromark-util-types@2.0.0:
resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==}
- micromark@2.11.4:
- resolution: {integrity: sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==}
-
- micromatch@4.0.5:
- resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
- engines: {node: '>=8.6'}
+ micromark@4.0.0:
+ resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==}
- micromatch@4.0.7:
- resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
+ micromatch@4.0.8:
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
engines: {node: '>=8.6'}
mime-db@1.52.0:
@@ -4851,16 +4247,16 @@ packages:
engines: {node: '>=4'}
hasBin: true
- mime@2.5.2:
- resolution: {integrity: sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==}
- engines: {node: '>=4.0.0'}
- hasBin: true
-
mime@3.0.0:
resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
engines: {node: '>=10.0.0'}
hasBin: true
+ mime@4.0.4:
+ resolution: {integrity: sha512-v8yqInVjhXyqP6+Kw4fV3ZzeMRqEW6FotRsKXjRS5VMTNIuXsdRoAvklpoRgSqXm6o9VNH4/C0mgedko9DdLsQ==}
+ engines: {node: '>=16'}
+ hasBin: true
+
mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
@@ -4891,14 +4287,6 @@ packages:
resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
engines: {node: '>=10'}
- minimatch@9.0.3:
- resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
- engines: {node: '>=16 || 14 >=14.17'}
-
- minimatch@9.0.4:
- resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==}
- engines: {node: '>=16 || 14 >=14.17'}
-
minimatch@9.0.5:
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -4914,6 +4302,10 @@ packages:
resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
engines: {node: '>=8'}
+ minipass@7.1.2:
+ resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
+ engines: {node: '>=16 || 14 >=14.17'}
+
minisearch@6.3.0:
resolution: {integrity: sha512-ihFnidEeU8iXzcVHy74dhkxh/dn8Dc08ERl0xwoMMGqp4+LvRSCgicb+zGqWthVokQKvCSxITlh3P08OzdTYCQ==}
@@ -4932,12 +4324,6 @@ packages:
engines: {node: '>=10'}
hasBin: true
- mlly@1.4.2:
- resolution: {integrity: sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==}
-
- mlly@1.7.0:
- resolution: {integrity: sha512-U9SDaXGEREBYQgfejV97coK0UL1r+qnF2SyO9A3qcI8MzKnsIFKHNVEkrDyNncQTKQQumsasmeq84eNMdBfsNQ==}
-
mlly@1.7.1:
resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==}
@@ -4956,9 +4342,6 @@ packages:
ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
- ms@2.1.2:
- resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
-
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
@@ -4974,11 +4357,14 @@ packages:
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- nanoid@4.0.2:
- resolution: {integrity: sha512-7ZtY5KTCNheRGfEFxnedV5zFiORN1+Y1N6zvPTnHQd8ENUvfaDBeuJDZb2bN/oXwXxu3qkTXDzy57W5vAmDTBw==}
- engines: {node: ^14 || ^16 || >=18}
+ nanoid@5.0.7:
+ resolution: {integrity: sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ==}
+ engines: {node: ^18 || >=20}
hasBin: true
+ nanotar@0.1.1:
+ resolution: {integrity: sha512-AiJsGsSF3O0havL1BydvI4+wR76sKT+okKRwWIaK96cZUnXqH0uNBOsHlbwZq3+m2BR1VKqHDVudl3gO4mYjpQ==}
+
natural-compare-lite@1.4.0:
resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
@@ -4996,8 +4382,8 @@ packages:
resolution: {integrity: sha512-NHDDGYudnvRutt/VhKFlX26IotXe1w0cmkDm6JGquh5bz/bDTw0LufSmH/GxTjEdpHEO+bVKFTwdrcGa/9XlKQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- nitropack@2.7.0:
- resolution: {integrity: sha512-U5/Uq0k4PO3/yDM1Sao6JZc/i1DhiI2Eq/AMm92idgQ6B3NbwD0A3u9SZNIHyqEyFogOgi3qsdnRo9KWc5jgVg==}
+ nitropack@2.9.7:
+ resolution: {integrity: sha512-aKXvtNrWkOCMsQbsk4A0qQdBjrJ1ZcvwlTQevI/LAgLWLYc5L7Q/YiYxGLal4ITyNSlzir1Cm1D2ZxnYhmpMEw==}
engines: {node: ^16.11.0 || >=17.0.0}
hasBin: true
peerDependencies:
@@ -5006,9 +4392,6 @@ packages:
xml2js:
optional: true
- node-addon-api@7.0.0:
- resolution: {integrity: sha512-vgbBJTS4m5/KkE16t5Ly0WW9hz46swAstv0hYYwMtbG7AznRhNyfLRe8HZAiWIpcHzoO7HxhLuBQj9rJ/Ho0ZA==}
-
node-addon-api@7.1.1:
resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
@@ -5016,9 +4399,6 @@ packages:
resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
engines: {node: '>=10.5.0'}
- node-fetch-native@1.4.0:
- resolution: {integrity: sha512-F5kfEj95kX8tkDhUCYdV8dg3/8Olx/94zB8+ZNthFs6Bz31UpUi8Xh40TN3thLwXgrwXry1pEg9lJ++tLWTcqA==}
-
node-fetch-native@1.6.4:
resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==}
@@ -5039,16 +4419,10 @@ packages:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
engines: {node: '>= 6.13.0'}
- node-gyp-build@4.6.1:
- resolution: {integrity: sha512-24vnklJmyRS8ViBNI8KbtK/r/DmXQMRiOMXTNz2nrTnAYUwjmEEbnnpB/+kt+yWRv73bPsSPRFddrcIbAxSiMQ==}
+ node-gyp-build@4.8.2:
+ resolution: {integrity: sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==}
hasBin: true
- node-releases@2.0.13:
- resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
-
- node-releases@2.0.14:
- resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
-
node-releases@2.0.18:
resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
@@ -5060,8 +4434,8 @@ packages:
normalize-package-data@2.5.0:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
- normalize-package-data@6.0.0:
- resolution: {integrity: sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==}
+ normalize-package-data@6.0.2:
+ resolution: {integrity: sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==}
engines: {node: ^16.14.0 || >=18.0.0}
normalize-path@3.0.0:
@@ -5080,10 +4454,6 @@ packages:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
- npm-run-path@5.1.0:
- resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
npm-run-path@5.3.0:
resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -5095,13 +4465,13 @@ packages:
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
- nuxi@3.9.1:
- resolution: {integrity: sha512-4R4tcC2uQ5QCnHxyKoX5nZm/YUesCcQM3bZBKYU/8ZWrWjK6aPG6Q5zOQG1aLPkAotyahNsqtSiU/CrRoenEgA==}
- engines: {node: ^14.18.0 || >=16.10.0}
+ nuxi@3.13.2:
+ resolution: {integrity: sha512-yAgpxBcIB2/DWL7dWRZOQa5ULLZQ4AWgYdqtUDbeOZ3KxmY/+fqm8/UJuU7QK81JrccNaZeSI+GLe5BY7RR3cQ==}
+ engines: {node: ^16.10.0 || >=18.0.0}
hasBin: true
- nuxt@3.8.0:
- resolution: {integrity: sha512-ZnisJYx5AcUl7xlw18m6zfINBpNhld+ZF+jdTLRZxkLjKSFZeFMGqKxOR1jNVSmxfIXM/guK0uV9GPm6HK/z7g==}
+ nuxt@3.13.2:
+ resolution: {integrity: sha512-Bjc2qRsipfBhjXsBEJCN+EUAukhdgFv/KoIR5HFB2hZOYRSqXBod3oWQs78k3ja1nlIhAEdBG533898KJxUtJw==}
engines: {node: ^14.18.0 || >=16.10.0}
hasBin: true
peerDependencies:
@@ -5113,13 +4483,8 @@ packages:
'@types/node':
optional: true
- nypm@0.3.3:
- resolution: {integrity: sha512-FHoxtTscAE723e80d2M9cJRb4YVjL82Ra+ZV+YqC6rfNZUWahi+ZhPF+krnR+bdMvibsfHCtgKXnZf5R6kmEPA==}
- engines: {node: ^14.16.0 || >=16.10.0}
- hasBin: true
-
- nypm@0.3.9:
- resolution: {integrity: sha512-BI2SdqqTHg2d4wJh8P9A1W+bslg33vOE9IZDY6eR2QC+Pu1iNBVZUqczrd43rJb+fMzHU7ltAYKsEFY/kHMFcw==}
+ nypm@0.3.11:
+ resolution: {integrity: sha512-E5GqaAYSnbb6n1qZyik2wjPDZON43FqOJO59+3OkWrnmQtjggrMOVnsyzfjxp/tS6nlYJBA4zRA5jSM2YaadMg==}
engines: {node: ^14.16.0 || >=16.10.0}
hasBin: true
@@ -5131,14 +4496,11 @@ packages:
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
- ofetch@1.3.3:
- resolution: {integrity: sha512-s1ZCMmQWXy4b5K/TW9i/DtiN8Ku+xCiHcjQ6/J/nDdssirrQNOoB165Zu8EqLMA2lln1JUth9a0aW9Ap2ctrUg==}
-
- ofetch@1.3.4:
- resolution: {integrity: sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw==}
+ ofetch@1.4.0:
+ resolution: {integrity: sha512-MuHgsEhU6zGeX+EMh+8mSMrYTnsqJQQrpM00Q6QHMKNqQ0bKy0B43tk8tL1wg+CnsSTy1kg4Ir2T5Ig6rD+dfQ==}
- ohash@1.1.3:
- resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==}
+ ohash@1.1.4:
+ resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==}
on-finished@2.4.1:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
@@ -5155,6 +4517,9 @@ packages:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
engines: {node: '>=12'}
+ oniguruma-to-js@0.4.3:
+ resolution: {integrity: sha512-X0jWUcAlxORhOqqBREgPMgnshB7ZGYszBNspP+tS9hPD3l13CdaXcHbgImoHUHlrvGx/7AvFEkTRhAGYh+jzjQ==}
+
open@10.1.0:
resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
engines: {node: '>=18'}
@@ -5163,8 +4528,8 @@ packages:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
- openapi-typescript@6.7.0:
- resolution: {integrity: sha512-eoUfJwhnMEug7euZ1dATG7iRiDVsEROwdPkhLUDiaFjcClV4lzft9F0Ii0fYjULCPNIiWiFi0BqMpSxipuvAgQ==}
+ openapi-typescript@6.7.6:
+ resolution: {integrity: sha512-c/hfooPx+RBIOPM09GSxABOZhYPblDoyaGhqBkD/59vtpN21jEuWKDlM0KYTvqJVlSYjKs0tBcIdeXKChlSPtw==}
hasBin: true
optionator@0.9.4:
@@ -5227,17 +4592,20 @@ packages:
resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==}
engines: {node: '>= 14'}
+ package-json-from-dist@1.0.0:
+ resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==}
+
package-json@10.0.1:
resolution: {integrity: sha512-ua1L4OgXSBdsu1FPb7F3tYH0F48a6kxvod4pLUlGY9COeJAJQNX/sNH2IiEmsxw7lqYiAwrdHMjz1FctOsyDQg==}
engines: {node: '>=18'}
+ package-manager-detector@0.2.0:
+ resolution: {integrity: sha512-E385OSk9qDcXhcM9LNSe4sdhx8a9mAPrZ4sMLW+tmxl5ZuGtPUcdFu+MPP2jbgiWAZ6Pfe5soGFMd+0Db5Vrog==}
+
parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
- parse-entities@2.0.0:
- resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==}
-
parse-git-config@3.0.0:
resolution: {integrity: sha512-wXoQGL1D+2COYWCD35/xbiKma1Z15xvZL8cI25wvxzled58V51SJM04Urt/uznS900iQor7QO04SgdfT/XlbuA==}
engines: {node: '>=8'}
@@ -5246,6 +4614,10 @@ packages:
resolution: {integrity: sha512-RmVuCHWsfu0QPNW+mraxh/xjQVw/lhUCUru8Zni3Ctq3AoMhpDTq0OVdKS6iesd6Kqb7viCV3isAL43dciOSog==}
engines: {node: '>=14'}
+ parse-imports@2.2.1:
+ resolution: {integrity: sha512-OL/zLggRp8mFhKL0rNORUTR4yBYujK/uU+xZL+/0Rgm2QE4nLO9v8PzEweSJEbMGKmDRjJE4R3IMJlL2di4JeQ==}
+ engines: {node: '>= 18'}
+
parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
@@ -5260,9 +4632,6 @@ packages:
parse-url@8.1.0:
resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==}
- parse5@7.1.2:
- resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
-
parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
@@ -5293,9 +4662,9 @@ packages:
path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- path-type@4.0.0:
- resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
- engines: {node: '>=8'}
+ path-scurry@1.11.1:
+ resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
+ engines: {node: '>=16 || 14 >=14.18'}
path-type@5.0.0:
resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==}
@@ -5307,11 +4676,8 @@ packages:
perfect-debounce@1.0.0:
resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
- picocolors@1.0.0:
- resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
-
- picocolors@1.0.1:
- resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
+ picocolors@1.1.0:
+ resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
@@ -5321,232 +4687,196 @@ packages:
resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
engines: {node: '>=12'}
- pify@2.3.0:
- resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
- engines: {node: '>=0.10.0'}
-
- pkg-types@1.0.3:
- resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==}
-
- pkg-types@1.1.1:
- resolution: {integrity: sha512-ko14TjmDuQJ14zsotODv7dBlwxKhUKQEhuhmbqo1uCi9BB0Z2alo/wAXg6q1dTR5TyuqYyWhjtfe/Tsh+X28jQ==}
-
- pkg-types@1.1.3:
- resolution: {integrity: sha512-+JrgthZG6m3ckicaOB74TwQ+tBWsFl3qVQg7mN8ulwSOElJ7gBhKzj2VkCPnZ4NlF6kEquYU+RIYNVAvzd54UA==}
+ pkg-types@1.2.0:
+ resolution: {integrity: sha512-+ifYuSSqOQ8CqP4MbZA5hDpb97n3E8SVWdJe+Wms9kj745lmd3b7EZJiqvmLwAlmRfjrI7Hi5z3kdBJ93lFNPA==}
pluralize@8.0.0:
resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
engines: {node: '>=4'}
- postcss-calc@9.0.1:
- resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==}
- engines: {node: ^14 || ^16 || >=18.0}
- peerDependencies:
- postcss: ^8.2.2
-
- postcss-colormin@6.0.0:
- resolution: {integrity: sha512-EuO+bAUmutWoZYgHn2T1dG1pPqHU6L4TjzPlu4t1wZGXQ/fxV16xg2EJmYi0z+6r+MGV1yvpx1BHkUaRrPa2bw==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-calc@10.0.2:
+ resolution: {integrity: sha512-DT/Wwm6fCKgpYVI7ZEWuPJ4az8hiEHtCUeYjZXqU7Ou4QqYh1Df2yCQ7Ca6N7xqKPFkxN3fhf+u9KSoOCJNAjg==}
+ engines: {node: ^18.12 || ^20.9 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.38
- postcss-convert-values@6.0.0:
- resolution: {integrity: sha512-U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-colormin@7.0.2:
+ resolution: {integrity: sha512-YntRXNngcvEvDbEjTdRWGU606eZvB5prmHG4BF0yLmVpamXbpsRJzevyy6MZVyuecgzI2AWAlvFi8DAeCqwpvA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-discard-comments@6.0.0:
- resolution: {integrity: sha512-p2skSGqzPMZkEQvJsgnkBhCn8gI7NzRH2683EEjrIkoMiwRELx68yoUJ3q3DGSGuQ8Ug9Gsn+OuDr46yfO+eFw==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-convert-values@7.0.4:
+ resolution: {integrity: sha512-e2LSXPqEHVW6aoGbjV9RsSSNDO3A0rZLCBxN24zvxF25WknMPpX8Dm9UxxThyEbaytzggRuZxaGXqaOhxQ514Q==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-discard-duplicates@6.0.0:
- resolution: {integrity: sha512-bU1SXIizMLtDW4oSsi5C/xHKbhLlhek/0/yCnoMQany9k3nPBq+Ctsv/9oMmyqbR96HYHxZcHyK2HR5P/mqoGA==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-discard-comments@7.0.3:
+ resolution: {integrity: sha512-q6fjd4WU4afNhWOA2WltHgCbkRhZPgQe7cXF74fuVB/ge4QbM9HEaOIzGSiMvM+g/cOsNAUGdf2JDzqA2F8iLA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-discard-empty@6.0.0:
- resolution: {integrity: sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-discard-duplicates@7.0.1:
+ resolution: {integrity: sha512-oZA+v8Jkpu1ct/xbbrntHRsfLGuzoP+cpt0nJe5ED2FQF8n8bJtn7Bo28jSmBYwqgqnqkuSXJfSUEE7if4nClQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-discard-overridden@6.0.0:
- resolution: {integrity: sha512-4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-discard-empty@7.0.0:
+ resolution: {integrity: sha512-e+QzoReTZ8IAwhnSdp/++7gBZ/F+nBq9y6PomfwORfP7q9nBpK5AMP64kOt0bA+lShBFbBDcgpJ3X4etHg4lzA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
-
- postcss-import-resolver@2.0.0:
- resolution: {integrity: sha512-y001XYgGvVwgxyxw9J1a5kqM/vtmIQGzx34g0A0Oy44MFcy/ZboZw1hu/iN3VYFjSTRzbvd7zZJJz0Kh0AGkTw==}
+ postcss: ^8.4.31
- postcss-import@15.1.0:
- resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
- engines: {node: '>=14.0.0'}
+ postcss-discard-overridden@7.0.0:
+ resolution: {integrity: sha512-GmNAzx88u3k2+sBTZrJSDauR0ccpE24omTQCVmaTTZFz1du6AasspjaUPMJ2ud4RslZpoFKyf+6MSPETLojc6w==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.0.0
+ postcss: ^8.4.31
- postcss-merge-longhand@6.0.0:
- resolution: {integrity: sha512-4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-merge-longhand@7.0.4:
+ resolution: {integrity: sha512-zer1KoZA54Q8RVHKOY5vMke0cCdNxMP3KBfDerjH/BYHh4nCIh+1Yy0t1pAEQF18ac/4z3OFclO+ZVH8azjR4A==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-merge-rules@6.0.1:
- resolution: {integrity: sha512-a4tlmJIQo9SCjcfiCcCMg/ZCEe0XTkl/xK0XHBs955GWg9xDX3NwP9pwZ78QUOWB8/0XCjZeJn98Dae0zg6AAw==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-merge-rules@7.0.4:
+ resolution: {integrity: sha512-ZsaamiMVu7uBYsIdGtKJ64PkcQt6Pcpep/uO90EpLS3dxJi6OXamIobTYcImyXGoW0Wpugh7DSD3XzxZS9JCPg==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-minify-font-values@6.0.0:
- resolution: {integrity: sha512-zNRAVtyh5E8ndZEYXA4WS8ZYsAp798HiIQ1V2UF/C/munLp2r1UGHwf1+6JFu7hdEhJFN+W1WJQKBrtjhFgEnA==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-minify-font-values@7.0.0:
+ resolution: {integrity: sha512-2ckkZtgT0zG8SMc5aoNwtm5234eUx1GGFJKf2b1bSp8UflqaeFzR50lid4PfqVI9NtGqJ2J4Y7fwvnP/u1cQog==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-minify-gradients@6.0.0:
- resolution: {integrity: sha512-wO0F6YfVAR+K1xVxF53ueZJza3L+R3E6cp0VwuXJQejnNUH0DjcAFe3JEBeTY1dLwGa0NlDWueCA1VlEfiKgAA==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-minify-gradients@7.0.0:
+ resolution: {integrity: sha512-pdUIIdj/C93ryCHew0UgBnL2DtUS3hfFa5XtERrs4x+hmpMYGhbzo6l/Ir5de41O0GaKVpK1ZbDNXSY6GkXvtg==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-minify-params@6.0.0:
- resolution: {integrity: sha512-Fz/wMQDveiS0n5JPcvsMeyNXOIMrwF88n7196puSuQSWSa+/Ofc1gDOSY2xi8+A4PqB5dlYCKk/WfqKqsI+ReQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-minify-params@7.0.2:
+ resolution: {integrity: sha512-nyqVLu4MFl9df32zTsdcLqCFfE/z2+f8GE1KHPxWOAmegSo6lpV2GNy5XQvrzwbLmiU7d+fYay4cwto1oNdAaQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-minify-selectors@6.0.0:
- resolution: {integrity: sha512-ec/q9JNCOC2CRDNnypipGfOhbYPuUkewGwLnbv6omue/PSASbHSU7s6uSQ0tcFRVv731oMIx8k0SP4ZX6be/0g==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-minify-selectors@7.0.4:
+ resolution: {integrity: sha512-JG55VADcNb4xFCf75hXkzc1rNeURhlo7ugf6JjiiKRfMsKlDzN9CXHZDyiG6x/zGchpjQS+UAgb1d4nqXqOpmA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-normalize-charset@6.0.0:
- resolution: {integrity: sha512-cqundwChbu8yO/gSWkuFDmKrCZ2vJzDAocheT2JTd0sFNA4HMGoKMfbk2B+J0OmO0t5GUkiAkSM5yF2rSLUjgQ==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-charset@7.0.0:
+ resolution: {integrity: sha512-ABisNUXMeZeDNzCQxPxBCkXexvBrUHV+p7/BXOY+ulxkcjUZO0cp8ekGBwvIh2LbCwnWbyMPNJVtBSdyhM2zYQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-normalize-display-values@6.0.0:
- resolution: {integrity: sha512-Qyt5kMrvy7dJRO3OjF7zkotGfuYALETZE+4lk66sziWSPzlBEt7FrUshV6VLECkI4EN8Z863O6Nci4NXQGNzYw==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-display-values@7.0.0:
+ resolution: {integrity: sha512-lnFZzNPeDf5uGMPYgGOw7v0BfB45+irSRz9gHQStdkkhiM0gTfvWkWB5BMxpn0OqgOQuZG/mRlZyJxp0EImr2Q==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-normalize-positions@6.0.0:
- resolution: {integrity: sha512-mPCzhSV8+30FZyWhxi6UoVRYd3ZBJgTRly4hOkaSifo0H+pjDYcii/aVT4YE6QpOil15a5uiv6ftnY3rm0igPg==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-positions@7.0.0:
+ resolution: {integrity: sha512-I0yt8wX529UKIGs2y/9Ybs2CelSvItfmvg/DBIjTnoUSrPxSV7Z0yZ8ShSVtKNaV/wAY+m7bgtyVQLhB00A1NQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-normalize-repeat-style@6.0.0:
- resolution: {integrity: sha512-50W5JWEBiOOAez2AKBh4kRFm2uhrT3O1Uwdxz7k24aKtbD83vqmcVG7zoIwo6xI2FZ/HDlbrCopXhLeTpQib1A==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-repeat-style@7.0.0:
+ resolution: {integrity: sha512-o3uSGYH+2q30ieM3ppu9GTjSXIzOrRdCUn8UOMGNw7Af61bmurHTWI87hRybrP6xDHvOe5WlAj3XzN6vEO8jLw==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-normalize-string@6.0.0:
- resolution: {integrity: sha512-KWkIB7TrPOiqb8ZZz6homet2KWKJwIlysF5ICPZrXAylGe2hzX/HSf4NTX2rRPJMAtlRsj/yfkrWGavFuB+c0w==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-string@7.0.0:
+ resolution: {integrity: sha512-w/qzL212DFVOpMy3UGyxrND+Kb0fvCiBBujiaONIihq7VvtC7bswjWgKQU/w4VcRyDD8gpfqUiBQ4DUOwEJ6Qg==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-normalize-timing-functions@6.0.0:
- resolution: {integrity: sha512-tpIXWciXBp5CiFs8sem90IWlw76FV4oi6QEWfQwyeREVwUy39VSeSqjAT7X0Qw650yAimYW5gkl2Gd871N5SQg==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-timing-functions@7.0.0:
+ resolution: {integrity: sha512-tNgw3YV0LYoRwg43N3lTe3AEWZ66W7Dh7lVEpJbHoKOuHc1sLrzMLMFjP8SNULHaykzsonUEDbKedv8C+7ej6g==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-normalize-unicode@6.0.0:
- resolution: {integrity: sha512-ui5crYkb5ubEUDugDc786L/Me+DXp2dLg3fVJbqyAl0VPkAeALyAijF2zOsnZyaS1HyfPuMH0DwyY18VMFVNkg==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-unicode@7.0.2:
+ resolution: {integrity: sha512-ztisabK5C/+ZWBdYC+Y9JCkp3M9qBv/XFvDtSw0d/XwfT3UaKeW/YTm/MD/QrPNxuecia46vkfEhewjwcYFjkg==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-normalize-url@6.0.0:
- resolution: {integrity: sha512-98mvh2QzIPbb02YDIrYvAg4OUzGH7s1ZgHlD3fIdTHLgPLRpv1ZTKJDnSAKr4Rt21ZQFzwhGMXxpXlfrUBKFHw==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-url@7.0.0:
+ resolution: {integrity: sha512-+d7+PpE+jyPX1hDQZYG+NaFD+Nd2ris6r8fPTBAjE8z/U41n/bib3vze8x7rKs5H1uEw5ppe9IojewouHk0klQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-normalize-whitespace@6.0.0:
- resolution: {integrity: sha512-7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-normalize-whitespace@7.0.0:
+ resolution: {integrity: sha512-37/toN4wwZErqohedXYqWgvcHUGlT8O/m2jVkAfAe9Bd4MzRqlBmXrJRePH0e9Wgnz2X7KymTgTOaaFizQe3AQ==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-ordered-values@6.0.0:
- resolution: {integrity: sha512-K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-ordered-values@7.0.1:
+ resolution: {integrity: sha512-irWScWRL6nRzYmBOXReIKch75RRhNS86UPUAxXdmW/l0FcAsg0lvAXQCby/1lymxn/o0gVa6Rv/0f03eJOwHxw==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-reduce-initial@6.0.0:
- resolution: {integrity: sha512-s2UOnidpVuXu6JiiI5U+fV2jamAw5YNA9Fdi/GRK0zLDLCfXmSGqQtzpUPtfN66RtCbb9fFHoyZdQaxOB3WxVA==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-reduce-initial@7.0.2:
+ resolution: {integrity: sha512-pOnu9zqQww7dEKf62Nuju6JgsW2V0KRNBHxeKohU+JkHd/GAH5uvoObqFLqkeB2n20mr6yrlWDvo5UBU5GnkfA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-reduce-transforms@6.0.0:
- resolution: {integrity: sha512-FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-reduce-transforms@7.0.0:
+ resolution: {integrity: sha512-pnt1HKKZ07/idH8cpATX/ujMbtOGhUfE+m8gbqwJE05aTaNw8gbo34a2e3if0xc0dlu75sUOiqvwCGY3fzOHew==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
-
- postcss-selector-parser@6.0.13:
- resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==}
- engines: {node: '>=4'}
+ postcss: ^8.4.31
- postcss-selector-parser@6.0.16:
- resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}
+ postcss-selector-parser@6.1.2:
+ resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
engines: {node: '>=4'}
- postcss-svgo@6.0.0:
- resolution: {integrity: sha512-r9zvj/wGAoAIodn84dR/kFqwhINp5YsJkLoujybWG59grR/IHx+uQ2Zo+IcOwM0jskfYX3R0mo+1Kip1VSNcvw==}
- engines: {node: ^14 || ^16 || >= 18}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-unique-selectors@6.0.0:
- resolution: {integrity: sha512-EPQzpZNxOxP7777t73RQpZE5e9TrnCrkvp7AH7a0l89JmZiPnS82y216JowHXwpBCQitfyxrof9TK3rYbi7/Yw==}
- engines: {node: ^14 || ^16 || >=18.0}
+ postcss-svgo@7.0.1:
+ resolution: {integrity: sha512-0WBUlSL4lhD9rA5k1e5D8EN5wCEyZD6HJk0jIvRxl+FDVOMlJ7DePHYWGGVc5QRqrJ3/06FTXM0bxjmJpmTPSA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >= 18}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
- postcss-url@10.1.3:
- resolution: {integrity: sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==}
- engines: {node: '>=10'}
+ postcss-unique-selectors@7.0.3:
+ resolution: {integrity: sha512-J+58u5Ic5T1QjP/LDV9g3Cx4CNOgB5vz+kM6+OxHHhFACdcDeKhBXjQmB7fnIZM12YSTvsL0Opwco83DmacW2g==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.0.0
+ postcss: ^8.4.31
postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- postcss@8.4.38:
- resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
- engines: {node: ^10 || ^12 || >=14}
-
- postcss@8.4.40:
- resolution: {integrity: sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==}
+ postcss@8.4.47:
+ resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
engines: {node: ^10 || ^12 || >=14}
- postprocessing@6.36.0:
- resolution: {integrity: sha512-7V2t8Yi+Edh0FybErMdBV3CCJ/tTeNeLh6z+i0VczwZ6HGV3XyRfC8v4Ps9a6tjawcTvatLptQzX8QnDlU8BXw==}
+ postprocessing@6.36.2:
+ resolution: {integrity: sha512-a1qZjpm0Vrozat7YFtYOEvwElWz/ukhxoA+K7HzDVeor20vzacREMnJZL5GTj6TFVr7/ma3W0qD03Go0V5gQOA==}
peerDependencies:
- three: '>= 0.157.0 < 0.168.0'
+ three: '>= 0.157.0 < 0.169.0'
potpack@1.0.2:
resolution: {integrity: sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ==}
- preact@10.19.2:
- resolution: {integrity: sha512-UA9DX/OJwv6YwP9Vn7Ti/vF80XL+YA5H2l7BpCtUr3ya8LWHFzpiO5R+N7dN16ujpIxhekRFuOOF82bXX7K/lg==}
-
- preact@10.23.1:
- resolution: {integrity: sha512-O5UdRsNh4vdZaTieWe3XOgSpdMAmkIYBCT3VhQDlKrzyCm8lUYsk0fmVEvoQQifoOjFRTaHZO69ylrzTW2BH+A==}
+ preact@10.24.0:
+ resolution: {integrity: sha512-aK8Cf+jkfyuZ0ZZRG9FbYqwmEiGQ4y/PUO4SuTWoyWL244nZZh7bd5h2APd4rSNDYTBNghg1L+5iJN3Skxtbsw==}
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
@@ -5556,8 +4886,8 @@ packages:
resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
engines: {node: '>=6.0.0'}
- prettier@3.2.5:
- resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==}
+ prettier@3.3.3:
+ resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==}
engines: {node: '>=14'}
hasBin: true
@@ -5568,12 +4898,16 @@ packages:
process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
+ process@0.11.10:
+ resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
+ engines: {node: '>= 0.6.0'}
+
prompts@2.4.2:
resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
engines: {node: '>= 6'}
- property-information@6.4.0:
- resolution: {integrity: sha512-9t5qARVofg2xQqKtytzt+lZ4d1Qvj8t5B8fEwXK6qOfgRLgH/b13QlgEyDh033NOS31nXeFbYv7CLUDG1CeifQ==}
+ property-information@6.5.0:
+ resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==}
proto-list@1.2.4:
resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
@@ -5588,9 +4922,6 @@ packages:
proxy-from-env@1.1.0:
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
- prr@1.0.1:
- resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
-
punycode@2.3.1:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
@@ -5613,8 +4944,8 @@ packages:
resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
engines: {node: '>=10'}
- radix3@1.1.0:
- resolution: {integrity: sha512-pNsHDxbGORSvuSScqNJ+3Km6QAVqk8CfsCBIEoDgpqLrkD2f3QM4I7d1ozJJ172OmIcoUcerZaNWqtLkRXTV3A==}
+ radix3@1.1.2:
+ resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==}
randombytes@2.1.0:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
@@ -5623,9 +4954,6 @@ packages:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
- rc9@2.1.1:
- resolution: {integrity: sha512-lNeOl38Ws0eNxpO3+wD1I9rkHGQyj1NU1jlzv4go2CtEnEQEUfqnIvZG7W+bC/aXdJ27n5x/yUjb6RoT9tko+Q==}
-
rc9@2.1.2:
resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==}
@@ -5633,9 +4961,6 @@ packages:
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
hasBin: true
- read-cache@1.0.0:
- resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
-
read-pkg-up@10.1.0:
resolution: {integrity: sha512-aNtBq4jR8NawpKJQldrQcSW9y/d+KWH4v24HWkHljOZ7H0av+YTGANBzRh9A5pw7v/bLVsLVPpOhJ7gHNVy8lA==}
engines: {node: '>=16'}
@@ -5662,6 +4987,10 @@ packages:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
+ readable-stream@4.5.2:
+ resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
readdir-glob@1.1.3:
resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==}
@@ -5685,6 +5014,9 @@ packages:
resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+ regex@4.3.2:
+ resolution: {integrity: sha512-kK/AA3A9K6q2js89+VMymcboLOlF5lZRCYJv3gzszXFHBr6kO6qLGzbm+UIugBEV8SMMKCTR59txoY6ctRHYVw==}
+
regexp-ast-analysis@0.7.1:
resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
@@ -5778,13 +5110,8 @@ packages:
rollup:
optional: true
- rollup@3.29.4:
- resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==}
- engines: {node: '>=14.18.0', npm: '>=8.0.0'}
- hasBin: true
-
- rollup@4.19.0:
- resolution: {integrity: sha512-5r7EYSQIowHsK4eTZ0Y81qpZuJz+MUuYeqmmYmRMl1nwhdmbiYqt5jwzf6u7wyOzJgYqtCRMtVRKOtHANBz7rA==}
+ rollup@4.22.4:
+ resolution: {integrity: sha512-vD8HJ5raRcWOyymsR6Z3o6+RzfEPCnVLMFJ6vRslO1jt4LO6dUo5Qnpg7y4RkZFM2DMe3WUirkI5c16onjrc6A==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -5815,14 +5142,11 @@ packages:
resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==}
engines: {node: ^14.0.0 || >=16.0.0}
- scule@1.0.0:
- resolution: {integrity: sha512-4AsO/FrViE/iDNEPaAQlb77tf0csuq27EsVpy6ett584EcRTp6pTDLoGWVxCD77y5iU5FauOvhsI4o1APwPoSQ==}
-
scule@1.3.0:
resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
- search-insights@2.15.0:
- resolution: {integrity: sha512-ch2sPCUDD4sbPQdknVl9ALSi9H7VyoeVbsxznYz6QV55jJ8CI3EtwpO1i84keN4+hF5IeHWIeGvc08530JkVXQ==}
+ search-insights@2.17.2:
+ resolution: {integrity: sha512-zFNpOpUO+tY2D85KrxJ+aqwnIfdEGi06UH2+xEb+Bp9Mwznmauqc9djbnBibJO5mpfUPPa8st6Sx65+vbeO45g==}
semver-diff@4.0.0:
resolution: {integrity: sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==}
@@ -5851,18 +5175,18 @@ packages:
engines: {node: '>=10'}
hasBin: true
- send@0.18.0:
- resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
+ send@0.19.0:
+ resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
engines: {node: '>= 0.8.0'}
- serialize-javascript@6.0.1:
- resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==}
+ serialize-javascript@6.0.2:
+ resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
- serve-placeholder@2.0.1:
- resolution: {integrity: sha512-rUzLlXk4uPFnbEaIz3SW8VISTxMuONas88nYWjAWaM2W9VDbt9tyFOr3lq8RhVOFrT3XISoBw8vni5una8qMnQ==}
+ serve-placeholder@2.0.2:
+ resolution: {integrity: sha512-/TMG8SboeiQbZJWRlfTCqMs2DD3SZgWp0kDQePz9yUuCnDfDh/92gf7/PxGhzXTKBIPASIHxFcZndoNbp6QOLQ==}
- serve-static@1.15.0:
- resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
+ serve-static@1.16.2:
+ resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==}
engines: {node: '>= 0.8.0'}
set-blocking@2.0.0:
@@ -5887,14 +5211,15 @@ packages:
engines: {node: '>=4'}
hasBin: true
- shiki@1.11.2:
- resolution: {integrity: sha512-WEHfKf+JWEKm/p8BoiE5F4m6VwV6LzY7nFfwRz0nAj+sVD1sRyWiODYScDu3Q8P/Dpi7xKe1TDJF3ZOQnhfT1g==}
+ shiki@1.18.0:
+ resolution: {integrity: sha512-8jo7tOXr96h9PBQmOHVrltnETn1honZZY76YA79MHheGQg55jBvbm9dtU+MI5pjC5NJCFuA6rvVTLVeSW5cE4A==}
shikiji-transformers@0.7.6:
resolution: {integrity: sha512-yTp+7JMD/aXbV9ndn14eo9IK/UNt8iDsLNyqlOmCtcldlkqWE9T2YKAlOHOTVaeDfYWUWZa2EgSXb/CBfepBrw==}
shikiji@0.7.6:
resolution: {integrity: sha512-KzEtvSGQtBvfwVIB70kOmIfl/5rz1LC8j+tvlHXsJKAIdONNQvG1at7ivUUq3xUctqgO6fsO3AGomUSh0F+wsQ==}
+ deprecated: Shikiji is merged back to Shiki v1.0, please migrate over to get the latest updates
signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
@@ -5903,12 +5228,8 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- simple-git@3.25.0:
- resolution: {integrity: sha512-KIY5sBnzc4yEcJXW7Tdv4viEz8KyG+nU0hay+DWZasvdFOYKeUZ6Xc25LUHHjw0tinPT7O1eY6pzX7pRT1K8rw==}
-
- sirv@2.0.3:
- resolution: {integrity: sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==}
- engines: {node: '>= 10'}
+ simple-git@3.27.0:
+ resolution: {integrity: sha512-ivHoFS9Yi9GY49ogc6/YAi3Fl9ROnF4VyubNylgCkA+RVqLaKWnDSzXOVzya8csELIaWaYNutsEuAhZrtOjozA==}
sirv@2.0.4:
resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
@@ -5917,10 +5238,6 @@ packages:
sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
- slash@3.0.0:
- resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
- engines: {node: '>=8'}
-
slash@4.0.0:
resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
engines: {node: '>=12'}
@@ -5929,12 +5246,15 @@ packages:
resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
engines: {node: '>=14.16'}
+ slashes@3.0.12:
+ resolution: {integrity: sha512-Q9VME8WyGkc7pJf6QEkj3wE+2CnvZMI+XJhwdTPR8Z/kWQRXi7boAWLDibRPyHRTUTPx5FaU7MsyrjI3yLB4HA==}
+
smart-buffer@4.2.0:
resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
- smob@1.4.1:
- resolution: {integrity: sha512-9LK+E7Hv5R9u4g4C3p+jjLstaLe11MDsL21UpYaCNmapvMkYhqCV4A/f/3gyH8QjMyh6l68q9xC85vihY9ahMQ==}
+ smob@1.5.0:
+ resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==}
socks-proxy-agent@8.0.4:
resolution: {integrity: sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw==}
@@ -5944,12 +5264,8 @@ packages:
resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==}
engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
- source-map-js@1.0.2:
- resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
- engines: {node: '>=0.10.0'}
-
- source-map-js@1.2.0:
- resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
+ source-map-js@1.2.1:
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
source-map-support@0.5.21:
@@ -5969,8 +5285,8 @@ packages:
spdx-correct@3.2.0:
resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
- spdx-exceptions@2.3.0:
- resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
+ spdx-exceptions@2.5.0:
+ resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
spdx-expression-parse@3.0.1:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
@@ -5978,8 +5294,8 @@ packages:
spdx-expression-parse@4.0.0:
resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==}
- spdx-license-ids@3.0.16:
- resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==}
+ spdx-license-ids@3.0.20:
+ resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==}
speakingurl@14.0.1:
resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
@@ -5995,15 +5311,12 @@ packages:
sprintf-js@1.1.3:
resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
+ stable-hash@0.0.4:
+ resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==}
+
standard-as-callback@2.1.0:
resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==}
- stats-gl@1.0.5:
- resolution: {integrity: sha512-XimMxvwnf1Qf5KwebhcoA34kcX+fWEkIl0QjNkCbu4IpoyDMMsOajExn7FIq5w569k45+LhmsuRlGSrsvmGdNw==}
-
- stats-gl@1.0.7:
- resolution: {integrity: sha512-vZI82CjefSxLC1bjw36z28v0+QE9rJKymGlXtfWu+ipW70ZEAwa4EbO4LxluAfLfpqiaAS04NzpYBRLDeAwYWQ==}
-
stats-gl@2.2.8:
resolution: {integrity: sha512-94G5nZvduDmzxBS7K0lYnynYwreZpkknD8g5dZmU6mpwIhy3caCrjAm11Qm1cbyx7mqix7Fp00RkbsonzKWnoQ==}
@@ -6014,9 +5327,6 @@ packages:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
- std-env@3.4.3:
- resolution: {integrity: sha512-f9aPhy8fYBuMN+sNfakZV18U39PbalgjXG3lLB9WkaYTxijru61wb57V9wxxNthXM5Sd88ETBWi29qLAsHO52Q==}
-
std-env@3.7.0:
resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
@@ -6024,8 +5334,8 @@ packages:
resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
engines: {node: '>=18'}
- streamx@2.15.1:
- resolution: {integrity: sha512-fQMzy2O/Q47rgwErk/eGeLu/roaFWV0jVsogDmrszM9uIw8L5OA+t+V93MgYlufNptfjmYR1tOMWhei/Eh7TQA==}
+ streamx@2.20.1:
+ resolution: {integrity: sha512-uTa0mU6WUC65iUvzKH4X9hEdvSW7rbPxPtwfWiLMSj3qTdQbAiUboZTxauKfpFuGIGa1C2BYijZ7wgdUXICJhA==}
string-argv@0.3.2:
resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
@@ -6052,8 +5362,8 @@ packages:
string_decoder@1.3.0:
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
- stringify-entities@4.0.3:
- resolution: {integrity: sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==}
+ stringify-entities@4.0.4:
+ resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
@@ -6083,17 +5393,14 @@ packages:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- strip-literal@1.3.0:
- resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==}
-
strip-literal@2.1.0:
resolution: {integrity: sha512-Op+UycaUt/8FbN/Z2TWPBLge3jWrP3xj10f3fnYxf052bKuS3EKs1ZQcVGjnEMdsNVAM+plXRdmjrZ/KgG3Skw==}
- stylehacks@6.0.0:
- resolution: {integrity: sha512-+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw==}
- engines: {node: ^14 || ^16 || >=18.0}
+ stylehacks@7.0.4:
+ resolution: {integrity: sha512-i4zfNrGMt9SB4xRK9L83rlsFCgdGANfeDAYacO1pkqcE7cRHPdWHwnKZVz7WY17Veq/FvyYsRAU++Ga+qDFIww==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.2.15
+ postcss: ^8.4.31
superjson@2.2.1:
resolution: {integrity: sha512-8iGv75BYOa0xRJHK5vRLEjE2H/i4lulTjzpUXic3Eg8akftYjkmQDa8JARQ42rlczXyFR3IeRoeFCc7RxHsYZA==}
@@ -6122,8 +5429,8 @@ packages:
svg-tags@1.0.0:
resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
- svgo@3.0.5:
- resolution: {integrity: sha512-HQKHEo73pMNOlDlBcLgZRcHW2+1wo7bFYayAXkGN0l/2+h68KjlfZyMRhdhaGvoHV2eApOovl12zoFz42sT6rQ==}
+ svgo@3.3.2:
+ resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -6131,37 +5438,35 @@ packages:
resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==}
engines: {node: '>=12.20'}
- synckit@0.9.0:
- resolution: {integrity: sha512-7RnqIMq572L8PeEzKeBINYEJDDxpcH8JEgLwUqBd3TkofhFRbkq4QLR0u+36avGAhCRbk2nnmjcW9SE531hPDg==}
+ synckit@0.9.1:
+ resolution: {integrity: sha512-7gr8p9TQP6RAHusBOSLs46F4564ZrjV8xFmw5zCmgmhGUcw2hxsShhJ6CEiHQMgPDwAQ1fWHPM0ypc4RMAig4A==}
engines: {node: ^14.18.0 || >=16.0.0}
+ system-architecture@0.1.0:
+ resolution: {integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==}
+ engines: {node: '>=18'}
+
tabbable@6.2.0:
resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
- tapable@1.1.3:
- resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
- engines: {node: '>=6'}
-
tapable@2.2.1:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
- tar-stream@3.1.6:
- resolution: {integrity: sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==}
+ tar-stream@3.1.7:
+ resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
- tar@6.2.0:
- resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==}
+ tar@6.2.1:
+ resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
engines: {node: '>=10'}
- terser@5.22.0:
- resolution: {integrity: sha512-hHZVLgRA2z4NWcN6aS5rQDc+7Dcy58HOf2zbYwmFcQ+ua3h6eEFf5lIDKTzbWwlazPyOZsFQO8V80/IjVNExEw==}
+ terser@5.33.0:
+ resolution: {integrity: sha512-JuPVaB7s1gdFKPKTelwUyRq5Sid2A3Gko2S0PncwdBq7kN9Ti9HPWDQ06MPsEDGsZeVESjKEnyGy68quBk1w6g==}
engines: {node: '>=10'}
hasBin: true
- terser@5.31.3:
- resolution: {integrity: sha512-pAfYn3NIZLyZpa83ZKigvj6Rn9c/vd5KfYGX7cN1mnzqgDcxWvrU5ZtAfIKhEXz9nRecw4z3LXkjaq96/qZqAA==}
- engines: {node: '>=10'}
- hasBin: true
+ text-decoder@1.2.0:
+ resolution: {integrity: sha512-n1yg1mOj9DNpk3NeZOx7T6jchTbyJS3i3cucbNN6FcdPriMZx7NsgrGpWWdWZZGxD7ES1XB+3uoqHMgOKaN+fg==}
text-extensions@2.4.0:
resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==}
@@ -6182,13 +5487,13 @@ packages:
react:
optional: true
- three-stdlib@2.30.5:
- resolution: {integrity: sha512-BBZkKnTDmUacXU9mv7fA5R7Brb89uUbOUWXXZKNrzdx6JEozJt3e6I5zPMRbb1FC2aw/2QFtgwPi1PI8VjX6FQ==}
+ three-stdlib@2.33.0:
+ resolution: {integrity: sha512-V/uycBuqQOP/3Z+FBtpMdj2Ds5PyfJ3VDfMzktEmG4niOIzv7q1y5uMSbMcng0+057m1l0N147FQxsodQo9zBg==}
peerDependencies:
three: '>=0.128.0'
- three@0.167.0:
- resolution: {integrity: sha512-9Y1a66fpjqF3rhq7ivKTaKtjQLZ97Hj/lZ00DmZWaKHaQFH4uzYT1znwRDWQOcgMmCcOloQzo61gDmqO8l9xmA==}
+ three@0.167.1:
+ resolution: {integrity: sha512-gYTLJA/UQip6J/tJvl91YYqlZF47+D/kxiWrbTon35ZHlXEN0VOo+Qke2walF1/x92v55H6enomymg4Dak52kw==}
through2@0.6.5:
resolution: {integrity: sha512-RkK/CCESdTKQZHdmKICijdKKsCRVHs5KsLZ6pACAmF/1GPUQhonHSXWNERctxEp7RmvjdNbZTL5z9V7nSCXKcg==}
@@ -6196,8 +5501,15 @@ packages:
through@2.3.8:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
- tiny-invariant@1.3.1:
- resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==}
+ tiny-invariant@1.3.3:
+ resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
+
+ tinyexec@0.3.0:
+ resolution: {integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==}
+
+ tinyglobby@0.2.6:
+ resolution: {integrity: sha512-NbBoFBpqfcgd1tCiO8Lkfdk+xrA7mlLR9zgvZcZWQQwU63XAfUePyd6wZBaU93Hqw347lHnwFzttAkemHzzz4g==}
+ engines: {node: '>=12.0.0'}
tmp@0.0.33:
resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
@@ -6215,8 +5527,8 @@ packages:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
- toml-eslint-parser@0.9.3:
- resolution: {integrity: sha512-moYoCvkNUAPCxSW9jmHmRElhm4tVJpHL8ItC/+uYD0EpPSFXbck7yREz9tNdJVTSpHVod8+HoipcpbQ0oE6gsw==}
+ toml-eslint-parser@0.10.0:
+ resolution: {integrity: sha512-khrZo4buq4qVmsGzS5yQjKe/WsFvV8fGfOjDQN0q4iy9FjRfPWRgTFrU8u1R2iu/SfWLhY9WnCi4Jhdrcbtg+g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
totalist@3.0.1:
@@ -6235,11 +5547,13 @@ packages:
peerDependencies:
typescript: '>=4.2.0'
- tslib@2.6.2:
- resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
+ tslib@2.7.0:
+ resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
- tslib@2.6.3:
- resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
+ tsx@4.19.1:
+ resolution: {integrity: sha512-0flMz1lh74BR4wOvBjuh9olbnwqCPc35OOlfyzHba0Dc+QNUeWX/Gq2YTbnwcWPO3BMd8fkzRVrHcsR+a7z7rA==}
+ engines: {node: '>=18.0.0'}
+ hasBin: true
tweakpane@4.0.4:
resolution: {integrity: sha512-RkWD54zDlEbnN01wQPk0ANHGbdCvlJx/E8A1QxhTfCbX+ROWos1Ws2MnhOm39aUGMOh+36TjUwpDmLfmwTr1Fg==}
@@ -6248,10 +5562,6 @@ packages:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
- type-detect@4.0.8:
- resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
- engines: {node: '>=4'}
-
type-fest@0.20.2:
resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
engines: {node: '>=10'}
@@ -6280,8 +5590,8 @@ packages:
resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==}
engines: {node: '>=14.16'}
- type-fest@4.7.1:
- resolution: {integrity: sha512-iWr8RUmzAJRfhZugX9O7nZE6pCxDU8CZ3QxsLuTnGcBLJpCaP2ll3s4eMTBoFnU/CeXY/5rfQSuAEsTGJO4y8A==}
+ type-fest@4.26.1:
+ resolution: {integrity: sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==}
engines: {node: '>=16'}
typedarray-to-buffer@3.1.5:
@@ -6295,68 +5605,53 @@ packages:
engines: {node: '>=14.17'}
hasBin: true
- typescript@5.5.4:
- resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==}
+ typescript@5.6.2:
+ resolution: {integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==}
engines: {node: '>=14.17'}
hasBin: true
- ufo@1.3.1:
- resolution: {integrity: sha512-uY/99gMLIOlJPwATcMVYfqDSxUR9//AUcgZMzwfSTJPDKzA1S8mX4VLqa+fiAtveraQUBCz4FFcwVZBGbwBXIw==}
-
- ufo@1.5.3:
- resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==}
-
ufo@1.5.4:
resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
- uglify-js@3.17.4:
- resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==}
+ uglify-js@3.19.3:
+ resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==}
engines: {node: '>=0.8.0'}
hasBin: true
- ultrahtml@1.5.2:
- resolution: {integrity: sha512-qh4mBffhlkiXwDAOxvSGxhL0QEQsTbnP9BozOK3OYPEGvPvdWzvAUaXNtUSMdNsKDtuyjEbyVUPFZ52SSLhLqw==}
-
- unconfig@0.3.11:
- resolution: {integrity: sha512-bV/nqePAKv71v3HdVUn6UefbsDKQWRX+bJIkiSm0+twIds6WiD2bJLWWT3i214+J/B4edufZpG2w7Y63Vbwxow==}
+ ultrahtml@1.5.3:
+ resolution: {integrity: sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==}
unconfig@0.3.13:
resolution: {integrity: sha512-N9Ph5NC4+sqtcOjPfHrRcHekBCadCXWTBzp2VYYbySOHW0PfD9XLCeXshTXjkPYwLrBr9AtSeU0CZmkYECJhng==}
+ unconfig@0.5.5:
+ resolution: {integrity: sha512-VQZ5PT9HDX+qag0XdgQi8tJepPhXiR/yVOkn707gJDKo31lGjRilPREiQJ9Z6zd/Ugpv6ZvO5VxVIcatldYcNQ==}
+
uncrypto@0.1.3:
resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==}
unctx@2.3.1:
resolution: {integrity: sha512-PhKke8ZYauiqh3FEMVNm7ljvzQiph0Mt3GBRve03IJm7ukfaON2OBK795tLwhbyfzknuRRkW0+Ze+CQUmzOZ+A==}
- undici-types@5.26.5:
- resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
+ undici-types@6.19.8:
+ resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
- undici@5.27.0:
- resolution: {integrity: sha512-l3ydWhlhOJzMVOYkymLykcRRXqbUaQriERtR70B9LzNkZ4bX52Fc8wbTDneMiwo8T+AemZXvXaTx+9o5ROxrXg==}
+ undici@5.28.4:
+ resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==}
engines: {node: '>=14.0'}
- unenv@1.7.4:
- resolution: {integrity: sha512-fjYsXYi30It0YCQYqLOcT6fHfMXsBr2hw9XC7ycf8rTG7Xxpe3ZssiqUnD0khrjiZEmkBXWLwm42yCSCH46fMw==}
+ unenv@1.10.0:
+ resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==}
- unhead@1.7.4:
- resolution: {integrity: sha512-oOv+9aQS85DQUd0f1uJBtb2uG3SKwCURSTuUWp9WKKzANCb1TjW2dWp5TFmJH5ILF6urXi4uUQfjK+SawzBJAA==}
+ unhead@1.11.6:
+ resolution: {integrity: sha512-TKTQGUzHKF925VZ4KZVbLfKFzTVTEWfPLaXKmkd/ptEY2FHEoJUF7xOpAWc3K7Jzy/ExS66TL7GnLLjtd4sISg==}
unicorn-magic@0.1.0:
resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
engines: {node: '>=18'}
- unimport@3.4.0:
- resolution: {integrity: sha512-M/lfFEgufIT156QAr/jWHLUn55kEmxBBiQsMxvRSIbquwmeJEyQYgshHDEvQDWlSJrVOOTAgnJ3FvlsrpGkanA==}
-
- unimport@3.7.1:
- resolution: {integrity: sha512-V9HpXYfsZye5bPPYUgs0Otn3ODS1mDUciaBlXljI4C2fTwfFpvFZRywmlOu943puN9sncxROMZhsZCjNXEpzEQ==}
-
- unimport@3.7.2:
- resolution: {integrity: sha512-91mxcZTadgXyj3lFWmrGT8GyoRHWuE5fqPOjg5RVtF6vj+OfM5G6WCzXjuYtSgELE5ggB34RY4oiCSEP8I3AHw==}
-
- unimport@3.9.0:
- resolution: {integrity: sha512-H2ftTISja1BonUVdOKRos6HC6dqYDR40dQTZY3zIDJ/5/z4ihncuL0LqLvtxYqUDMib41eAtunQUhXIWTCZ8rA==}
+ unimport@3.12.0:
+ resolution: {integrity: sha512-5y8dSvNvyevsnw4TBQkIQR1Rjdbb+XjVSwQwxltpnVZrStBvvPkMPcZrh1kg5kY77kpx6+D4Ztd3W6FOBH/y2Q==}
unique-string@3.0.0:
resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==}
@@ -6368,9 +5663,6 @@ packages:
unist-util-position@5.0.0:
resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
- unist-util-stringify-position@2.0.3:
- resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==}
-
unist-util-stringify-position@4.0.0:
resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
@@ -6387,15 +5679,15 @@ packages:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
engines: {node: '>= 4.0.0'}
- universalify@2.0.0:
- resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
+ universalify@2.0.1:
+ resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
- unocss@0.58.0:
- resolution: {integrity: sha512-MSPRHxBqWN+1AHGV+J5uUy4//e6ZBK6O+ISzD0qrXcCD/GNtxk1+lYjOK2ltkUiKX539+/KF91vNxzhhwEf+xA==}
+ unocss@0.58.9:
+ resolution: {integrity: sha512-aqANXXP0RrtN4kSaTLn/7I6wh8o45LUdVgPzGu7Fan2DfH2+wpIs6frlnlHlOymnb+52dp6kXluQinddaUKW1A==}
engines: {node: '>=14'}
peerDependencies:
- '@unocss/webpack': 0.58.0
+ '@unocss/webpack': 0.58.9
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
peerDependenciesMeta:
'@unocss/webpack':
@@ -6403,11 +5695,11 @@ packages:
vite:
optional: true
- unocss@0.61.5:
- resolution: {integrity: sha512-BScwlqXW9KHQLKIKtXmwWmMb4Ihoryb7uIgmS+HSqmCN58eqNA73vAo3cZ97xtO+RFdauqgGKP5wD6ShQUvqnQ==}
+ unocss@0.61.9:
+ resolution: {integrity: sha512-D7nEObT1lhCUwXU5MoQ2Msh5S5g1EHVVSqDNM2ODs6dqWSboDCsRTPZQiyQmV9vCobrjYcvAFno9ZAgO7pvurw==}
engines: {node: '>=14'}
peerDependencies:
- '@unocss/webpack': 0.61.5
+ '@unocss/webpack': 0.61.9
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
peerDependenciesMeta:
'@unocss/webpack':
@@ -6415,8 +5707,8 @@ packages:
vite:
optional: true
- unplugin-auto-import@0.17.6:
- resolution: {integrity: sha512-dmX0Pex5DzMzVuALkexboOZvh51fL/BD6aoPO7qHoTYGlQp0GRKsREv2KMF1lzYI9SXKQiRxAjwzbQnrFFNydQ==}
+ unplugin-auto-import@0.17.8:
+ resolution: {integrity: sha512-CHryj6HzJ+n4ASjzwHruD8arhbdl+UXvhuAIlHDs15Y/IMecG3wrf7FVg4pVH/DIysbq/n0phIjNHAjl7TG7Iw==}
engines: {node: '>=14'}
peerDependencies:
'@nuxt/kit': ^3.2.2
@@ -6440,8 +5732,8 @@ packages:
'@nuxt/kit':
optional: true
- unplugin-vue-components@0.27.0:
- resolution: {integrity: sha512-77eTEy23sQ0UpzGWnZ9I2mY3cnmXwklz4ITcn3JfxjCoX643ghImkiZ4nFm58sxbdVcc4Fo/o4LIoFnlqEqsSg==}
+ unplugin-vue-components@0.27.4:
+ resolution: {integrity: sha512-1XVl5iXG7P1UrOMnaj2ogYa5YTq8aoh5jwDPQhemwO/OrXW+lPQKDXd1hMz15qxQPxgb/XXlbgo3HQ2rLEbmXQ==}
engines: {node: '>=14'}
peerDependencies:
'@babel/parser': ^7.15.8
@@ -6453,42 +5745,39 @@ packages:
'@nuxt/kit':
optional: true
- unplugin-vue-router@0.7.0:
- resolution: {integrity: sha512-ddRreGq0t5vlSB7OMy4e4cfU1w2AwBQCwmvW3oP/0IHQiokzbx4hd3TpwBu3eIAFVuhX2cwNQwp1U32UybTVCw==}
+ unplugin-vue-router@0.10.8:
+ resolution: {integrity: sha512-xi+eLweYAqolIoTRSmumbi6Yx0z5M0PLvl+NFNVWHJgmE2ByJG1SZbrn+TqyuDtIyln20KKgq8tqmL7aLoiFjw==}
peerDependencies:
- vue-router: ^4.1.0
+ vue-router: ^4.4.0
peerDependenciesMeta:
vue-router:
optional: true
- unplugin@1.10.1:
- resolution: {integrity: sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==}
+ unplugin@1.14.1:
+ resolution: {integrity: sha512-lBlHbfSFPToDYp9pjXlUEFVxYLaue9f9T1HC+4OHlmj+HnMDdz9oZY+erXfoCe/5V/7gKUSY2jpXPb9S7f0f/w==}
engines: {node: '>=14.0.0'}
+ peerDependencies:
+ webpack-sources: ^3
+ peerDependenciesMeta:
+ webpack-sources:
+ optional: true
- unplugin@1.12.0:
- resolution: {integrity: sha512-KeczzHl2sATPQUx1gzo+EnUkmN4VmGBYRRVOZSGvGITE9rGHRDGqft6ONceP3vgXcyJ2XjX5axG5jMWUwNCYLw==}
- engines: {node: '>=14.0.0'}
-
- unplugin@1.5.0:
- resolution: {integrity: sha512-9ZdRwbh/4gcm1JTOkp9lAkIDrtOyOxgHmY7cjuwI8L/2RTikMcVG25GsZwNAgRuap3iDw2jeq7eoqtAsz5rW3A==}
-
- unplugin@1.5.1:
- resolution: {integrity: sha512-0QkvG13z6RD+1L1FoibQqnvTwVBXvS4XSPwAyinVgoOCl2jAgwzdUKmEj05o4Lt8xwQI85Hb6mSyYkcAGwZPew==}
-
- unstorage@1.9.0:
- resolution: {integrity: sha512-VpD8ZEYc/le8DZCrny3bnqKE4ZjioQxBRnWE+j5sGNvziPjeDlaS1NaFFHzl/kkXaO3r7UaF8MGQrs14+1B4pQ==}
+ unstorage@1.12.0:
+ resolution: {integrity: sha512-ARZYTXiC+e8z3lRM7/qY9oyaOkaozCeNd2xoz7sYK9fv7OLGhVsf+BZbmASqiK/HTZ7T6eAlnVq9JynZppyk3w==}
peerDependencies:
- '@azure/app-configuration': ^1.4.1
- '@azure/cosmos': ^3.17.3
+ '@azure/app-configuration': ^1.7.0
+ '@azure/cosmos': ^4.1.1
'@azure/data-tables': ^13.2.2
- '@azure/identity': ^3.2.3
- '@azure/keyvault-secrets': ^4.7.0
- '@azure/storage-blob': ^12.14.0
- '@capacitor/preferences': ^5.0.0
- '@planetscale/database': ^1.8.0
- '@upstash/redis': ^1.22.0
- '@vercel/kv': ^0.2.2
+ '@azure/identity': ^4.4.1
+ '@azure/keyvault-secrets': ^4.8.0
+ '@azure/storage-blob': ^12.24.0
+ '@capacitor/preferences': ^6.0.2
+ '@netlify/blobs': ^6.5.0 || ^7.0.0
+ '@planetscale/database': ^1.19.0
+ '@upstash/redis': ^1.34.0
+ '@vercel/kv': ^1.0.1
idb-keyval: ^6.2.1
+ ioredis: ^5.4.1
peerDependenciesMeta:
'@azure/app-configuration':
optional: true
@@ -6504,6 +5793,8 @@ packages:
optional: true
'@capacitor/preferences':
optional: true
+ '@netlify/blobs':
+ optional: true
'@planetscale/database':
optional: true
'@upstash/redis':
@@ -6512,24 +5803,19 @@ packages:
optional: true
idb-keyval:
optional: true
+ ioredis:
+ optional: true
- untun@0.1.2:
- resolution: {integrity: sha512-wLAMWvxfqyTiBODA1lg3IXHQtjggYLeTK7RnSfqtOXixWJ3bAa2kK/HHmOOg19upteqO3muLvN6O/icbyQY33Q==}
- hasBin: true
-
- untyped@1.4.0:
- resolution: {integrity: sha512-Egkr/s4zcMTEuulcIb7dgURS6QpN7DyqQYdf+jBtiaJvQ+eRsrtWUoX84SbvQWuLkXsOjM+8sJC9u6KoMK/U7Q==}
+ untun@0.1.3:
+ resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==}
hasBin: true
untyped@1.4.2:
resolution: {integrity: sha512-nC5q0DnPEPVURPhfPQLahhSTnemVtPzdx7ofiRxXpOB2SYnb3MfdU3DVGyJdS8Lx+tBWeAePO8BfU/3EgksM7Q==}
hasBin: true
- update-browserslist-db@1.0.13:
- resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
+ unwasm@0.3.9:
+ resolution: {integrity: sha512-LDxTx/2DkFURUd+BU1vUsF/moj0JsoTvl+2tcg2AUOiEzVturhGGx17/IMgGvKUYdZwr33EJHtChCJuhu9Ouvg==}
update-browserslist-db@1.1.0:
resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==}
@@ -6560,32 +5846,30 @@ packages:
validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
- vfile-location@5.0.2:
- resolution: {integrity: sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==}
-
vfile-message@4.0.2:
resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==}
- vfile@6.0.1:
- resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==}
+ vfile@6.0.3:
+ resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
vite-hot-client@0.2.3:
resolution: {integrity: sha512-rOGAV7rUlUHX89fP2p2v0A2WWvV3QMX2UYq0fRqsWSvFvev4atHWqjwGoKaZT1VTKyLGk533ecu3eyd0o59CAg==}
peerDependencies:
vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0
- vite-node@0.33.0:
- resolution: {integrity: sha512-19FpHYbwWWxDr73ruNahC+vtEdza52kA90Qb3La98yZ0xULqV8A5JLNPUff0f5zID4984tW7l3DH2przTJUZSw==}
- engines: {node: '>=v14.18.0'}
+ vite-node@2.1.1:
+ resolution: {integrity: sha512-N/mGckI1suG/5wQI35XeR9rsMsPqKXzq1CdUndzVstBj/HvyxxGctwnK6WX43NGt5L3Z5tcRf83g4TITKJhPrA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
vite-plugin-banner@0.7.1:
resolution: {integrity: sha512-Bww2Xd5tOGsZ1yZ9rQiGneryvsL1u86znPrqeQjCsXPsG72pnSdV5lcQA+cy8UNDguMqyTJiCevlNUbLnT85UA==}
- vite-plugin-checker@0.6.2:
- resolution: {integrity: sha512-YvvvQ+IjY09BX7Ab+1pjxkELQsBd4rPhWNw8WLBeFVxu/E7O+n6VYAqNsKdK/a2luFlX/sMpoWdGFfg4HvwdJQ==}
+ vite-plugin-checker@0.8.0:
+ resolution: {integrity: sha512-UA5uzOGm97UvZRTdZHiQVYFnd86AVn8EVaD4L3PoVzxH+IZSfaAw14WGFwX9QS23UW3lV/5bVKZn6l0w+q9P0g==}
engines: {node: '>=14.16'}
peerDependencies:
+ '@biomejs/biome': '>=1.7'
eslint: '>=7'
meow: ^9.0.0
optionator: ^0.9.1
@@ -6594,8 +5878,10 @@ packages:
vite: '>=2.0.0'
vls: '*'
vti: '*'
- vue-tsc: '>=1.3.9'
+ vue-tsc: ~2.1.6
peerDependenciesMeta:
+ '@biomejs/biome':
+ optional: true
eslint:
optional: true
meow:
@@ -6613,8 +5899,8 @@ packages:
vue-tsc:
optional: true
- vite-plugin-css-injected-by-js@3.3.0:
- resolution: {integrity: sha512-xG+jyHNCmUqi/TXp6q88wTJGeAOrNLSyUUTp4qEQ9QZLGcHWQQsCsSSKa59rPMQr8sOzfzmWDd8enGqfH/dBew==}
+ vite-plugin-css-injected-by-js@3.5.1:
+ resolution: {integrity: sha512-9ioqwDuEBxW55gNoWFEDhfLTrVKXEEZgl5adhWmmqa88EQGKfTmexy4v1Rh0pAS6RhKQs2bUYQArprB32JpUZQ==}
peerDependencies:
vite: '>2.0.0-0'
@@ -6628,8 +5914,8 @@ packages:
vite:
optional: true
- vite-plugin-inspect@0.8.4:
- resolution: {integrity: sha512-G0N3rjfw+AiiwnGw50KlObIHYWfulVwaCBUBLh2xTW9G1eM9ocE5olXkEYUbwyTmX+azM8duubi+9w5awdCz+g==}
+ vite-plugin-inspect@0.8.7:
+ resolution: {integrity: sha512-/XXou3MVc13A5O9/2Nd6xczjrUwt7ZyI9h8pTnUMkr5SshLcb0PJUOVq2V+XVkdeU4njsqAtmK87THZuO2coGA==}
engines: {node: '>=14'}
peerDependencies:
'@nuxt/kit': '*'
@@ -6644,8 +5930,8 @@ packages:
peerDependencies:
vite: ^3.0.0 || ^4.0.0 || ^5.0.0
- vite-plugin-vue-inspector@5.1.2:
- resolution: {integrity: sha512-M+yH2LlQtVNzJAljQM+61CqDXBvHim8dU5ImGaQuwlo13tMDHue5D7IC20YwDJuWDODiYc/cZBUYspVlyPf2vQ==}
+ vite-plugin-vue-inspector@5.2.0:
+ resolution: {integrity: sha512-wWxyb9XAtaIvV/Lr7cqB1HIzmHZFVUJsTNm3yAxkS87dgh/Ky4qr2wDEWNxF23fdhVa3jQ8MZREpr4XyiuaRqA==}
peerDependencies:
vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0
@@ -6654,36 +5940,8 @@ packages:
peerDependencies:
vue: '>=3.2.13'
- vite@4.5.3:
- resolution: {integrity: sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg==}
- engines: {node: ^14.18.0 || >=16.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': '>= 14'
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
-
- vite@5.3.5:
- resolution: {integrity: sha512-MdjglKR6AQXQb9JGiS7Rc2wC6uMjcm7Go/NHNO63EwiJXfuk9PgqiP/n5IDJCziMkfw9n4Ubp7lttNwz+8ZVKA==}
+ vite@5.4.7:
+ resolution: {integrity: sha512-5l2zxqMEPVENgvzTuBpHer2awaetimj2BGkhBPdnwKbPNOlHsODU+oiazEZzLK7KhAnOrO+XGYJYn4ZlUhDtDQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -6691,6 +5949,7 @@ packages:
less: '*'
lightningcss: ^1.21.0
sass: '*'
+ sass-embedded: '*'
stylus: '*'
sugarss: '*'
terser: ^5.4.0
@@ -6703,6 +5962,8 @@ packages:
optional: true
sass:
optional: true
+ sass-embedded:
+ optional: true
stylus:
optional: true
sugarss:
@@ -6745,8 +6006,8 @@ packages:
vscode-languageserver-protocol@3.16.0:
resolution: {integrity: sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==}
- vscode-languageserver-textdocument@1.0.11:
- resolution: {integrity: sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==}
+ vscode-languageserver-textdocument@1.0.12:
+ resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==}
vscode-languageserver-types@3.16.0:
resolution: {integrity: sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==}
@@ -6758,8 +6019,8 @@ packages:
vscode-uri@3.0.8:
resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
- vue-bundle-renderer@2.0.0:
- resolution: {integrity: sha512-oYATTQyh8XVkUWe2kaKxhxKVuuzK2Qcehe+yr3bGiaQAhK3ry2kYE4FWOfL+KO3hVFwCdLmzDQTzYhTi9C+R2A==}
+ vue-bundle-renderer@2.1.0:
+ resolution: {integrity: sha512-uZ+5ZJdZ/b43gMblWtcpikY6spJd0nERaM/1RtgioXNfWFbjKlUwrS8HlrddN6T2xtptmOouWclxLUkpgcVX3Q==}
vue-demi@0.14.10:
resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
@@ -6772,33 +6033,17 @@ packages:
'@vue/composition-api':
optional: true
- vue-demi@0.14.6:
- resolution: {integrity: sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==}
- engines: {node: '>=12'}
- hasBin: true
- peerDependencies:
- '@vue/composition-api': ^1.0.0-rc.1
- vue: ^3.0.0-0 || ^2.6.0
- peerDependenciesMeta:
- '@vue/composition-api':
- optional: true
-
vue-devtools-stub@0.1.0:
resolution: {integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==}
- vue-eslint-parser@9.4.2:
- resolution: {integrity: sha512-Ry9oiGmCAK91HrKMtCrKFWmSFWvYkpGglCeFAIqDdr9zdXmMMpJOmUJS7WWsW7fX81h6mwHmUZCQQ1E0PkSwYQ==}
+ vue-eslint-parser@9.4.3:
+ resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=6.0.0'
- vue-router@4.2.5:
- resolution: {integrity: sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==}
- peerDependencies:
- vue: ^3.2.0
-
- vue-router@4.3.2:
- resolution: {integrity: sha512-hKQJ1vDAZ5LVkKEnHhmm1f9pMiWIBNGF5AwU67PdH7TyXCj/a4hTccuUuYCAMgJK6rO/NVYtQIEN3yL8CECa7Q==}
+ vue-router@4.4.5:
+ resolution: {integrity: sha512-4fKZygS8cH1yCyuabAXGUAsyi1b2/o/OKgu/RUb+znIYOxPRxdkytJEx+0wGcpBE1pX6vUgh5jwWOKRGvuA/7Q==}
peerDependencies:
vue: ^3.2.0
@@ -6811,22 +6056,14 @@ packages:
peerDependencies:
typescript: '*'
- vue-tsc@2.0.29:
- resolution: {integrity: sha512-MHhsfyxO3mYShZCGYNziSbc63x7cQ5g9kvijV7dRe1TTXBRLxXyL0FnXWpUF1xII2mJ86mwYpYsUmMwkmerq7Q==}
- hasBin: true
- peerDependencies:
- typescript: '>=5.0.0'
-
- vue@3.4.27:
- resolution: {integrity: sha512-8s/56uK6r01r1icG/aEOHqyMVxd1bkYcSe9j8HcKtr/xTOFWvnzIVTehNW+5Yt89f+DLBe4A569pnZLS5HzAMA==}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ vue-tsc@2.1.6:
+ resolution: {integrity: sha512-f98dyZp5FOukcYmbFpuSCJ4Z0vHSOSmxGttZJCsFeX0M4w/Rsq0s4uKXjcSRsZqsRgQa6z7SfuO+y0HVICE57Q==}
+ hasBin: true
+ peerDependencies:
+ typescript: '>=5.0.0'
- vue@3.4.34:
- resolution: {integrity: sha512-VZze05HWlA3ItreQ/ka7Sx7PoD0/3St8FEiSlSTVgb6l4hL+RjtP2/8g5WQBzZgyf8WG2f+g1bXzC7zggLhAJA==}
+ vue@3.5.8:
+ resolution: {integrity: sha512-hvuvuCy51nP/1fSRvrrIqTLSvrSyz2Pq+KQ8S8SXCxTWVE0nMaOnSDnSOxV1eYmGfvK7mqiwvd1C59CEEz7dAQ==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -6836,9 +6073,6 @@ packages:
wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
- web-namespaces@2.0.1:
- resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==}
-
web-streams-polyfill@3.3.3:
resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
engines: {node: '>= 8'}
@@ -6846,16 +6080,6 @@ packages:
webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
- webpack-sources@3.2.3:
- resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
- engines: {node: '>=10.13.0'}
-
- webpack-virtual-modules@0.5.0:
- resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==}
-
- webpack-virtual-modules@0.6.1:
- resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==}
-
webpack-virtual-modules@0.6.2:
resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
@@ -6935,9 +6159,6 @@ packages:
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
engines: {node: '>=0.4'}
- xxhashjs@0.2.2:
- resolution: {integrity: sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==}
-
y18n@5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
@@ -6948,17 +6169,14 @@ packages:
yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- yaml-eslint-parser@1.2.2:
- resolution: {integrity: sha512-pEwzfsKbTrB8G3xc/sN7aw1v6A6c/pKxLAkjclnAyo5g5qOh6eL9WGu0o3cSDQZKrTNk4KL4lQSwZW+nBkANEg==}
+ yaml-eslint-parser@1.2.3:
+ resolution: {integrity: sha512-4wZWvE398hCP7O8n3nXKu/vdq1HcH01ixYlCREaJL5NUMwQ0g3MaGFUBNSlmBtKmhbtVG/Cm6lyYmSVTEVil8A==}
engines: {node: ^14.17.0 || >=16.0.0}
- yaml@2.3.2:
- resolution: {integrity: sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==}
- engines: {node: '>= 14'}
-
- yaml@2.3.3:
- resolution: {integrity: sha512-zw0VAJxgeZ6+++/su5AFoqBbZbrEakwu+X0M5HmcwUiBL7AzcuPKjj5we4xfQLp78LkEMpD0cOnUhmgOVy3KdQ==}
+ yaml@2.5.1:
+ resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==}
engines: {node: '>= 14'}
+ hasBin: true
yargs-parser@21.1.1:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
@@ -6972,8 +6190,8 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- yocto-queue@1.0.0:
- resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
+ yocto-queue@1.1.1:
+ resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
engines: {node: '>=12.20'}
yoctocolors-cjs@2.1.2:
@@ -6983,110 +6201,59 @@ packages:
zhead@2.2.4:
resolution: {integrity: sha512-8F0OI5dpWIA5IGG5NHUg9staDwz/ZPxZtvGVf01j7vHqSyZ0raHY+78atOVxRqb73AotX22uV1pXt3gYSstGag==}
- zip-stream@5.0.1:
- resolution: {integrity: sha512-UfZ0oa0C8LI58wJ+moL46BDIMgCQbnsb+2PoiJYtonhBsMh2bq1eRBVkvjfVsqbEHd9/EgKPUuL9saSSsec8OA==}
- engines: {node: '>= 12.0.0'}
+ zip-stream@6.0.1:
+ resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==}
+ engines: {node: '>= 14'}
zwitch@2.0.4:
resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
snapshots:
- '@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.20.0)(search-insights@2.15.0)':
- dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.20.0)(search-insights@2.15.0)
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.20.0)
- transitivePeerDependencies:
- - '@algolia/client-search'
- - algoliasearch
- - search-insights
-
- '@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.15.0)':
+ '@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.17.2)':
dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.15.0)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.17.2)
'@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
- '@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.20.0)(search-insights@2.15.0)':
- dependencies:
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.20.0)
- search-insights: 2.15.0
- transitivePeerDependencies:
- - '@algolia/client-search'
- - algoliasearch
-
- '@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.15.0)':
+ '@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.17.2)':
dependencies:
'@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)
- search-insights: 2.15.0
+ search-insights: 2.17.2
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- '@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.20.0)':
- dependencies:
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.20.0)
- '@algolia/client-search': 4.24.0
- algoliasearch: 4.20.0
-
'@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)':
dependencies:
'@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)
'@algolia/client-search': 4.24.0
algoliasearch: 4.24.0
- '@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.20.0)':
- dependencies:
- '@algolia/client-search': 4.24.0
- algoliasearch: 4.20.0
-
'@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)':
dependencies:
'@algolia/client-search': 4.24.0
algoliasearch: 4.24.0
- '@algolia/cache-browser-local-storage@4.20.0':
- dependencies:
- '@algolia/cache-common': 4.20.0
-
'@algolia/cache-browser-local-storage@4.24.0':
dependencies:
'@algolia/cache-common': 4.24.0
- '@algolia/cache-common@4.20.0': {}
-
'@algolia/cache-common@4.24.0': {}
- '@algolia/cache-in-memory@4.20.0':
- dependencies:
- '@algolia/cache-common': 4.20.0
-
'@algolia/cache-in-memory@4.24.0':
dependencies:
'@algolia/cache-common': 4.24.0
- '@algolia/client-account@4.20.0':
- dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/client-search': 4.20.0
- '@algolia/transporter': 4.20.0
-
'@algolia/client-account@4.24.0':
dependencies:
'@algolia/client-common': 4.24.0
'@algolia/client-search': 4.24.0
'@algolia/transporter': 4.24.0
- '@algolia/client-analytics@4.20.0':
- dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/client-search': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
-
'@algolia/client-analytics@4.24.0':
dependencies:
'@algolia/client-common': 4.24.0
@@ -7094,48 +6261,25 @@ snapshots:
'@algolia/requester-common': 4.24.0
'@algolia/transporter': 4.24.0
- '@algolia/client-common@4.20.0':
- dependencies:
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
-
'@algolia/client-common@4.24.0':
dependencies:
'@algolia/requester-common': 4.24.0
'@algolia/transporter': 4.24.0
- '@algolia/client-personalization@4.20.0':
- dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
-
'@algolia/client-personalization@4.24.0':
dependencies:
'@algolia/client-common': 4.24.0
'@algolia/requester-common': 4.24.0
'@algolia/transporter': 4.24.0
- '@algolia/client-search@4.20.0':
- dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
-
'@algolia/client-search@4.24.0':
dependencies:
'@algolia/client-common': 4.24.0
'@algolia/requester-common': 4.24.0
'@algolia/transporter': 4.24.0
- '@algolia/logger-common@4.20.0': {}
-
'@algolia/logger-common@4.24.0': {}
- '@algolia/logger-console@4.20.0':
- dependencies:
- '@algolia/logger-common': 4.20.0
-
'@algolia/logger-console@4.24.0':
dependencies:
'@algolia/logger-common': 4.24.0
@@ -7154,697 +6298,304 @@ snapshots:
'@algolia/requester-node-http': 4.24.0
'@algolia/transporter': 4.24.0
- '@algolia/requester-browser-xhr@4.20.0':
- dependencies:
- '@algolia/requester-common': 4.20.0
-
'@algolia/requester-browser-xhr@4.24.0':
dependencies:
'@algolia/requester-common': 4.24.0
- '@algolia/requester-common@4.20.0': {}
-
'@algolia/requester-common@4.24.0': {}
- '@algolia/requester-node-http@4.20.0':
- dependencies:
- '@algolia/requester-common': 4.20.0
-
'@algolia/requester-node-http@4.24.0':
dependencies:
'@algolia/requester-common': 4.24.0
- '@algolia/transporter@4.20.0':
- dependencies:
- '@algolia/cache-common': 4.20.0
- '@algolia/logger-common': 4.20.0
- '@algolia/requester-common': 4.20.0
-
'@algolia/transporter@4.24.0':
dependencies:
'@algolia/cache-common': 4.24.0
'@algolia/logger-common': 4.24.0
'@algolia/requester-common': 4.24.0
- '@alvarosabu/utils@3.1.1': {}
-
'@alvarosabu/utils@3.2.0': {}
- '@ampproject/remapping@2.2.1':
- dependencies:
- '@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.20
-
'@ampproject/remapping@2.3.0':
dependencies:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- '@antfu/eslint-config@2.18.1(@vue/compiler-sfc@3.4.34)(eslint-plugin-format@0.1.1(eslint@9.7.0))(eslint@9.7.0)(typescript@5.5.4)':
+ '@antfu/eslint-config@3.7.1(@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(@vue/compiler-sfc@3.5.8)(eslint-plugin-format@0.1.2(eslint@9.11.0(jiti@1.21.6)))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)':
dependencies:
- '@antfu/install-pkg': 0.3.3
+ '@antfu/install-pkg': 0.4.1
'@clack/prompts': 0.7.0
- '@stylistic/eslint-plugin': 2.1.0(eslint@9.7.0)(typescript@5.5.4)
- '@typescript-eslint/eslint-plugin': 7.9.0(@typescript-eslint/parser@7.9.0(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)(typescript@5.5.4)
- '@typescript-eslint/parser': 7.9.0(eslint@9.7.0)(typescript@5.5.4)
- eslint: 9.7.0
- eslint-config-flat-gitignore: 0.1.5
- eslint-flat-config-utils: 0.2.5
- eslint-merge-processors: 0.1.0(eslint@9.7.0)
- eslint-plugin-antfu: 2.2.0(eslint@9.7.0)
- eslint-plugin-command: 0.2.3(eslint@9.7.0)
- eslint-plugin-eslint-comments: 3.2.0(eslint@9.7.0)
- eslint-plugin-import-x: 0.5.0(eslint@9.7.0)(typescript@5.5.4)
- eslint-plugin-jsdoc: 48.2.5(eslint@9.7.0)
- eslint-plugin-jsonc: 2.15.1(eslint@9.7.0)
- eslint-plugin-markdown: 5.0.0(eslint@9.7.0)
- eslint-plugin-n: 17.7.0(eslint@9.7.0)
- eslint-plugin-no-only-tests: 3.1.0
- eslint-plugin-perfectionist: 2.10.0(eslint@9.7.0)(typescript@5.5.4)(vue-eslint-parser@9.4.2(eslint@9.7.0))
- eslint-plugin-regexp: 2.5.0(eslint@9.7.0)
- eslint-plugin-toml: 0.11.0(eslint@9.7.0)
- eslint-plugin-unicorn: 53.0.0(eslint@9.7.0)
- eslint-plugin-unused-imports: 3.2.0(@typescript-eslint/eslint-plugin@7.9.0(@typescript-eslint/parser@7.9.0(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)
- eslint-plugin-vitest: 0.5.4(@typescript-eslint/eslint-plugin@7.9.0(@typescript-eslint/parser@7.9.0(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)(typescript@5.5.4)
- eslint-plugin-vue: 9.26.0(eslint@9.7.0)
- eslint-plugin-yml: 1.14.0(eslint@9.7.0)
- eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.4.34)(eslint@9.7.0)
- globals: 15.2.0
+ '@eslint-community/eslint-plugin-eslint-comments': 4.4.0(eslint@9.11.0(jiti@1.21.6))
+ '@eslint/markdown': 6.1.0(eslint@9.11.0(jiti@1.21.6))
+ '@stylistic/eslint-plugin': 2.8.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
+ '@typescript-eslint/eslint-plugin': 8.6.0(@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
+ '@typescript-eslint/parser': 8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
+ '@vitest/eslint-plugin': 1.1.4(@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
+ eslint: 9.11.0(jiti@1.21.6)
+ eslint-config-flat-gitignore: 0.3.0(eslint@9.11.0(jiti@1.21.6))
+ eslint-flat-config-utils: 0.4.0
+ eslint-merge-processors: 0.1.0(eslint@9.11.0(jiti@1.21.6))
+ eslint-plugin-antfu: 2.7.0(eslint@9.11.0(jiti@1.21.6))
+ eslint-plugin-command: 0.2.5(eslint@9.11.0(jiti@1.21.6))
+ eslint-plugin-import-x: 4.3.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
+ eslint-plugin-jsdoc: 50.2.4(eslint@9.11.0(jiti@1.21.6))
+ eslint-plugin-jsonc: 2.16.0(eslint@9.11.0(jiti@1.21.6))
+ eslint-plugin-n: 17.10.3(eslint@9.11.0(jiti@1.21.6))
+ eslint-plugin-no-only-tests: 3.3.0
+ eslint-plugin-perfectionist: 3.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)(vue-eslint-parser@9.4.3(eslint@9.11.0(jiti@1.21.6)))
+ eslint-plugin-regexp: 2.6.0(eslint@9.11.0(jiti@1.21.6))
+ eslint-plugin-toml: 0.11.1(eslint@9.11.0(jiti@1.21.6))
+ eslint-plugin-unicorn: 55.0.0(eslint@9.11.0(jiti@1.21.6))
+ eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.6.0(@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6))
+ eslint-plugin-vue: 9.28.0(eslint@9.11.0(jiti@1.21.6))
+ eslint-plugin-yml: 1.14.0(eslint@9.11.0(jiti@1.21.6))
+ eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.5.8)(eslint@9.11.0(jiti@1.21.6))
+ globals: 15.9.0
jsonc-eslint-parser: 2.4.0
local-pkg: 0.5.0
parse-gitignore: 2.0.0
- picocolors: 1.0.1
- toml-eslint-parser: 0.9.3
- vue-eslint-parser: 9.4.2(eslint@9.7.0)
- yaml-eslint-parser: 1.2.2
+ picocolors: 1.1.0
+ toml-eslint-parser: 0.10.0
+ vue-eslint-parser: 9.4.3(eslint@9.11.0(jiti@1.21.6))
+ yaml-eslint-parser: 1.2.3
yargs: 17.7.2
optionalDependencies:
- eslint-plugin-format: 0.1.1(eslint@9.7.0)
+ eslint-plugin-format: 0.1.2(eslint@9.11.0(jiti@1.21.6))
transitivePeerDependencies:
+ - '@typescript-eslint/utils'
- '@vue/compiler-sfc'
- supports-color
- svelte
- typescript
- vitest
- '@antfu/install-pkg@0.1.1':
- dependencies:
- execa: 5.1.1
- find-up: 5.0.0
-
- '@antfu/install-pkg@0.3.3':
+ '@antfu/install-pkg@0.4.1':
dependencies:
- '@jsdevtools/ez-spawn': 3.0.4
+ package-manager-detector: 0.2.0
+ tinyexec: 0.3.0
'@antfu/utils@0.7.10': {}
- '@antfu/utils@0.7.6': {}
-
- '@antfu/utils@0.7.8': {}
-
- '@babel/code-frame@7.22.13':
- dependencies:
- '@babel/highlight': 7.22.20
- chalk: 2.4.2
-
- '@babel/code-frame@7.23.5':
- dependencies:
- '@babel/highlight': 7.23.4
- chalk: 2.4.2
-
'@babel/code-frame@7.24.7':
dependencies:
'@babel/highlight': 7.24.7
- picocolors: 1.0.1
-
- '@babel/compat-data@7.23.2': {}
-
- '@babel/compat-data@7.24.9': {}
-
- '@babel/core@7.23.2':
- dependencies:
- '@ampproject/remapping': 2.2.1
- '@babel/code-frame': 7.22.13
- '@babel/generator': 7.23.0
- '@babel/helper-compilation-targets': 7.22.15
- '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2)
- '@babel/helpers': 7.23.2
- '@babel/parser': 7.23.3
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.2
- '@babel/types': 7.23.0
- convert-source-map: 2.0.0
- debug: 4.3.5
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
+ picocolors: 1.1.0
- '@babel/core@7.23.5':
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.23.5
- '@babel/generator': 7.23.5
- '@babel/helper-compilation-targets': 7.22.15
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5)
- '@babel/helpers': 7.23.5
- '@babel/parser': 7.23.5
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.5
- '@babel/types': 7.23.5
- convert-source-map: 2.0.0
- debug: 4.3.5
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
+ '@babel/compat-data@7.25.4': {}
- '@babel/core@7.24.9':
+ '@babel/core@7.25.2':
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.10
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.9)
- '@babel/helpers': 7.24.8
- '@babel/parser': 7.24.8
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/generator': 7.25.6
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
+ '@babel/helpers': 7.25.6
+ '@babel/parser': 7.25.6
+ '@babel/template': 7.25.0
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
convert-source-map: 2.0.0
- debug: 4.3.5
+ debug: 4.3.7
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.23.0':
- dependencies:
- '@babel/types': 7.24.5
- '@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.19
- jsesc: 2.5.2
-
- '@babel/generator@7.23.5':
+ '@babel/generator@7.25.6':
dependencies:
- '@babel/types': 7.24.5
- '@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.20
- jsesc: 2.5.2
-
- '@babel/generator@7.24.10':
- dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.6
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
- '@babel/helper-annotate-as-pure@7.22.5':
- dependencies:
- '@babel/types': 7.24.5
-
'@babel/helper-annotate-as-pure@7.24.7':
dependencies:
- '@babel/types': 7.24.9
-
- '@babel/helper-compilation-targets@7.22.15':
- dependencies:
- '@babel/compat-data': 7.23.2
- '@babel/helper-validator-option': 7.22.15
- browserslist: 4.22.1
- lru-cache: 5.1.1
- semver: 6.3.1
+ '@babel/types': 7.25.6
- '@babel/helper-compilation-targets@7.24.8':
+ '@babel/helper-compilation-targets@7.25.2':
dependencies:
- '@babel/compat-data': 7.24.9
+ '@babel/compat-data': 7.25.4
'@babel/helper-validator-option': 7.24.8
- browserslist: 4.23.2
+ browserslist: 4.23.3
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.24.9)':
- dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-member-expression-to-functions': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.24.9)
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- semver: 6.3.1
-
- '@babel/helper-create-class-features-plugin@7.23.5(@babel/core@7.23.5)':
- dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-member-expression-to-functions': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5)
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- semver: 6.3.1
-
- '@babel/helper-create-class-features-plugin@7.24.8(@babel/core@7.24.9)':
+ '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
'@babel/helper-member-expression-to-functions': 7.24.8
'@babel/helper-optimise-call-expression': 7.24.7
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.9)
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/traverse': 7.25.6
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-environment-visitor@7.22.20': {}
-
- '@babel/helper-environment-visitor@7.24.7':
- dependencies:
- '@babel/types': 7.24.9
-
- '@babel/helper-function-name@7.23.0':
- dependencies:
- '@babel/template': 7.22.15
- '@babel/types': 7.24.5
-
- '@babel/helper-function-name@7.24.7':
- dependencies:
- '@babel/template': 7.24.7
- '@babel/types': 7.24.9
-
- '@babel/helper-hoist-variables@7.22.5':
- dependencies:
- '@babel/types': 7.24.5
-
- '@babel/helper-hoist-variables@7.24.7':
- dependencies:
- '@babel/types': 7.24.9
-
- '@babel/helper-member-expression-to-functions@7.23.0':
- dependencies:
- '@babel/types': 7.24.8
-
'@babel/helper-member-expression-to-functions@7.24.8':
dependencies:
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-imports@7.22.15':
- dependencies:
- '@babel/types': 7.24.5
-
'@babel/helper-module-imports@7.24.7':
dependencies:
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.23.0(@babel/core@7.23.2)':
+ '@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-simple-access': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/helper-validator-identifier': 7.22.20
-
- '@babel/helper-module-transforms@7.23.3(@babel/core@7.23.5)':
- dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-simple-access': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/helper-validator-identifier': 7.22.20
-
- '@babel/helper-module-transforms@7.24.9(@babel/core@7.24.9)':
- dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-environment-visitor': 7.24.7
+ '@babel/core': 7.25.2
'@babel/helper-module-imports': 7.24.7
'@babel/helper-simple-access': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
'@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.6
transitivePeerDependencies:
- supports-color
- '@babel/helper-optimise-call-expression@7.22.5':
- dependencies:
- '@babel/types': 7.24.8
-
'@babel/helper-optimise-call-expression@7.24.7':
dependencies:
- '@babel/types': 7.24.9
-
- '@babel/helper-plugin-utils@7.22.5': {}
+ '@babel/types': 7.25.6
'@babel/helper-plugin-utils@7.24.8': {}
- '@babel/helper-replace-supers@7.22.20(@babel/core@7.23.5)':
- dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-member-expression-to-functions': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
-
- '@babel/helper-replace-supers@7.22.20(@babel/core@7.24.9)':
- dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-member-expression-to-functions': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
-
- '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.9)':
+ '@babel/helper-replace-supers@7.25.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-environment-visitor': 7.24.7
+ '@babel/core': 7.25.2
'@babel/helper-member-expression-to-functions': 7.24.8
'@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/traverse': 7.25.6
transitivePeerDependencies:
- supports-color
- '@babel/helper-simple-access@7.22.5':
- dependencies:
- '@babel/types': 7.24.8
-
'@babel/helper-simple-access@7.24.7':
dependencies:
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
transitivePeerDependencies:
- supports-color
- '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
- dependencies:
- '@babel/types': 7.24.9
-
'@babel/helper-skip-transparent-expression-wrappers@7.24.7':
dependencies:
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
transitivePeerDependencies:
- supports-color
- '@babel/helper-split-export-declaration@7.22.6':
- dependencies:
- '@babel/types': 7.24.5
-
- '@babel/helper-split-export-declaration@7.24.7':
- dependencies:
- '@babel/types': 7.24.9
-
- '@babel/helper-string-parser@7.22.5': {}
-
- '@babel/helper-string-parser@7.23.4': {}
-
- '@babel/helper-string-parser@7.24.1': {}
-
'@babel/helper-string-parser@7.24.8': {}
- '@babel/helper-validator-identifier@7.22.20': {}
-
- '@babel/helper-validator-identifier@7.24.5': {}
-
'@babel/helper-validator-identifier@7.24.7': {}
- '@babel/helper-validator-option@7.22.15': {}
-
- '@babel/helper-validator-option@7.23.5': {}
-
'@babel/helper-validator-option@7.24.8': {}
- '@babel/helpers@7.23.2':
- dependencies:
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.2
- '@babel/types': 7.24.5
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helpers@7.23.5':
- dependencies:
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.5
- '@babel/types': 7.24.5
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helpers@7.24.8':
- dependencies:
- '@babel/template': 7.24.7
- '@babel/types': 7.24.9
-
- '@babel/highlight@7.22.20':
- dependencies:
- '@babel/helper-validator-identifier': 7.24.5
- chalk: 2.4.2
- js-tokens: 4.0.0
-
- '@babel/highlight@7.23.4':
+ '@babel/helpers@7.25.6':
dependencies:
- '@babel/helper-validator-identifier': 7.24.5
- chalk: 2.4.2
- js-tokens: 4.0.0
+ '@babel/template': 7.25.0
+ '@babel/types': 7.25.6
'@babel/highlight@7.24.7':
dependencies:
'@babel/helper-validator-identifier': 7.24.7
chalk: 2.4.2
js-tokens: 4.0.0
- picocolors: 1.0.1
-
- '@babel/parser@7.23.3':
- dependencies:
- '@babel/types': 7.24.5
-
- '@babel/parser@7.23.5':
- dependencies:
- '@babel/types': 7.23.5
-
- '@babel/parser@7.24.5':
- dependencies:
- '@babel/types': 7.24.5
-
- '@babel/parser@7.24.8':
- dependencies:
- '@babel/types': 7.24.8
-
- '@babel/plugin-proposal-decorators@7.23.2(@babel/core@7.23.5)':
- dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5)
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.23.5)
-
- '@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.23.5)':
- dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
-
- '@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.23.5)':
- dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ picocolors: 1.1.0
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.5)':
+ '@babel/parser@7.25.6':
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/types': 7.25.6
- '@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.5)':
+ '@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
-
- '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.23.5)':
- dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-import-attributes@7.25.6(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.5)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.5)':
+ '@babel/plugin-syntax-typescript@7.25.4(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-simple-access': 7.22.5
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.24.9)':
+ '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-simple-access': 7.24.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-typescript@7.22.15(@babel/core@7.24.9)':
- dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.24.9)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.24.9)
-
- '@babel/plugin-transform-typescript@7.23.5(@babel/core@7.23.5)':
- dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.5)
-
- '@babel/plugin-transform-typescript@7.24.8(@babel/core@7.24.9)':
+ '@babel/plugin-transform-typescript@7.25.2(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.9)
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.9)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- '@babel/preset-typescript@7.23.3(@babel/core@7.23.5)':
+ '@babel/preset-typescript@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.23.5
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-typescript': 7.23.5(@babel/core@7.23.5)
-
- '@babel/preset-typescript@7.24.7(@babel/core@7.24.9)':
- dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-validator-option': 7.24.8
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.24.9)
- '@babel/plugin-transform-typescript': 7.24.8(@babel/core@7.24.9)
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- '@babel/standalone@7.23.2': {}
-
- '@babel/standalone@7.24.8': {}
-
- '@babel/template@7.22.15':
- dependencies:
- '@babel/code-frame': 7.22.13
- '@babel/parser': 7.23.3
- '@babel/types': 7.24.5
+ '@babel/standalone@7.25.6': {}
- '@babel/template@7.24.7':
+ '@babel/template@7.25.0':
dependencies:
'@babel/code-frame': 7.24.7
- '@babel/parser': 7.24.8
- '@babel/types': 7.24.9
-
- '@babel/traverse@7.23.2':
- dependencies:
- '@babel/code-frame': 7.22.13
- '@babel/generator': 7.23.0
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.23.3
- '@babel/types': 7.24.5
- debug: 4.3.5
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
- '@babel/traverse@7.23.5':
- dependencies:
- '@babel/code-frame': 7.23.5
- '@babel/generator': 7.23.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.23.5
- '@babel/types': 7.24.5
- debug: 4.3.5
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/parser': 7.25.6
+ '@babel/types': 7.25.6
- '@babel/traverse@7.24.8':
+ '@babel/traverse@7.25.6':
dependencies:
'@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.10
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/parser': 7.24.8
- '@babel/types': 7.24.9
- debug: 4.3.5
+ '@babel/generator': 7.25.6
+ '@babel/parser': 7.25.6
+ '@babel/template': 7.25.0
+ '@babel/types': 7.25.6
+ debug: 4.3.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.23.0':
- dependencies:
- '@babel/helper-string-parser': 7.22.5
- '@babel/helper-validator-identifier': 7.22.20
- to-fast-properties: 2.0.0
-
- '@babel/types@7.23.5':
- dependencies:
- '@babel/helper-string-parser': 7.23.4
- '@babel/helper-validator-identifier': 7.22.20
- to-fast-properties: 2.0.0
-
- '@babel/types@7.24.5':
- dependencies:
- '@babel/helper-string-parser': 7.24.1
- '@babel/helper-validator-identifier': 7.24.5
- to-fast-properties: 2.0.0
-
- '@babel/types@7.24.8':
- dependencies:
- '@babel/helper-string-parser': 7.24.8
- '@babel/helper-validator-identifier': 7.24.7
- to-fast-properties: 2.0.0
-
- '@babel/types@7.24.9':
+ '@babel/types@7.25.6':
dependencies:
'@babel/helper-string-parser': 7.24.8
'@babel/helper-validator-identifier': 7.24.7
@@ -7852,38 +6603,30 @@ snapshots:
'@clack/core@0.3.4':
dependencies:
- picocolors: 1.0.1
+ picocolors: 1.1.0
sisteransi: 1.0.5
'@clack/prompts@0.7.0':
dependencies:
'@clack/core': 0.3.4
- picocolors: 1.0.1
+ picocolors: 1.1.0
sisteransi: 1.0.5
- '@cloudflare/kv-asset-handler@0.3.0':
+ '@cloudflare/kv-asset-handler@0.3.4':
dependencies:
mime: 3.0.0
- '@docsearch/css@3.5.2': {}
+ '@conventional-changelog/git-client@1.0.1':
+ dependencies:
+ '@types/semver': 7.5.8
+ semver: 7.6.3
'@docsearch/css@3.6.1': {}
- '@docsearch/js@3.5.2(@algolia/client-search@4.24.0)(search-insights@2.15.0)':
- dependencies:
- '@docsearch/react': 3.5.2(@algolia/client-search@4.24.0)(search-insights@2.15.0)
- preact: 10.19.2
- transitivePeerDependencies:
- - '@algolia/client-search'
- - '@types/react'
- - react
- - react-dom
- - search-insights
-
- '@docsearch/js@3.6.1(@algolia/client-search@4.24.0)(search-insights@2.15.0)':
+ '@docsearch/js@3.6.1(@algolia/client-search@4.24.0)(search-insights@2.17.2)':
dependencies:
- '@docsearch/react': 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.15.0)
- preact: 10.23.1
+ '@docsearch/react': 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.17.2)
+ preact: 10.24.0
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/react'
@@ -7891,257 +6634,258 @@ snapshots:
- react-dom
- search-insights
- '@docsearch/react@3.5.2(@algolia/client-search@4.24.0)(search-insights@2.15.0)':
+ '@docsearch/react@3.6.1(@algolia/client-search@4.24.0)(search-insights@2.17.2)':
dependencies:
- '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.20.0)(search-insights@2.15.0)
- '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.20.0)
- '@docsearch/css': 3.5.2
- algoliasearch: 4.20.0
- optionalDependencies:
- search-insights: 2.15.0
- transitivePeerDependencies:
- - '@algolia/client-search'
-
- '@docsearch/react@3.6.1(@algolia/client-search@4.24.0)(search-insights@2.15.0)':
- dependencies:
- '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.15.0)
+ '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.17.2)
'@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)
'@docsearch/css': 3.6.1
algoliasearch: 4.24.0
optionalDependencies:
- search-insights: 2.15.0
+ search-insights: 2.17.2
transitivePeerDependencies:
- '@algolia/client-search'
- '@dprint/formatter@0.2.1': {}
+ '@dprint/formatter@0.3.0': {}
- '@dprint/markdown@0.16.4': {}
+ '@dprint/markdown@0.17.8': {}
- '@dprint/toml@0.6.1': {}
+ '@dprint/toml@0.6.2': {}
- '@es-joy/jsdoccomment@0.43.0':
+ '@es-joy/jsdoccomment@0.48.0':
dependencies:
- '@types/eslint': 8.56.10
- '@types/estree': 1.0.5
- '@typescript-eslint/types': 7.9.0
comment-parser: 1.4.1
esquery: 1.6.0
- jsdoc-type-pratt-parser: 4.0.0
+ jsdoc-type-pratt-parser: 4.1.0
+
+ '@esbuild/aix-ppc64@0.20.2':
+ optional: true
'@esbuild/aix-ppc64@0.21.5':
optional: true
- '@esbuild/android-arm64@0.18.20':
+ '@esbuild/aix-ppc64@0.23.1':
optional: true
- '@esbuild/android-arm64@0.19.5':
+ '@esbuild/android-arm64@0.20.2':
optional: true
'@esbuild/android-arm64@0.21.5':
optional: true
- '@esbuild/android-arm@0.18.20':
+ '@esbuild/android-arm64@0.23.1':
optional: true
- '@esbuild/android-arm@0.19.5':
+ '@esbuild/android-arm@0.20.2':
optional: true
'@esbuild/android-arm@0.21.5':
optional: true
- '@esbuild/android-x64@0.18.20':
+ '@esbuild/android-arm@0.23.1':
optional: true
- '@esbuild/android-x64@0.19.5':
+ '@esbuild/android-x64@0.20.2':
optional: true
'@esbuild/android-x64@0.21.5':
optional: true
- '@esbuild/darwin-arm64@0.18.20':
+ '@esbuild/android-x64@0.23.1':
optional: true
- '@esbuild/darwin-arm64@0.19.5':
+ '@esbuild/darwin-arm64@0.20.2':
optional: true
'@esbuild/darwin-arm64@0.21.5':
optional: true
- '@esbuild/darwin-x64@0.18.20':
+ '@esbuild/darwin-arm64@0.23.1':
optional: true
- '@esbuild/darwin-x64@0.19.5':
+ '@esbuild/darwin-x64@0.20.2':
optional: true
'@esbuild/darwin-x64@0.21.5':
optional: true
- '@esbuild/freebsd-arm64@0.18.20':
+ '@esbuild/darwin-x64@0.23.1':
optional: true
- '@esbuild/freebsd-arm64@0.19.5':
+ '@esbuild/freebsd-arm64@0.20.2':
optional: true
'@esbuild/freebsd-arm64@0.21.5':
optional: true
- '@esbuild/freebsd-x64@0.18.20':
+ '@esbuild/freebsd-arm64@0.23.1':
optional: true
- '@esbuild/freebsd-x64@0.19.5':
+ '@esbuild/freebsd-x64@0.20.2':
optional: true
'@esbuild/freebsd-x64@0.21.5':
optional: true
- '@esbuild/linux-arm64@0.18.20':
+ '@esbuild/freebsd-x64@0.23.1':
optional: true
- '@esbuild/linux-arm64@0.19.5':
+ '@esbuild/linux-arm64@0.20.2':
optional: true
'@esbuild/linux-arm64@0.21.5':
optional: true
- '@esbuild/linux-arm@0.18.20':
+ '@esbuild/linux-arm64@0.23.1':
optional: true
- '@esbuild/linux-arm@0.19.5':
+ '@esbuild/linux-arm@0.20.2':
optional: true
'@esbuild/linux-arm@0.21.5':
optional: true
- '@esbuild/linux-ia32@0.18.20':
+ '@esbuild/linux-arm@0.23.1':
optional: true
- '@esbuild/linux-ia32@0.19.5':
+ '@esbuild/linux-ia32@0.20.2':
optional: true
'@esbuild/linux-ia32@0.21.5':
optional: true
- '@esbuild/linux-loong64@0.18.20':
+ '@esbuild/linux-ia32@0.23.1':
optional: true
- '@esbuild/linux-loong64@0.19.5':
+ '@esbuild/linux-loong64@0.20.2':
optional: true
'@esbuild/linux-loong64@0.21.5':
optional: true
- '@esbuild/linux-mips64el@0.18.20':
+ '@esbuild/linux-loong64@0.23.1':
optional: true
- '@esbuild/linux-mips64el@0.19.5':
+ '@esbuild/linux-mips64el@0.20.2':
optional: true
'@esbuild/linux-mips64el@0.21.5':
optional: true
- '@esbuild/linux-ppc64@0.18.20':
+ '@esbuild/linux-mips64el@0.23.1':
optional: true
- '@esbuild/linux-ppc64@0.19.5':
+ '@esbuild/linux-ppc64@0.20.2':
optional: true
'@esbuild/linux-ppc64@0.21.5':
optional: true
- '@esbuild/linux-riscv64@0.18.20':
+ '@esbuild/linux-ppc64@0.23.1':
optional: true
- '@esbuild/linux-riscv64@0.19.5':
+ '@esbuild/linux-riscv64@0.20.2':
optional: true
'@esbuild/linux-riscv64@0.21.5':
optional: true
- '@esbuild/linux-s390x@0.18.20':
+ '@esbuild/linux-riscv64@0.23.1':
optional: true
- '@esbuild/linux-s390x@0.19.5':
+ '@esbuild/linux-s390x@0.20.2':
optional: true
'@esbuild/linux-s390x@0.21.5':
optional: true
- '@esbuild/linux-x64@0.18.20':
+ '@esbuild/linux-s390x@0.23.1':
optional: true
- '@esbuild/linux-x64@0.19.5':
+ '@esbuild/linux-x64@0.20.2':
optional: true
'@esbuild/linux-x64@0.21.5':
optional: true
- '@esbuild/netbsd-x64@0.18.20':
+ '@esbuild/linux-x64@0.23.1':
optional: true
- '@esbuild/netbsd-x64@0.19.5':
+ '@esbuild/netbsd-x64@0.20.2':
optional: true
'@esbuild/netbsd-x64@0.21.5':
optional: true
- '@esbuild/openbsd-x64@0.18.20':
+ '@esbuild/netbsd-x64@0.23.1':
optional: true
- '@esbuild/openbsd-x64@0.19.5':
+ '@esbuild/openbsd-arm64@0.23.1':
+ optional: true
+
+ '@esbuild/openbsd-x64@0.20.2':
optional: true
'@esbuild/openbsd-x64@0.21.5':
optional: true
- '@esbuild/sunos-x64@0.18.20':
+ '@esbuild/openbsd-x64@0.23.1':
optional: true
- '@esbuild/sunos-x64@0.19.5':
+ '@esbuild/sunos-x64@0.20.2':
optional: true
'@esbuild/sunos-x64@0.21.5':
optional: true
- '@esbuild/win32-arm64@0.18.20':
+ '@esbuild/sunos-x64@0.23.1':
optional: true
- '@esbuild/win32-arm64@0.19.5':
+ '@esbuild/win32-arm64@0.20.2':
optional: true
'@esbuild/win32-arm64@0.21.5':
optional: true
- '@esbuild/win32-ia32@0.18.20':
+ '@esbuild/win32-arm64@0.23.1':
optional: true
- '@esbuild/win32-ia32@0.19.5':
+ '@esbuild/win32-ia32@0.20.2':
optional: true
'@esbuild/win32-ia32@0.21.5':
optional: true
- '@esbuild/win32-x64@0.18.20':
+ '@esbuild/win32-ia32@0.23.1':
optional: true
- '@esbuild/win32-x64@0.19.5':
+ '@esbuild/win32-x64@0.20.2':
optional: true
'@esbuild/win32-x64@0.21.5':
optional: true
- '@eslint-community/eslint-utils@4.4.0(eslint@9.7.0)':
+ '@esbuild/win32-x64@0.23.1':
+ optional: true
+
+ '@eslint-community/eslint-plugin-eslint-comments@4.4.0(eslint@9.11.0(jiti@1.21.6))':
dependencies:
- eslint: 9.7.0
+ escape-string-regexp: 4.0.0
+ eslint: 9.11.0(jiti@1.21.6)
+ ignore: 5.3.2
+
+ '@eslint-community/eslint-utils@4.4.0(eslint@9.11.0(jiti@1.21.6))':
+ dependencies:
+ eslint: 9.11.0(jiti@1.21.6)
eslint-visitor-keys: 3.4.3
- '@eslint-community/regexpp@4.10.0': {}
+ '@eslint-community/regexpp@4.11.1': {}
- '@eslint-community/regexpp@4.11.0': {}
+ '@eslint/compat@1.1.1': {}
- '@eslint/config-array@0.17.1':
+ '@eslint/config-array@0.18.0':
dependencies:
'@eslint/object-schema': 2.1.4
- debug: 4.3.5
+ debug: 4.3.7
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -8149,10 +6893,10 @@ snapshots:
'@eslint/eslintrc@3.1.0':
dependencies:
ajv: 6.12.6
- debug: 4.3.5
+ debug: 4.3.7
espree: 10.1.0
globals: 14.0.0
- ignore: 5.3.1
+ ignore: 5.3.2
import-fresh: 3.3.0
js-yaml: 4.1.0
minimatch: 3.1.2
@@ -8160,11 +6904,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.7.0': {}
+ '@eslint/js@9.11.0': {}
+
+ '@eslint/markdown@6.1.0(eslint@9.11.0(jiti@1.21.6))':
+ dependencies:
+ eslint: 9.11.0(jiti@1.21.6)
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-gfm: 3.0.0
+ micromark-extension-gfm: 3.0.0
+ transitivePeerDependencies:
+ - supports-color
'@eslint/object-schema@2.1.4': {}
- '@fastify/busboy@2.0.0': {}
+ '@eslint/plugin-kit@0.2.0':
+ dependencies:
+ levn: 0.4.1
+
+ '@fastify/busboy@2.1.1': {}
'@humanwhocodes/module-importer@1.0.1': {}
@@ -8172,42 +6929,34 @@ snapshots:
'@hutson/parse-repository-url@5.0.0': {}
- '@iarna/toml@2.2.5': {}
-
- '@iconify/types@2.0.0': {}
-
- '@iconify/utils@2.1.12':
- dependencies:
- '@antfu/install-pkg': 0.1.1
- '@antfu/utils': 0.7.8
- '@iconify/types': 2.0.0
- debug: 4.3.5
- kolorist: 1.8.0
- local-pkg: 0.4.3
- transitivePeerDependencies:
- - supports-color
+ '@iarna/toml@2.2.5': {}
+
+ '@iconify/types@2.0.0': {}
- '@iconify/utils@2.1.25':
+ '@iconify/utils@2.1.33':
dependencies:
- '@antfu/install-pkg': 0.1.1
+ '@antfu/install-pkg': 0.4.1
'@antfu/utils': 0.7.10
'@iconify/types': 2.0.0
- debug: 4.3.5
+ debug: 4.3.7
kolorist: 1.8.0
local-pkg: 0.5.0
mlly: 1.7.1
transitivePeerDependencies:
- supports-color
- '@inquirer/figures@1.0.5': {}
+ '@inquirer/figures@1.0.6': {}
'@ioredis/commands@1.2.0': {}
- '@jridgewell/gen-mapping@0.3.3':
+ '@isaacs/cliui@8.0.2':
dependencies:
- '@jridgewell/set-array': 1.1.2
- '@jridgewell/sourcemap-codec': 1.4.15
- '@jridgewell/trace-mapping': 0.3.19
+ string-width: 5.1.2
+ string-width-cjs: string-width@4.2.3
+ strip-ansi: 7.1.0
+ strip-ansi-cjs: strip-ansi@6.0.1
+ wrap-ansi: 8.1.0
+ wrap-ansi-cjs: wrap-ansi@7.0.0
'@jridgewell/gen-mapping@0.3.5':
dependencies:
@@ -8215,91 +6964,62 @@ snapshots:
'@jridgewell/sourcemap-codec': 1.5.0
'@jridgewell/trace-mapping': 0.3.25
- '@jridgewell/resolve-uri@3.1.1': {}
-
'@jridgewell/resolve-uri@3.1.2': {}
- '@jridgewell/set-array@1.1.2': {}
-
'@jridgewell/set-array@1.2.1': {}
- '@jridgewell/source-map@0.3.5':
- dependencies:
- '@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.19
-
'@jridgewell/source-map@0.3.6':
dependencies:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- optional: true
-
- '@jridgewell/sourcemap-codec@1.4.15': {}
'@jridgewell/sourcemap-codec@1.5.0': {}
- '@jridgewell/trace-mapping@0.3.19':
- dependencies:
- '@jridgewell/resolve-uri': 3.1.1
- '@jridgewell/sourcemap-codec': 1.4.15
-
- '@jridgewell/trace-mapping@0.3.20':
- dependencies:
- '@jridgewell/resolve-uri': 3.1.1
- '@jridgewell/sourcemap-codec': 1.4.15
-
'@jridgewell/trace-mapping@0.3.25':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.0
- '@jsdevtools/ez-spawn@3.0.4':
- dependencies:
- call-me-maybe: 1.0.2
- cross-spawn: 7.0.3
- string-argv: 0.3.2
- type-detect: 4.0.8
-
'@kwsites/file-exists@1.1.1':
dependencies:
- debug: 4.3.5
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
'@kwsites/promise-deferred@1.1.1': {}
- '@mapbox/node-pre-gyp@1.0.11(encoding@0.1.13)':
+ '@mapbox/node-pre-gyp@1.0.11':
dependencies:
- detect-libc: 2.0.2
+ detect-libc: 2.0.3
https-proxy-agent: 5.0.1
make-dir: 3.1.0
- node-fetch: 2.7.0(encoding@0.1.13)
+ node-fetch: 2.7.0
nopt: 5.0.0
npmlog: 5.0.1
rimraf: 3.0.2
semver: 7.6.3
- tar: 6.2.0
+ tar: 6.2.1
transitivePeerDependencies:
- encoding
- supports-color
- '@microsoft/api-extractor-model@7.29.3(@types/node@20.14.12)':
+ '@microsoft/api-extractor-model@7.29.3(@types/node@22.5.5)':
dependencies:
'@microsoft/tsdoc': 0.15.0
'@microsoft/tsdoc-config': 0.17.0
- '@rushstack/node-core-library': 5.5.0(@types/node@20.14.12)
+ '@rushstack/node-core-library': 5.5.0(@types/node@22.5.5)
transitivePeerDependencies:
- '@types/node'
- '@microsoft/api-extractor@7.47.2(@types/node@20.14.12)':
+ '@microsoft/api-extractor@7.47.2(@types/node@22.5.5)':
dependencies:
- '@microsoft/api-extractor-model': 7.29.3(@types/node@20.14.12)
+ '@microsoft/api-extractor-model': 7.29.3(@types/node@22.5.5)
'@microsoft/tsdoc': 0.15.0
'@microsoft/tsdoc-config': 0.17.0
- '@rushstack/node-core-library': 5.5.0(@types/node@20.14.12)
+ '@rushstack/node-core-library': 5.5.0(@types/node@22.5.5)
'@rushstack/rig-package': 0.5.2
- '@rushstack/terminal': 0.13.2(@types/node@20.14.12)
- '@rushstack/ts-command-line': 4.22.2(@types/node@20.14.12)
+ '@rushstack/terminal': 0.13.2(@types/node@22.5.5)
+ '@rushstack/ts-command-line': 4.22.2(@types/node@22.5.5)
lodash: 4.17.21
minimatch: 3.0.8
resolve: 1.22.8
@@ -8318,14 +7038,13 @@ snapshots:
'@microsoft/tsdoc@0.15.0': {}
- '@netlify/functions@2.3.0':
+ '@netlify/functions@2.8.1':
dependencies:
- '@netlify/serverless-functions-api': 1.9.0
- is-promise: 4.0.0
+ '@netlify/serverless-functions-api': 1.19.1
'@netlify/node-cookies@0.1.0': {}
- '@netlify/serverless-functions-api@1.9.0':
+ '@netlify/serverless-functions-api@1.19.1':
dependencies:
'@netlify/node-cookies': 0.1.0
urlpattern-polyfill: 8.0.2
@@ -8344,68 +7063,69 @@ snapshots:
'@nuxt/devalue@2.0.2': {}
- '@nuxt/devtools-kit@1.3.9(magicast@0.3.4)(rollup@3.29.4)(vite@4.5.3(@types/node@20.14.12)(terser@5.31.3))':
+ '@nuxt/devtools-kit@1.5.0(magicast@0.3.5)(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))':
dependencies:
- '@nuxt/kit': 3.12.3(magicast@0.3.4)(rollup@3.29.4)
- '@nuxt/schema': 3.12.3(rollup@3.29.4)
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.22.4)
+ '@nuxt/schema': 3.13.2(rollup@4.22.4)
execa: 7.2.0
- vite: 4.5.3(@types/node@20.14.12)(terser@5.31.3)
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
transitivePeerDependencies:
- magicast
- rollup
- supports-color
+ - webpack-sources
- '@nuxt/devtools-wizard@1.3.9':
+ '@nuxt/devtools-wizard@1.5.0':
dependencies:
consola: 3.2.3
- diff: 5.2.0
+ diff: 7.0.0
execa: 7.2.0
global-directory: 4.0.1
- magicast: 0.3.4
+ magicast: 0.3.5
pathe: 1.1.2
- pkg-types: 1.1.3
+ pkg-types: 1.2.0
prompts: 2.4.2
rc9: 2.1.2
- semver: 7.6.2
+ semver: 7.6.3
- '@nuxt/devtools@1.3.9(rollup@3.29.4)(vite@4.5.3(@types/node@20.14.12)(terser@5.31.3))':
+ '@nuxt/devtools@1.5.0(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2))':
dependencies:
'@antfu/utils': 0.7.10
- '@nuxt/devtools-kit': 1.3.9(magicast@0.3.4)(rollup@3.29.4)(vite@4.5.3(@types/node@20.14.12)(terser@5.31.3))
- '@nuxt/devtools-wizard': 1.3.9
- '@nuxt/kit': 3.12.3(magicast@0.3.4)(rollup@3.29.4)
- '@vue/devtools-core': 7.3.3(vite@4.5.3(@types/node@20.14.12)(terser@5.31.3))
- '@vue/devtools-kit': 7.3.3
+ '@nuxt/devtools-kit': 1.5.0(magicast@0.3.5)(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))
+ '@nuxt/devtools-wizard': 1.5.0
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.22.4)
+ '@vue/devtools-core': 7.4.4(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2))
+ '@vue/devtools-kit': 7.4.4
birpc: 0.2.17
consola: 3.2.3
cronstrue: 2.50.0
destr: 2.0.3
- error-stack-parser-es: 0.1.4
+ error-stack-parser-es: 0.1.5
execa: 7.2.0
- fast-glob: 3.3.2
- fast-npm-meta: 0.1.1
+ fast-npm-meta: 0.2.2
flatted: 3.3.1
get-port-please: 3.1.2
hookable: 5.5.3
image-meta: 0.2.1
is-installed-globally: 1.0.0
- launch-editor: 2.8.0
+ launch-editor: 2.9.1
local-pkg: 0.5.0
- magicast: 0.3.4
- nypm: 0.3.9
- ohash: 1.1.3
+ magicast: 0.3.5
+ nypm: 0.3.11
+ ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.1.3
+ pkg-types: 1.2.0
rc9: 2.1.2
scule: 1.3.0
- semver: 7.6.2
- simple-git: 3.25.0
+ semver: 7.6.3
+ simple-git: 3.27.0
sirv: 2.0.4
- unimport: 3.7.2(rollup@3.29.4)
- vite: 4.5.3(@types/node@20.14.12)(terser@5.31.3)
- vite-plugin-inspect: 0.8.4(@nuxt/kit@3.12.3(magicast@0.3.4)(rollup@3.29.4))(rollup@3.29.4)(vite@4.5.3(@types/node@20.14.12)(terser@5.31.3))
- vite-plugin-vue-inspector: 5.1.2(vite@4.5.3(@types/node@20.14.12)(terser@5.31.3))
+ tinyglobby: 0.2.6
+ unimport: 3.12.0(rollup@4.22.4)
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
+ vite-plugin-inspect: 0.8.7(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.22.4))(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))
+ vite-plugin-vue-inspector: 5.2.0(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))
which: 3.0.1
ws: 8.18.0
transitivePeerDependencies:
@@ -8413,221 +7133,141 @@ snapshots:
- rollup
- supports-color
- utf-8-validate
+ - vue
+ - webpack-sources
- '@nuxt/kit@3.12.3(magicast@0.3.4)(rollup@3.29.4)':
- dependencies:
- '@nuxt/schema': 3.12.3(rollup@3.29.4)
- c12: 1.11.1(magicast@0.3.4)
- consola: 3.2.3
- defu: 6.1.4
- destr: 2.0.3
- globby: 14.0.2
- hash-sum: 2.0.0
- ignore: 5.3.1
- jiti: 1.21.6
- klona: 2.0.6
- knitwork: 1.1.0
- mlly: 1.7.1
- pathe: 1.1.2
- pkg-types: 1.1.3
- scule: 1.3.0
- semver: 7.6.2
- ufo: 1.5.3
- unctx: 2.3.1
- unimport: 3.7.2(rollup@3.29.4)
- untyped: 1.4.2
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/kit@3.12.4(rollup@4.19.0)':
+ '@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.22.4)':
dependencies:
- '@nuxt/schema': 3.12.4(rollup@4.19.0)
- c12: 1.11.1(magicast@0.3.4)
+ '@nuxt/schema': 3.13.2(rollup@4.22.4)
+ c12: 1.11.2(magicast@0.3.5)
consola: 3.2.3
defu: 6.1.4
destr: 2.0.3
globby: 14.0.2
hash-sum: 2.0.0
- ignore: 5.3.1
+ ignore: 5.3.2
jiti: 1.21.6
klona: 2.0.6
knitwork: 1.1.0
mlly: 1.7.1
pathe: 1.1.2
- pkg-types: 1.1.3
+ pkg-types: 1.2.0
scule: 1.3.0
semver: 7.6.3
ufo: 1.5.4
unctx: 2.3.1
- unimport: 3.9.0(rollup@4.19.0)
+ unimport: 3.12.0(rollup@4.22.4)
untyped: 1.4.2
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- optional: true
-
- '@nuxt/kit@3.8.0(rollup@3.29.4)':
- dependencies:
- '@nuxt/schema': 3.8.0(rollup@3.29.4)
- c12: 1.5.1
- consola: 3.2.3
- defu: 6.1.3
- globby: 13.2.2
- hash-sum: 2.0.0
- ignore: 5.3.1
- jiti: 1.20.0
- knitwork: 1.0.0
- mlly: 1.4.2
- pathe: 1.1.2
- pkg-types: 1.0.3
- scule: 1.0.0
- semver: 7.6.3
- ufo: 1.3.1
- unctx: 2.3.1
- unimport: 3.4.0(rollup@3.29.4)
- untyped: 1.4.0
- transitivePeerDependencies:
- - rollup
- - supports-color
-
- '@nuxt/schema@3.12.3(rollup@3.29.4)':
- dependencies:
- compatx: 0.1.8
- consola: 3.2.3
- defu: 6.1.4
- hookable: 5.5.3
- pathe: 1.1.2
- pkg-types: 1.1.3
- scule: 1.3.0
- std-env: 3.7.0
- ufo: 1.5.3
- uncrypto: 0.1.3
- unimport: 3.7.2(rollup@3.29.4)
- untyped: 1.4.2
- transitivePeerDependencies:
- - rollup
- - supports-color
+ - webpack-sources
- '@nuxt/schema@3.12.4(rollup@4.19.0)':
+ '@nuxt/schema@3.13.2(rollup@4.22.4)':
dependencies:
compatx: 0.1.8
consola: 3.2.3
defu: 6.1.4
hookable: 5.5.3
pathe: 1.1.2
- pkg-types: 1.1.3
+ pkg-types: 1.2.0
scule: 1.3.0
std-env: 3.7.0
ufo: 1.5.4
uncrypto: 0.1.3
- unimport: 3.9.0(rollup@4.19.0)
+ unimport: 3.12.0(rollup@4.22.4)
untyped: 1.4.2
transitivePeerDependencies:
- rollup
- supports-color
- optional: true
-
- '@nuxt/schema@3.8.0(rollup@3.29.4)':
- dependencies:
- '@nuxt/ui-templates': 1.3.1
- consola: 3.2.3
- defu: 6.1.3
- hookable: 5.5.3
- pathe: 1.1.2
- pkg-types: 1.0.3
- postcss-import-resolver: 2.0.0
- std-env: 3.4.3
- ufo: 1.3.1
- unimport: 3.4.0(rollup@3.29.4)
- untyped: 1.4.0
- transitivePeerDependencies:
- - rollup
- - supports-color
+ - webpack-sources
- '@nuxt/telemetry@2.5.2(rollup@3.29.4)':
+ '@nuxt/telemetry@2.6.0(magicast@0.3.5)(rollup@4.22.4)':
dependencies:
- '@nuxt/kit': 3.8.0(rollup@3.29.4)
- ci-info: 3.8.0
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.22.4)
+ ci-info: 4.0.0
consola: 3.2.3
create-require: 1.1.1
- defu: 6.1.3
- destr: 2.0.2
- dotenv: 16.3.1
- git-url-parse: 13.1.1
+ defu: 6.1.4
+ destr: 2.0.3
+ dotenv: 16.4.5
+ git-url-parse: 15.0.0
is-docker: 3.0.0
- jiti: 1.20.0
+ jiti: 1.21.6
mri: 1.2.0
- nanoid: 4.0.2
- ofetch: 1.3.3
+ nanoid: 5.0.7
+ ofetch: 1.4.0
+ package-manager-detector: 0.2.0
parse-git-config: 3.0.0
pathe: 1.1.2
- rc9: 2.1.1
- std-env: 3.4.3
+ rc9: 2.1.2
+ std-env: 3.7.0
transitivePeerDependencies:
+ - magicast
- rollup
- supports-color
+ - webpack-sources
- '@nuxt/ui-templates@1.3.1': {}
-
- '@nuxt/vite-builder@3.8.0(@types/node@20.14.12)(eslint@9.7.0)(optionator@0.9.4)(rollup@3.29.4)(terser@5.31.3)(typescript@5.5.4)(vue-tsc@2.0.29(typescript@5.5.4))(vue@3.4.27(typescript@5.5.4))':
+ '@nuxt/vite-builder@3.13.2(@types/node@22.5.5)(eslint@9.11.0(jiti@1.21.6))(magicast@0.3.5)(optionator@0.9.4)(rollup@4.22.4)(terser@5.33.0)(typescript@5.6.2)(vue-tsc@2.1.6(typescript@5.6.2))(vue@3.5.8(typescript@5.6.2))':
dependencies:
- '@nuxt/kit': 3.8.0(rollup@3.29.4)
- '@rollup/plugin-replace': 5.0.4(rollup@3.29.4)
- '@vitejs/plugin-vue': 4.6.2(vite@4.5.3(@types/node@20.14.12)(terser@5.31.3))(vue@3.4.27(typescript@5.5.4))
- '@vitejs/plugin-vue-jsx': 3.0.2(vite@4.5.3(@types/node@20.14.12)(terser@5.31.3))(vue@3.4.27(typescript@5.5.4))
- autoprefixer: 10.4.16(postcss@8.4.40)
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.22.4)
+ '@rollup/plugin-replace': 5.0.7(rollup@4.22.4)
+ '@vitejs/plugin-vue': 5.1.4(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2))
+ '@vitejs/plugin-vue-jsx': 4.0.1(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2))
+ autoprefixer: 10.4.20(postcss@8.4.47)
clear: 0.1.0
consola: 3.2.3
- cssnano: 6.0.1(postcss@8.4.40)
- defu: 6.1.3
- esbuild: 0.19.5
+ cssnano: 7.0.6(postcss@8.4.47)
+ defu: 6.1.4
+ esbuild: 0.23.1
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
externality: 1.0.2
- fs-extra: 11.1.1
- get-port-please: 3.1.1
- h3: 1.8.2
- knitwork: 1.0.0
- magic-string: 0.30.5
- mlly: 1.4.2
- ohash: 1.1.3
+ get-port-please: 3.1.2
+ h3: 1.12.0
+ knitwork: 1.1.0
+ magic-string: 0.30.11
+ mlly: 1.7.1
+ ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.0.3
- postcss: 8.4.40
- postcss-import: 15.1.0(postcss@8.4.40)
- postcss-url: 10.1.3(postcss@8.4.40)
- rollup-plugin-visualizer: 5.12.0(rollup@3.29.4)
- std-env: 3.4.3
- strip-literal: 1.3.0
- ufo: 1.3.1
- unplugin: 1.5.0
- vite: 4.5.3(@types/node@20.14.12)(terser@5.31.3)
- vite-node: 0.33.0(@types/node@20.14.12)(terser@5.31.3)
- vite-plugin-checker: 0.6.2(eslint@9.7.0)(optionator@0.9.4)(typescript@5.5.4)(vite@4.5.3(@types/node@20.14.12)(terser@5.31.3))(vue-tsc@2.0.29(typescript@5.5.4))
- vue: 3.4.27(typescript@5.5.4)
- vue-bundle-renderer: 2.0.0
- transitivePeerDependencies:
+ pkg-types: 1.2.0
+ postcss: 8.4.47
+ rollup-plugin-visualizer: 5.12.0(rollup@4.22.4)
+ std-env: 3.7.0
+ strip-literal: 2.1.0
+ ufo: 1.5.4
+ unenv: 1.10.0
+ unplugin: 1.14.1
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
+ vite-node: 2.1.1(@types/node@22.5.5)(terser@5.33.0)
+ vite-plugin-checker: 0.8.0(eslint@9.11.0(jiti@1.21.6))(optionator@0.9.4)(typescript@5.6.2)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))(vue-tsc@2.1.6(typescript@5.6.2))
+ vue: 3.5.8(typescript@5.6.2)
+ vue-bundle-renderer: 2.1.0
+ transitivePeerDependencies:
+ - '@biomejs/biome'
- '@types/node'
- eslint
- less
- lightningcss
+ - magicast
- meow
- optionator
- rollup
- sass
+ - sass-embedded
- stylelint
- stylus
- sugarss
- supports-color
- terser
- typescript
+ - uWebSockets.js
- vls
- vti
- vue-tsc
+ - webpack-sources
'@octokit/auth-token@4.0.0': {}
@@ -8692,108 +7332,52 @@ snapshots:
dependencies:
'@octokit/openapi-types': 22.2.0
- '@parcel/watcher-android-arm64@2.3.0':
- optional: true
-
'@parcel/watcher-android-arm64@2.4.1':
optional: true
- '@parcel/watcher-darwin-arm64@2.3.0':
- optional: true
-
'@parcel/watcher-darwin-arm64@2.4.1':
optional: true
- '@parcel/watcher-darwin-x64@2.3.0':
- optional: true
-
'@parcel/watcher-darwin-x64@2.4.1':
optional: true
- '@parcel/watcher-freebsd-x64@2.3.0':
- optional: true
-
'@parcel/watcher-freebsd-x64@2.4.1':
optional: true
- '@parcel/watcher-linux-arm-glibc@2.3.0':
- optional: true
-
'@parcel/watcher-linux-arm-glibc@2.4.1':
optional: true
- '@parcel/watcher-linux-arm64-glibc@2.3.0':
- optional: true
-
'@parcel/watcher-linux-arm64-glibc@2.4.1':
optional: true
- '@parcel/watcher-linux-arm64-musl@2.3.0':
- optional: true
-
'@parcel/watcher-linux-arm64-musl@2.4.1':
optional: true
- '@parcel/watcher-linux-x64-glibc@2.3.0':
- optional: true
-
'@parcel/watcher-linux-x64-glibc@2.4.1':
optional: true
- '@parcel/watcher-linux-x64-musl@2.3.0':
- optional: true
-
'@parcel/watcher-linux-x64-musl@2.4.1':
optional: true
- '@parcel/watcher-wasm@2.3.0':
+ '@parcel/watcher-wasm@2.4.1':
dependencies:
is-glob: 4.0.3
- micromatch: 4.0.5
-
- '@parcel/watcher-win32-arm64@2.3.0':
- optional: true
+ micromatch: 4.0.8
'@parcel/watcher-win32-arm64@2.4.1':
optional: true
- '@parcel/watcher-win32-ia32@2.3.0':
- optional: true
-
'@parcel/watcher-win32-ia32@2.4.1':
optional: true
- '@parcel/watcher-win32-x64@2.3.0':
- optional: true
-
'@parcel/watcher-win32-x64@2.4.1':
optional: true
- '@parcel/watcher@2.3.0':
- dependencies:
- detect-libc: 1.0.3
- is-glob: 4.0.3
- micromatch: 4.0.5
- node-addon-api: 7.0.0
- optionalDependencies:
- '@parcel/watcher-android-arm64': 2.3.0
- '@parcel/watcher-darwin-arm64': 2.3.0
- '@parcel/watcher-darwin-x64': 2.3.0
- '@parcel/watcher-freebsd-x64': 2.3.0
- '@parcel/watcher-linux-arm-glibc': 2.3.0
- '@parcel/watcher-linux-arm64-glibc': 2.3.0
- '@parcel/watcher-linux-arm64-musl': 2.3.0
- '@parcel/watcher-linux-x64-glibc': 2.3.0
- '@parcel/watcher-linux-x64-musl': 2.3.0
- '@parcel/watcher-win32-arm64': 2.3.0
- '@parcel/watcher-win32-ia32': 2.3.0
- '@parcel/watcher-win32-x64': 2.3.0
-
'@parcel/watcher@2.4.1':
dependencies:
detect-libc: 1.0.3
is-glob: 4.0.3
- micromatch: 4.0.7
+ micromatch: 4.0.8
node-addon-api: 7.1.1
optionalDependencies:
'@parcel/watcher-android-arm64': 2.4.1
@@ -8808,6 +7392,8 @@ snapshots:
'@parcel/watcher-win32-arm64': 2.4.1
'@parcel/watcher-win32-ia32': 2.4.1
'@parcel/watcher-win32-x64': 2.4.1
+
+ '@pkgjs/parseargs@0.11.0':
optional: true
'@pkgr/core@0.1.1': {}
@@ -8818,165 +7404,145 @@ snapshots:
dependencies:
graceful-fs: 4.2.10
- '@pnpm/npm-conf@2.2.2':
+ '@pnpm/npm-conf@2.3.1':
dependencies:
'@pnpm/config.env-replace': 1.1.0
'@pnpm/network.ca-file': 1.0.2
config-chain: 1.1.13
- '@polka/url@1.0.0-next.23': {}
-
- '@polka/url@1.0.0-next.25': {}
+ '@polka/url@1.0.0-next.28': {}
- '@release-it/conventional-changelog@8.0.1(release-it@17.6.0(typescript@5.5.4))':
+ '@release-it/conventional-changelog@8.0.2(release-it@17.6.0(typescript@5.6.2))':
dependencies:
concat-stream: 2.0.0
conventional-changelog: 5.1.0
conventional-recommended-bump: 9.0.0
- release-it: 17.6.0(typescript@5.5.4)
- semver: 7.5.4
+ git-semver-tags: 8.0.0
+ release-it: 17.6.0(typescript@5.6.2)
+ semver: 7.6.3
+ transitivePeerDependencies:
+ - conventional-commits-filter
+ - conventional-commits-parser
- '@rollup/plugin-alias@5.0.1(rollup@3.29.4)':
+ '@rollup/plugin-alias@5.1.0(rollup@4.22.4)':
dependencies:
slash: 4.0.0
optionalDependencies:
- rollup: 3.29.4
+ rollup: 4.22.4
- '@rollup/plugin-commonjs@25.0.7(rollup@3.29.4)':
+ '@rollup/plugin-commonjs@25.0.8(rollup@4.22.4)':
dependencies:
- '@rollup/pluginutils': 5.0.5(rollup@3.29.4)
+ '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
commondir: 1.0.1
estree-walker: 2.0.2
glob: 8.1.0
is-reference: 1.2.1
- magic-string: 0.30.5
+ magic-string: 0.30.11
optionalDependencies:
- rollup: 3.29.4
+ rollup: 4.22.4
- '@rollup/plugin-inject@5.0.5(rollup@3.29.4)':
+ '@rollup/plugin-inject@5.0.5(rollup@4.22.4)':
dependencies:
- '@rollup/pluginutils': 5.0.5(rollup@3.29.4)
+ '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
estree-walker: 2.0.2
- magic-string: 0.30.5
+ magic-string: 0.30.11
optionalDependencies:
- rollup: 3.29.4
+ rollup: 4.22.4
- '@rollup/plugin-json@6.0.1(rollup@3.29.4)':
+ '@rollup/plugin-json@6.1.0(rollup@4.22.4)':
dependencies:
- '@rollup/pluginutils': 5.0.5(rollup@3.29.4)
+ '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
optionalDependencies:
- rollup: 3.29.4
+ rollup: 4.22.4
- '@rollup/plugin-node-resolve@15.2.3(rollup@3.29.4)':
+ '@rollup/plugin-node-resolve@15.2.3(rollup@4.22.4)':
dependencies:
- '@rollup/pluginutils': 5.0.5(rollup@3.29.4)
+ '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-builtin-module: 3.2.1
is-module: 1.0.0
resolve: 1.22.8
optionalDependencies:
- rollup: 3.29.4
-
- '@rollup/plugin-replace@5.0.4(rollup@3.29.4)':
- dependencies:
- '@rollup/pluginutils': 5.0.5(rollup@3.29.4)
- magic-string: 0.30.5
- optionalDependencies:
- rollup: 3.29.4
+ rollup: 4.22.4
- '@rollup/plugin-terser@0.4.4(rollup@3.29.4)':
+ '@rollup/plugin-replace@5.0.7(rollup@4.22.4)':
dependencies:
- serialize-javascript: 6.0.1
- smob: 1.4.1
- terser: 5.22.0
+ '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
+ magic-string: 0.30.11
optionalDependencies:
- rollup: 3.29.4
+ rollup: 4.22.4
- '@rollup/plugin-wasm@6.2.2(rollup@3.29.4)':
+ '@rollup/plugin-terser@0.4.4(rollup@4.22.4)':
dependencies:
- '@rollup/pluginutils': 5.0.5(rollup@3.29.4)
+ serialize-javascript: 6.0.2
+ smob: 1.5.0
+ terser: 5.33.0
optionalDependencies:
- rollup: 3.29.4
+ rollup: 4.22.4
'@rollup/pluginutils@4.2.1':
dependencies:
estree-walker: 2.0.2
picomatch: 2.3.1
- '@rollup/pluginutils@5.0.5(rollup@3.29.4)':
- dependencies:
- '@types/estree': 1.0.5
- estree-walker: 2.0.2
- picomatch: 2.3.1
- optionalDependencies:
- rollup: 3.29.4
-
- '@rollup/pluginutils@5.1.0(rollup@3.29.4)':
- dependencies:
- '@types/estree': 1.0.5
- estree-walker: 2.0.2
- picomatch: 2.3.1
- optionalDependencies:
- rollup: 3.29.4
-
- '@rollup/pluginutils@5.1.0(rollup@4.19.0)':
+ '@rollup/pluginutils@5.1.0(rollup@4.22.4)':
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
estree-walker: 2.0.2
picomatch: 2.3.1
optionalDependencies:
- rollup: 4.19.0
+ rollup: 4.22.4
- '@rollup/rollup-android-arm-eabi@4.19.0':
+ '@rollup/rollup-android-arm-eabi@4.22.4':
optional: true
- '@rollup/rollup-android-arm64@4.19.0':
+ '@rollup/rollup-android-arm64@4.22.4':
optional: true
- '@rollup/rollup-darwin-arm64@4.19.0':
+ '@rollup/rollup-darwin-arm64@4.22.4':
optional: true
- '@rollup/rollup-darwin-x64@4.19.0':
+ '@rollup/rollup-darwin-x64@4.22.4':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.19.0':
+ '@rollup/rollup-linux-arm-gnueabihf@4.22.4':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.19.0':
+ '@rollup/rollup-linux-arm-musleabihf@4.22.4':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.19.0':
+ '@rollup/rollup-linux-arm64-gnu@4.22.4':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.19.0':
+ '@rollup/rollup-linux-arm64-musl@4.22.4':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.19.0':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.22.4':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.19.0':
+ '@rollup/rollup-linux-riscv64-gnu@4.22.4':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.19.0':
+ '@rollup/rollup-linux-s390x-gnu@4.22.4':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.19.0':
+ '@rollup/rollup-linux-x64-gnu@4.22.4':
optional: true
- '@rollup/rollup-linux-x64-musl@4.19.0':
+ '@rollup/rollup-linux-x64-musl@4.22.4':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.19.0':
+ '@rollup/rollup-win32-arm64-msvc@4.22.4':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.19.0':
+ '@rollup/rollup-win32-ia32-msvc@4.22.4':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.19.0':
+ '@rollup/rollup-win32-x64-msvc@4.22.4':
optional: true
- '@rushstack/node-core-library@5.5.0(@types/node@20.14.12)':
+ '@rushstack/node-core-library@5.5.0(@types/node@22.5.5)':
dependencies:
ajv: 8.13.0
ajv-draft-04: 1.0.0(ajv@8.13.0)
@@ -8987,84 +7553,72 @@ snapshots:
resolve: 1.22.8
semver: 7.5.4
optionalDependencies:
- '@types/node': 20.14.12
+ '@types/node': 22.5.5
'@rushstack/rig-package@0.5.2':
dependencies:
resolve: 1.22.8
strip-json-comments: 3.1.1
- '@rushstack/terminal@0.13.2(@types/node@20.14.12)':
+ '@rushstack/terminal@0.13.2(@types/node@22.5.5)':
dependencies:
- '@rushstack/node-core-library': 5.5.0(@types/node@20.14.12)
+ '@rushstack/node-core-library': 5.5.0(@types/node@22.5.5)
supports-color: 8.1.1
optionalDependencies:
- '@types/node': 20.14.12
+ '@types/node': 22.5.5
- '@rushstack/ts-command-line@4.22.2(@types/node@20.14.12)':
+ '@rushstack/ts-command-line@4.22.2(@types/node@22.5.5)':
dependencies:
- '@rushstack/terminal': 0.13.2(@types/node@20.14.12)
+ '@rushstack/terminal': 0.13.2(@types/node@22.5.5)
'@types/argparse': 1.0.38
argparse: 1.0.10
string-argv: 0.3.2
transitivePeerDependencies:
- '@types/node'
- '@shikijs/core@1.11.2':
+ '@shikijs/core@1.18.0':
dependencies:
+ '@shikijs/engine-javascript': 1.18.0
+ '@shikijs/engine-oniguruma': 1.18.0
+ '@shikijs/types': 1.18.0
+ '@shikijs/vscode-textmate': 9.2.2
'@types/hast': 3.0.4
+ hast-util-to-html: 9.0.3
+
+ '@shikijs/engine-javascript@1.18.0':
+ dependencies:
+ '@shikijs/types': 1.18.0
+ '@shikijs/vscode-textmate': 9.2.2
+ oniguruma-to-js: 0.4.3
+
+ '@shikijs/engine-oniguruma@1.18.0':
+ dependencies:
+ '@shikijs/types': 1.18.0
+ '@shikijs/vscode-textmate': 9.2.2
+
+ '@shikijs/transformers@1.18.0':
+ dependencies:
+ shiki: 1.18.0
- '@shikijs/transformers@1.11.2':
+ '@shikijs/types@1.18.0':
dependencies:
- shiki: 1.11.2
+ '@shikijs/vscode-textmate': 9.2.2
+ '@types/hast': 3.0.4
+
+ '@shikijs/vscode-textmate@9.2.2': {}
'@sindresorhus/is@5.6.0': {}
'@sindresorhus/merge-streams@2.3.0': {}
- '@stylistic/eslint-plugin-js@2.1.0(eslint@9.7.0)':
+ '@stylistic/eslint-plugin@2.8.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)':
dependencies:
- '@types/eslint': 8.56.10
- acorn: 8.12.1
- eslint: 9.7.0
+ '@typescript-eslint/utils': 8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
+ eslint: 9.11.0(jiti@1.21.6)
eslint-visitor-keys: 4.0.0
espree: 10.1.0
-
- '@stylistic/eslint-plugin-jsx@2.1.0(eslint@9.7.0)':
- dependencies:
- '@stylistic/eslint-plugin-js': 2.1.0(eslint@9.7.0)
- '@types/eslint': 8.56.10
- eslint: 9.7.0
estraverse: 5.3.0
picomatch: 4.0.2
-
- '@stylistic/eslint-plugin-plus@2.1.0(eslint@9.7.0)(typescript@5.5.4)':
- dependencies:
- '@types/eslint': 8.56.10
- '@typescript-eslint/utils': 7.9.0(eslint@9.7.0)(typescript@5.5.4)
- eslint: 9.7.0
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- '@stylistic/eslint-plugin-ts@2.1.0(eslint@9.7.0)(typescript@5.5.4)':
- dependencies:
- '@stylistic/eslint-plugin-js': 2.1.0(eslint@9.7.0)
- '@types/eslint': 8.56.10
- '@typescript-eslint/utils': 7.9.0(eslint@9.7.0)(typescript@5.5.4)
- eslint: 9.7.0
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- '@stylistic/eslint-plugin@2.1.0(eslint@9.7.0)(typescript@5.5.4)':
- dependencies:
- '@stylistic/eslint-plugin-js': 2.1.0(eslint@9.7.0)
- '@stylistic/eslint-plugin-jsx': 2.1.0(eslint@9.7.0)
- '@stylistic/eslint-plugin-plus': 2.1.0(eslint@9.7.0)(typescript@5.5.4)
- '@stylistic/eslint-plugin-ts': 2.1.0(eslint@9.7.0)(typescript@5.5.4)
- '@types/eslint': 8.56.10
- eslint: 9.7.0
transitivePeerDependencies:
- supports-color
- typescript
@@ -9075,110 +7629,94 @@ snapshots:
'@tootallnate/quickjs-emscripten@0.23.0': {}
- '@tresjs/cientos@3.5.1(@tresjs/core@4.2.2(three@0.167.0)(vue@3.4.27(typescript@5.5.4)))(three@0.167.0)(tweakpane@4.0.4)(vue@3.4.27(typescript@5.5.4))':
+ '@tresjs/cientos@3.9.0(@tresjs/core@3.9.0(three@0.167.1)(vue@3.5.8(typescript@5.6.2)))(three@0.167.1)(tweakpane@4.0.4)(vue@3.5.8(typescript@5.6.2))':
dependencies:
- '@tresjs/core': 4.2.2(three@0.167.0)(vue@3.4.27(typescript@5.5.4))
- '@vueuse/core': 10.11.0(vue@3.4.27(typescript@5.5.4))
- camera-controls: 2.7.3(three@0.167.0)
- stats-gl: 1.0.5
+ '@tresjs/core': 3.9.0(three@0.167.1)(vue@3.5.8(typescript@5.6.2))
+ '@vueuse/core': 10.11.1(vue@3.5.8(typescript@5.6.2))
+ camera-controls: 2.9.0(three@0.167.1)
+ stats-gl: 2.2.8
stats.js: 0.17.0
- three: 0.167.0
- three-stdlib: 2.30.5(three@0.167.0)
+ three: 0.167.1
+ three-custom-shader-material: 5.4.0(three@0.167.1)
+ three-stdlib: 2.33.0(three@0.167.1)
tweakpane: 4.0.4
- vue: 3.4.27(typescript@5.5.4)
+ vue: 3.5.8(typescript@5.6.2)
transitivePeerDependencies:
+ - '@react-three/fiber'
- '@vue/composition-api'
+ - react
- '@tresjs/cientos@3.6.0(@tresjs/core@3.5.1(three@0.167.0)(vue@3.4.34(typescript@5.5.4)))(three@0.167.0)(tweakpane@4.0.4)(vue@3.4.34(typescript@5.5.4))':
+ '@tresjs/cientos@3.9.0(@tresjs/core@4.2.10(three@0.167.1)(vue@3.5.8(typescript@5.6.2)))(three@0.167.1)(tweakpane@4.0.4)(vue@3.5.8(typescript@5.6.2))':
dependencies:
- '@tresjs/core': 3.5.1(three@0.167.0)(vue@3.4.34(typescript@5.5.4))
- '@vueuse/core': 10.11.0(vue@3.4.34(typescript@5.5.4))
- camera-controls: 2.7.3(three@0.167.0)
- stats-gl: 1.0.7
+ '@tresjs/core': 4.2.10(three@0.167.1)(vue@3.5.8(typescript@5.6.2))
+ '@vueuse/core': 10.11.1(vue@3.5.8(typescript@5.6.2))
+ camera-controls: 2.9.0(three@0.167.1)
+ stats-gl: 2.2.8
stats.js: 0.17.0
- three: 0.167.0
- three-custom-shader-material: 5.4.0(three@0.167.0)
- three-stdlib: 2.30.5(three@0.167.0)
+ three: 0.167.1
+ three-custom-shader-material: 5.4.0(three@0.167.1)
+ three-stdlib: 2.33.0(three@0.167.1)
tweakpane: 4.0.4
- vue: 3.4.34(typescript@5.5.4)
+ vue: 3.5.8(typescript@5.6.2)
transitivePeerDependencies:
- '@react-three/fiber'
- '@vue/composition-api'
- react
- '@tresjs/cientos@3.9.0(@tresjs/core@4.0.2(three@0.167.0)(vue@3.4.34(typescript@5.5.4)))(three@0.167.0)(tweakpane@4.0.4)(vue@3.4.34(typescript@5.5.4))':
+ '@tresjs/cientos@4.0.2(@tresjs/core@4.2.10(three@0.167.1)(vue@3.5.8(typescript@5.6.2)))(three@0.167.1)(vue@3.5.8(typescript@5.6.2))':
dependencies:
- '@tresjs/core': 4.0.2(three@0.167.0)(vue@3.4.34(typescript@5.5.4))
- '@vueuse/core': 10.11.0(vue@3.4.34(typescript@5.5.4))
- camera-controls: 2.8.3(three@0.167.0)
+ '@tresjs/core': 4.2.10(three@0.167.1)(vue@3.5.8(typescript@5.6.2))
+ '@vueuse/core': 11.1.0(vue@3.5.8(typescript@5.6.2))
+ camera-controls: 2.9.0(three@0.167.1)
stats-gl: 2.2.8
stats.js: 0.17.0
- three: 0.167.0
- three-custom-shader-material: 5.4.0(three@0.167.0)
- three-stdlib: 2.30.5(three@0.167.0)
- tweakpane: 4.0.4
- vue: 3.4.34(typescript@5.5.4)
+ three: 0.167.1
+ three-custom-shader-material: 5.4.0(three@0.167.1)
+ three-stdlib: 2.33.0(three@0.167.1)
+ vue: 3.5.8(typescript@5.6.2)
transitivePeerDependencies:
- '@react-three/fiber'
- '@vue/composition-api'
- react
- '@tresjs/core@3.4.1(three@0.167.0)(vue@3.4.27(typescript@5.5.4))':
- dependencies:
- '@alvarosabu/utils': 3.2.0
- '@vueuse/core': 10.11.0(vue@3.4.27(typescript@5.5.4))
- three: 0.167.0
- vue: 3.4.27(typescript@5.5.4)
- transitivePeerDependencies:
- - '@vue/composition-api'
-
- '@tresjs/core@3.5.1(three@0.167.0)(vue@3.4.34(typescript@5.5.4))':
- dependencies:
- '@alvarosabu/utils': 3.1.1
- '@vueuse/core': 10.11.0(vue@3.4.34(typescript@5.5.4))
- three: 0.167.0
- vue: 3.4.34(typescript@5.5.4)
- transitivePeerDependencies:
- - '@vue/composition-api'
-
- '@tresjs/core@4.0.2(three@0.167.0)(vue@3.4.34(typescript@5.5.4))':
+ '@tresjs/core@3.5.1(three@0.167.1)(vue@3.5.8(typescript@5.6.2))':
dependencies:
'@alvarosabu/utils': 3.2.0
- '@vue/devtools-api': 6.6.3
- '@vueuse/core': 10.11.0(vue@3.4.34(typescript@5.5.4))
- three: 0.167.0
- vue: 3.4.34(typescript@5.5.4)
+ '@vueuse/core': 10.11.1(vue@3.5.8(typescript@5.6.2))
+ three: 0.167.1
+ vue: 3.5.8(typescript@5.6.2)
transitivePeerDependencies:
- '@vue/composition-api'
- '@tresjs/core@4.2.2(three@0.167.0)(vue@3.4.27(typescript@5.5.4))':
+ '@tresjs/core@3.9.0(three@0.167.1)(vue@3.5.8(typescript@5.6.2))':
dependencies:
'@alvarosabu/utils': 3.2.0
- '@vue/devtools-api': 6.6.3
- '@vueuse/core': 10.11.0(vue@3.4.27(typescript@5.5.4))
- three: 0.167.0
- vue: 3.4.27(typescript@5.5.4)
+ '@vue/devtools-api': 6.6.4
+ '@vueuse/core': 10.11.1(vue@3.5.8(typescript@5.6.2))
+ three: 0.167.1
+ vue: 3.5.8(typescript@5.6.2)
transitivePeerDependencies:
- '@vue/composition-api'
- '@tresjs/core@4.2.2(three@0.167.0)(vue@3.4.34(typescript@5.5.4))':
+ '@tresjs/core@4.2.10(three@0.167.1)(vue@3.5.8(typescript@5.6.2))':
dependencies:
'@alvarosabu/utils': 3.2.0
- '@vue/devtools-api': 6.6.3
- '@vueuse/core': 10.11.0(vue@3.4.34(typescript@5.5.4))
- three: 0.167.0
- vue: 3.4.34(typescript@5.5.4)
+ '@vue/devtools-api': 6.6.4
+ '@vueuse/core': 10.11.1(vue@3.5.8(typescript@5.6.2))
+ three: 0.167.1
+ vue: 3.5.8(typescript@5.6.2)
transitivePeerDependencies:
- '@vue/composition-api'
- '@tresjs/eslint-config@1.1.0(@vue/compiler-sfc@3.4.34)(eslint@9.7.0)(typescript@5.5.4)':
+ '@tresjs/eslint-config@1.3.1(@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(@vue/compiler-sfc@3.5.8)(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)':
dependencies:
- '@antfu/eslint-config': 2.18.1(@vue/compiler-sfc@3.4.34)(eslint-plugin-format@0.1.1(eslint@9.7.0))(eslint@9.7.0)(typescript@5.5.4)
- eslint: 9.7.0
- eslint-plugin-format: 0.1.1(eslint@9.7.0)
+ '@antfu/eslint-config': 3.7.1(@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(@vue/compiler-sfc@3.5.8)(eslint-plugin-format@0.1.2(eslint@9.11.0(jiti@1.21.6)))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
+ eslint: 9.11.0(jiti@1.21.6)
+ eslint-plugin-format: 0.1.2(eslint@9.11.0(jiti@1.21.6))
transitivePeerDependencies:
- '@eslint-react/eslint-plugin'
- '@prettier/plugin-xml'
+ - '@typescript-eslint/utils'
- '@unocss/eslint-plugin'
- '@vue/compiler-sfc'
- astro-eslint-parser
@@ -9195,74 +7733,67 @@ snapshots:
- typescript
- vitest
- '@tresjs/leches@0.14.0(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))(vue@3.4.34(typescript@5.5.4))':
+ '@tresjs/leches@0.14.0(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2))':
dependencies:
'@unocss/core': 0.57.7
- '@vueuse/components': 10.6.1(vue@3.4.34(typescript@5.5.4))
- vite-plugin-css-injected-by-js: 3.3.0(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))
- vue: 3.4.34(typescript@5.5.4)
+ '@vueuse/components': 10.11.1(vue@3.5.8(typescript@5.6.2))
+ vite-plugin-css-injected-by-js: 3.5.1(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))
+ vue: 3.5.8(typescript@5.6.2)
transitivePeerDependencies:
- '@vue/composition-api'
- vite
- '@tresjs/nuxt@1.2.2(rollup@3.29.4)(three@0.167.0)(vue@3.4.27(typescript@5.5.4))':
+ '@tresjs/nuxt@1.3.0(magicast@0.3.5)(rollup@4.22.4)(three@0.167.1)(vue@3.5.8(typescript@5.6.2))':
dependencies:
- '@nuxt/kit': 3.8.0(rollup@3.29.4)
- '@tresjs/core': 3.4.1(three@0.167.0)(vue@3.4.27(typescript@5.5.4))
- '@types/three': 0.157.2
- defu: 6.1.2
- mlly: 1.4.2
- pkg-types: 1.0.3
- three: 0.167.0
- typescript: 5.5.4
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.22.4)
+ '@tresjs/core': 3.5.1(three@0.167.1)(vue@3.5.8(typescript@5.6.2))
+ '@types/three': 0.159.0
+ defu: 6.1.4
+ mlly: 1.7.1
+ pkg-types: 1.2.0
+ three: 0.167.1
+ typescript: 5.6.2
transitivePeerDependencies:
- '@vue/composition-api'
+ - magicast
- rollup
- supports-color
- vue
+ - webpack-sources
'@trysound/sax@0.2.0': {}
'@tweenjs/tween.js@18.6.4': {}
- '@tweenjs/tween.js@23.1.2': {}
-
'@tweenjs/tween.js@23.1.3': {}
'@types/argparse@1.0.38': {}
- '@types/draco3d@1.4.10': {}
-
- '@types/eslint@8.56.10':
+ '@types/debug@4.1.12':
dependencies:
- '@types/estree': 1.0.5
- '@types/json-schema': 7.0.14
+ '@types/ms': 0.7.34
- '@types/estree@1.0.1': {}
+ '@types/draco3d@1.4.10': {}
'@types/estree@1.0.5': {}
- '@types/hast@3.0.3':
- dependencies:
- '@types/unist': 3.0.2
+ '@types/estree@1.0.6': {}
'@types/hast@3.0.4':
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
'@types/http-cache-semantics@4.0.4': {}
- '@types/http-proxy@1.17.13':
+ '@types/http-proxy@1.17.15':
dependencies:
- '@types/node': 20.8.9
-
- '@types/json-schema@7.0.14': {}
+ '@types/node': 22.5.5
'@types/linkify-it@3.0.5': {}
'@types/linkify-it@5.0.0': {}
- '@types/markdown-it@13.0.7':
+ '@types/markdown-it@13.0.9':
dependencies:
'@types/linkify-it': 3.0.5
'@types/mdurl': 1.0.5
@@ -9272,28 +7803,19 @@ snapshots:
'@types/linkify-it': 5.0.0
'@types/mdurl': 2.0.0
- '@types/mdast@3.0.14':
+ '@types/mdast@4.0.4':
dependencies:
- '@types/unist': 2.0.9
-
- '@types/mdast@4.0.3':
- dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
'@types/mdurl@1.0.5': {}
'@types/mdurl@2.0.0': {}
- '@types/node@20.14.12':
- dependencies:
- undici-types: 5.26.5
- optional: true
+ '@types/ms@0.7.34': {}
- '@types/node@20.8.9':
+ '@types/node@22.5.5':
dependencies:
- undici-types: 5.26.5
-
- '@types/normalize-package-data@2.4.3': {}
+ undici-types: 6.19.8
'@types/normalize-package-data@2.4.4': {}
@@ -9301,22 +7823,22 @@ snapshots:
'@types/resolve@1.20.2': {}
- '@types/stats.js@0.17.2': {}
+ '@types/semver@7.5.8': {}
'@types/stats.js@0.17.3': {}
'@types/three@0.152.1':
dependencies:
'@tweenjs/tween.js': 18.6.4
- '@types/stats.js': 0.17.2
- '@types/webxr': 0.5.7
+ '@types/stats.js': 0.17.3
+ '@types/webxr': 0.5.20
fflate: 0.6.10
lil-gui: 0.17.0
- '@types/three@0.157.2':
+ '@types/three@0.159.0':
dependencies:
'@types/stats.js': 0.17.3
- '@types/webxr': 0.5.19
+ '@types/webxr': 0.5.20
fflate: 0.6.10
meshoptimizer: 0.18.1
@@ -9324,669 +7846,627 @@ snapshots:
dependencies:
'@tweenjs/tween.js': 23.1.3
'@types/stats.js': 0.17.3
- '@types/webxr': 0.5.19
+ '@types/webxr': 0.5.20
fflate: 0.8.2
meshoptimizer: 0.18.1
- '@types/three@0.164.0':
+ '@types/three@0.164.1':
dependencies:
- '@tweenjs/tween.js': 23.1.2
+ '@tweenjs/tween.js': 23.1.3
'@types/stats.js': 0.17.3
- '@types/webxr': 0.5.16
+ '@types/webxr': 0.5.20
fflate: 0.8.2
meshoptimizer: 0.18.1
- '@types/three@0.167.0':
+ '@types/three@0.167.2':
dependencies:
'@tweenjs/tween.js': 23.1.3
'@types/stats.js': 0.17.3
- '@types/webxr': 0.5.19
+ '@types/webxr': 0.5.20
fflate: 0.8.2
meshoptimizer: 0.18.1
- '@types/unist@2.0.9': {}
-
- '@types/unist@3.0.2': {}
+ '@types/unist@3.0.3': {}
'@types/web-bluetooth@0.0.20': {}
- '@types/webxr@0.5.16': {}
+ '@types/webxr@0.5.20': {}
- '@types/webxr@0.5.19': {}
-
- '@types/webxr@0.5.7': {}
-
- '@typescript-eslint/eslint-plugin@7.9.0(@typescript-eslint/parser@7.9.0(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)(typescript@5.5.4)':
+ '@typescript-eslint/eslint-plugin@8.6.0(@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)':
dependencies:
- '@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 7.9.0(eslint@9.7.0)(typescript@5.5.4)
- '@typescript-eslint/scope-manager': 7.9.0
- '@typescript-eslint/type-utils': 7.9.0(eslint@9.7.0)(typescript@5.5.4)
- '@typescript-eslint/utils': 7.9.0(eslint@9.7.0)(typescript@5.5.4)
- '@typescript-eslint/visitor-keys': 7.9.0
- eslint: 9.7.0
+ '@eslint-community/regexpp': 4.11.1
+ '@typescript-eslint/parser': 8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
+ '@typescript-eslint/scope-manager': 8.6.0
+ '@typescript-eslint/type-utils': 8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
+ '@typescript-eslint/utils': 8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
+ '@typescript-eslint/visitor-keys': 8.6.0
+ eslint: 9.11.0(jiti@1.21.6)
graphemer: 1.4.0
- ignore: 5.3.1
+ ignore: 5.3.2
natural-compare: 1.4.0
- ts-api-utils: 1.3.0(typescript@5.5.4)
+ ts-api-utils: 1.3.0(typescript@5.6.2)
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.9.0(eslint@9.7.0)(typescript@5.5.4)':
+ '@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)':
dependencies:
- '@typescript-eslint/scope-manager': 7.9.0
- '@typescript-eslint/types': 7.9.0
- '@typescript-eslint/typescript-estree': 7.9.0(typescript@5.5.4)
- '@typescript-eslint/visitor-keys': 7.9.0
- debug: 4.3.5
- eslint: 9.7.0
+ '@typescript-eslint/scope-manager': 8.6.0
+ '@typescript-eslint/types': 8.6.0
+ '@typescript-eslint/typescript-estree': 8.6.0(typescript@5.6.2)
+ '@typescript-eslint/visitor-keys': 8.6.0
+ debug: 4.3.7
+ eslint: 9.11.0(jiti@1.21.6)
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@7.9.0':
+ '@typescript-eslint/scope-manager@8.6.0':
dependencies:
- '@typescript-eslint/types': 7.9.0
- '@typescript-eslint/visitor-keys': 7.9.0
+ '@typescript-eslint/types': 8.6.0
+ '@typescript-eslint/visitor-keys': 8.6.0
- '@typescript-eslint/type-utils@7.9.0(eslint@9.7.0)(typescript@5.5.4)':
+ '@typescript-eslint/type-utils@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)':
dependencies:
- '@typescript-eslint/typescript-estree': 7.9.0(typescript@5.5.4)
- '@typescript-eslint/utils': 7.9.0(eslint@9.7.0)(typescript@5.5.4)
- debug: 4.3.5
- eslint: 9.7.0
- ts-api-utils: 1.3.0(typescript@5.5.4)
+ '@typescript-eslint/typescript-estree': 8.6.0(typescript@5.6.2)
+ '@typescript-eslint/utils': 8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
+ debug: 4.3.7
+ ts-api-utils: 1.3.0(typescript@5.6.2)
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
transitivePeerDependencies:
+ - eslint
- supports-color
- '@typescript-eslint/types@7.9.0': {}
+ '@typescript-eslint/types@8.6.0': {}
- '@typescript-eslint/typescript-estree@7.9.0(typescript@5.5.4)':
+ '@typescript-eslint/typescript-estree@8.6.0(typescript@5.6.2)':
dependencies:
- '@typescript-eslint/types': 7.9.0
- '@typescript-eslint/visitor-keys': 7.9.0
- debug: 4.3.5
- globby: 11.1.0
+ '@typescript-eslint/types': 8.6.0
+ '@typescript-eslint/visitor-keys': 8.6.0
+ debug: 4.3.7
+ fast-glob: 3.3.2
is-glob: 4.0.3
- minimatch: 9.0.4
+ minimatch: 9.0.5
semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.5.4)
+ ts-api-utils: 1.3.0(typescript@5.6.2)
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@7.9.0(eslint@9.7.0)(typescript@5.5.4)':
+ '@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
- '@typescript-eslint/scope-manager': 7.9.0
- '@typescript-eslint/types': 7.9.0
- '@typescript-eslint/typescript-estree': 7.9.0(typescript@5.5.4)
- eslint: 9.7.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6))
+ '@typescript-eslint/scope-manager': 8.6.0
+ '@typescript-eslint/types': 8.6.0
+ '@typescript-eslint/typescript-estree': 8.6.0(typescript@5.6.2)
+ eslint: 9.11.0(jiti@1.21.6)
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/visitor-keys@7.9.0':
+ '@typescript-eslint/visitor-keys@8.6.0':
dependencies:
- '@typescript-eslint/types': 7.9.0
+ '@typescript-eslint/types': 8.6.0
eslint-visitor-keys: 3.4.3
'@ungap/structured-clone@1.2.0': {}
- '@unhead/dom@1.7.4':
+ '@unhead/dom@1.11.6':
dependencies:
- '@unhead/schema': 1.7.4
- '@unhead/shared': 1.7.4
+ '@unhead/schema': 1.11.6
+ '@unhead/shared': 1.11.6
- '@unhead/schema@1.7.4':
+ '@unhead/schema@1.11.6':
dependencies:
hookable: 5.5.3
zhead: 2.2.4
- '@unhead/shared@1.7.4':
+ '@unhead/shared@1.11.6':
dependencies:
- '@unhead/schema': 1.7.4
+ '@unhead/schema': 1.11.6
- '@unhead/ssr@1.7.4':
+ '@unhead/ssr@1.11.6':
dependencies:
- '@unhead/schema': 1.7.4
- '@unhead/shared': 1.7.4
+ '@unhead/schema': 1.11.6
+ '@unhead/shared': 1.11.6
- '@unhead/vue@1.7.4(vue@3.4.27(typescript@5.5.4))':
+ '@unhead/vue@1.11.6(vue@3.5.8(typescript@5.6.2))':
dependencies:
- '@unhead/schema': 1.7.4
- '@unhead/shared': 1.7.4
+ '@unhead/schema': 1.11.6
+ '@unhead/shared': 1.11.6
+ defu: 6.1.4
hookable: 5.5.3
- unhead: 1.7.4
- vue: 3.4.27(typescript@5.5.4)
+ unhead: 1.11.6
+ vue: 3.5.8(typescript@5.6.2)
- '@unocss/astro@0.58.0(rollup@4.19.0)(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))':
+ '@unocss/astro@0.58.9(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))':
dependencies:
- '@unocss/core': 0.58.0
- '@unocss/reset': 0.58.0
- '@unocss/vite': 0.58.0(rollup@4.19.0)(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))
+ '@unocss/core': 0.58.9
+ '@unocss/reset': 0.58.9
+ '@unocss/vite': 0.58.9(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))
optionalDependencies:
- vite: 5.3.5(@types/node@20.14.12)(terser@5.31.3)
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
transitivePeerDependencies:
- rollup
- '@unocss/astro@0.61.5(rollup@4.19.0)(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))':
+ '@unocss/astro@0.61.9(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))':
dependencies:
- '@unocss/core': 0.61.5
- '@unocss/reset': 0.61.5
- '@unocss/vite': 0.61.5(rollup@4.19.0)(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))
+ '@unocss/core': 0.61.9
+ '@unocss/reset': 0.61.9
+ '@unocss/vite': 0.61.9(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))
optionalDependencies:
- vite: 5.3.5(@types/node@20.14.12)(terser@5.31.3)
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
transitivePeerDependencies:
- rollup
+ - supports-color
- '@unocss/cli@0.58.0(rollup@4.19.0)':
+ '@unocss/cli@0.58.9(rollup@4.22.4)':
dependencies:
- '@ampproject/remapping': 2.2.1
- '@rollup/pluginutils': 5.1.0(rollup@4.19.0)
- '@unocss/config': 0.58.0
- '@unocss/core': 0.58.0
- '@unocss/preset-uno': 0.58.0
+ '@ampproject/remapping': 2.3.0
+ '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
+ '@unocss/config': 0.58.9
+ '@unocss/core': 0.58.9
+ '@unocss/preset-uno': 0.58.9
cac: 6.7.14
- chokidar: 3.5.3
+ chokidar: 3.6.0
colorette: 2.0.20
consola: 3.2.3
fast-glob: 3.3.2
- magic-string: 0.30.5
+ magic-string: 0.30.11
pathe: 1.1.2
perfect-debounce: 1.0.0
transitivePeerDependencies:
- rollup
- '@unocss/cli@0.61.5(rollup@4.19.0)':
+ '@unocss/cli@0.61.9(rollup@4.22.4)':
dependencies:
'@ampproject/remapping': 2.3.0
- '@rollup/pluginutils': 5.1.0(rollup@4.19.0)
- '@unocss/config': 0.61.5
- '@unocss/core': 0.61.5
- '@unocss/preset-uno': 0.61.5
+ '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
+ '@unocss/config': 0.61.9
+ '@unocss/core': 0.61.9
+ '@unocss/preset-uno': 0.61.9
cac: 6.7.14
chokidar: 3.6.0
colorette: 2.0.20
consola: 3.2.3
fast-glob: 3.3.2
- magic-string: 0.30.10
+ magic-string: 0.30.11
pathe: 1.1.2
perfect-debounce: 1.0.0
transitivePeerDependencies:
- rollup
+ - supports-color
- '@unocss/config@0.58.0':
+ '@unocss/config@0.58.9':
dependencies:
- '@unocss/core': 0.58.0
- unconfig: 0.3.11
+ '@unocss/core': 0.58.9
+ unconfig: 0.3.13
- '@unocss/config@0.61.5':
+ '@unocss/config@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
- unconfig: 0.3.13
+ '@unocss/core': 0.61.9
+ unconfig: 0.5.5
+ transitivePeerDependencies:
+ - supports-color
'@unocss/core@0.57.7': {}
- '@unocss/core@0.58.0': {}
+ '@unocss/core@0.58.9': {}
- '@unocss/core@0.61.5': {}
+ '@unocss/core@0.61.9': {}
- '@unocss/extractor-arbitrary-variants@0.58.0':
+ '@unocss/extractor-arbitrary-variants@0.58.9':
dependencies:
- '@unocss/core': 0.58.0
+ '@unocss/core': 0.58.9
- '@unocss/extractor-arbitrary-variants@0.61.5':
+ '@unocss/extractor-arbitrary-variants@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
+ '@unocss/core': 0.61.9
- '@unocss/inspector@0.58.0':
+ '@unocss/inspector@0.58.9':
dependencies:
- '@unocss/core': 0.58.0
- '@unocss/rule-utils': 0.58.0
+ '@unocss/core': 0.58.9
+ '@unocss/rule-utils': 0.58.9
gzip-size: 6.0.0
- sirv: 2.0.3
+ sirv: 2.0.4
- '@unocss/inspector@0.61.5':
+ '@unocss/inspector@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
- '@unocss/rule-utils': 0.61.5
+ '@unocss/core': 0.61.9
+ '@unocss/rule-utils': 0.61.9
gzip-size: 6.0.0
sirv: 2.0.4
- '@unocss/postcss@0.58.0(postcss@8.4.40)':
+ '@unocss/postcss@0.58.9(postcss@8.4.47)':
dependencies:
- '@unocss/config': 0.58.0
- '@unocss/core': 0.58.0
- '@unocss/rule-utils': 0.58.0
+ '@unocss/config': 0.58.9
+ '@unocss/core': 0.58.9
+ '@unocss/rule-utils': 0.58.9
css-tree: 2.3.1
fast-glob: 3.3.2
- magic-string: 0.30.5
- postcss: 8.4.40
+ magic-string: 0.30.11
+ postcss: 8.4.47
- '@unocss/postcss@0.61.5(postcss@8.4.40)':
+ '@unocss/postcss@0.61.9(postcss@8.4.47)':
dependencies:
- '@unocss/config': 0.61.5
- '@unocss/core': 0.61.5
- '@unocss/rule-utils': 0.61.5
+ '@unocss/config': 0.61.9
+ '@unocss/core': 0.61.9
+ '@unocss/rule-utils': 0.61.9
css-tree: 2.3.1
fast-glob: 3.3.2
- magic-string: 0.30.10
- postcss: 8.4.40
+ magic-string: 0.30.11
+ postcss: 8.4.47
+ transitivePeerDependencies:
+ - supports-color
- '@unocss/preset-attributify@0.58.0':
+ '@unocss/preset-attributify@0.58.9':
dependencies:
- '@unocss/core': 0.58.0
+ '@unocss/core': 0.58.9
- '@unocss/preset-attributify@0.61.5':
+ '@unocss/preset-attributify@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
+ '@unocss/core': 0.61.9
- '@unocss/preset-icons@0.58.0':
+ '@unocss/preset-icons@0.58.9':
dependencies:
- '@iconify/utils': 2.1.12
- '@unocss/core': 0.58.0
- ofetch: 1.3.3
+ '@iconify/utils': 2.1.33
+ '@unocss/core': 0.58.9
+ ofetch: 1.4.0
transitivePeerDependencies:
- supports-color
- '@unocss/preset-icons@0.61.5':
+ '@unocss/preset-icons@0.61.9':
dependencies:
- '@iconify/utils': 2.1.25
- '@unocss/core': 0.61.5
- ofetch: 1.3.4
+ '@iconify/utils': 2.1.33
+ '@unocss/core': 0.61.9
+ ofetch: 1.4.0
transitivePeerDependencies:
- supports-color
- '@unocss/preset-mini@0.58.0':
+ '@unocss/preset-mini@0.58.9':
dependencies:
- '@unocss/core': 0.58.0
- '@unocss/extractor-arbitrary-variants': 0.58.0
- '@unocss/rule-utils': 0.58.0
+ '@unocss/core': 0.58.9
+ '@unocss/extractor-arbitrary-variants': 0.58.9
+ '@unocss/rule-utils': 0.58.9
- '@unocss/preset-mini@0.61.5':
+ '@unocss/preset-mini@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
- '@unocss/extractor-arbitrary-variants': 0.61.5
- '@unocss/rule-utils': 0.61.5
+ '@unocss/core': 0.61.9
+ '@unocss/extractor-arbitrary-variants': 0.61.9
+ '@unocss/rule-utils': 0.61.9
- '@unocss/preset-tagify@0.58.0':
+ '@unocss/preset-tagify@0.58.9':
dependencies:
- '@unocss/core': 0.58.0
+ '@unocss/core': 0.58.9
- '@unocss/preset-tagify@0.61.5':
+ '@unocss/preset-tagify@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
+ '@unocss/core': 0.61.9
- '@unocss/preset-typography@0.58.0':
+ '@unocss/preset-typography@0.58.9':
dependencies:
- '@unocss/core': 0.58.0
- '@unocss/preset-mini': 0.58.0
+ '@unocss/core': 0.58.9
+ '@unocss/preset-mini': 0.58.9
- '@unocss/preset-typography@0.61.5':
+ '@unocss/preset-typography@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
- '@unocss/preset-mini': 0.61.5
+ '@unocss/core': 0.61.9
+ '@unocss/preset-mini': 0.61.9
- '@unocss/preset-uno@0.58.0':
+ '@unocss/preset-uno@0.58.9':
dependencies:
- '@unocss/core': 0.58.0
- '@unocss/preset-mini': 0.58.0
- '@unocss/preset-wind': 0.58.0
- '@unocss/rule-utils': 0.58.0
+ '@unocss/core': 0.58.9
+ '@unocss/preset-mini': 0.58.9
+ '@unocss/preset-wind': 0.58.9
+ '@unocss/rule-utils': 0.58.9
- '@unocss/preset-uno@0.61.5':
+ '@unocss/preset-uno@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
- '@unocss/preset-mini': 0.61.5
- '@unocss/preset-wind': 0.61.5
- '@unocss/rule-utils': 0.61.5
+ '@unocss/core': 0.61.9
+ '@unocss/preset-mini': 0.61.9
+ '@unocss/preset-wind': 0.61.9
+ '@unocss/rule-utils': 0.61.9
- '@unocss/preset-web-fonts@0.58.0':
+ '@unocss/preset-web-fonts@0.58.9':
dependencies:
- '@unocss/core': 0.58.0
- ofetch: 1.3.3
+ '@unocss/core': 0.58.9
+ ofetch: 1.4.0
- '@unocss/preset-web-fonts@0.61.5':
+ '@unocss/preset-web-fonts@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
- ofetch: 1.3.4
+ '@unocss/core': 0.61.9
+ ofetch: 1.4.0
- '@unocss/preset-wind@0.58.0':
+ '@unocss/preset-wind@0.58.9':
dependencies:
- '@unocss/core': 0.58.0
- '@unocss/preset-mini': 0.58.0
- '@unocss/rule-utils': 0.58.0
+ '@unocss/core': 0.58.9
+ '@unocss/preset-mini': 0.58.9
+ '@unocss/rule-utils': 0.58.9
- '@unocss/preset-wind@0.61.5':
+ '@unocss/preset-wind@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
- '@unocss/preset-mini': 0.61.5
- '@unocss/rule-utils': 0.61.5
+ '@unocss/core': 0.61.9
+ '@unocss/preset-mini': 0.61.9
+ '@unocss/rule-utils': 0.61.9
- '@unocss/reset@0.58.0': {}
+ '@unocss/reset@0.58.9': {}
- '@unocss/reset@0.61.5': {}
+ '@unocss/reset@0.61.9': {}
- '@unocss/rule-utils@0.58.0':
+ '@unocss/rule-utils@0.58.9':
dependencies:
- '@unocss/core': 0.58.0
- magic-string: 0.30.5
+ '@unocss/core': 0.58.9
+ magic-string: 0.30.11
- '@unocss/rule-utils@0.61.5':
+ '@unocss/rule-utils@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
- magic-string: 0.30.10
+ '@unocss/core': 0.61.9
+ magic-string: 0.30.11
- '@unocss/scope@0.58.0': {}
+ '@unocss/scope@0.58.9': {}
- '@unocss/scope@0.61.5': {}
+ '@unocss/scope@0.61.9': {}
- '@unocss/transformer-attributify-jsx-babel@0.58.0':
+ '@unocss/transformer-attributify-jsx-babel@0.58.9':
dependencies:
- '@babel/core': 7.23.5
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.5)
- '@babel/preset-typescript': 7.23.3(@babel/core@7.23.5)
- '@unocss/core': 0.58.0
+ '@babel/core': 7.25.2
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
+ '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
+ '@unocss/core': 0.58.9
transitivePeerDependencies:
- supports-color
- '@unocss/transformer-attributify-jsx-babel@0.61.5':
+ '@unocss/transformer-attributify-jsx-babel@0.61.9':
dependencies:
- '@babel/core': 7.24.9
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.9)
- '@babel/preset-typescript': 7.24.7(@babel/core@7.24.9)
- '@unocss/core': 0.61.5
+ '@babel/core': 7.25.2
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
+ '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
+ '@unocss/core': 0.61.9
transitivePeerDependencies:
- supports-color
- '@unocss/transformer-attributify-jsx@0.58.0':
+ '@unocss/transformer-attributify-jsx@0.58.9':
dependencies:
- '@unocss/core': 0.58.0
+ '@unocss/core': 0.58.9
- '@unocss/transformer-attributify-jsx@0.61.5':
+ '@unocss/transformer-attributify-jsx@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
+ '@unocss/core': 0.61.9
- '@unocss/transformer-compile-class@0.58.0':
+ '@unocss/transformer-compile-class@0.58.9':
dependencies:
- '@unocss/core': 0.58.0
+ '@unocss/core': 0.58.9
- '@unocss/transformer-compile-class@0.61.5':
+ '@unocss/transformer-compile-class@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
+ '@unocss/core': 0.61.9
- '@unocss/transformer-directives@0.58.0':
+ '@unocss/transformer-directives@0.58.9':
dependencies:
- '@unocss/core': 0.58.0
- '@unocss/rule-utils': 0.58.0
+ '@unocss/core': 0.58.9
+ '@unocss/rule-utils': 0.58.9
css-tree: 2.3.1
- '@unocss/transformer-directives@0.61.5':
+ '@unocss/transformer-directives@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
- '@unocss/rule-utils': 0.61.5
+ '@unocss/core': 0.61.9
+ '@unocss/rule-utils': 0.61.9
css-tree: 2.3.1
- '@unocss/transformer-variant-group@0.58.0':
+ '@unocss/transformer-variant-group@0.58.9':
dependencies:
- '@unocss/core': 0.58.0
+ '@unocss/core': 0.58.9
- '@unocss/transformer-variant-group@0.61.5':
+ '@unocss/transformer-variant-group@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
+ '@unocss/core': 0.61.9
- '@unocss/vite@0.58.0(rollup@4.19.0)(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))':
+ '@unocss/vite@0.58.9(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))':
dependencies:
- '@ampproject/remapping': 2.2.1
- '@rollup/pluginutils': 5.1.0(rollup@4.19.0)
- '@unocss/config': 0.58.0
- '@unocss/core': 0.58.0
- '@unocss/inspector': 0.58.0
- '@unocss/scope': 0.58.0
- '@unocss/transformer-directives': 0.58.0
- chokidar: 3.5.3
+ '@ampproject/remapping': 2.3.0
+ '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
+ '@unocss/config': 0.58.9
+ '@unocss/core': 0.58.9
+ '@unocss/inspector': 0.58.9
+ '@unocss/scope': 0.58.9
+ '@unocss/transformer-directives': 0.58.9
+ chokidar: 3.6.0
fast-glob: 3.3.2
- magic-string: 0.30.5
- vite: 5.3.5(@types/node@20.14.12)(terser@5.31.3)
+ magic-string: 0.30.11
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
transitivePeerDependencies:
- rollup
- '@unocss/vite@0.61.5(rollup@4.19.0)(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))':
+ '@unocss/vite@0.61.9(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))':
dependencies:
'@ampproject/remapping': 2.3.0
- '@rollup/pluginutils': 5.1.0(rollup@4.19.0)
- '@unocss/config': 0.61.5
- '@unocss/core': 0.61.5
- '@unocss/inspector': 0.61.5
- '@unocss/scope': 0.61.5
- '@unocss/transformer-directives': 0.61.5
+ '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
+ '@unocss/config': 0.61.9
+ '@unocss/core': 0.61.9
+ '@unocss/inspector': 0.61.9
+ '@unocss/scope': 0.61.9
+ '@unocss/transformer-directives': 0.61.9
chokidar: 3.6.0
fast-glob: 3.3.2
- magic-string: 0.30.10
- vite: 5.3.5(@types/node@20.14.12)(terser@5.31.3)
+ magic-string: 0.30.11
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
transitivePeerDependencies:
- rollup
+ - supports-color
- '@vercel/nft@0.24.3(encoding@0.1.13)':
+ '@vercel/nft@0.26.5':
dependencies:
- '@mapbox/node-pre-gyp': 1.0.11(encoding@0.1.13)
+ '@mapbox/node-pre-gyp': 1.0.11
'@rollup/pluginutils': 4.2.1
- acorn: 8.11.3
+ acorn: 8.12.1
+ acorn-import-attributes: 1.9.5(acorn@8.12.1)
async-sema: 3.1.1
bindings: 1.5.0
estree-walker: 2.0.2
glob: 7.2.3
graceful-fs: 4.2.11
- micromatch: 4.0.5
- node-gyp-build: 4.6.1
+ micromatch: 4.0.8
+ node-gyp-build: 4.8.2
resolve-from: 5.0.0
transitivePeerDependencies:
- encoding
- supports-color
- '@vitejs/plugin-vue-jsx@3.0.2(vite@4.5.3(@types/node@20.14.12)(terser@5.31.3))(vue@3.4.27(typescript@5.5.4))':
+ '@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.24.9)
- '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.24.9)
- vite: 4.5.3(@types/node@20.14.12)(terser@5.31.3)
- vue: 3.4.27(typescript@5.5.4)
+ '@babel/core': 7.25.2
+ '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
+ '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.25.2)
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
+ vue: 3.5.8(typescript@5.6.2)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue@4.6.2(vite@4.5.3(@types/node@20.14.12)(terser@5.31.3))(vue@3.4.27(typescript@5.5.4))':
+ '@vitejs/plugin-vue@4.6.2(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2))':
dependencies:
- vite: 4.5.3(@types/node@20.14.12)(terser@5.31.3)
- vue: 3.4.27(typescript@5.5.4)
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
+ vue: 3.5.8(typescript@5.6.2)
- '@vitejs/plugin-vue@4.6.2(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))(vue@3.4.34(typescript@5.5.4))':
+ '@vitejs/plugin-vue@5.1.4(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2))':
dependencies:
- vite: 5.3.5(@types/node@20.14.12)(terser@5.31.3)
- vue: 3.4.34(typescript@5.5.4)
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
+ vue: 3.5.8(typescript@5.6.2)
- '@vitejs/plugin-vue@5.1.0(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))(vue@3.4.34(typescript@5.5.4))':
+ '@vitest/eslint-plugin@1.1.4(@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)':
dependencies:
- vite: 5.3.5(@types/node@20.14.12)(terser@5.31.3)
- vue: 3.4.34(typescript@5.5.4)
+ eslint: 9.11.0(jiti@1.21.6)
+ optionalDependencies:
+ '@typescript-eslint/utils': 8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
+ typescript: 5.6.2
'@volar/language-core@2.2.5':
dependencies:
'@volar/source-map': 2.2.5
- '@volar/language-core@2.3.4':
- dependencies:
- '@volar/source-map': 2.3.4
-
- '@volar/language-core@2.4.0-alpha.18':
+ '@volar/language-core@2.4.5':
dependencies:
- '@volar/source-map': 2.4.0-alpha.18
+ '@volar/source-map': 2.4.5
'@volar/source-map@2.2.5':
dependencies:
muggle-string: 0.4.1
- '@volar/source-map@2.3.4': {}
-
- '@volar/source-map@2.4.0-alpha.18': {}
+ '@volar/source-map@2.4.5': {}
'@volar/typescript@2.2.5':
dependencies:
'@volar/language-core': 2.2.5
path-browserify: 1.0.1
- '@volar/typescript@2.3.4':
- dependencies:
- '@volar/language-core': 2.3.4
- path-browserify: 1.0.1
- vscode-uri: 3.0.8
-
- '@volar/typescript@2.4.0-alpha.18':
+ '@volar/typescript@2.4.5':
dependencies:
- '@volar/language-core': 2.4.0-alpha.18
+ '@volar/language-core': 2.4.5
path-browserify: 1.0.1
vscode-uri: 3.0.8
- '@vue-macros/common@1.8.0(rollup@3.29.4)(vue@3.4.27(typescript@5.5.4))':
+ '@vue-macros/common@1.14.0(rollup@4.22.4)(vue@3.5.8(typescript@5.6.2))':
dependencies:
- '@babel/types': 7.23.0
- '@rollup/pluginutils': 5.0.5(rollup@3.29.4)
- '@vue/compiler-sfc': 3.4.34
- ast-kit: 0.11.2(rollup@3.29.4)
- local-pkg: 0.4.3
- magic-string-ast: 0.3.0
+ '@babel/types': 7.25.6
+ '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
+ '@vue/compiler-sfc': 3.5.8
+ ast-kit: 1.2.0
+ local-pkg: 0.5.0
+ magic-string-ast: 0.6.2
optionalDependencies:
- vue: 3.4.27(typescript@5.5.4)
+ vue: 3.5.8(typescript@5.6.2)
transitivePeerDependencies:
- rollup
- '@vue/babel-helper-vue-transform-on@1.1.5': {}
-
- '@vue/babel-plugin-jsx@1.1.5(@babel/core@7.23.5)':
- dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-module-imports': 7.22.15
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.23.5)
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.5
- '@babel/types': 7.24.5
- '@vue/babel-helper-vue-transform-on': 1.1.5
- camelcase: 6.3.0
- html-tags: 3.3.1
- svg-tags: 1.0.0
- transitivePeerDependencies:
- - supports-color
+ '@vue/babel-helper-vue-transform-on@1.2.5': {}
- '@vue/babel-plugin-jsx@1.1.5(@babel/core@7.24.9)':
+ '@vue/babel-plugin-jsx@1.2.5(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-module-imports': 7.22.15
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.9)
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.5
- '@babel/types': 7.24.5
- '@vue/babel-helper-vue-transform-on': 1.1.5
- camelcase: 6.3.0
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
+ '@babel/template': 7.25.0
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
+ '@vue/babel-helper-vue-transform-on': 1.2.5
+ '@vue/babel-plugin-resolve-type': 1.2.5(@babel/core@7.25.2)
html-tags: 3.3.1
svg-tags: 1.0.0
- transitivePeerDependencies:
- - supports-color
-
- '@vue/compiler-core@3.4.27':
- dependencies:
- '@babel/parser': 7.24.8
- '@vue/shared': 3.4.27
- entities: 4.5.0
- estree-walker: 2.0.2
- source-map-js: 1.2.0
-
- '@vue/compiler-core@3.4.34':
- dependencies:
- '@babel/parser': 7.24.8
- '@vue/shared': 3.4.34
- entities: 4.5.0
- estree-walker: 2.0.2
- source-map-js: 1.2.0
-
- '@vue/compiler-dom@3.4.27':
- dependencies:
- '@vue/compiler-core': 3.4.27
- '@vue/shared': 3.4.27
+ optionalDependencies:
+ '@babel/core': 7.25.2
+ transitivePeerDependencies:
+ - supports-color
- '@vue/compiler-dom@3.4.34':
+ '@vue/babel-plugin-resolve-type@1.2.5(@babel/core@7.25.2)':
dependencies:
- '@vue/compiler-core': 3.4.34
- '@vue/shared': 3.4.34
+ '@babel/code-frame': 7.24.7
+ '@babel/core': 7.25.2
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/parser': 7.25.6
+ '@vue/compiler-sfc': 3.5.8
+ transitivePeerDependencies:
+ - supports-color
- '@vue/compiler-sfc@3.4.27':
+ '@vue/compiler-core@3.5.8':
dependencies:
- '@babel/parser': 7.24.8
- '@vue/compiler-core': 3.4.27
- '@vue/compiler-dom': 3.4.27
- '@vue/compiler-ssr': 3.4.27
- '@vue/shared': 3.4.27
+ '@babel/parser': 7.25.6
+ '@vue/shared': 3.5.8
+ entities: 4.5.0
estree-walker: 2.0.2
- magic-string: 0.30.10
- postcss: 8.4.38
- source-map-js: 1.2.0
+ source-map-js: 1.2.1
- '@vue/compiler-sfc@3.4.34':
+ '@vue/compiler-dom@3.5.8':
dependencies:
- '@babel/parser': 7.24.8
- '@vue/compiler-core': 3.4.34
- '@vue/compiler-dom': 3.4.34
- '@vue/compiler-ssr': 3.4.34
- '@vue/shared': 3.4.34
- estree-walker: 2.0.2
- magic-string: 0.30.10
- postcss: 8.4.40
- source-map-js: 1.2.0
+ '@vue/compiler-core': 3.5.8
+ '@vue/shared': 3.5.8
- '@vue/compiler-ssr@3.4.27':
+ '@vue/compiler-sfc@3.5.8':
dependencies:
- '@vue/compiler-dom': 3.4.27
- '@vue/shared': 3.4.27
+ '@babel/parser': 7.25.6
+ '@vue/compiler-core': 3.5.8
+ '@vue/compiler-dom': 3.5.8
+ '@vue/compiler-ssr': 3.5.8
+ '@vue/shared': 3.5.8
+ estree-walker: 2.0.2
+ magic-string: 0.30.11
+ postcss: 8.4.47
+ source-map-js: 1.2.1
- '@vue/compiler-ssr@3.4.34':
+ '@vue/compiler-ssr@3.5.8':
dependencies:
- '@vue/compiler-dom': 3.4.34
- '@vue/shared': 3.4.34
+ '@vue/compiler-dom': 3.5.8
+ '@vue/shared': 3.5.8
'@vue/compiler-vue2@2.7.16':
dependencies:
de-indent: 1.0.2
he: 1.2.0
- '@vue/devtools-api@6.5.1': {}
-
- '@vue/devtools-api@6.6.1': {}
-
- '@vue/devtools-api@6.6.3': {}
+ '@vue/devtools-api@6.6.4': {}
- '@vue/devtools-api@7.3.7':
+ '@vue/devtools-api@7.4.5':
dependencies:
- '@vue/devtools-kit': 7.3.7
+ '@vue/devtools-kit': 7.4.5
- '@vue/devtools-core@7.3.3(vite@4.5.3(@types/node@20.14.12)(terser@5.31.3))':
+ '@vue/devtools-core@7.4.4(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2))':
dependencies:
- '@vue/devtools-kit': 7.3.3
- '@vue/devtools-shared': 7.3.5
+ '@vue/devtools-kit': 7.4.4
+ '@vue/devtools-shared': 7.4.5
mitt: 3.0.1
nanoid: 3.3.7
pathe: 1.1.2
- vite-hot-client: 0.2.3(vite@4.5.3(@types/node@20.14.12)(terser@5.31.3))
+ vite-hot-client: 0.2.3(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))
+ vue: 3.5.8(typescript@5.6.2)
transitivePeerDependencies:
- vite
- '@vue/devtools-kit@7.3.3':
+ '@vue/devtools-kit@7.4.4':
dependencies:
- '@vue/devtools-shared': 7.3.5
+ '@vue/devtools-shared': 7.4.5
birpc: 0.2.17
hookable: 5.5.3
mitt: 3.0.1
@@ -9994,9 +8474,9 @@ snapshots:
speakingurl: 14.0.1
superjson: 2.2.1
- '@vue/devtools-kit@7.3.7':
+ '@vue/devtools-kit@7.4.5':
dependencies:
- '@vue/devtools-shared': 7.3.7
+ '@vue/devtools-shared': 7.4.5
birpc: 0.2.17
hookable: 5.5.3
mitt: 3.0.1
@@ -10004,170 +8484,113 @@ snapshots:
speakingurl: 14.0.1
superjson: 2.2.1
- '@vue/devtools-shared@7.3.5':
+ '@vue/devtools-shared@7.4.5':
dependencies:
rfdc: 1.4.1
- '@vue/devtools-shared@7.3.7':
- dependencies:
- rfdc: 1.4.1
-
- '@vue/language-core@2.0.19(typescript@5.5.4)':
+ '@vue/language-core@2.0.19(typescript@5.6.2)':
dependencies:
'@volar/language-core': 2.2.5
- '@vue/compiler-dom': 3.4.34
- '@vue/shared': 3.4.34
+ '@vue/compiler-dom': 3.5.8
+ '@vue/shared': 3.5.8
computeds: 0.0.1
minimatch: 9.0.5
path-browserify: 1.0.1
vue-template-compiler: 2.7.16
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
- '@vue/language-core@2.0.29(typescript@5.5.4)':
+ '@vue/language-core@2.1.6(typescript@5.6.2)':
dependencies:
- '@volar/language-core': 2.4.0-alpha.18
- '@vue/compiler-dom': 3.4.34
+ '@volar/language-core': 2.4.5
+ '@vue/compiler-dom': 3.5.8
'@vue/compiler-vue2': 2.7.16
- '@vue/shared': 3.4.34
+ '@vue/shared': 3.5.8
computeds: 0.0.1
minimatch: 9.0.5
muggle-string: 0.4.1
path-browserify: 1.0.1
optionalDependencies:
- typescript: 5.5.4
-
- '@vue/reactivity@3.4.27':
- dependencies:
- '@vue/shared': 3.4.27
-
- '@vue/reactivity@3.4.34':
- dependencies:
- '@vue/shared': 3.4.34
-
- '@vue/runtime-core@3.4.27':
- dependencies:
- '@vue/reactivity': 3.4.27
- '@vue/shared': 3.4.27
+ typescript: 5.6.2
- '@vue/runtime-core@3.4.34':
+ '@vue/reactivity@3.5.8':
dependencies:
- '@vue/reactivity': 3.4.34
- '@vue/shared': 3.4.34
+ '@vue/shared': 3.5.8
- '@vue/runtime-dom@3.4.27':
+ '@vue/runtime-core@3.5.8':
dependencies:
- '@vue/runtime-core': 3.4.27
- '@vue/shared': 3.4.27
- csstype: 3.1.3
+ '@vue/reactivity': 3.5.8
+ '@vue/shared': 3.5.8
- '@vue/runtime-dom@3.4.34':
+ '@vue/runtime-dom@3.5.8':
dependencies:
- '@vue/reactivity': 3.4.34
- '@vue/runtime-core': 3.4.34
- '@vue/shared': 3.4.34
+ '@vue/reactivity': 3.5.8
+ '@vue/runtime-core': 3.5.8
+ '@vue/shared': 3.5.8
csstype: 3.1.3
- '@vue/server-renderer@3.4.27(vue@3.4.27(typescript@5.5.4))':
- dependencies:
- '@vue/compiler-ssr': 3.4.27
- '@vue/shared': 3.4.27
- vue: 3.4.27(typescript@5.5.4)
-
- '@vue/server-renderer@3.4.34(vue@3.4.34(typescript@5.5.4))':
+ '@vue/server-renderer@3.5.8(vue@3.5.8(typescript@5.6.2))':
dependencies:
- '@vue/compiler-ssr': 3.4.34
- '@vue/shared': 3.4.34
- vue: 3.4.34(typescript@5.5.4)
+ '@vue/compiler-ssr': 3.5.8
+ '@vue/shared': 3.5.8
+ vue: 3.5.8(typescript@5.6.2)
- '@vue/shared@3.3.4': {}
+ '@vue/shared@3.5.8': {}
- '@vue/shared@3.4.27': {}
-
- '@vue/shared@3.4.34': {}
-
- '@vueuse/components@10.6.1(vue@3.4.34(typescript@5.5.4))':
- dependencies:
- '@vueuse/core': 10.6.1(vue@3.4.34(typescript@5.5.4))
- '@vueuse/shared': 10.6.1(vue@3.4.34(typescript@5.5.4))
- vue-demi: 0.14.6(vue@3.4.34(typescript@5.5.4))
- transitivePeerDependencies:
- - '@vue/composition-api'
- - vue
-
- '@vueuse/core@10.11.0(vue@3.4.27(typescript@5.5.4))':
+ '@vueuse/components@10.11.1(vue@3.5.8(typescript@5.6.2))':
dependencies:
- '@types/web-bluetooth': 0.0.20
- '@vueuse/metadata': 10.11.0
- '@vueuse/shared': 10.11.0(vue@3.4.27(typescript@5.5.4))
- vue-demi: 0.14.10(vue@3.4.27(typescript@5.5.4))
+ '@vueuse/core': 10.11.1(vue@3.5.8(typescript@5.6.2))
+ '@vueuse/shared': 10.11.1(vue@3.5.8(typescript@5.6.2))
+ vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/core@10.11.0(vue@3.4.34(typescript@5.5.4))':
+ '@vueuse/core@10.11.1(vue@3.5.8(typescript@5.6.2))':
dependencies:
'@types/web-bluetooth': 0.0.20
- '@vueuse/metadata': 10.11.0
- '@vueuse/shared': 10.11.0(vue@3.4.34(typescript@5.5.4))
- vue-demi: 0.14.10(vue@3.4.34(typescript@5.5.4))
+ '@vueuse/metadata': 10.11.1
+ '@vueuse/shared': 10.11.1(vue@3.5.8(typescript@5.6.2))
+ vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/core@10.6.1(vue@3.4.34(typescript@5.5.4))':
+ '@vueuse/core@11.1.0(vue@3.5.8(typescript@5.6.2))':
dependencies:
'@types/web-bluetooth': 0.0.20
- '@vueuse/metadata': 10.6.1
- '@vueuse/shared': 10.6.1(vue@3.4.34(typescript@5.5.4))
- vue-demi: 0.14.6(vue@3.4.34(typescript@5.5.4))
+ '@vueuse/metadata': 11.1.0
+ '@vueuse/shared': 11.1.0(vue@3.5.8(typescript@5.6.2))
+ vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/integrations@10.11.0(focus-trap@7.5.4)(vue@3.4.34(typescript@5.5.4))':
+ '@vueuse/integrations@10.11.1(focus-trap@7.6.0)(vue@3.5.8(typescript@5.6.2))':
dependencies:
- '@vueuse/core': 10.11.0(vue@3.4.34(typescript@5.5.4))
- '@vueuse/shared': 10.11.0(vue@3.4.34(typescript@5.5.4))
- vue-demi: 0.14.10(vue@3.4.34(typescript@5.5.4))
+ '@vueuse/core': 10.11.1(vue@3.5.8(typescript@5.6.2))
+ '@vueuse/shared': 10.11.1(vue@3.5.8(typescript@5.6.2))
+ vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2))
optionalDependencies:
- focus-trap: 7.5.4
+ focus-trap: 7.6.0
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/integrations@10.6.1(focus-trap@7.5.4)(vue@3.4.34(typescript@5.5.4))':
- dependencies:
- '@vueuse/core': 10.6.1(vue@3.4.34(typescript@5.5.4))
- '@vueuse/shared': 10.6.1(vue@3.4.34(typescript@5.5.4))
- vue-demi: 0.14.6(vue@3.4.34(typescript@5.5.4))
- optionalDependencies:
- focus-trap: 7.5.4
- transitivePeerDependencies:
- - '@vue/composition-api'
- - vue
-
- '@vueuse/metadata@10.11.0': {}
+ '@vueuse/metadata@10.11.1': {}
- '@vueuse/metadata@10.6.1': {}
-
- '@vueuse/shared@10.11.0(vue@3.4.27(typescript@5.5.4))':
- dependencies:
- vue-demi: 0.14.10(vue@3.4.27(typescript@5.5.4))
- transitivePeerDependencies:
- - '@vue/composition-api'
- - vue
+ '@vueuse/metadata@11.1.0': {}
- '@vueuse/shared@10.11.0(vue@3.4.34(typescript@5.5.4))':
+ '@vueuse/shared@10.11.1(vue@3.5.8(typescript@5.6.2))':
dependencies:
- vue-demi: 0.14.10(vue@3.4.34(typescript@5.5.4))
+ vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/shared@10.6.1(vue@3.4.34(typescript@5.5.4))':
+ '@vueuse/shared@11.1.0(vue@3.5.8(typescript@5.6.2))':
dependencies:
- vue-demi: 0.14.6(vue@3.4.34(typescript@5.5.4))
+ vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -10179,15 +8602,17 @@ snapshots:
abbrev@1.1.1: {}
- acorn-jsx@5.3.2(acorn@8.12.1):
+ abort-controller@3.0.0:
dependencies:
- acorn: 8.12.1
-
- acorn@8.10.0: {}
+ event-target-shim: 5.0.1
- acorn@8.11.2: {}
+ acorn-import-attributes@1.9.5(acorn@8.12.1):
+ dependencies:
+ acorn: 8.12.1
- acorn@8.11.3: {}
+ acorn-jsx@5.3.2(acorn@8.12.1):
+ dependencies:
+ acorn: 8.12.1
acorn@8.12.1: {}
@@ -10195,13 +8620,13 @@ snapshots:
agent-base@6.0.2:
dependencies:
- debug: 4.3.5
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
agent-base@7.1.1:
dependencies:
- debug: 4.3.5
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -10234,23 +8659,6 @@ snapshots:
require-from-string: 2.0.2
uri-js: 4.4.1
- algoliasearch@4.20.0:
- dependencies:
- '@algolia/cache-browser-local-storage': 4.20.0
- '@algolia/cache-common': 4.20.0
- '@algolia/cache-in-memory': 4.20.0
- '@algolia/client-account': 4.20.0
- '@algolia/client-analytics': 4.20.0
- '@algolia/client-common': 4.20.0
- '@algolia/client-personalization': 4.20.0
- '@algolia/client-search': 4.20.0
- '@algolia/logger-common': 4.20.0
- '@algolia/logger-console': 4.20.0
- '@algolia/requester-browser-xhr': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/requester-node-http': 4.20.0
- '@algolia/transporter': 4.20.0
-
algoliasearch@4.24.0:
dependencies:
'@algolia/cache-browser-local-storage': 4.24.0
@@ -10281,7 +8689,7 @@ snapshots:
ansi-regex@5.0.1: {}
- ansi-regex@6.0.1: {}
+ ansi-regex@6.1.0: {}
ansi-styles@3.2.1:
dependencies:
@@ -10300,26 +8708,25 @@ snapshots:
aproba@2.0.0: {}
- arch@2.2.0: {}
-
- archiver-utils@4.0.1:
+ archiver-utils@5.0.2:
dependencies:
- glob: 8.1.0
+ glob: 10.4.5
graceful-fs: 4.2.11
+ is-stream: 2.0.1
lazystream: 1.0.1
lodash: 4.17.21
normalize-path: 3.0.0
- readable-stream: 3.6.2
+ readable-stream: 4.5.2
- archiver@6.0.1:
+ archiver@7.0.1:
dependencies:
- archiver-utils: 4.0.1
- async: 3.2.4
- buffer-crc32: 0.2.13
- readable-stream: 3.6.2
+ archiver-utils: 5.0.2
+ async: 3.2.6
+ buffer-crc32: 1.0.0
+ readable-stream: 4.5.2
readdir-glob: 1.1.3
- tar-stream: 3.1.6
- zip-stream: 5.0.1
+ tar-stream: 3.1.7
+ zip-stream: 6.0.1
are-docs-informative@0.0.2: {}
@@ -10336,34 +8743,19 @@ snapshots:
array-ify@1.0.0: {}
- array-union@2.1.0: {}
-
- ast-kit@0.11.2(rollup@3.29.4):
- dependencies:
- '@babel/parser': 7.24.8
- '@rollup/pluginutils': 5.0.5(rollup@3.29.4)
- pathe: 1.1.2
- transitivePeerDependencies:
- - rollup
-
- ast-kit@0.9.5(rollup@3.29.4):
+ ast-kit@1.2.0:
dependencies:
- '@babel/parser': 7.24.8
- '@rollup/pluginutils': 5.0.5(rollup@3.29.4)
+ '@babel/parser': 7.25.6
pathe: 1.1.2
- transitivePeerDependencies:
- - rollup
ast-types@0.13.4:
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
- ast-walker-scope@0.5.0(rollup@3.29.4):
+ ast-walker-scope@0.6.2:
dependencies:
- '@babel/parser': 7.24.8
- ast-kit: 0.9.5(rollup@3.29.4)
- transitivePeerDependencies:
- - rollup
+ '@babel/parser': 7.25.6
+ ast-kit: 1.2.0
async-retry@1.3.3:
dependencies:
@@ -10371,29 +8763,32 @@ snapshots:
async-sema@3.1.1: {}
- async@3.2.4: {}
+ async@3.2.6: {}
- autoprefixer@10.4.16(postcss@8.4.40):
+ autoprefixer@10.4.20(postcss@8.4.47):
dependencies:
- browserslist: 4.22.1
- caniuse-lite: 1.0.30001554
+ browserslist: 4.23.3
+ caniuse-lite: 1.0.30001662
fraction.js: 4.3.7
normalize-range: 0.1.2
- picocolors: 1.0.1
- postcss: 8.4.40
+ picocolors: 1.1.0
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- b4a@1.6.4: {}
+ b4a@1.6.6: {}
balanced-match@1.0.2: {}
+ bare-events@2.4.2:
+ optional: true
+
base64-js@1.5.1: {}
basic-ftp@5.0.5: {}
before-after-hook@2.2.3: {}
- binary-extensions@2.2.0: {}
+ binary-extensions@2.3.0: {}
bindings@1.5.0:
dependencies:
@@ -10429,37 +8824,18 @@ snapshots:
dependencies:
balanced-match: 1.0.2
- braces@3.0.2:
- dependencies:
- fill-range: 7.0.1
-
braces@3.0.3:
dependencies:
fill-range: 7.1.1
- optional: true
- browserslist@4.22.1:
+ browserslist@4.23.3:
dependencies:
- caniuse-lite: 1.0.30001554
- electron-to-chromium: 1.4.567
- node-releases: 2.0.13
- update-browserslist-db: 1.0.13(browserslist@4.22.1)
-
- browserslist@4.23.0:
- dependencies:
- caniuse-lite: 1.0.30001620
- electron-to-chromium: 1.4.774
- node-releases: 2.0.14
- update-browserslist-db: 1.0.13(browserslist@4.23.0)
-
- browserslist@4.23.2:
- dependencies:
- caniuse-lite: 1.0.30001643
- electron-to-chromium: 1.5.1
+ caniuse-lite: 1.0.30001662
+ electron-to-chromium: 1.5.27
node-releases: 2.0.18
- update-browserslist-db: 1.1.0(browserslist@4.23.2)
+ update-browserslist-db: 1.1.0(browserslist@4.23.3)
- buffer-crc32@0.2.13: {}
+ buffer-crc32@1.0.0: {}
buffer-from@1.1.2: {}
@@ -10468,13 +8844,23 @@ snapshots:
base64-js: 1.5.1
ieee754: 1.2.1
+ buffer@6.0.3:
+ dependencies:
+ base64-js: 1.5.1
+ ieee754: 1.2.1
+
builtin-modules@3.3.0: {}
bundle-name@4.1.0:
dependencies:
run-applescript: 7.0.0
- c12@1.11.1(magicast@0.3.4):
+ bundle-require@5.0.0(esbuild@0.23.1):
+ dependencies:
+ esbuild: 0.23.1
+ load-tsconfig: 0.2.5
+
+ c12@1.11.2(magicast@0.3.5):
dependencies:
chokidar: 3.6.0
confbox: 0.1.7
@@ -10483,29 +8869,13 @@ snapshots:
giget: 1.2.3
jiti: 1.21.6
mlly: 1.7.1
- ohash: 1.1.3
+ ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.1.3
+ pkg-types: 1.2.0
rc9: 2.1.2
optionalDependencies:
- magicast: 0.3.4
-
- c12@1.5.1:
- dependencies:
- chokidar: 3.5.3
- defu: 6.1.3
- dotenv: 16.3.1
- giget: 1.1.3
- jiti: 1.20.0
- mlly: 1.4.2
- ohash: 1.1.3
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.0.3
- rc9: 2.1.1
- transitivePeerDependencies:
- - supports-color
+ magicast: 0.3.5
cac@6.7.14: {}
@@ -10521,34 +8891,22 @@ snapshots:
normalize-url: 8.0.1
responselike: 3.0.0
- call-me-maybe@1.0.2: {}
-
callsites@3.1.0: {}
- camelcase@6.3.0: {}
-
camelcase@7.0.1: {}
- camera-controls@2.7.3(three@0.167.0):
- dependencies:
- three: 0.167.0
-
- camera-controls@2.8.3(three@0.167.0):
+ camera-controls@2.9.0(three@0.167.1):
dependencies:
- three: 0.167.0
+ three: 0.167.1
caniuse-api@3.0.0:
dependencies:
- browserslist: 4.22.1
- caniuse-lite: 1.0.30001554
+ browserslist: 4.23.3
+ caniuse-lite: 1.0.30001662
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- caniuse-lite@1.0.30001554: {}
-
- caniuse-lite@1.0.30001620: {}
-
- caniuse-lite@1.0.30001643: {}
+ caniuse-lite@1.0.30001662: {}
ccount@2.0.1: {}
@@ -10567,32 +8925,16 @@ snapshots:
character-entities-html4@2.1.0: {}
- character-entities-legacy@1.1.4: {}
-
character-entities-legacy@3.0.0: {}
- character-entities@1.2.4: {}
-
- character-reference-invalid@1.1.4: {}
+ character-entities@2.0.2: {}
chardet@0.7.0: {}
- chokidar@3.5.3:
- dependencies:
- anymatch: 3.1.3
- braces: 3.0.2
- glob-parent: 5.1.2
- is-binary-path: 2.1.0
- is-glob: 4.0.3
- normalize-path: 3.0.0
- readdirp: 3.6.0
- optionalDependencies:
- fsevents: 2.3.3
-
chokidar@3.6.0:
dependencies:
anymatch: 3.1.3
- braces: 3.0.2
+ braces: 3.0.3
glob-parent: 5.1.2
is-binary-path: 2.1.0
is-glob: 4.0.3
@@ -10603,16 +8945,10 @@ snapshots:
chownr@2.0.0: {}
- ci-info@3.8.0: {}
-
ci-info@3.9.0: {}
ci-info@4.0.0: {}
- citty@0.1.4:
- dependencies:
- consola: 3.2.3
-
citty@0.1.6:
dependencies:
consola: 3.2.3
@@ -10637,11 +8973,11 @@ snapshots:
cli-width@4.1.0: {}
- clipboardy@3.0.0:
+ clipboardy@4.0.0:
dependencies:
- arch: 2.2.0
- execa: 5.1.1
- is-wsl: 2.2.0
+ execa: 8.0.1
+ is-wsl: 3.1.0
+ is64bit: 2.0.0
cliui@8.0.1:
dependencies:
@@ -10692,12 +9028,13 @@ snapshots:
compatx@0.1.8: {}
- compress-commons@5.0.1:
+ compress-commons@6.0.2:
dependencies:
crc-32: 1.2.2
- crc32-stream: 5.0.0
+ crc32-stream: 6.0.0
+ is-stream: 2.0.1
normalize-path: 3.0.0
- readable-stream: 3.6.2
+ readable-stream: 4.5.2
computeds@0.0.1: {}
@@ -10749,8 +9086,8 @@ snapshots:
conventional-commits-parser: 5.0.0
git-raw-commits: 4.0.0
git-semver-tags: 7.0.1
- hosted-git-info: 7.0.1
- normalize-package-data: 6.0.0
+ hosted-git-info: 7.0.2
+ normalize-package-data: 6.0.2
read-pkg: 8.1.0
read-pkg-up: 10.1.0
@@ -10774,7 +9111,7 @@ snapshots:
handlebars: 4.7.8
json-stringify-safe: 5.0.1
meow: 12.1.1
- semver: 7.5.4
+ semver: 7.6.3
split2: 4.2.0
conventional-changelog@5.1.0:
@@ -10811,36 +9148,38 @@ snapshots:
convert-source-map@2.0.0: {}
- cookie-es@1.0.0: {}
+ cookie-es@1.2.2: {}
copy-anything@3.0.5:
dependencies:
is-what: 4.1.16
- core-js-compat@3.37.1:
+ core-js-compat@3.38.1:
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.23.3
core-util-is@1.0.3: {}
- cosmiconfig@9.0.0(typescript@5.5.4):
+ cosmiconfig@9.0.0(typescript@5.6.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.5.4
+ typescript: 5.6.2
crc-32@1.2.2: {}
- crc32-stream@5.0.0:
+ crc32-stream@6.0.0:
dependencies:
crc-32: 1.2.2
- readable-stream: 3.6.2
+ readable-stream: 4.5.2
create-require@1.1.1: {}
+ croner@8.1.1: {}
+
cronstrue@2.50.0: {}
cross-spawn@7.0.3:
@@ -10849,13 +9188,15 @@ snapshots:
shebang-command: 2.0.0
which: 2.0.2
+ crossws@0.2.4: {}
+
crypto-random-string@4.0.0:
dependencies:
type-fest: 1.4.0
- css-declaration-sorter@6.4.1(postcss@8.4.40):
+ css-declaration-sorter@7.2.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.47
css-select@5.1.0:
dependencies:
@@ -10868,59 +9209,60 @@ snapshots:
css-tree@2.2.1:
dependencies:
mdn-data: 2.0.28
- source-map-js: 1.2.0
+ source-map-js: 1.2.1
css-tree@2.3.1:
dependencies:
mdn-data: 2.0.30
- source-map-js: 1.0.2
+ source-map-js: 1.2.1
css-what@6.1.0: {}
cssesc@3.0.0: {}
- cssnano-preset-default@6.0.1(postcss@8.4.40):
- dependencies:
- css-declaration-sorter: 6.4.1(postcss@8.4.40)
- cssnano-utils: 4.0.0(postcss@8.4.40)
- postcss: 8.4.40
- postcss-calc: 9.0.1(postcss@8.4.40)
- postcss-colormin: 6.0.0(postcss@8.4.40)
- postcss-convert-values: 6.0.0(postcss@8.4.40)
- postcss-discard-comments: 6.0.0(postcss@8.4.40)
- postcss-discard-duplicates: 6.0.0(postcss@8.4.40)
- postcss-discard-empty: 6.0.0(postcss@8.4.40)
- postcss-discard-overridden: 6.0.0(postcss@8.4.40)
- postcss-merge-longhand: 6.0.0(postcss@8.4.40)
- postcss-merge-rules: 6.0.1(postcss@8.4.40)
- postcss-minify-font-values: 6.0.0(postcss@8.4.40)
- postcss-minify-gradients: 6.0.0(postcss@8.4.40)
- postcss-minify-params: 6.0.0(postcss@8.4.40)
- postcss-minify-selectors: 6.0.0(postcss@8.4.40)
- postcss-normalize-charset: 6.0.0(postcss@8.4.40)
- postcss-normalize-display-values: 6.0.0(postcss@8.4.40)
- postcss-normalize-positions: 6.0.0(postcss@8.4.40)
- postcss-normalize-repeat-style: 6.0.0(postcss@8.4.40)
- postcss-normalize-string: 6.0.0(postcss@8.4.40)
- postcss-normalize-timing-functions: 6.0.0(postcss@8.4.40)
- postcss-normalize-unicode: 6.0.0(postcss@8.4.40)
- postcss-normalize-url: 6.0.0(postcss@8.4.40)
- postcss-normalize-whitespace: 6.0.0(postcss@8.4.40)
- postcss-ordered-values: 6.0.0(postcss@8.4.40)
- postcss-reduce-initial: 6.0.0(postcss@8.4.40)
- postcss-reduce-transforms: 6.0.0(postcss@8.4.40)
- postcss-svgo: 6.0.0(postcss@8.4.40)
- postcss-unique-selectors: 6.0.0(postcss@8.4.40)
-
- cssnano-utils@4.0.0(postcss@8.4.40):
- dependencies:
- postcss: 8.4.40
-
- cssnano@6.0.1(postcss@8.4.40):
- dependencies:
- cssnano-preset-default: 6.0.1(postcss@8.4.40)
- lilconfig: 2.1.0
- postcss: 8.4.40
+ cssnano-preset-default@7.0.6(postcss@8.4.47):
+ dependencies:
+ browserslist: 4.23.3
+ css-declaration-sorter: 7.2.0(postcss@8.4.47)
+ cssnano-utils: 5.0.0(postcss@8.4.47)
+ postcss: 8.4.47
+ postcss-calc: 10.0.2(postcss@8.4.47)
+ postcss-colormin: 7.0.2(postcss@8.4.47)
+ postcss-convert-values: 7.0.4(postcss@8.4.47)
+ postcss-discard-comments: 7.0.3(postcss@8.4.47)
+ postcss-discard-duplicates: 7.0.1(postcss@8.4.47)
+ postcss-discard-empty: 7.0.0(postcss@8.4.47)
+ postcss-discard-overridden: 7.0.0(postcss@8.4.47)
+ postcss-merge-longhand: 7.0.4(postcss@8.4.47)
+ postcss-merge-rules: 7.0.4(postcss@8.4.47)
+ postcss-minify-font-values: 7.0.0(postcss@8.4.47)
+ postcss-minify-gradients: 7.0.0(postcss@8.4.47)
+ postcss-minify-params: 7.0.2(postcss@8.4.47)
+ postcss-minify-selectors: 7.0.4(postcss@8.4.47)
+ postcss-normalize-charset: 7.0.0(postcss@8.4.47)
+ postcss-normalize-display-values: 7.0.0(postcss@8.4.47)
+ postcss-normalize-positions: 7.0.0(postcss@8.4.47)
+ postcss-normalize-repeat-style: 7.0.0(postcss@8.4.47)
+ postcss-normalize-string: 7.0.0(postcss@8.4.47)
+ postcss-normalize-timing-functions: 7.0.0(postcss@8.4.47)
+ postcss-normalize-unicode: 7.0.2(postcss@8.4.47)
+ postcss-normalize-url: 7.0.0(postcss@8.4.47)
+ postcss-normalize-whitespace: 7.0.0(postcss@8.4.47)
+ postcss-ordered-values: 7.0.1(postcss@8.4.47)
+ postcss-reduce-initial: 7.0.2(postcss@8.4.47)
+ postcss-reduce-transforms: 7.0.0(postcss@8.4.47)
+ postcss-svgo: 7.0.1(postcss@8.4.47)
+ postcss-unique-selectors: 7.0.3(postcss@8.4.47)
+
+ cssnano-utils@5.0.0(postcss@8.4.47):
+ dependencies:
+ postcss: 8.4.47
+
+ cssnano@7.0.6(postcss@8.4.47):
+ dependencies:
+ cssnano-preset-default: 7.0.6(postcss@8.4.47)
+ lilconfig: 3.1.2
+ postcss: 8.4.47
csso@5.0.5:
dependencies:
@@ -10928,14 +9270,14 @@ snapshots:
csstype@3.1.3: {}
- cuint@0.2.2: {}
-
dargs@8.1.0: {}
data-uri-to-buffer@4.0.1: {}
data-uri-to-buffer@6.0.2: {}
+ db0@0.1.4: {}
+
de-indent@1.0.2: {}
debug@2.6.9:
@@ -10946,13 +9288,13 @@ snapshots:
dependencies:
ms: 2.1.3
- debug@4.3.4:
+ debug@4.3.7:
dependencies:
- ms: 2.1.2
+ ms: 2.1.3
- debug@4.3.5:
+ decode-named-character-reference@1.0.2:
dependencies:
- ms: 2.1.2
+ character-entities: 2.0.2
decompress-response@6.0.0:
dependencies:
@@ -10981,10 +9323,6 @@ snapshots:
define-lazy-prop@3.0.0: {}
- defu@6.1.2: {}
-
- defu@6.1.3: {}
-
defu@6.1.4: {}
degenerator@5.0.1:
@@ -11003,29 +9341,21 @@ snapshots:
dequal@2.0.3: {}
- destr@2.0.1: {}
-
- destr@2.0.2: {}
-
destr@2.0.3: {}
destroy@1.2.0: {}
detect-libc@1.0.3: {}
- detect-libc@2.0.2: {}
+ detect-libc@2.0.3: {}
- devalue@4.3.2: {}
+ devalue@5.0.0: {}
devlop@1.1.0:
dependencies:
dequal: 2.0.3
- diff@5.2.0: {}
-
- dir-glob@3.0.1:
- dependencies:
- path-type: 4.0.0
+ diff@7.0.0: {}
doctrine@3.0.0:
dependencies:
@@ -11061,8 +9391,6 @@ snapshots:
dependencies:
type-fest: 3.13.1
- dotenv@16.3.1: {}
-
dotenv@16.4.5: {}
draco3d@1.5.7: {}
@@ -11073,13 +9401,9 @@ snapshots:
ee-first@1.1.1: {}
- electron-to-chromium@1.4.567: {}
+ electron-to-chromium@1.5.27: {}
- electron-to-chromium@1.4.774: {}
-
- electron-to-chromium@1.5.1: {}
-
- emoji-regex@10.3.0: {}
+ emoji-regex@10.4.0: {}
emoji-regex@8.0.0: {}
@@ -11087,18 +9411,9 @@ snapshots:
encodeurl@1.0.2: {}
- encoding@0.1.13:
- dependencies:
- iconv-lite: 0.6.3
- optional: true
-
- enhanced-resolve@4.5.0:
- dependencies:
- graceful-fs: 4.2.11
- memory-fs: 0.5.0
- tapable: 1.1.3
+ encodeurl@2.0.0: {}
- enhanced-resolve@5.15.0:
+ enhanced-resolve@5.17.1:
dependencies:
graceful-fs: 4.2.11
tapable: 2.2.1
@@ -11107,65 +9422,41 @@ snapshots:
env-paths@2.2.1: {}
- errno@0.1.8:
- dependencies:
- prr: 1.0.1
-
error-ex@1.3.2:
dependencies:
is-arrayish: 0.2.1
- error-stack-parser-es@0.1.4: {}
+ error-stack-parser-es@0.1.5: {}
- esbuild@0.18.20:
- optionalDependencies:
- '@esbuild/android-arm': 0.18.20
- '@esbuild/android-arm64': 0.18.20
- '@esbuild/android-x64': 0.18.20
- '@esbuild/darwin-arm64': 0.18.20
- '@esbuild/darwin-x64': 0.18.20
- '@esbuild/freebsd-arm64': 0.18.20
- '@esbuild/freebsd-x64': 0.18.20
- '@esbuild/linux-arm': 0.18.20
- '@esbuild/linux-arm64': 0.18.20
- '@esbuild/linux-ia32': 0.18.20
- '@esbuild/linux-loong64': 0.18.20
- '@esbuild/linux-mips64el': 0.18.20
- '@esbuild/linux-ppc64': 0.18.20
- '@esbuild/linux-riscv64': 0.18.20
- '@esbuild/linux-s390x': 0.18.20
- '@esbuild/linux-x64': 0.18.20
- '@esbuild/netbsd-x64': 0.18.20
- '@esbuild/openbsd-x64': 0.18.20
- '@esbuild/sunos-x64': 0.18.20
- '@esbuild/win32-arm64': 0.18.20
- '@esbuild/win32-ia32': 0.18.20
- '@esbuild/win32-x64': 0.18.20
-
- esbuild@0.19.5:
+ errx@0.1.0: {}
+
+ es-module-lexer@1.5.4: {}
+
+ esbuild@0.20.2:
optionalDependencies:
- '@esbuild/android-arm': 0.19.5
- '@esbuild/android-arm64': 0.19.5
- '@esbuild/android-x64': 0.19.5
- '@esbuild/darwin-arm64': 0.19.5
- '@esbuild/darwin-x64': 0.19.5
- '@esbuild/freebsd-arm64': 0.19.5
- '@esbuild/freebsd-x64': 0.19.5
- '@esbuild/linux-arm': 0.19.5
- '@esbuild/linux-arm64': 0.19.5
- '@esbuild/linux-ia32': 0.19.5
- '@esbuild/linux-loong64': 0.19.5
- '@esbuild/linux-mips64el': 0.19.5
- '@esbuild/linux-ppc64': 0.19.5
- '@esbuild/linux-riscv64': 0.19.5
- '@esbuild/linux-s390x': 0.19.5
- '@esbuild/linux-x64': 0.19.5
- '@esbuild/netbsd-x64': 0.19.5
- '@esbuild/openbsd-x64': 0.19.5
- '@esbuild/sunos-x64': 0.19.5
- '@esbuild/win32-arm64': 0.19.5
- '@esbuild/win32-ia32': 0.19.5
- '@esbuild/win32-x64': 0.19.5
+ '@esbuild/aix-ppc64': 0.20.2
+ '@esbuild/android-arm': 0.20.2
+ '@esbuild/android-arm64': 0.20.2
+ '@esbuild/android-x64': 0.20.2
+ '@esbuild/darwin-arm64': 0.20.2
+ '@esbuild/darwin-x64': 0.20.2
+ '@esbuild/freebsd-arm64': 0.20.2
+ '@esbuild/freebsd-x64': 0.20.2
+ '@esbuild/linux-arm': 0.20.2
+ '@esbuild/linux-arm64': 0.20.2
+ '@esbuild/linux-ia32': 0.20.2
+ '@esbuild/linux-loong64': 0.20.2
+ '@esbuild/linux-mips64el': 0.20.2
+ '@esbuild/linux-ppc64': 0.20.2
+ '@esbuild/linux-riscv64': 0.20.2
+ '@esbuild/linux-s390x': 0.20.2
+ '@esbuild/linux-x64': 0.20.2
+ '@esbuild/netbsd-x64': 0.20.2
+ '@esbuild/openbsd-x64': 0.20.2
+ '@esbuild/sunos-x64': 0.20.2
+ '@esbuild/win32-arm64': 0.20.2
+ '@esbuild/win32-ia32': 0.20.2
+ '@esbuild/win32-x64': 0.20.2
esbuild@0.21.5:
optionalDependencies:
@@ -11193,9 +9484,34 @@ snapshots:
'@esbuild/win32-ia32': 0.21.5
'@esbuild/win32-x64': 0.21.5
- escalade@3.1.1: {}
-
- escalade@3.1.2: {}
+ esbuild@0.23.1:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.23.1
+ '@esbuild/android-arm': 0.23.1
+ '@esbuild/android-arm64': 0.23.1
+ '@esbuild/android-x64': 0.23.1
+ '@esbuild/darwin-arm64': 0.23.1
+ '@esbuild/darwin-x64': 0.23.1
+ '@esbuild/freebsd-arm64': 0.23.1
+ '@esbuild/freebsd-x64': 0.23.1
+ '@esbuild/linux-arm': 0.23.1
+ '@esbuild/linux-arm64': 0.23.1
+ '@esbuild/linux-ia32': 0.23.1
+ '@esbuild/linux-loong64': 0.23.1
+ '@esbuild/linux-mips64el': 0.23.1
+ '@esbuild/linux-ppc64': 0.23.1
+ '@esbuild/linux-riscv64': 0.23.1
+ '@esbuild/linux-s390x': 0.23.1
+ '@esbuild/linux-x64': 0.23.1
+ '@esbuild/netbsd-x64': 0.23.1
+ '@esbuild/openbsd-arm64': 0.23.1
+ '@esbuild/openbsd-x64': 0.23.1
+ '@esbuild/sunos-x64': 0.23.1
+ '@esbuild/win32-arm64': 0.23.1
+ '@esbuild/win32-ia32': 0.23.1
+ '@esbuild/win32-x64': 0.23.1
+
+ escalade@3.2.0: {}
escape-goat@4.0.0: {}
@@ -11215,179 +9531,171 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-compat-utils@0.5.0(eslint@9.7.0):
+ eslint-compat-utils@0.5.1(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- eslint: 9.7.0
+ eslint: 9.11.0(jiti@1.21.6)
semver: 7.6.3
- eslint-config-flat-gitignore@0.1.5:
+ eslint-config-flat-gitignore@0.3.0(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- find-up: 7.0.0
- parse-gitignore: 2.0.0
+ '@eslint/compat': 1.1.1
+ eslint: 9.11.0(jiti@1.21.6)
+ find-up-simple: 1.0.0
- eslint-flat-config-utils@0.2.5:
+ eslint-flat-config-utils@0.4.0:
dependencies:
- '@types/eslint': 8.56.10
pathe: 1.1.2
- eslint-formatting-reporter@0.0.0(eslint@9.7.0):
+ eslint-formatting-reporter@0.0.0(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- eslint: 9.7.0
+ eslint: 9.11.0(jiti@1.21.6)
prettier-linter-helpers: 1.0.0
eslint-import-resolver-node@0.3.9:
dependencies:
debug: 3.2.7
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- eslint-merge-processors@0.1.0(eslint@9.7.0):
+ eslint-merge-processors@0.1.0(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- eslint: 9.7.0
+ eslint: 9.11.0(jiti@1.21.6)
eslint-parser-plain@0.1.0: {}
- eslint-plugin-antfu@2.2.0(eslint@9.7.0):
- dependencies:
- '@antfu/utils': 0.7.8
- eslint: 9.7.0
-
- eslint-plugin-command@0.2.3(eslint@9.7.0):
+ eslint-plugin-antfu@2.7.0(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- '@es-joy/jsdoccomment': 0.43.0
- eslint: 9.7.0
+ '@antfu/utils': 0.7.10
+ eslint: 9.11.0(jiti@1.21.6)
- eslint-plugin-es-x@7.6.0(eslint@9.7.0):
+ eslint-plugin-command@0.2.5(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
- '@eslint-community/regexpp': 4.11.0
- eslint: 9.7.0
- eslint-compat-utils: 0.5.0(eslint@9.7.0)
+ '@es-joy/jsdoccomment': 0.48.0
+ eslint: 9.11.0(jiti@1.21.6)
- eslint-plugin-eslint-comments@3.2.0(eslint@9.7.0):
+ eslint-plugin-es-x@7.8.0(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- escape-string-regexp: 1.0.5
- eslint: 9.7.0
- ignore: 5.3.1
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6))
+ '@eslint-community/regexpp': 4.11.1
+ eslint: 9.11.0(jiti@1.21.6)
+ eslint-compat-utils: 0.5.1(eslint@9.11.0(jiti@1.21.6))
- eslint-plugin-format@0.1.1(eslint@9.7.0):
+ eslint-plugin-format@0.1.2(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- '@dprint/formatter': 0.2.1
- '@dprint/markdown': 0.16.4
- '@dprint/toml': 0.6.1
- eslint: 9.7.0
- eslint-formatting-reporter: 0.0.0(eslint@9.7.0)
+ '@dprint/formatter': 0.3.0
+ '@dprint/markdown': 0.17.8
+ '@dprint/toml': 0.6.2
+ eslint: 9.11.0(jiti@1.21.6)
+ eslint-formatting-reporter: 0.0.0(eslint@9.11.0(jiti@1.21.6))
eslint-parser-plain: 0.1.0
- prettier: 3.2.5
- synckit: 0.9.0
+ prettier: 3.3.3
+ synckit: 0.9.1
- eslint-plugin-import-x@0.5.0(eslint@9.7.0)(typescript@5.5.4):
+ eslint-plugin-import-x@4.3.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2):
dependencies:
- '@typescript-eslint/utils': 7.9.0(eslint@9.7.0)(typescript@5.5.4)
- debug: 4.3.5
+ '@typescript-eslint/utils': 8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
+ debug: 4.3.7
doctrine: 3.0.0
- eslint: 9.7.0
+ eslint: 9.11.0(jiti@1.21.6)
eslint-import-resolver-node: 0.3.9
- get-tsconfig: 4.7.5
+ get-tsconfig: 4.8.1
is-glob: 4.0.3
- minimatch: 9.0.4
- semver: 7.6.2
+ minimatch: 9.0.5
+ semver: 7.6.3
+ stable-hash: 0.0.4
+ tslib: 2.7.0
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-jsdoc@48.2.5(eslint@9.7.0):
+ eslint-plugin-jsdoc@50.2.4(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- '@es-joy/jsdoccomment': 0.43.0
+ '@es-joy/jsdoccomment': 0.48.0
are-docs-informative: 0.0.2
comment-parser: 1.4.1
- debug: 4.3.5
+ debug: 4.3.7
escape-string-regexp: 4.0.0
- eslint: 9.7.0
- esquery: 1.5.0
- is-builtin-module: 3.2.1
- semver: 7.6.2
+ eslint: 9.11.0(jiti@1.21.6)
+ espree: 10.1.0
+ esquery: 1.6.0
+ parse-imports: 2.2.1
+ semver: 7.6.3
spdx-expression-parse: 4.0.0
+ synckit: 0.9.1
transitivePeerDependencies:
- supports-color
- eslint-plugin-jsonc@2.15.1(eslint@9.7.0):
+ eslint-plugin-jsonc@2.16.0(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
- eslint: 9.7.0
- eslint-compat-utils: 0.5.0(eslint@9.7.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6))
+ eslint: 9.11.0(jiti@1.21.6)
+ eslint-compat-utils: 0.5.1(eslint@9.11.0(jiti@1.21.6))
espree: 9.6.1
graphemer: 1.4.0
jsonc-eslint-parser: 2.4.0
natural-compare: 1.4.0
synckit: 0.6.2
- eslint-plugin-markdown@5.0.0(eslint@9.7.0):
- dependencies:
- eslint: 9.7.0
- mdast-util-from-markdown: 0.8.5
- transitivePeerDependencies:
- - supports-color
-
- eslint-plugin-n@17.7.0(eslint@9.7.0):
+ eslint-plugin-n@17.10.3(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
- enhanced-resolve: 5.15.0
- eslint: 9.7.0
- eslint-plugin-es-x: 7.6.0(eslint@9.7.0)
- get-tsconfig: 4.7.2
- globals: 15.2.0
- ignore: 5.3.1
- minimatch: 9.0.4
- semver: 7.5.4
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6))
+ enhanced-resolve: 5.17.1
+ eslint: 9.11.0(jiti@1.21.6)
+ eslint-plugin-es-x: 7.8.0(eslint@9.11.0(jiti@1.21.6))
+ get-tsconfig: 4.8.1
+ globals: 15.9.0
+ ignore: 5.3.2
+ minimatch: 9.0.5
+ semver: 7.6.3
- eslint-plugin-no-only-tests@3.1.0: {}
+ eslint-plugin-no-only-tests@3.3.0: {}
- eslint-plugin-perfectionist@2.10.0(eslint@9.7.0)(typescript@5.5.4)(vue-eslint-parser@9.4.2(eslint@9.7.0)):
+ eslint-plugin-perfectionist@3.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)(vue-eslint-parser@9.4.3(eslint@9.11.0(jiti@1.21.6))):
dependencies:
- '@typescript-eslint/utils': 7.9.0(eslint@9.7.0)(typescript@5.5.4)
- eslint: 9.7.0
- minimatch: 9.0.4
+ '@typescript-eslint/types': 8.6.0
+ '@typescript-eslint/utils': 8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
+ eslint: 9.11.0(jiti@1.21.6)
+ minimatch: 9.0.5
natural-compare-lite: 1.4.0
optionalDependencies:
- vue-eslint-parser: 9.4.2(eslint@9.7.0)
+ vue-eslint-parser: 9.4.3(eslint@9.11.0(jiti@1.21.6))
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-regexp@2.5.0(eslint@9.7.0):
+ eslint-plugin-regexp@2.6.0(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
- '@eslint-community/regexpp': 4.10.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6))
+ '@eslint-community/regexpp': 4.11.1
comment-parser: 1.4.1
- eslint: 9.7.0
- jsdoc-type-pratt-parser: 4.0.0
+ eslint: 9.11.0(jiti@1.21.6)
+ 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.0(eslint@9.7.0):
+ eslint-plugin-toml@0.11.1(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- debug: 4.3.5
- eslint: 9.7.0
- eslint-compat-utils: 0.5.0(eslint@9.7.0)
+ debug: 4.3.7
+ eslint: 9.11.0(jiti@1.21.6)
+ eslint-compat-utils: 0.5.1(eslint@9.11.0(jiti@1.21.6))
lodash: 4.17.21
- toml-eslint-parser: 0.9.3
+ toml-eslint-parser: 0.10.0
transitivePeerDependencies:
- supports-color
- eslint-plugin-unicorn@53.0.0(eslint@9.7.0):
+ eslint-plugin-unicorn@55.0.0(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- '@babel/helper-validator-identifier': 7.24.5
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
- '@eslint/eslintrc': 3.1.0
+ '@babel/helper-validator-identifier': 7.24.7
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6))
ci-info: 4.0.0
clean-regexp: 1.0.0
- core-js-compat: 3.37.1
- eslint: 9.7.0
- esquery: 1.5.0
+ core-js-compat: 3.38.1
+ eslint: 9.11.0(jiti@1.21.6)
+ esquery: 1.6.0
+ globals: 15.9.0
indent-string: 4.0.0
is-builtin-module: 3.2.1
jsesc: 3.0.2
@@ -11395,59 +9703,44 @@ snapshots:
read-pkg-up: 7.0.1
regexp-tree: 0.1.27
regjsparser: 0.10.0
- semver: 7.6.2
+ semver: 7.6.3
strip-indent: 3.0.0
- transitivePeerDependencies:
- - supports-color
-
- eslint-plugin-unused-imports@3.2.0(@typescript-eslint/eslint-plugin@7.9.0(@typescript-eslint/parser@7.9.0(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0):
- dependencies:
- eslint: 9.7.0
- eslint-rule-composer: 0.3.0
- optionalDependencies:
- '@typescript-eslint/eslint-plugin': 7.9.0(@typescript-eslint/parser@7.9.0(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)(typescript@5.5.4)
- eslint-plugin-vitest@0.5.4(@typescript-eslint/eslint-plugin@7.9.0(@typescript-eslint/parser@7.9.0(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)(typescript@5.5.4):
+ eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.6.0(@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- '@typescript-eslint/utils': 7.9.0(eslint@9.7.0)(typescript@5.5.4)
- eslint: 9.7.0
+ eslint: 9.11.0(jiti@1.21.6)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 7.9.0(@typescript-eslint/parser@7.9.0(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)(typescript@5.5.4)
- transitivePeerDependencies:
- - supports-color
- - typescript
+ '@typescript-eslint/eslint-plugin': 8.6.0(@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
- eslint-plugin-vue@9.26.0(eslint@9.7.0):
+ eslint-plugin-vue@9.28.0(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
- eslint: 9.7.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6))
+ eslint: 9.11.0(jiti@1.21.6)
globals: 13.24.0
natural-compare: 1.4.0
nth-check: 2.1.1
- postcss-selector-parser: 6.0.16
- semver: 7.6.2
- vue-eslint-parser: 9.4.2(eslint@9.7.0)
+ postcss-selector-parser: 6.1.2
+ semver: 7.6.3
+ vue-eslint-parser: 9.4.3(eslint@9.11.0(jiti@1.21.6))
xml-name-validator: 4.0.0
transitivePeerDependencies:
- supports-color
- eslint-plugin-yml@1.14.0(eslint@9.7.0):
+ eslint-plugin-yml@1.14.0(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- debug: 4.3.5
- eslint: 9.7.0
- eslint-compat-utils: 0.5.0(eslint@9.7.0)
+ debug: 4.3.7
+ eslint: 9.11.0(jiti@1.21.6)
+ eslint-compat-utils: 0.5.1(eslint@9.11.0(jiti@1.21.6))
lodash: 4.17.21
natural-compare: 1.4.0
- yaml-eslint-parser: 1.2.2
+ yaml-eslint-parser: 1.2.3
transitivePeerDependencies:
- supports-color
- eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.4.34)(eslint@9.7.0):
+ eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.5.8)(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- '@vue/compiler-sfc': 3.4.34
- eslint: 9.7.0
-
- eslint-rule-composer@0.3.0: {}
+ '@vue/compiler-sfc': 3.5.8
+ eslint: 9.11.0(jiti@1.21.6)
eslint-scope@7.2.2:
dependencies:
@@ -11463,20 +9756,21 @@ snapshots:
eslint-visitor-keys@4.0.0: {}
- eslint@9.7.0:
+ eslint@9.11.0(jiti@1.21.6):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
- '@eslint-community/regexpp': 4.11.0
- '@eslint/config-array': 0.17.1
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6))
+ '@eslint-community/regexpp': 4.11.1
+ '@eslint/config-array': 0.18.0
'@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.7.0
+ '@eslint/js': 9.11.0
+ '@eslint/plugin-kit': 0.2.0
'@humanwhocodes/module-importer': 1.0.1
'@humanwhocodes/retry': 0.3.0
'@nodelib/fs.walk': 1.2.8
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.5
+ debug: 4.3.7
escape-string-regexp: 4.0.0
eslint-scope: 8.0.2
eslint-visitor-keys: 4.0.0
@@ -11487,18 +9781,19 @@ snapshots:
file-entry-cache: 8.0.0
find-up: 5.0.0
glob-parent: 6.0.2
- ignore: 5.3.1
+ ignore: 5.3.2
imurmurhash: 0.1.4
is-glob: 4.0.3
is-path-inside: 3.0.3
json-stable-stringify-without-jsonify: 1.0.1
- levn: 0.4.1
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
optionator: 0.9.4
strip-ansi: 6.0.1
text-table: 0.2.0
+ optionalDependencies:
+ jiti: 1.21.6
transitivePeerDependencies:
- supports-color
@@ -11516,10 +9811,6 @@ snapshots:
esprima@4.0.1: {}
- esquery@1.5.0:
- dependencies:
- estraverse: 5.3.0
-
esquery@1.6.0:
dependencies:
estraverse: 5.3.0
@@ -11534,12 +9825,16 @@ snapshots:
estree-walker@3.0.3:
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.6
esutils@2.0.3: {}
etag@1.8.1: {}
+ event-target-shim@5.0.1: {}
+
+ events@3.3.0: {}
+
execa@5.1.1:
dependencies:
cross-spawn: 7.0.3
@@ -11559,7 +9854,7 @@ snapshots:
human-signals: 4.3.1
is-stream: 3.0.0
merge-stream: 2.0.0
- npm-run-path: 5.1.0
+ npm-run-path: 5.3.0
onetime: 6.0.0
signal-exit: 3.0.7
strip-final-newline: 3.0.0
@@ -11584,10 +9879,10 @@ snapshots:
externality@1.0.2:
dependencies:
- enhanced-resolve: 5.15.0
- mlly: 1.7.0
+ enhanced-resolve: 5.17.1
+ mlly: 1.7.1
pathe: 1.1.2
- ufo: 1.5.3
+ ufo: 1.5.4
fast-deep-equal@3.1.3: {}
@@ -11595,32 +9890,28 @@ snapshots:
fast-fifo@1.3.2: {}
- fast-glob@3.3.1:
- dependencies:
- '@nodelib/fs.stat': 2.0.5
- '@nodelib/fs.walk': 1.2.8
- glob-parent: 5.1.2
- merge2: 1.4.1
- micromatch: 4.0.5
-
fast-glob@3.3.2:
dependencies:
'@nodelib/fs.stat': 2.0.5
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.5
+ micromatch: 4.0.8
fast-json-stable-stringify@2.1.0: {}
fast-levenshtein@2.0.6: {}
- fast-npm-meta@0.1.1: {}
+ fast-npm-meta@0.2.2: {}
fastq@1.17.1:
dependencies:
reusify: 1.0.4
+ fdir@6.3.0(picomatch@4.0.2):
+ optionalDependencies:
+ picomatch: 4.0.2
+
fetch-blob@3.2.0:
dependencies:
node-domexception: 1.0.0
@@ -11636,14 +9927,11 @@ snapshots:
file-uri-to-path@1.0.0: {}
- fill-range@7.0.1:
- dependencies:
- to-regex-range: 5.0.1
-
fill-range@7.1.1:
dependencies:
to-regex-range: 5.0.1
- optional: true
+
+ find-up-simple@1.0.0: {}
find-up@4.1.0:
dependencies:
@@ -11660,25 +9948,22 @@ snapshots:
locate-path: 7.2.0
path-exists: 5.0.0
- find-up@7.0.0:
- dependencies:
- locate-path: 7.2.0
- path-exists: 5.0.0
- unicorn-magic: 0.1.0
-
flat-cache@4.0.1:
dependencies:
flatted: 3.3.1
keyv: 4.5.4
- flat@5.0.2: {}
-
flatted@3.3.1: {}
- focus-trap@7.5.4:
+ focus-trap@7.6.0:
dependencies:
tabbable: 6.2.0
+ foreground-child@3.3.0:
+ dependencies:
+ cross-spawn: 7.0.3
+ signal-exit: 4.1.0
+
form-data-encoder@2.1.4: {}
formdata-polyfill@4.0.10:
@@ -11689,17 +9974,11 @@ snapshots:
fresh@0.5.2: {}
- fs-extra@11.1.1:
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 6.1.0
- universalify: 2.0.0
-
fs-extra@11.2.0:
dependencies:
graceful-fs: 4.2.11
jsonfile: 6.1.0
- universalify: 2.0.0
+ universalify: 2.0.1
fs-extra@7.0.1:
dependencies:
@@ -11736,19 +10015,13 @@ snapshots:
get-east-asian-width@1.2.0: {}
- get-port-please@3.1.1: {}
-
get-port-please@3.1.2: {}
get-stream@6.0.1: {}
get-stream@8.0.1: {}
- get-tsconfig@4.7.2:
- dependencies:
- resolve-pkg-maps: 1.0.0
-
- get-tsconfig@4.7.5:
+ get-tsconfig@4.8.1:
dependencies:
resolve-pkg-maps: 1.0.0
@@ -11756,33 +10029,21 @@ snapshots:
dependencies:
basic-ftp: 5.0.5
data-uri-to-buffer: 6.0.2
- debug: 4.3.5
+ debug: 4.3.7
fs-extra: 11.2.0
transitivePeerDependencies:
- supports-color
- giget@1.1.3:
- dependencies:
- colorette: 2.0.20
- defu: 6.1.3
- https-proxy-agent: 7.0.5
- mri: 1.2.0
- node-fetch-native: 1.4.0
- pathe: 1.1.2
- tar: 6.2.0
- transitivePeerDependencies:
- - supports-color
-
giget@1.2.3:
dependencies:
citty: 0.1.6
consola: 3.2.3
defu: 6.1.4
node-fetch-native: 1.6.4
- nypm: 0.3.9
- ohash: 1.1.3
+ nypm: 0.3.11
+ ohash: 1.1.4
pathe: 1.1.2
- tar: 6.2.0
+ tar: 6.2.1
git-config-path@2.0.0: {}
@@ -11795,18 +10056,26 @@ snapshots:
git-semver-tags@7.0.1:
dependencies:
meow: 12.1.1
- semver: 7.6.2
+ semver: 7.6.3
+
+ git-semver-tags@8.0.0:
+ dependencies:
+ '@conventional-changelog/git-client': 1.0.1
+ meow: 13.2.0
+ transitivePeerDependencies:
+ - conventional-commits-filter
+ - conventional-commits-parser
git-up@7.0.0:
dependencies:
is-ssh: 1.4.0
parse-url: 8.1.0
- git-url-parse@13.1.1:
+ git-url-parse@14.0.0:
dependencies:
git-up: 7.0.0
- git-url-parse@14.0.0:
+ git-url-parse@15.0.0:
dependencies:
git-up: 7.0.0
@@ -11818,6 +10087,15 @@ snapshots:
dependencies:
is-glob: 4.0.3
+ glob@10.4.5:
+ dependencies:
+ foreground-child: 3.3.0
+ jackspeak: 3.4.3
+ minimatch: 9.0.5
+ minipass: 7.1.2
+ package-json-from-dist: 1.0.0
+ path-scurry: 1.11.1
+
glob@7.2.3:
dependencies:
fs.realpath: 1.0.0
@@ -11847,30 +10125,13 @@ snapshots:
globals@14.0.0: {}
- globals@15.2.0: {}
-
- globby@11.1.0:
- dependencies:
- array-union: 2.1.0
- dir-glob: 3.0.1
- fast-glob: 3.3.2
- ignore: 5.3.1
- merge2: 1.4.1
- slash: 3.0.0
-
- globby@13.2.2:
- dependencies:
- dir-glob: 3.0.1
- fast-glob: 3.3.1
- ignore: 5.3.1
- merge2: 1.4.1
- slash: 4.0.0
+ globals@15.9.0: {}
globby@14.0.2:
dependencies:
'@sindresorhus/merge-streams': 2.3.0
fast-glob: 3.3.2
- ignore: 5.3.1
+ ignore: 5.3.2
path-type: 5.0.0
slash: 5.1.0
unicorn-magic: 0.1.0
@@ -11903,8 +10164,6 @@ snapshots:
graphemer@1.4.0: {}
- gsap@3.12.3: {}
-
gsap@3.12.5: {}
gzip-size@6.0.0:
@@ -11915,16 +10174,20 @@ snapshots:
dependencies:
duplexer: 0.1.2
- h3@1.8.2:
+ h3@1.12.0:
dependencies:
- cookie-es: 1.0.0
- defu: 6.1.3
- destr: 2.0.2
- iron-webcrypto: 0.10.1
- radix3: 1.1.0
- ufo: 1.3.1
+ cookie-es: 1.2.2
+ crossws: 0.2.4
+ defu: 6.1.4
+ destr: 2.0.3
+ iron-webcrypto: 1.2.1
+ ohash: 1.1.4
+ radix3: 1.1.2
+ ufo: 1.5.4
uncrypto: 0.1.3
- unenv: 1.7.4
+ unenv: 1.10.0
+ transitivePeerDependencies:
+ - uWebSockets.js
handlebars@4.7.8:
dependencies:
@@ -11933,7 +10196,7 @@ snapshots:
source-map: 0.6.1
wordwrap: 1.0.0
optionalDependencies:
- uglify-js: 3.17.4
+ uglify-js: 3.19.3
has-flag@3.0.0: {}
@@ -11947,73 +10210,23 @@ snapshots:
dependencies:
function-bind: 1.1.2
- hast-util-from-parse5@8.0.1:
- dependencies:
- '@types/hast': 3.0.3
- '@types/unist': 3.0.2
- devlop: 1.1.0
- hastscript: 8.0.0
- property-information: 6.4.0
- vfile: 6.0.1
- vfile-location: 5.0.2
- web-namespaces: 2.0.1
-
- hast-util-parse-selector@4.0.0:
- dependencies:
- '@types/hast': 3.0.3
-
- hast-util-raw@9.0.1:
- dependencies:
- '@types/hast': 3.0.3
- '@types/unist': 3.0.2
- '@ungap/structured-clone': 1.2.0
- hast-util-from-parse5: 8.0.1
- hast-util-to-parse5: 8.0.0
- html-void-elements: 3.0.0
- mdast-util-to-hast: 13.0.2
- parse5: 7.1.2
- unist-util-position: 5.0.0
- unist-util-visit: 5.0.0
- vfile: 6.0.1
- web-namespaces: 2.0.1
- zwitch: 2.0.4
-
- hast-util-to-html@9.0.0:
+ hast-util-to-html@9.0.3:
dependencies:
- '@types/hast': 3.0.3
- '@types/unist': 3.0.2
+ '@types/hast': 3.0.4
+ '@types/unist': 3.0.3
ccount: 2.0.1
comma-separated-tokens: 2.0.3
- hast-util-raw: 9.0.1
hast-util-whitespace: 3.0.0
html-void-elements: 3.0.0
- mdast-util-to-hast: 13.0.2
- property-information: 6.4.0
- space-separated-tokens: 2.0.2
- stringify-entities: 4.0.3
- zwitch: 2.0.4
-
- hast-util-to-parse5@8.0.0:
- dependencies:
- '@types/hast': 3.0.3
- comma-separated-tokens: 2.0.3
- devlop: 1.1.0
- property-information: 6.4.0
+ mdast-util-to-hast: 13.2.0
+ property-information: 6.5.0
space-separated-tokens: 2.0.2
- web-namespaces: 2.0.1
+ stringify-entities: 4.0.4
zwitch: 2.0.4
hast-util-whitespace@3.0.0:
dependencies:
- '@types/hast': 3.0.3
-
- hastscript@8.0.0:
- dependencies:
- '@types/hast': 3.0.3
- comma-separated-tokens: 2.0.3
- hast-util-parse-selector: 4.0.0
- property-information: 6.4.0
- space-separated-tokens: 2.0.2
+ '@types/hast': 3.0.4
he@1.2.0: {}
@@ -12021,9 +10234,9 @@ snapshots:
hosted-git-info@2.8.9: {}
- hosted-git-info@7.0.1:
+ hosted-git-info@7.0.2:
dependencies:
- lru-cache: 10.0.1
+ lru-cache: 10.4.3
html-tags@3.3.1: {}
@@ -12042,7 +10255,7 @@ snapshots:
http-proxy-agent@7.0.2:
dependencies:
agent-base: 7.1.1
- debug: 4.3.5
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -12056,14 +10269,14 @@ snapshots:
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.3.5
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
https-proxy-agent@7.0.5:
dependencies:
agent-base: 7.1.1
- debug: 4.3.5
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -12079,14 +10292,9 @@ snapshots:
dependencies:
safer-buffer: 2.1.2
- iconv-lite@0.6.3:
- dependencies:
- safer-buffer: 2.1.2
- optional: true
-
ieee754@1.2.1: {}
- ignore@5.3.1: {}
+ ignore@5.3.2: {}
image-meta@0.2.1: {}
@@ -12097,6 +10305,29 @@ snapshots:
import-lazy@4.0.0: {}
+ importx@0.4.4:
+ dependencies:
+ bundle-require: 5.0.0(esbuild@0.23.1)
+ debug: 4.3.7
+ esbuild: 0.23.1
+ jiti: 2.0.0-beta.3
+ jiti-v1: jiti@1.21.6
+ pathe: 1.1.2
+ tsx: 4.19.1
+ transitivePeerDependencies:
+ - supports-color
+
+ impound@0.1.0(rollup@4.22.4):
+ dependencies:
+ '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
+ mlly: 1.7.1
+ pathe: 1.1.2
+ unenv: 1.10.0
+ unplugin: 1.14.1
+ transitivePeerDependencies:
+ - rollup
+ - webpack-sources
+
imurmurhash@0.1.4: {}
indent-string@4.0.0: {}
@@ -12114,7 +10345,7 @@ snapshots:
inquirer@9.3.2:
dependencies:
- '@inquirer/figures': 1.0.5
+ '@inquirer/figures': 1.0.6
ansi-escapes: 4.3.2
cli-width: 4.1.0
external-editor: 3.1.0
@@ -12129,11 +10360,11 @@ snapshots:
interpret@1.4.0: {}
- ioredis@5.3.2:
+ ioredis@5.4.1:
dependencies:
'@ioredis/commands': 1.2.0
cluster-key-slot: 1.1.2
- debug: 4.3.5
+ debug: 4.3.7
denque: 2.1.0
lodash.defaults: 4.2.0
lodash.isarguments: 3.1.0
@@ -12148,20 +10379,13 @@ snapshots:
jsbn: 1.1.0
sprintf-js: 1.1.3
- iron-webcrypto@0.10.1: {}
-
- is-alphabetical@1.0.4: {}
-
- is-alphanumerical@1.0.4:
- dependencies:
- is-alphabetical: 1.0.4
- is-decimal: 1.0.4
+ iron-webcrypto@1.2.1: {}
is-arrayish@0.2.1: {}
is-binary-path@2.1.0:
dependencies:
- binary-extensions: 2.2.0
+ binary-extensions: 2.3.0
is-builtin-module@3.2.1:
dependencies:
@@ -12171,12 +10395,10 @@ snapshots:
dependencies:
ci-info: 3.9.0
- is-core-module@2.13.1:
+ is-core-module@2.15.1:
dependencies:
hasown: 2.0.2
- is-decimal@1.0.4: {}
-
is-docker@2.2.1: {}
is-docker@3.0.0: {}
@@ -12189,8 +10411,6 @@ snapshots:
dependencies:
is-extglob: 2.1.1
- is-hexadecimal@1.0.4: {}
-
is-in-ci@0.1.0: {}
is-inside-container@1.0.0:
@@ -12218,13 +10438,9 @@ snapshots:
is-path-inside@4.0.0: {}
- is-primitive@3.0.1: {}
-
- is-promise@4.0.0: {}
-
is-reference@1.2.1:
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
is-ssh@1.4.0:
dependencies:
@@ -12244,7 +10460,7 @@ snapshots:
is-unicode-supported@1.3.0: {}
- is-unicode-supported@2.0.0: {}
+ is-unicode-supported@2.1.0: {}
is-what@4.1.16: {}
@@ -12256,6 +10472,10 @@ snapshots:
dependencies:
is-inside-container: 1.0.0
+ is64bit@2.0.0:
+ dependencies:
+ system-architecture: 0.1.0
+
isarray@0.0.1: {}
isarray@1.0.0: {}
@@ -12270,12 +10490,16 @@ snapshots:
lodash.isstring: 4.0.1
lodash.uniqby: 4.7.0
- jiti@1.20.0: {}
-
- jiti@1.21.0: {}
+ jackspeak@3.4.3:
+ dependencies:
+ '@isaacs/cliui': 8.0.2
+ optionalDependencies:
+ '@pkgjs/parseargs': 0.11.0
jiti@1.21.6: {}
+ jiti@2.0.0-beta.3: {}
+
jju@1.4.0: {}
js-tokens@4.0.0: {}
@@ -12288,7 +10512,7 @@ snapshots:
jsbn@1.1.0: {}
- jsdoc-type-pratt-parser@4.0.0: {}
+ jsdoc-type-pratt-parser@4.1.0: {}
jsesc@0.5.0: {}
@@ -12300,7 +10524,7 @@ snapshots:
json-parse-even-better-errors@2.3.1: {}
- json-parse-even-better-errors@3.0.0: {}
+ json-parse-even-better-errors@3.0.2: {}
json-schema-traverse@0.4.1: {}
@@ -12314,12 +10538,10 @@ snapshots:
jsonc-eslint-parser@2.4.0:
dependencies:
- acorn: 8.11.2
+ acorn: 8.12.1
eslint-visitor-keys: 3.4.3
espree: 9.6.1
- semver: 7.5.4
-
- jsonc-parser@3.2.0: {}
+ semver: 7.6.3
jsonfile@4.0.0:
optionalDependencies:
@@ -12327,7 +10549,7 @@ snapshots:
jsonfile@6.1.0:
dependencies:
- universalify: 2.0.0
+ universalify: 2.0.1
optionalDependencies:
graceful-fs: 4.2.11
@@ -12341,21 +10563,19 @@ snapshots:
klona@2.0.6: {}
- knitwork@1.0.0: {}
-
knitwork@1.1.0: {}
kolorist@1.8.0: {}
- ky@1.5.0: {}
+ ky@1.7.2: {}
latest-version@9.0.0:
dependencies:
package-json: 10.0.1
- launch-editor@2.8.0:
+ launch-editor@2.9.1:
dependencies:
- picocolors: 1.0.1
+ picocolors: 1.1.0
shell-quote: 1.8.1
lazystream@1.0.1:
@@ -12369,38 +10589,43 @@ snapshots:
lil-gui@0.17.0: {}
- lilconfig@2.1.0: {}
+ lilconfig@3.1.2: {}
lines-and-columns@1.2.4: {}
lines-and-columns@2.0.4: {}
- listhen@1.5.5:
+ listhen@1.7.2:
dependencies:
- '@parcel/watcher': 2.3.0
- '@parcel/watcher-wasm': 2.3.0
- citty: 0.1.4
- clipboardy: 3.0.0
+ '@parcel/watcher': 2.4.1
+ '@parcel/watcher-wasm': 2.4.1
+ citty: 0.1.6
+ clipboardy: 4.0.0
consola: 3.2.3
- defu: 6.1.3
- get-port-please: 3.1.1
- h3: 1.8.2
+ crossws: 0.2.4
+ defu: 6.1.4
+ get-port-please: 3.1.2
+ h3: 1.12.0
http-shutdown: 1.2.2
- jiti: 1.20.0
- mlly: 1.7.0
+ jiti: 1.21.6
+ mlly: 1.7.1
node-forge: 1.3.1
pathe: 1.1.2
- std-env: 3.4.3
- ufo: 1.5.3
- untun: 0.1.2
+ std-env: 3.7.0
+ ufo: 1.5.4
+ untun: 0.1.3
uqr: 0.1.2
+ transitivePeerDependencies:
+ - uWebSockets.js
+
+ load-tsconfig@0.2.5: {}
local-pkg@0.4.3: {}
local-pkg@0.5.0:
dependencies:
- mlly: 1.7.0
- pkg-types: 1.1.1
+ mlly: 1.7.1
+ pkg-types: 1.2.0
locate-path@5.0.0:
dependencies:
@@ -12416,8 +10641,6 @@ snapshots:
lodash.capitalize@4.2.1: {}
- lodash.debounce@4.0.8: {}
-
lodash.defaults@4.2.0: {}
lodash.escaperegexp@4.1.2: {}
@@ -12432,8 +10655,6 @@ snapshots:
lodash.merge@4.6.2: {}
- lodash.pick@4.4.0: {}
-
lodash.uniq@4.5.0: {}
lodash.uniqby@4.7.0: {}
@@ -12450,9 +10671,9 @@ snapshots:
chalk: 5.3.0
is-unicode-supported: 1.3.0
- lowercase-keys@3.0.0: {}
+ longest-streak@3.1.0: {}
- lru-cache@10.0.1: {}
+ lowercase-keys@3.0.0: {}
lru-cache@10.4.3: {}
@@ -12466,25 +10687,21 @@ snapshots:
lru-cache@7.18.3: {}
- macos-release@3.2.0: {}
-
- magic-string-ast@0.3.0:
- dependencies:
- magic-string: 0.30.5
+ macos-release@3.3.0: {}
- magic-string@0.30.10:
+ magic-string-ast@0.6.2:
dependencies:
- '@jridgewell/sourcemap-codec': 1.4.15
+ magic-string: 0.30.11
- magic-string@0.30.5:
+ magic-string@0.30.11:
dependencies:
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
- magicast@0.3.4:
+ magicast@0.3.5:
dependencies:
- '@babel/parser': 7.24.5
- '@babel/types': 7.24.5
- source-map-js: 1.2.0
+ '@babel/parser': 7.25.6
+ '@babel/types': 7.25.6
+ source-map-js: 1.2.1
make-dir@3.1.0:
dependencies:
@@ -12492,80 +10709,330 @@ snapshots:
mark.js@8.11.1: {}
- mdast-util-from-markdown@0.8.5:
+ markdown-table@3.0.3: {}
+
+ mdast-util-find-and-replace@3.0.1:
+ dependencies:
+ '@types/mdast': 4.0.4
+ escape-string-regexp: 5.0.0
+ unist-util-is: 6.0.0
+ unist-util-visit-parents: 6.0.1
+
+ mdast-util-from-markdown@2.0.1:
+ dependencies:
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.3
+ decode-named-character-reference: 1.0.2
+ devlop: 1.1.0
+ mdast-util-to-string: 4.0.0
+ micromark: 4.0.0
+ micromark-util-decode-numeric-character-reference: 2.0.1
+ micromark-util-decode-string: 2.0.0
+ micromark-util-normalize-identifier: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ unist-util-stringify-position: 4.0.0
+ transitivePeerDependencies:
+ - supports-color
+
+ mdast-util-gfm-autolink-literal@2.0.1:
+ dependencies:
+ '@types/mdast': 4.0.4
+ ccount: 2.0.1
+ devlop: 1.1.0
+ mdast-util-find-and-replace: 3.0.1
+ micromark-util-character: 2.1.0
+
+ mdast-util-gfm-footnote@2.0.0:
dependencies:
- '@types/mdast': 3.0.14
- mdast-util-to-string: 2.0.0
- micromark: 2.11.4
- parse-entities: 2.0.0
- unist-util-stringify-position: 2.0.3
+ '@types/mdast': 4.0.4
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-to-markdown: 2.1.0
+ micromark-util-normalize-identifier: 2.0.0
+ transitivePeerDependencies:
+ - supports-color
+
+ mdast-util-gfm-strikethrough@2.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-to-markdown: 2.1.0
+ transitivePeerDependencies:
+ - supports-color
+
+ mdast-util-gfm-table@2.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ devlop: 1.1.0
+ markdown-table: 3.0.3
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-to-markdown: 2.1.0
+ transitivePeerDependencies:
+ - supports-color
+
+ mdast-util-gfm-task-list-item@2.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-to-markdown: 2.1.0
+ transitivePeerDependencies:
+ - supports-color
+
+ mdast-util-gfm@3.0.0:
+ dependencies:
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-gfm-autolink-literal: 2.0.1
+ mdast-util-gfm-footnote: 2.0.0
+ mdast-util-gfm-strikethrough: 2.0.0
+ mdast-util-gfm-table: 2.0.0
+ mdast-util-gfm-task-list-item: 2.0.0
+ mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
- mdast-util-to-hast@13.0.2:
+ mdast-util-phrasing@4.1.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ unist-util-is: 6.0.0
+
+ mdast-util-to-hast@13.2.0:
dependencies:
- '@types/hast': 3.0.3
- '@types/mdast': 4.0.3
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
'@ungap/structured-clone': 1.2.0
devlop: 1.1.0
micromark-util-sanitize-uri: 2.0.0
trim-lines: 3.0.1
unist-util-position: 5.0.0
unist-util-visit: 5.0.0
+ vfile: 6.0.3
+
+ mdast-util-to-markdown@2.1.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.3
+ longest-streak: 3.1.0
+ mdast-util-phrasing: 4.1.0
+ mdast-util-to-string: 4.0.0
+ micromark-util-decode-string: 2.0.0
+ unist-util-visit: 5.0.0
+ zwitch: 2.0.4
- mdast-util-to-string@2.0.0: {}
+ mdast-util-to-string@4.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
mdn-data@2.0.28: {}
mdn-data@2.0.30: {}
- memory-fs@0.5.0:
- dependencies:
- errno: 0.1.8
- readable-stream: 2.3.8
-
meow@12.1.1: {}
+ meow@13.2.0: {}
+
merge-stream@2.0.0: {}
merge2@1.4.1: {}
meshoptimizer@0.18.1: {}
- micromark-util-character@2.0.1:
+ micromark-core-commonmark@2.0.1:
dependencies:
+ decode-named-character-reference: 1.0.2
+ devlop: 1.1.0
+ micromark-factory-destination: 2.0.0
+ micromark-factory-label: 2.0.0
+ micromark-factory-space: 2.0.0
+ micromark-factory-title: 2.0.0
+ micromark-factory-whitespace: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-chunked: 2.0.0
+ micromark-util-classify-character: 2.0.0
+ micromark-util-html-tag-name: 2.0.0
+ micromark-util-normalize-identifier: 2.0.0
+ micromark-util-resolve-all: 2.0.0
+ micromark-util-subtokenize: 2.0.1
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+
+ micromark-extension-gfm-autolink-literal@2.1.0:
+ dependencies:
+ micromark-util-character: 2.1.0
+ micromark-util-sanitize-uri: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+
+ micromark-extension-gfm-footnote@2.1.0:
+ dependencies:
+ devlop: 1.1.0
+ micromark-core-commonmark: 2.0.1
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-normalize-identifier: 2.0.0
+ micromark-util-sanitize-uri: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+
+ micromark-extension-gfm-strikethrough@2.1.0:
+ dependencies:
+ devlop: 1.1.0
+ micromark-util-chunked: 2.0.0
+ micromark-util-classify-character: 2.0.0
+ micromark-util-resolve-all: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+
+ micromark-extension-gfm-table@2.1.0:
+ dependencies:
+ devlop: 1.1.0
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+
+ micromark-extension-gfm-tagfilter@2.0.0:
+ dependencies:
+ micromark-util-types: 2.0.0
+
+ micromark-extension-gfm-task-list-item@2.1.0:
+ dependencies:
+ devlop: 1.1.0
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+
+ micromark-extension-gfm@3.0.0:
+ dependencies:
+ micromark-extension-gfm-autolink-literal: 2.1.0
+ micromark-extension-gfm-footnote: 2.1.0
+ micromark-extension-gfm-strikethrough: 2.1.0
+ micromark-extension-gfm-table: 2.1.0
+ micromark-extension-gfm-tagfilter: 2.0.0
+ micromark-extension-gfm-task-list-item: 2.1.0
+ micromark-util-combine-extensions: 2.0.0
+ micromark-util-types: 2.0.0
+
+ micromark-factory-destination@2.0.0:
+ dependencies:
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+
+ micromark-factory-label@2.0.0:
+ dependencies:
+ devlop: 1.1.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+
+ micromark-factory-space@2.0.0:
+ dependencies:
+ micromark-util-character: 2.1.0
+ micromark-util-types: 2.0.0
+
+ micromark-factory-title@2.0.0:
+ dependencies:
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+
+ micromark-factory-whitespace@2.0.0:
+ dependencies:
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+
+ micromark-util-character@2.1.0:
+ dependencies:
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+
+ micromark-util-chunked@2.0.0:
+ dependencies:
+ micromark-util-symbol: 2.0.0
+
+ micromark-util-classify-character@2.0.0:
+ dependencies:
+ micromark-util-character: 2.1.0
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
+ micromark-util-combine-extensions@2.0.0:
+ dependencies:
+ micromark-util-chunked: 2.0.0
+ micromark-util-types: 2.0.0
+
+ micromark-util-decode-numeric-character-reference@2.0.1:
+ dependencies:
+ micromark-util-symbol: 2.0.0
+
+ micromark-util-decode-string@2.0.0:
+ dependencies:
+ decode-named-character-reference: 1.0.2
+ micromark-util-character: 2.1.0
+ micromark-util-decode-numeric-character-reference: 2.0.1
+ micromark-util-symbol: 2.0.0
+
micromark-util-encode@2.0.0: {}
+ micromark-util-html-tag-name@2.0.0: {}
+
+ micromark-util-normalize-identifier@2.0.0:
+ dependencies:
+ micromark-util-symbol: 2.0.0
+
+ micromark-util-resolve-all@2.0.0:
+ dependencies:
+ micromark-util-types: 2.0.0
+
micromark-util-sanitize-uri@2.0.0:
dependencies:
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-encode: 2.0.0
micromark-util-symbol: 2.0.0
+ micromark-util-subtokenize@2.0.1:
+ dependencies:
+ devlop: 1.1.0
+ micromark-util-chunked: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+
micromark-util-symbol@2.0.0: {}
micromark-util-types@2.0.0: {}
- micromark@2.11.4:
+ micromark@4.0.0:
dependencies:
- debug: 4.3.5
- parse-entities: 2.0.0
+ '@types/debug': 4.1.12
+ debug: 4.3.7
+ decode-named-character-reference: 1.0.2
+ devlop: 1.1.0
+ micromark-core-commonmark: 2.0.1
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-chunked: 2.0.0
+ micromark-util-combine-extensions: 2.0.0
+ micromark-util-decode-numeric-character-reference: 2.0.1
+ micromark-util-encode: 2.0.0
+ micromark-util-normalize-identifier: 2.0.0
+ micromark-util-resolve-all: 2.0.0
+ micromark-util-sanitize-uri: 2.0.0
+ micromark-util-subtokenize: 2.0.1
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
transitivePeerDependencies:
- supports-color
- micromatch@4.0.5:
- dependencies:
- braces: 3.0.2
- picomatch: 2.3.1
-
- micromatch@4.0.7:
+ micromatch@4.0.8:
dependencies:
braces: 3.0.3
picomatch: 2.3.1
- optional: true
mime-db@1.52.0: {}
@@ -12575,10 +11042,10 @@ snapshots:
mime@1.6.0: {}
- mime@2.5.2: {}
-
mime@3.0.0: {}
+ mime@4.0.4: {}
+
mimic-fn@2.1.0: {}
mimic-fn@4.0.0: {}
@@ -12601,14 +11068,6 @@ snapshots:
dependencies:
brace-expansion: 2.0.1
- minimatch@9.0.3:
- dependencies:
- brace-expansion: 2.0.1
-
- minimatch@9.0.4:
- dependencies:
- brace-expansion: 2.0.1
-
minimatch@9.0.5:
dependencies:
brace-expansion: 2.0.1
@@ -12621,6 +11080,8 @@ snapshots:
minipass@5.0.0: {}
+ minipass@7.1.2: {}
+
minisearch@6.3.0: {}
minisearch@7.1.0: {}
@@ -12634,26 +11095,12 @@ snapshots:
mkdirp@1.0.4: {}
- mlly@1.4.2:
- dependencies:
- acorn: 8.10.0
- pathe: 1.1.2
- pkg-types: 1.0.3
- ufo: 1.3.1
-
- mlly@1.7.0:
- dependencies:
- acorn: 8.11.3
- pathe: 1.1.2
- pkg-types: 1.1.1
- ufo: 1.5.3
-
mlly@1.7.1:
dependencies:
- acorn: 8.11.3
+ acorn: 8.12.1
pathe: 1.1.2
- pkg-types: 1.1.3
- ufo: 1.5.3
+ pkg-types: 1.2.0
+ ufo: 1.5.4
mri@1.2.0: {}
@@ -12663,8 +11110,6 @@ snapshots:
ms@2.0.0: {}
- ms@2.1.2: {}
-
ms@2.1.3: {}
muggle-string@0.4.1: {}
@@ -12673,7 +11118,9 @@ snapshots:
nanoid@3.3.7: {}
- nanoid@4.0.2: {}
+ nanoid@5.0.7: {}
+
+ nanotar@0.1.1: {}
natural-compare-lite@1.4.0: {}
@@ -12687,71 +11134,74 @@ snapshots:
dependencies:
type-fest: 2.19.0
- nitropack@2.7.0(encoding@0.1.13):
- dependencies:
- '@cloudflare/kv-asset-handler': 0.3.0
- '@netlify/functions': 2.3.0
- '@rollup/plugin-alias': 5.0.1(rollup@3.29.4)
- '@rollup/plugin-commonjs': 25.0.7(rollup@3.29.4)
- '@rollup/plugin-inject': 5.0.5(rollup@3.29.4)
- '@rollup/plugin-json': 6.0.1(rollup@3.29.4)
- '@rollup/plugin-node-resolve': 15.2.3(rollup@3.29.4)
- '@rollup/plugin-replace': 5.0.4(rollup@3.29.4)
- '@rollup/plugin-terser': 0.4.4(rollup@3.29.4)
- '@rollup/plugin-wasm': 6.2.2(rollup@3.29.4)
- '@rollup/pluginutils': 5.0.5(rollup@3.29.4)
- '@types/http-proxy': 1.17.13
- '@vercel/nft': 0.24.3(encoding@0.1.13)
- archiver: 6.0.1
- c12: 1.5.1
+ nitropack@2.9.7(magicast@0.3.5):
+ dependencies:
+ '@cloudflare/kv-asset-handler': 0.3.4
+ '@netlify/functions': 2.8.1
+ '@rollup/plugin-alias': 5.1.0(rollup@4.22.4)
+ '@rollup/plugin-commonjs': 25.0.8(rollup@4.22.4)
+ '@rollup/plugin-inject': 5.0.5(rollup@4.22.4)
+ '@rollup/plugin-json': 6.1.0(rollup@4.22.4)
+ '@rollup/plugin-node-resolve': 15.2.3(rollup@4.22.4)
+ '@rollup/plugin-replace': 5.0.7(rollup@4.22.4)
+ '@rollup/plugin-terser': 0.4.4(rollup@4.22.4)
+ '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
+ '@types/http-proxy': 1.17.15
+ '@vercel/nft': 0.26.5
+ archiver: 7.0.1
+ c12: 1.11.2(magicast@0.3.5)
chalk: 5.3.0
- chokidar: 3.5.3
- citty: 0.1.4
+ chokidar: 3.6.0
+ citty: 0.1.6
consola: 3.2.3
- cookie-es: 1.0.0
- defu: 6.1.3
- destr: 2.0.2
+ cookie-es: 1.2.2
+ croner: 8.1.1
+ crossws: 0.2.4
+ db0: 0.1.4
+ defu: 6.1.4
+ destr: 2.0.3
dot-prop: 8.0.2
- esbuild: 0.19.5
+ esbuild: 0.20.2
escape-string-regexp: 5.0.0
etag: 1.8.1
- fs-extra: 11.1.1
- globby: 13.2.2
+ fs-extra: 11.2.0
+ globby: 14.0.2
gzip-size: 7.0.0
- h3: 1.8.2
+ h3: 1.12.0
hookable: 5.5.3
httpxy: 0.1.5
- is-primitive: 3.0.1
- jiti: 1.20.0
+ ioredis: 5.4.1
+ jiti: 1.21.6
klona: 2.0.6
- knitwork: 1.0.0
- listhen: 1.5.5
- magic-string: 0.30.5
- mime: 3.0.0
- mlly: 1.4.2
+ knitwork: 1.1.0
+ listhen: 1.7.2
+ magic-string: 0.30.11
+ mime: 4.0.4
+ mlly: 1.7.1
mri: 1.2.0
- node-fetch-native: 1.4.0
- ofetch: 1.3.3
- ohash: 1.1.3
- openapi-typescript: 6.7.0
+ node-fetch-native: 1.6.4
+ ofetch: 1.4.0
+ ohash: 1.1.4
+ openapi-typescript: 6.7.6
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.0.3
+ pkg-types: 1.2.0
pretty-bytes: 6.1.1
- radix3: 1.1.0
- rollup: 3.29.4
- rollup-plugin-visualizer: 5.12.0(rollup@3.29.4)
- scule: 1.0.0
+ radix3: 1.1.2
+ rollup: 4.22.4
+ rollup-plugin-visualizer: 5.12.0(rollup@4.22.4)
+ scule: 1.3.0
semver: 7.6.3
- serve-placeholder: 2.0.1
- serve-static: 1.15.0
- std-env: 3.4.3
- ufo: 1.3.1
+ serve-placeholder: 2.0.2
+ serve-static: 1.16.2
+ std-env: 3.7.0
+ ufo: 1.5.4
uncrypto: 0.1.3
unctx: 2.3.1
- unenv: 1.7.4
- unimport: 3.4.0(rollup@3.29.4)
- unstorage: 1.9.0
+ unenv: 1.10.0
+ unimport: 3.12.0(rollup@4.22.4)
+ unstorage: 1.12.0(ioredis@5.4.1)
+ unwasm: 0.3.9
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -12760,29 +11210,29 @@ snapshots:
- '@azure/keyvault-secrets'
- '@azure/storage-blob'
- '@capacitor/preferences'
+ - '@libsql/client'
+ - '@netlify/blobs'
- '@planetscale/database'
- '@upstash/redis'
- '@vercel/kv'
+ - better-sqlite3
+ - drizzle-orm
- encoding
- idb-keyval
+ - magicast
- supports-color
+ - uWebSockets.js
+ - webpack-sources
- node-addon-api@7.0.0: {}
-
- node-addon-api@7.1.1:
- optional: true
+ node-addon-api@7.1.1: {}
node-domexception@1.0.0: {}
- node-fetch-native@1.4.0: {}
-
node-fetch-native@1.6.4: {}
- node-fetch@2.7.0(encoding@0.1.13):
+ node-fetch@2.7.0:
dependencies:
whatwg-url: 5.0.0
- optionalDependencies:
- encoding: 0.1.13
node-fetch@3.3.2:
dependencies:
@@ -12792,11 +11242,7 @@ snapshots:
node-forge@1.3.1: {}
- node-gyp-build@4.6.1: {}
-
- node-releases@2.0.13: {}
-
- node-releases@2.0.14: {}
+ node-gyp-build@4.8.2: {}
node-releases@2.0.18: {}
@@ -12811,11 +11257,10 @@ snapshots:
semver: 5.7.2
validate-npm-package-license: 3.0.4
- normalize-package-data@6.0.0:
+ normalize-package-data@6.0.2:
dependencies:
- hosted-git-info: 7.0.1
- is-core-module: 2.13.1
- semver: 7.5.4
+ hosted-git-info: 7.0.2
+ semver: 7.6.3
validate-npm-package-license: 3.0.4
normalize-path@3.0.0: {}
@@ -12828,10 +11273,6 @@ snapshots:
dependencies:
path-key: 3.1.1
- npm-run-path@5.1.0:
- dependencies:
- path-key: 4.0.0
-
npm-run-path@5.3.0:
dependencies:
path-key: 4.0.0
@@ -12847,70 +11288,79 @@ snapshots:
dependencies:
boolbase: 1.0.0
- nuxi@3.9.1:
+ nuxi@3.13.2:
optionalDependencies:
fsevents: 2.3.3
- nuxt@3.8.0(@parcel/watcher@2.4.1)(@types/node@20.14.12)(encoding@0.1.13)(eslint@9.7.0)(optionator@0.9.4)(rollup@3.29.4)(terser@5.31.3)(typescript@5.5.4)(vite@4.5.3(@types/node@20.14.12)(terser@5.31.3))(vue-tsc@2.0.29(typescript@5.5.4)):
+ nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.5.5)(eslint@9.11.0(jiti@1.21.6))(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.22.4)(terser@5.33.0)(typescript@5.6.2)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))(vue-tsc@2.1.6(typescript@5.6.2)):
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.3.9(rollup@3.29.4)(vite@4.5.3(@types/node@20.14.12)(terser@5.31.3))
- '@nuxt/kit': 3.8.0(rollup@3.29.4)
- '@nuxt/schema': 3.8.0(rollup@3.29.4)
- '@nuxt/telemetry': 2.5.2(rollup@3.29.4)
- '@nuxt/ui-templates': 1.3.1
- '@nuxt/vite-builder': 3.8.0(@types/node@20.14.12)(eslint@9.7.0)(optionator@0.9.4)(rollup@3.29.4)(terser@5.31.3)(typescript@5.5.4)(vue-tsc@2.0.29(typescript@5.5.4))(vue@3.4.27(typescript@5.5.4))
- '@unhead/dom': 1.7.4
- '@unhead/ssr': 1.7.4
- '@unhead/vue': 1.7.4(vue@3.4.27(typescript@5.5.4))
- '@vue/shared': 3.3.4
- acorn: 8.10.0
- c12: 1.5.1
- chokidar: 3.5.3
- cookie-es: 1.0.0
- defu: 6.1.2
- destr: 2.0.1
- devalue: 4.3.2
- esbuild: 0.19.5
+ '@nuxt/devtools': 1.5.0(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2))
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.22.4)
+ '@nuxt/schema': 3.13.2(rollup@4.22.4)
+ '@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@4.22.4)
+ '@nuxt/vite-builder': 3.13.2(@types/node@22.5.5)(eslint@9.11.0(jiti@1.21.6))(magicast@0.3.5)(optionator@0.9.4)(rollup@4.22.4)(terser@5.33.0)(typescript@5.6.2)(vue-tsc@2.1.6(typescript@5.6.2))(vue@3.5.8(typescript@5.6.2))
+ '@unhead/dom': 1.11.6
+ '@unhead/shared': 1.11.6
+ '@unhead/ssr': 1.11.6
+ '@unhead/vue': 1.11.6(vue@3.5.8(typescript@5.6.2))
+ '@vue/shared': 3.5.8
+ acorn: 8.12.1
+ c12: 1.11.2(magicast@0.3.5)
+ chokidar: 3.6.0
+ compatx: 0.1.8
+ consola: 3.2.3
+ cookie-es: 1.2.2
+ defu: 6.1.4
+ destr: 2.0.3
+ devalue: 5.0.0
+ errx: 0.1.0
+ esbuild: 0.23.1
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
- fs-extra: 11.1.1
- globby: 13.2.2
- h3: 1.8.2
+ globby: 14.0.2
+ h3: 1.12.0
hookable: 5.5.3
- jiti: 1.20.0
+ ignore: 5.3.2
+ impound: 0.1.0(rollup@4.22.4)
+ jiti: 1.21.6
klona: 2.0.6
- knitwork: 1.0.0
- magic-string: 0.30.5
- mlly: 1.4.2
- nitropack: 2.7.0(encoding@0.1.13)
- nuxi: 3.9.1
- nypm: 0.3.3
- ofetch: 1.3.3
- ohash: 1.1.3
+ knitwork: 1.1.0
+ magic-string: 0.30.11
+ mlly: 1.7.1
+ nanotar: 0.1.1
+ nitropack: 2.9.7(magicast@0.3.5)
+ nuxi: 3.13.2
+ nypm: 0.3.11
+ ofetch: 1.4.0
+ ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.0.3
- radix3: 1.1.0
- scule: 1.0.0
- std-env: 3.4.3
- strip-literal: 1.3.0
- ufo: 1.3.1
- ultrahtml: 1.5.2
+ pkg-types: 1.2.0
+ radix3: 1.1.2
+ scule: 1.3.0
+ semver: 7.6.3
+ std-env: 3.7.0
+ strip-literal: 2.1.0
+ tinyglobby: 0.2.6
+ ufo: 1.5.4
+ ultrahtml: 1.5.3
uncrypto: 0.1.3
unctx: 2.3.1
- unenv: 1.7.4
- unimport: 3.4.0(rollup@3.29.4)
- unplugin: 1.5.0
- unplugin-vue-router: 0.7.0(rollup@3.29.4)(vue-router@4.2.5(vue@3.4.27(typescript@5.5.4)))(vue@3.4.27(typescript@5.5.4))
- untyped: 1.4.0
- vue: 3.4.27(typescript@5.5.4)
- vue-bundle-renderer: 2.0.0
+ unenv: 1.10.0
+ unhead: 1.11.6
+ unimport: 3.12.0(rollup@4.22.4)
+ unplugin: 1.14.1
+ unplugin-vue-router: 0.10.8(rollup@4.22.4)(vue-router@4.4.5(vue@3.5.8(typescript@5.6.2)))(vue@3.5.8(typescript@5.6.2))
+ unstorage: 1.12.0(ioredis@5.4.1)
+ untyped: 1.4.2
+ vue: 3.5.8(typescript@5.6.2)
+ vue-bundle-renderer: 2.1.0
vue-devtools-stub: 0.1.0
- vue-router: 4.2.5(vue@3.4.27(typescript@5.5.4))
+ vue-router: 4.4.5(vue@3.5.8(typescript@5.6.2))
optionalDependencies:
'@parcel/watcher': 2.4.1
- '@types/node': 20.14.12
+ '@types/node': 22.5.5
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -12918,66 +11368,63 @@ snapshots:
- '@azure/identity'
- '@azure/keyvault-secrets'
- '@azure/storage-blob'
+ - '@biomejs/biome'
- '@capacitor/preferences'
+ - '@libsql/client'
+ - '@netlify/blobs'
- '@planetscale/database'
- '@upstash/redis'
- '@vercel/kv'
+ - better-sqlite3
- bufferutil
+ - drizzle-orm
- encoding
- eslint
- idb-keyval
+ - ioredis
- less
- lightningcss
+ - magicast
- meow
- optionator
- rollup
- sass
+ - sass-embedded
- stylelint
- stylus
- sugarss
- supports-color
- terser
- typescript
+ - uWebSockets.js
- utf-8-validate
- vite
- vls
- vti
- vue-tsc
+ - webpack-sources
- xml2js
- nypm@0.3.3:
- dependencies:
- citty: 0.1.4
- execa: 8.0.1
- pathe: 1.1.2
- ufo: 1.3.1
-
- nypm@0.3.9:
+ nypm@0.3.11:
dependencies:
citty: 0.1.6
consola: 3.2.3
execa: 8.0.1
pathe: 1.1.2
- pkg-types: 1.1.3
- ufo: 1.5.3
+ pkg-types: 1.2.0
+ ufo: 1.5.4
object-assign@4.1.1: {}
object-hash@3.0.0: {}
- ofetch@1.3.3:
- dependencies:
- destr: 2.0.2
- node-fetch-native: 1.4.0
- ufo: 1.3.1
-
- ofetch@1.3.4:
+ ofetch@1.4.0:
dependencies:
destr: 2.0.3
node-fetch-native: 1.6.4
ufo: 1.5.4
- ohash@1.1.3: {}
+ ohash@1.1.4: {}
on-finished@2.4.1:
dependencies:
@@ -12995,6 +11442,10 @@ snapshots:
dependencies:
mimic-fn: 4.0.0
+ oniguruma-to-js@0.4.3:
+ dependencies:
+ regex: 4.3.2
+
open@10.1.0:
dependencies:
default-browser: 5.2.1
@@ -13008,13 +11459,13 @@ snapshots:
is-docker: 2.2.1
is-wsl: 2.2.0
- openapi-typescript@6.7.0:
+ openapi-typescript@6.7.6:
dependencies:
ansi-colors: 4.1.3
fast-glob: 3.3.2
js-yaml: 4.1.0
supports-color: 9.4.0
- undici: 5.27.0
+ undici: 5.28.4
yargs-parser: 21.1.1
optionator@0.9.4:
@@ -13044,7 +11495,7 @@ snapshots:
cli-cursor: 4.0.0
cli-spinners: 2.9.2
is-interactive: 2.0.0
- is-unicode-supported: 2.0.0
+ is-unicode-supported: 2.1.0
log-symbols: 6.0.0
stdin-discarder: 0.2.2
string-width: 7.2.0
@@ -13052,7 +11503,7 @@ snapshots:
os-name@5.1.0:
dependencies:
- macos-release: 3.2.0
+ macos-release: 3.3.0
windows-release: 5.1.1
os-tmpdir@1.0.2: {}
@@ -13069,7 +11520,7 @@ snapshots:
p-limit@4.0.0:
dependencies:
- yocto-queue: 1.0.0
+ yocto-queue: 1.1.1
p-locate@4.1.0:
dependencies:
@@ -13089,7 +11540,7 @@ snapshots:
dependencies:
'@tootallnate/quickjs-emscripten': 0.23.0
agent-base: 7.1.1
- debug: 4.3.5
+ debug: 4.3.7
get-uri: 6.0.3
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.5
@@ -13103,26 +11554,21 @@ snapshots:
degenerator: 5.0.1
netmask: 2.0.2
+ package-json-from-dist@1.0.0: {}
+
package-json@10.0.1:
dependencies:
- ky: 1.5.0
+ ky: 1.7.2
registry-auth-token: 5.0.2
registry-url: 6.0.1
semver: 7.6.2
+ package-manager-detector@0.2.0: {}
+
parent-module@1.0.1:
dependencies:
callsites: 3.1.0
- parse-entities@2.0.0:
- dependencies:
- character-entities: 1.2.4
- character-entities-legacy: 1.1.4
- character-reference-invalid: 1.1.4
- is-alphanumerical: 1.0.4
- is-decimal: 1.0.4
- is-hexadecimal: 1.0.4
-
parse-git-config@3.0.0:
dependencies:
git-config-path: 2.0.0
@@ -13130,18 +11576,23 @@ snapshots:
parse-gitignore@2.0.0: {}
+ parse-imports@2.2.1:
+ dependencies:
+ es-module-lexer: 1.5.4
+ slashes: 3.0.12
+
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.22.13
+ '@babel/code-frame': 7.24.7
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
parse-json@7.1.1:
dependencies:
- '@babel/code-frame': 7.22.13
+ '@babel/code-frame': 7.24.7
error-ex: 1.3.2
- json-parse-even-better-errors: 3.0.0
+ json-parse-even-better-errors: 3.0.2
lines-and-columns: 2.0.4
type-fest: 3.13.1
@@ -13153,10 +11604,6 @@ snapshots:
dependencies:
parse-path: 7.0.0
- parse5@7.1.2:
- dependencies:
- entities: 4.5.0
-
parseurl@1.3.3: {}
path-browserify@1.0.1: {}
@@ -13173,7 +11620,10 @@ snapshots:
path-parse@1.0.7: {}
- path-type@4.0.0: {}
+ path-scurry@1.11.1:
+ dependencies:
+ lru-cache: 10.4.3
+ minipass: 7.1.2
path-type@5.0.0: {}
@@ -13181,29 +11631,13 @@ snapshots:
perfect-debounce@1.0.0: {}
- picocolors@1.0.0: {}
-
- picocolors@1.0.1: {}
+ picocolors@1.1.0: {}
picomatch@2.3.1: {}
picomatch@4.0.2: {}
- pify@2.3.0: {}
-
- pkg-types@1.0.3:
- dependencies:
- jsonc-parser: 3.2.0
- mlly: 1.4.2
- pathe: 1.1.2
-
- pkg-types@1.1.1:
- dependencies:
- confbox: 0.1.7
- mlly: 1.7.0
- pathe: 1.1.2
-
- pkg-types@1.1.3:
+ pkg-types@1.2.0:
dependencies:
confbox: 0.1.7
mlly: 1.7.1
@@ -13211,205 +11645,175 @@ snapshots:
pluralize@8.0.0: {}
- postcss-calc@9.0.1(postcss@8.4.40):
+ postcss-calc@10.0.2(postcss@8.4.47):
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.0.13
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
- postcss-colormin@6.0.0(postcss@8.4.40):
+ postcss-colormin@7.0.2(postcss@8.4.47):
dependencies:
- browserslist: 4.22.1
+ browserslist: 4.23.3
caniuse-api: 3.0.0
colord: 2.9.3
- postcss: 8.4.40
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-convert-values@6.0.0(postcss@8.4.40):
+ postcss-convert-values@7.0.4(postcss@8.4.47):
dependencies:
- browserslist: 4.22.1
- postcss: 8.4.40
+ browserslist: 4.23.3
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-discard-comments@6.0.0(postcss@8.4.40):
- dependencies:
- postcss: 8.4.40
-
- postcss-discard-duplicates@6.0.0(postcss@8.4.40):
- dependencies:
- postcss: 8.4.40
-
- postcss-discard-empty@6.0.0(postcss@8.4.40):
+ postcss-discard-comments@7.0.3(postcss@8.4.47):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
- postcss-discard-overridden@6.0.0(postcss@8.4.40):
+ postcss-discard-duplicates@7.0.1(postcss@8.4.47):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.47
- postcss-import-resolver@2.0.0:
+ postcss-discard-empty@7.0.0(postcss@8.4.47):
dependencies:
- enhanced-resolve: 4.5.0
+ postcss: 8.4.47
- postcss-import@15.1.0(postcss@8.4.40):
+ postcss-discard-overridden@7.0.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.40
- postcss-value-parser: 4.2.0
- read-cache: 1.0.0
- resolve: 1.22.8
+ postcss: 8.4.47
- postcss-merge-longhand@6.0.0(postcss@8.4.40):
+ postcss-merge-longhand@7.0.4(postcss@8.4.47):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- stylehacks: 6.0.0(postcss@8.4.40)
+ stylehacks: 7.0.4(postcss@8.4.47)
- postcss-merge-rules@6.0.1(postcss@8.4.40):
+ postcss-merge-rules@7.0.4(postcss@8.4.47):
dependencies:
- browserslist: 4.22.1
+ browserslist: 4.23.3
caniuse-api: 3.0.0
- cssnano-utils: 4.0.0(postcss@8.4.40)
- postcss: 8.4.40
- postcss-selector-parser: 6.0.13
+ cssnano-utils: 5.0.0(postcss@8.4.47)
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
- postcss-minify-font-values@6.0.0(postcss@8.4.40):
+ postcss-minify-font-values@7.0.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-minify-gradients@6.0.0(postcss@8.4.40):
+ postcss-minify-gradients@7.0.0(postcss@8.4.47):
dependencies:
colord: 2.9.3
- cssnano-utils: 4.0.0(postcss@8.4.40)
- postcss: 8.4.40
+ cssnano-utils: 5.0.0(postcss@8.4.47)
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-minify-params@6.0.0(postcss@8.4.40):
+ postcss-minify-params@7.0.2(postcss@8.4.47):
dependencies:
- browserslist: 4.22.1
- cssnano-utils: 4.0.0(postcss@8.4.40)
- postcss: 8.4.40
+ browserslist: 4.23.3
+ cssnano-utils: 5.0.0(postcss@8.4.47)
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-minify-selectors@6.0.0(postcss@8.4.40):
+ postcss-minify-selectors@7.0.4(postcss@8.4.47):
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.0.13
+ cssesc: 3.0.0
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
- postcss-normalize-charset@6.0.0(postcss@8.4.40):
+ postcss-normalize-charset@7.0.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.47
- postcss-normalize-display-values@6.0.0(postcss@8.4.40):
+ postcss-normalize-display-values@7.0.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-positions@6.0.0(postcss@8.4.40):
+ postcss-normalize-positions@7.0.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-repeat-style@6.0.0(postcss@8.4.40):
+ postcss-normalize-repeat-style@7.0.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-string@6.0.0(postcss@8.4.40):
+ postcss-normalize-string@7.0.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-timing-functions@6.0.0(postcss@8.4.40):
+ postcss-normalize-timing-functions@7.0.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-unicode@6.0.0(postcss@8.4.40):
+ postcss-normalize-unicode@7.0.2(postcss@8.4.47):
dependencies:
- browserslist: 4.22.1
- postcss: 8.4.40
+ browserslist: 4.23.3
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-url@6.0.0(postcss@8.4.40):
+ postcss-normalize-url@7.0.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-whitespace@6.0.0(postcss@8.4.40):
+ postcss-normalize-whitespace@7.0.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-ordered-values@6.0.0(postcss@8.4.40):
+ postcss-ordered-values@7.0.1(postcss@8.4.47):
dependencies:
- cssnano-utils: 4.0.0(postcss@8.4.40)
- postcss: 8.4.40
+ cssnano-utils: 5.0.0(postcss@8.4.47)
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-reduce-initial@6.0.0(postcss@8.4.40):
+ postcss-reduce-initial@7.0.2(postcss@8.4.47):
dependencies:
- browserslist: 4.22.1
+ browserslist: 4.23.3
caniuse-api: 3.0.0
- postcss: 8.4.40
+ postcss: 8.4.47
- postcss-reduce-transforms@6.0.0(postcss@8.4.40):
+ postcss-reduce-transforms@7.0.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-selector-parser@6.0.13:
- dependencies:
- cssesc: 3.0.0
- util-deprecate: 1.0.2
-
- postcss-selector-parser@6.0.16:
+ postcss-selector-parser@6.1.2:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-svgo@6.0.0(postcss@8.4.40):
+ postcss-svgo@7.0.1(postcss@8.4.47):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- svgo: 3.0.5
+ svgo: 3.3.2
- postcss-unique-selectors@6.0.0(postcss@8.4.40):
+ postcss-unique-selectors@7.0.3(postcss@8.4.47):
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.0.13
-
- postcss-url@10.1.3(postcss@8.4.40):
- dependencies:
- make-dir: 3.1.0
- mime: 2.5.2
- minimatch: 3.0.8
- postcss: 8.4.40
- xxhashjs: 0.2.2
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
postcss-value-parser@4.2.0: {}
- postcss@8.4.38:
+ postcss@8.4.47:
dependencies:
nanoid: 3.3.7
- picocolors: 1.0.1
- source-map-js: 1.2.0
+ picocolors: 1.1.0
+ source-map-js: 1.2.1
- postcss@8.4.40:
+ postprocessing@6.36.2(three@0.167.1):
dependencies:
- nanoid: 3.3.7
- picocolors: 1.0.1
- source-map-js: 1.2.0
-
- postprocessing@6.36.0(three@0.167.0):
- dependencies:
- three: 0.167.0
+ three: 0.167.1
potpack@1.0.2: {}
- preact@10.19.2: {}
-
- preact@10.23.1: {}
+ preact@10.24.0: {}
prelude-ls@1.2.1: {}
@@ -13417,18 +11821,20 @@ snapshots:
dependencies:
fast-diff: 1.3.0
- prettier@3.2.5: {}
+ prettier@3.3.3: {}
pretty-bytes@6.1.1: {}
process-nextick-args@2.0.1: {}
+ process@0.11.10: {}
+
prompts@2.4.2:
dependencies:
kleur: 3.0.3
sisteransi: 1.0.5
- property-information@6.4.0: {}
+ property-information@6.5.0: {}
proto-list@1.2.4: {}
@@ -13437,7 +11843,7 @@ snapshots:
proxy-agent@6.4.0:
dependencies:
agent-base: 7.1.1
- debug: 4.3.5
+ debug: 4.3.7
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.5
lru-cache: 7.18.3
@@ -13449,8 +11855,6 @@ snapshots:
proxy-from-env@1.1.0: {}
- prr@1.0.1: {}
-
punycode@2.3.1: {}
pupa@3.1.0:
@@ -13465,7 +11869,7 @@ snapshots:
quick-lru@5.1.1: {}
- radix3@1.1.0: {}
+ radix3@1.1.2: {}
randombytes@2.1.0:
dependencies:
@@ -13473,12 +11877,6 @@ snapshots:
range-parser@1.2.1: {}
- rc9@2.1.1:
- dependencies:
- defu: 6.1.3
- destr: 2.0.2
- flat: 5.0.2
-
rc9@2.1.2:
dependencies:
defu: 6.1.4
@@ -13491,15 +11889,11 @@ snapshots:
minimist: 1.2.8
strip-json-comments: 2.0.1
- read-cache@1.0.0:
- dependencies:
- pify: 2.3.0
-
read-pkg-up@10.1.0:
dependencies:
find-up: 6.3.0
read-pkg: 8.1.0
- type-fest: 4.7.1
+ type-fest: 4.26.1
read-pkg-up@7.0.1:
dependencies:
@@ -13509,7 +11903,7 @@ snapshots:
read-pkg@5.2.0:
dependencies:
- '@types/normalize-package-data': 2.4.3
+ '@types/normalize-package-data': 2.4.4
normalize-package-data: 2.5.0
parse-json: 5.2.0
type-fest: 0.6.0
@@ -13517,9 +11911,9 @@ snapshots:
read-pkg@8.1.0:
dependencies:
'@types/normalize-package-data': 2.4.4
- normalize-package-data: 6.0.0
+ normalize-package-data: 6.0.2
parse-json: 7.1.1
- type-fest: 4.7.1
+ type-fest: 4.26.1
readable-stream@1.0.34:
dependencies:
@@ -13544,6 +11938,14 @@ snapshots:
string_decoder: 1.3.0
util-deprecate: 1.0.2
+ readable-stream@4.5.2:
+ dependencies:
+ abort-controller: 3.0.0
+ buffer: 6.0.3
+ events: 3.3.0
+ process: 0.11.10
+ string_decoder: 1.3.0
+
readdir-glob@1.1.3:
dependencies:
minimatch: 5.1.6
@@ -13564,18 +11966,20 @@ snapshots:
refa@0.12.1:
dependencies:
- '@eslint-community/regexpp': 4.11.0
+ '@eslint-community/regexpp': 4.11.1
+
+ regex@4.3.2: {}
regexp-ast-analysis@0.7.1:
dependencies:
- '@eslint-community/regexpp': 4.11.0
+ '@eslint-community/regexpp': 4.11.1
refa: 0.12.1
regexp-tree@0.1.27: {}
registry-auth-token@5.0.2:
dependencies:
- '@pnpm/npm-conf': 2.2.2
+ '@pnpm/npm-conf': 2.3.1
registry-url@6.0.1:
dependencies:
@@ -13585,13 +11989,13 @@ snapshots:
dependencies:
jsesc: 0.5.0
- release-it@17.6.0(typescript@5.5.4):
+ release-it@17.6.0(typescript@5.6.2):
dependencies:
'@iarna/toml': 2.2.5
'@octokit/rest': 20.1.1
async-retry: 1.3.3
chalk: 5.3.0
- cosmiconfig: 9.0.0(typescript@5.5.4)
+ cosmiconfig: 9.0.0(typescript@5.6.2)
execa: 8.0.1
git-url-parse: 14.0.0
globby: 14.0.2
@@ -13631,7 +12035,7 @@ snapshots:
resolve@1.22.8:
dependencies:
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -13661,48 +12065,35 @@ snapshots:
rollup-plugin-analyzer@4.0.0: {}
- rollup-plugin-visualizer@5.12.0(rollup@3.29.4):
- dependencies:
- open: 8.4.2
- picomatch: 2.3.1
- source-map: 0.7.4
- yargs: 17.7.2
- optionalDependencies:
- rollup: 3.29.4
-
- rollup-plugin-visualizer@5.12.0(rollup@4.19.0):
+ rollup-plugin-visualizer@5.12.0(rollup@4.22.4):
dependencies:
open: 8.4.2
picomatch: 2.3.1
source-map: 0.7.4
yargs: 17.7.2
optionalDependencies:
- rollup: 4.19.0
-
- rollup@3.29.4:
- optionalDependencies:
- fsevents: 2.3.3
+ rollup: 4.22.4
- rollup@4.19.0:
+ rollup@4.22.4:
dependencies:
'@types/estree': 1.0.5
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.19.0
- '@rollup/rollup-android-arm64': 4.19.0
- '@rollup/rollup-darwin-arm64': 4.19.0
- '@rollup/rollup-darwin-x64': 4.19.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.19.0
- '@rollup/rollup-linux-arm-musleabihf': 4.19.0
- '@rollup/rollup-linux-arm64-gnu': 4.19.0
- '@rollup/rollup-linux-arm64-musl': 4.19.0
- '@rollup/rollup-linux-powerpc64le-gnu': 4.19.0
- '@rollup/rollup-linux-riscv64-gnu': 4.19.0
- '@rollup/rollup-linux-s390x-gnu': 4.19.0
- '@rollup/rollup-linux-x64-gnu': 4.19.0
- '@rollup/rollup-linux-x64-musl': 4.19.0
- '@rollup/rollup-win32-arm64-msvc': 4.19.0
- '@rollup/rollup-win32-ia32-msvc': 4.19.0
- '@rollup/rollup-win32-x64-msvc': 4.19.0
+ '@rollup/rollup-android-arm-eabi': 4.22.4
+ '@rollup/rollup-android-arm64': 4.22.4
+ '@rollup/rollup-darwin-arm64': 4.22.4
+ '@rollup/rollup-darwin-x64': 4.22.4
+ '@rollup/rollup-linux-arm-gnueabihf': 4.22.4
+ '@rollup/rollup-linux-arm-musleabihf': 4.22.4
+ '@rollup/rollup-linux-arm64-gnu': 4.22.4
+ '@rollup/rollup-linux-arm64-musl': 4.22.4
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.22.4
+ '@rollup/rollup-linux-riscv64-gnu': 4.22.4
+ '@rollup/rollup-linux-s390x-gnu': 4.22.4
+ '@rollup/rollup-linux-x64-gnu': 4.22.4
+ '@rollup/rollup-linux-x64-musl': 4.22.4
+ '@rollup/rollup-win32-arm64-msvc': 4.22.4
+ '@rollup/rollup-win32-ia32-msvc': 4.22.4
+ '@rollup/rollup-win32-x64-msvc': 4.22.4
fsevents: 2.3.3
run-applescript@7.0.0: {}
@@ -13715,7 +12106,7 @@ snapshots:
rxjs@7.8.1:
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
safe-buffer@5.1.2: {}
@@ -13725,15 +12116,13 @@ snapshots:
scslre@0.3.0:
dependencies:
- '@eslint-community/regexpp': 4.11.0
+ '@eslint-community/regexpp': 4.11.1
refa: 0.12.1
regexp-ast-analysis: 0.7.1
- scule@1.0.0: {}
-
scule@1.3.0: {}
- search-insights@2.15.0: {}
+ search-insights@2.17.2: {}
semver-diff@4.0.0:
dependencies:
@@ -13751,7 +12140,7 @@ snapshots:
semver@7.6.3: {}
- send@0.18.0:
+ send@0.19.0:
dependencies:
debug: 2.6.9
depd: 2.0.0
@@ -13769,20 +12158,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
- serialize-javascript@6.0.1:
+ serialize-javascript@6.0.2:
dependencies:
randombytes: 2.1.0
- serve-placeholder@2.0.1:
+ serve-placeholder@2.0.2:
dependencies:
- defu: 6.1.3
+ defu: 6.1.4
- serve-static@1.15.0:
+ serve-static@1.16.2:
dependencies:
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
parseurl: 1.3.3
- send: 0.18.0
+ send: 0.19.0
transitivePeerDependencies:
- supports-color
@@ -13804,9 +12193,13 @@ snapshots:
interpret: 1.4.0
rechoir: 0.6.2
- shiki@1.11.2:
+ shiki@1.18.0:
dependencies:
- '@shikijs/core': 1.11.2
+ '@shikijs/core': 1.18.0
+ '@shikijs/engine-javascript': 1.18.0
+ '@shikijs/engine-oniguruma': 1.18.0
+ '@shikijs/types': 1.18.0
+ '@shikijs/vscode-textmate': 9.2.2
'@types/hast': 3.0.4
shikiji-transformers@0.7.6:
@@ -13815,48 +12208,42 @@ snapshots:
shikiji@0.7.6:
dependencies:
- hast-util-to-html: 9.0.0
+ hast-util-to-html: 9.0.3
signal-exit@3.0.7: {}
signal-exit@4.1.0: {}
- simple-git@3.25.0:
+ simple-git@3.27.0:
dependencies:
'@kwsites/file-exists': 1.1.1
'@kwsites/promise-deferred': 1.1.1
- debug: 4.3.5
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
- sirv@2.0.3:
- dependencies:
- '@polka/url': 1.0.0-next.23
- mrmime: 1.0.1
- totalist: 3.0.1
-
sirv@2.0.4:
dependencies:
- '@polka/url': 1.0.0-next.25
+ '@polka/url': 1.0.0-next.28
mrmime: 2.0.0
totalist: 3.0.1
sisteransi@1.0.5: {}
- slash@3.0.0: {}
-
slash@4.0.0: {}
slash@5.1.0: {}
+ slashes@3.0.12: {}
+
smart-buffer@4.2.0: {}
- smob@1.4.1: {}
+ smob@1.5.0: {}
socks-proxy-agent@8.0.4:
dependencies:
agent-base: 7.1.1
- debug: 4.3.5
+ debug: 4.3.7
socks: 2.8.3
transitivePeerDependencies:
- supports-color
@@ -13866,9 +12253,7 @@ snapshots:
ip-address: 9.0.5
smart-buffer: 4.2.0
- source-map-js@1.0.2: {}
-
- source-map-js@1.2.0: {}
+ source-map-js@1.2.1: {}
source-map-support@0.5.21:
dependencies:
@@ -13884,21 +12269,21 @@ snapshots:
spdx-correct@3.2.0:
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.16
+ spdx-license-ids: 3.0.20
- spdx-exceptions@2.3.0: {}
+ spdx-exceptions@2.5.0: {}
spdx-expression-parse@3.0.1:
dependencies:
- spdx-exceptions: 2.3.0
- spdx-license-ids: 3.0.16
+ spdx-exceptions: 2.5.0
+ spdx-license-ids: 3.0.20
spdx-expression-parse@4.0.0:
dependencies:
- spdx-exceptions: 2.3.0
- spdx-license-ids: 3.0.16
+ spdx-exceptions: 2.5.0
+ spdx-license-ids: 3.0.20
- spdx-license-ids@3.0.16: {}
+ spdx-license-ids@3.0.20: {}
speakingurl@14.0.1: {}
@@ -13908,11 +12293,9 @@ snapshots:
sprintf-js@1.1.3: {}
- standard-as-callback@2.1.0: {}
-
- stats-gl@1.0.5: {}
+ stable-hash@0.0.4: {}
- stats-gl@1.0.7: {}
+ standard-as-callback@2.1.0: {}
stats-gl@2.2.8:
dependencies:
@@ -13922,16 +12305,17 @@ snapshots:
statuses@2.0.1: {}
- std-env@3.4.3: {}
-
std-env@3.7.0: {}
stdin-discarder@0.2.2: {}
- streamx@2.15.1:
+ streamx@2.20.1:
dependencies:
fast-fifo: 1.3.2
queue-tick: 1.0.1
+ text-decoder: 1.2.0
+ optionalDependencies:
+ bare-events: 2.4.2
string-argv@0.3.2: {}
@@ -13949,7 +12333,7 @@ snapshots:
string-width@7.2.0:
dependencies:
- emoji-regex: 10.3.0
+ emoji-regex: 10.4.0
get-east-asian-width: 1.2.0
strip-ansi: 7.1.0
@@ -13963,7 +12347,7 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
- stringify-entities@4.0.3:
+ stringify-entities@4.0.4:
dependencies:
character-entities-html4: 2.1.0
character-entities-legacy: 3.0.0
@@ -13974,7 +12358,7 @@ snapshots:
strip-ansi@7.1.0:
dependencies:
- ansi-regex: 6.0.1
+ ansi-regex: 6.1.0
strip-final-newline@2.0.0: {}
@@ -13988,19 +12372,15 @@ snapshots:
strip-json-comments@3.1.1: {}
- strip-literal@1.3.0:
- dependencies:
- acorn: 8.10.0
-
strip-literal@2.1.0:
dependencies:
js-tokens: 9.0.0
- stylehacks@6.0.0(postcss@8.4.40):
+ stylehacks@7.0.4(postcss@8.4.47):
dependencies:
- browserslist: 4.22.1
- postcss: 8.4.40
- postcss-selector-parser: 6.0.13
+ browserslist: 4.23.3
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
superjson@2.2.1:
dependencies:
@@ -14024,7 +12404,7 @@ snapshots:
svg-tags@1.0.0: {}
- svgo@3.0.5:
+ svgo@3.3.2:
dependencies:
'@trysound/sax': 0.2.0
commander: 7.2.0
@@ -14032,30 +12412,30 @@ snapshots:
css-tree: 2.3.1
css-what: 6.1.0
csso: 5.0.5
- picocolors: 1.0.0
+ picocolors: 1.1.0
synckit@0.6.2:
dependencies:
- tslib: 2.6.2
+ tslib: 2.7.0
- synckit@0.9.0:
+ synckit@0.9.1:
dependencies:
'@pkgr/core': 0.1.1
- tslib: 2.6.2
+ tslib: 2.7.0
- tabbable@6.2.0: {}
+ system-architecture@0.1.0: {}
- tapable@1.1.3: {}
+ tabbable@6.2.0: {}
tapable@2.2.1: {}
- tar-stream@3.1.6:
+ tar-stream@3.1.7:
dependencies:
- b4a: 1.6.4
+ b4a: 1.6.6
fast-fifo: 1.3.2
- streamx: 2.15.1
+ streamx: 2.20.1
- tar@6.2.0:
+ tar@6.2.1:
dependencies:
chownr: 2.0.0
fs-minipass: 2.1.0
@@ -14064,44 +12444,40 @@ snapshots:
mkdirp: 1.0.4
yallist: 4.0.0
- terser@5.22.0:
+ terser@5.33.0:
dependencies:
- '@jridgewell/source-map': 0.3.5
+ '@jridgewell/source-map': 0.3.6
acorn: 8.12.1
commander: 2.20.3
source-map-support: 0.5.21
- terser@5.31.3:
+ text-decoder@1.2.0:
dependencies:
- '@jridgewell/source-map': 0.3.6
- acorn: 8.12.1
- commander: 2.20.3
- source-map-support: 0.5.21
- optional: true
+ b4a: 1.6.6
text-extensions@2.4.0: {}
text-table@0.2.0: {}
- three-custom-shader-material@5.4.0(three@0.167.0):
+ three-custom-shader-material@5.4.0(three@0.167.1):
dependencies:
glsl-token-functions: 1.0.1
glsl-token-string: 1.0.1
glsl-tokenizer: 2.1.5
object-hash: 3.0.0
- three: 0.167.0
+ three: 0.167.1
- three-stdlib@2.30.5(three@0.167.0):
+ three-stdlib@2.33.0(three@0.167.1):
dependencies:
'@types/draco3d': 1.4.10
'@types/offscreencanvas': 2019.7.3
- '@types/webxr': 0.5.19
+ '@types/webxr': 0.5.20
draco3d: 1.5.7
fflate: 0.6.10
potpack: 1.0.2
- three: 0.167.0
+ three: 0.167.1
- three@0.167.0: {}
+ three@0.167.1: {}
through2@0.6.5:
dependencies:
@@ -14110,7 +12486,14 @@ snapshots:
through@2.3.8: {}
- tiny-invariant@1.3.1: {}
+ tiny-invariant@1.3.3: {}
+
+ tinyexec@0.3.0: {}
+
+ tinyglobby@0.2.6:
+ dependencies:
+ fdir: 6.3.0(picomatch@4.0.2)
+ picomatch: 4.0.2
tmp@0.0.33:
dependencies:
@@ -14124,7 +12507,7 @@ snapshots:
toidentifier@1.0.1: {}
- toml-eslint-parser@0.9.3:
+ toml-eslint-parser@0.10.0:
dependencies:
eslint-visitor-keys: 3.4.3
@@ -14134,13 +12517,18 @@ snapshots:
trim-lines@3.0.1: {}
- ts-api-utils@1.3.0(typescript@5.5.4):
+ ts-api-utils@1.3.0(typescript@5.6.2):
dependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
- tslib@2.6.2: {}
+ tslib@2.7.0: {}
- tslib@2.6.3: {}
+ tsx@4.19.1:
+ dependencies:
+ esbuild: 0.23.1
+ get-tsconfig: 4.8.1
+ optionalDependencies:
+ fsevents: 2.3.3
tweakpane@4.0.4: {}
@@ -14148,8 +12536,6 @@ snapshots:
dependencies:
prelude-ls: 1.2.1
- type-detect@4.0.8: {}
-
type-fest@0.20.2: {}
type-fest@0.21.3: {}
@@ -14164,7 +12550,7 @@ snapshots:
type-fest@3.13.1: {}
- type-fest@4.7.1: {}
+ type-fest@4.26.1: {}
typedarray-to-buffer@3.1.5:
dependencies:
@@ -14174,25 +12560,14 @@ snapshots:
typescript@5.4.2: {}
- typescript@5.5.4: {}
-
- ufo@1.3.1: {}
-
- ufo@1.5.3: {}
+ typescript@5.6.2: {}
ufo@1.5.4: {}
- uglify-js@3.17.4:
+ uglify-js@3.19.3:
optional: true
- ultrahtml@1.5.2: {}
-
- unconfig@0.3.11:
- dependencies:
- '@antfu/utils': 0.7.8
- defu: 6.1.3
- jiti: 1.21.0
- mlly: 1.7.0
+ ultrahtml@1.5.3: {}
unconfig@0.3.13:
dependencies:
@@ -14200,108 +12575,66 @@ snapshots:
defu: 6.1.4
jiti: 1.21.6
+ unconfig@0.5.5:
+ dependencies:
+ '@antfu/utils': 0.7.10
+ defu: 6.1.4
+ importx: 0.4.4
+ transitivePeerDependencies:
+ - supports-color
+
uncrypto@0.1.3: {}
unctx@2.3.1:
dependencies:
- acorn: 8.10.0
+ acorn: 8.12.1
estree-walker: 3.0.3
- magic-string: 0.30.5
- unplugin: 1.5.0
+ magic-string: 0.30.11
+ unplugin: 1.14.1
+ transitivePeerDependencies:
+ - webpack-sources
- undici-types@5.26.5: {}
+ undici-types@6.19.8: {}
- undici@5.27.0:
+ undici@5.28.4:
dependencies:
- '@fastify/busboy': 2.0.0
+ '@fastify/busboy': 2.1.1
- unenv@1.7.4:
+ unenv@1.10.0:
dependencies:
consola: 3.2.3
- defu: 6.1.3
+ defu: 6.1.4
mime: 3.0.0
- node-fetch-native: 1.4.0
+ node-fetch-native: 1.6.4
pathe: 1.1.2
- unhead@1.7.4:
+ unhead@1.11.6:
dependencies:
- '@unhead/dom': 1.7.4
- '@unhead/schema': 1.7.4
- '@unhead/shared': 1.7.4
+ '@unhead/dom': 1.11.6
+ '@unhead/schema': 1.11.6
+ '@unhead/shared': 1.11.6
hookable: 5.5.3
unicorn-magic@0.1.0: {}
- unimport@3.4.0(rollup@3.29.4):
- dependencies:
- '@rollup/pluginutils': 5.0.5(rollup@3.29.4)
- escape-string-regexp: 5.0.0
- fast-glob: 3.3.1
- local-pkg: 0.4.3
- magic-string: 0.30.5
- mlly: 1.4.2
- pathe: 1.1.2
- pkg-types: 1.0.3
- scule: 1.0.0
- strip-literal: 1.3.0
- unplugin: 1.5.0
- transitivePeerDependencies:
- - rollup
-
- unimport@3.7.1(rollup@4.19.0):
- dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.19.0)
- acorn: 8.11.3
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- fast-glob: 3.3.2
- local-pkg: 0.5.0
- magic-string: 0.30.10
- mlly: 1.7.0
- pathe: 1.1.2
- pkg-types: 1.1.1
- scule: 1.3.0
- strip-literal: 1.3.0
- unplugin: 1.10.1
- transitivePeerDependencies:
- - rollup
-
- unimport@3.7.2(rollup@3.29.4):
- dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@3.29.4)
- acorn: 8.11.3
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- fast-glob: 3.3.2
- local-pkg: 0.5.0
- magic-string: 0.30.10
- mlly: 1.7.0
- pathe: 1.1.2
- pkg-types: 1.1.3
- scule: 1.3.0
- strip-literal: 2.1.0
- unplugin: 1.10.1
- transitivePeerDependencies:
- - rollup
-
- unimport@3.9.0(rollup@4.19.0):
+ unimport@3.12.0(rollup@4.22.4):
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.19.0)
+ '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
acorn: 8.12.1
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
fast-glob: 3.3.2
local-pkg: 0.5.0
- magic-string: 0.30.10
+ magic-string: 0.30.11
mlly: 1.7.1
pathe: 1.1.2
- pkg-types: 1.1.3
+ pkg-types: 1.2.0
scule: 1.3.0
strip-literal: 2.1.0
- unplugin: 1.12.0
+ unplugin: 1.14.1
transitivePeerDependencies:
- rollup
- optional: true
+ - webpack-sources
unique-string@3.0.0:
dependencies:
@@ -14309,28 +12642,24 @@ snapshots:
unist-util-is@6.0.0:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-position@5.0.0:
dependencies:
- '@types/unist': 3.0.2
-
- unist-util-stringify-position@2.0.3:
- dependencies:
- '@types/unist': 2.0.9
+ '@types/unist': 3.0.3
unist-util-stringify-position@4.0.0:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-visit-parents@6.0.1:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-is: 6.0.0
unist-util-visit@5.0.0:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-is: 6.0.0
unist-util-visit-parents: 6.0.1
@@ -14338,211 +12667,181 @@ snapshots:
universalify@0.1.2: {}
- universalify@2.0.0: {}
-
- unocss@0.58.0(postcss@8.4.40)(rollup@4.19.0)(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3)):
- dependencies:
- '@unocss/astro': 0.58.0(rollup@4.19.0)(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))
- '@unocss/cli': 0.58.0(rollup@4.19.0)
- '@unocss/core': 0.58.0
- '@unocss/extractor-arbitrary-variants': 0.58.0
- '@unocss/postcss': 0.58.0(postcss@8.4.40)
- '@unocss/preset-attributify': 0.58.0
- '@unocss/preset-icons': 0.58.0
- '@unocss/preset-mini': 0.58.0
- '@unocss/preset-tagify': 0.58.0
- '@unocss/preset-typography': 0.58.0
- '@unocss/preset-uno': 0.58.0
- '@unocss/preset-web-fonts': 0.58.0
- '@unocss/preset-wind': 0.58.0
- '@unocss/reset': 0.58.0
- '@unocss/transformer-attributify-jsx': 0.58.0
- '@unocss/transformer-attributify-jsx-babel': 0.58.0
- '@unocss/transformer-compile-class': 0.58.0
- '@unocss/transformer-directives': 0.58.0
- '@unocss/transformer-variant-group': 0.58.0
- '@unocss/vite': 0.58.0(rollup@4.19.0)(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))
+ universalify@2.0.1: {}
+
+ unocss@0.58.9(postcss@8.4.47)(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0)):
+ dependencies:
+ '@unocss/astro': 0.58.9(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))
+ '@unocss/cli': 0.58.9(rollup@4.22.4)
+ '@unocss/core': 0.58.9
+ '@unocss/extractor-arbitrary-variants': 0.58.9
+ '@unocss/postcss': 0.58.9(postcss@8.4.47)
+ '@unocss/preset-attributify': 0.58.9
+ '@unocss/preset-icons': 0.58.9
+ '@unocss/preset-mini': 0.58.9
+ '@unocss/preset-tagify': 0.58.9
+ '@unocss/preset-typography': 0.58.9
+ '@unocss/preset-uno': 0.58.9
+ '@unocss/preset-web-fonts': 0.58.9
+ '@unocss/preset-wind': 0.58.9
+ '@unocss/reset': 0.58.9
+ '@unocss/transformer-attributify-jsx': 0.58.9
+ '@unocss/transformer-attributify-jsx-babel': 0.58.9
+ '@unocss/transformer-compile-class': 0.58.9
+ '@unocss/transformer-directives': 0.58.9
+ '@unocss/transformer-variant-group': 0.58.9
+ '@unocss/vite': 0.58.9(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))
optionalDependencies:
- vite: 5.3.5(@types/node@20.14.12)(terser@5.31.3)
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
transitivePeerDependencies:
- postcss
- rollup
- supports-color
- unocss@0.61.5(postcss@8.4.40)(rollup@4.19.0)(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3)):
- dependencies:
- '@unocss/astro': 0.61.5(rollup@4.19.0)(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))
- '@unocss/cli': 0.61.5(rollup@4.19.0)
- '@unocss/core': 0.61.5
- '@unocss/extractor-arbitrary-variants': 0.61.5
- '@unocss/postcss': 0.61.5(postcss@8.4.40)
- '@unocss/preset-attributify': 0.61.5
- '@unocss/preset-icons': 0.61.5
- '@unocss/preset-mini': 0.61.5
- '@unocss/preset-tagify': 0.61.5
- '@unocss/preset-typography': 0.61.5
- '@unocss/preset-uno': 0.61.5
- '@unocss/preset-web-fonts': 0.61.5
- '@unocss/preset-wind': 0.61.5
- '@unocss/reset': 0.61.5
- '@unocss/transformer-attributify-jsx': 0.61.5
- '@unocss/transformer-attributify-jsx-babel': 0.61.5
- '@unocss/transformer-compile-class': 0.61.5
- '@unocss/transformer-directives': 0.61.5
- '@unocss/transformer-variant-group': 0.61.5
- '@unocss/vite': 0.61.5(rollup@4.19.0)(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))
+ unocss@0.61.9(postcss@8.4.47)(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0)):
+ dependencies:
+ '@unocss/astro': 0.61.9(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))
+ '@unocss/cli': 0.61.9(rollup@4.22.4)
+ '@unocss/core': 0.61.9
+ '@unocss/extractor-arbitrary-variants': 0.61.9
+ '@unocss/postcss': 0.61.9(postcss@8.4.47)
+ '@unocss/preset-attributify': 0.61.9
+ '@unocss/preset-icons': 0.61.9
+ '@unocss/preset-mini': 0.61.9
+ '@unocss/preset-tagify': 0.61.9
+ '@unocss/preset-typography': 0.61.9
+ '@unocss/preset-uno': 0.61.9
+ '@unocss/preset-web-fonts': 0.61.9
+ '@unocss/preset-wind': 0.61.9
+ '@unocss/reset': 0.61.9
+ '@unocss/transformer-attributify-jsx': 0.61.9
+ '@unocss/transformer-attributify-jsx-babel': 0.61.9
+ '@unocss/transformer-compile-class': 0.61.9
+ '@unocss/transformer-directives': 0.61.9
+ '@unocss/transformer-variant-group': 0.61.9
+ '@unocss/vite': 0.61.9(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))
optionalDependencies:
- vite: 5.3.5(@types/node@20.14.12)(terser@5.31.3)
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
transitivePeerDependencies:
- postcss
- rollup
- supports-color
- unplugin-auto-import@0.17.6(@nuxt/kit@3.12.4(rollup@4.19.0))(@vueuse/core@10.11.0(vue@3.4.34(typescript@5.5.4)))(rollup@4.19.0):
+ unplugin-auto-import@0.17.8(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.22.4))(@vueuse/core@11.1.0(vue@3.5.8(typescript@5.6.2)))(rollup@4.22.4):
dependencies:
- '@antfu/utils': 0.7.8
- '@rollup/pluginutils': 5.1.0(rollup@4.19.0)
+ '@antfu/utils': 0.7.10
+ '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
fast-glob: 3.3.2
local-pkg: 0.5.0
- magic-string: 0.30.10
- minimatch: 9.0.4
- unimport: 3.7.1(rollup@4.19.0)
- unplugin: 1.10.1
+ magic-string: 0.30.11
+ minimatch: 9.0.5
+ unimport: 3.12.0(rollup@4.22.4)
+ unplugin: 1.14.1
optionalDependencies:
- '@nuxt/kit': 3.12.4(rollup@4.19.0)
- '@vueuse/core': 10.11.0(vue@3.4.34(typescript@5.5.4))
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.22.4)
+ '@vueuse/core': 11.1.0(vue@3.5.8(typescript@5.6.2))
transitivePeerDependencies:
- rollup
+ - webpack-sources
- unplugin-vue-components@0.26.0(@babel/parser@7.24.8)(@nuxt/kit@3.12.4(rollup@4.19.0))(rollup@4.19.0)(vue@3.4.34(typescript@5.5.4)):
+ unplugin-vue-components@0.26.0(@babel/parser@7.25.6)(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.22.4))(rollup@4.22.4)(vue@3.5.8(typescript@5.6.2)):
dependencies:
- '@antfu/utils': 0.7.6
- '@rollup/pluginutils': 5.1.0(rollup@4.19.0)
- chokidar: 3.5.3
- debug: 4.3.4
+ '@antfu/utils': 0.7.10
+ '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
+ chokidar: 3.6.0
+ debug: 4.3.7
fast-glob: 3.3.2
local-pkg: 0.4.3
- magic-string: 0.30.5
- minimatch: 9.0.3
+ magic-string: 0.30.11
+ minimatch: 9.0.5
resolve: 1.22.8
- unplugin: 1.5.1
- vue: 3.4.34(typescript@5.5.4)
+ unplugin: 1.14.1
+ vue: 3.5.8(typescript@5.6.2)
optionalDependencies:
- '@babel/parser': 7.24.8
- '@nuxt/kit': 3.12.4(rollup@4.19.0)
+ '@babel/parser': 7.25.6
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.22.4)
transitivePeerDependencies:
- rollup
- supports-color
+ - webpack-sources
- unplugin-vue-components@0.27.0(@babel/parser@7.24.8)(@nuxt/kit@3.12.4(rollup@4.19.0))(rollup@4.19.0)(vue@3.4.34(typescript@5.5.4)):
+ unplugin-vue-components@0.27.4(@babel/parser@7.25.6)(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.22.4))(rollup@4.22.4)(vue@3.5.8(typescript@5.6.2)):
dependencies:
- '@antfu/utils': 0.7.8
- '@rollup/pluginutils': 5.1.0(rollup@4.19.0)
+ '@antfu/utils': 0.7.10
+ '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
chokidar: 3.6.0
- debug: 4.3.4
+ debug: 4.3.7
fast-glob: 3.3.2
local-pkg: 0.5.0
- magic-string: 0.30.10
- minimatch: 9.0.4
- resolve: 1.22.8
- unplugin: 1.10.1
- vue: 3.4.34(typescript@5.5.4)
+ magic-string: 0.30.11
+ minimatch: 9.0.5
+ mlly: 1.7.1
+ unplugin: 1.14.1
+ vue: 3.5.8(typescript@5.6.2)
optionalDependencies:
- '@babel/parser': 7.24.8
- '@nuxt/kit': 3.12.4(rollup@4.19.0)
+ '@babel/parser': 7.25.6
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.22.4)
transitivePeerDependencies:
- rollup
- supports-color
+ - webpack-sources
- unplugin-vue-router@0.7.0(rollup@3.29.4)(vue-router@4.2.5(vue@3.4.27(typescript@5.5.4)))(vue@3.4.27(typescript@5.5.4)):
+ unplugin-vue-router@0.10.8(rollup@4.22.4)(vue-router@4.4.5(vue@3.5.8(typescript@5.6.2)))(vue@3.5.8(typescript@5.6.2)):
dependencies:
- '@babel/types': 7.23.0
- '@rollup/pluginutils': 5.0.5(rollup@3.29.4)
- '@vue-macros/common': 1.8.0(rollup@3.29.4)(vue@3.4.27(typescript@5.5.4))
- ast-walker-scope: 0.5.0(rollup@3.29.4)
- chokidar: 3.5.3
- fast-glob: 3.3.1
+ '@babel/types': 7.25.6
+ '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
+ '@vue-macros/common': 1.14.0(rollup@4.22.4)(vue@3.5.8(typescript@5.6.2))
+ ast-walker-scope: 0.6.2
+ chokidar: 3.6.0
+ fast-glob: 3.3.2
json5: 2.2.3
- local-pkg: 0.4.3
- mlly: 1.4.2
+ local-pkg: 0.5.0
+ magic-string: 0.30.11
+ mlly: 1.7.1
pathe: 1.1.2
- scule: 1.0.0
- unplugin: 1.5.0
- yaml: 2.3.2
+ scule: 1.3.0
+ unplugin: 1.14.1
+ yaml: 2.5.1
optionalDependencies:
- vue-router: 4.2.5(vue@3.4.27(typescript@5.5.4))
+ vue-router: 4.4.5(vue@3.5.8(typescript@5.6.2))
transitivePeerDependencies:
- rollup
- vue
+ - webpack-sources
- unplugin@1.10.1:
- dependencies:
- acorn: 8.11.3
- chokidar: 3.6.0
- webpack-sources: 3.2.3
- webpack-virtual-modules: 0.6.1
-
- unplugin@1.12.0:
+ unplugin@1.14.1:
dependencies:
acorn: 8.12.1
- chokidar: 3.6.0
- webpack-sources: 3.2.3
webpack-virtual-modules: 0.6.2
- optional: true
-
- unplugin@1.5.0:
- dependencies:
- acorn: 8.11.2
- chokidar: 3.5.3
- webpack-sources: 3.2.3
- webpack-virtual-modules: 0.5.0
-
- unplugin@1.5.1:
- dependencies:
- acorn: 8.11.2
- chokidar: 3.5.3
- webpack-sources: 3.2.3
- webpack-virtual-modules: 0.6.1
- unstorage@1.9.0:
+ unstorage@1.12.0(ioredis@5.4.1):
dependencies:
anymatch: 3.1.3
- chokidar: 3.5.3
- destr: 2.0.2
- h3: 1.8.2
- ioredis: 5.3.2
- listhen: 1.5.5
+ chokidar: 3.6.0
+ destr: 2.0.3
+ h3: 1.12.0
+ listhen: 1.7.2
lru-cache: 10.4.3
mri: 1.2.0
- node-fetch-native: 1.4.0
- ofetch: 1.3.3
- ufo: 1.5.3
+ node-fetch-native: 1.6.4
+ ofetch: 1.4.0
+ ufo: 1.5.4
+ optionalDependencies:
+ ioredis: 5.4.1
transitivePeerDependencies:
- - supports-color
+ - uWebSockets.js
- untun@0.1.2:
+ untun@0.1.3:
dependencies:
- citty: 0.1.4
+ citty: 0.1.6
consola: 3.2.3
pathe: 1.1.2
- untyped@1.4.0:
- dependencies:
- '@babel/core': 7.23.2
- '@babel/standalone': 7.23.2
- '@babel/types': 7.23.0
- defu: 6.1.3
- jiti: 1.20.0
- mri: 1.2.0
- scule: 1.0.0
- transitivePeerDependencies:
- - supports-color
-
untyped@1.4.2:
dependencies:
- '@babel/core': 7.24.9
- '@babel/standalone': 7.24.8
- '@babel/types': 7.24.5
+ '@babel/core': 7.25.2
+ '@babel/standalone': 7.25.6
+ '@babel/types': 7.25.6
defu: 6.1.4
jiti: 1.21.6
mri: 1.2.0
@@ -14550,23 +12849,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
- update-browserslist-db@1.0.13(browserslist@4.22.1):
- dependencies:
- browserslist: 4.22.1
- escalade: 3.1.1
- picocolors: 1.0.1
-
- update-browserslist-db@1.0.13(browserslist@4.23.0):
+ unwasm@0.3.9:
dependencies:
- browserslist: 4.23.0
- escalade: 3.1.1
- picocolors: 1.0.1
+ knitwork: 1.1.0
+ magic-string: 0.30.11
+ mlly: 1.7.1
+ pathe: 1.1.2
+ pkg-types: 1.2.0
+ unplugin: 1.14.1
+ transitivePeerDependencies:
+ - webpack-sources
- update-browserslist-db@1.1.0(browserslist@4.23.2):
+ update-browserslist-db@1.1.0(browserslist@4.23.3):
dependencies:
- browserslist: 4.23.2
- escalade: 3.1.2
- picocolors: 1.0.1
+ browserslist: 4.23.3
+ escalade: 3.2.0
+ picocolors: 1.1.0
update-notifier@7.1.0:
dependencies:
@@ -14600,39 +12898,32 @@ snapshots:
spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
- vfile-location@5.0.2:
- dependencies:
- '@types/unist': 3.0.2
- vfile: 6.0.1
-
vfile-message@4.0.2:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-stringify-position: 4.0.0
- vfile@6.0.1:
+ vfile@6.0.3:
dependencies:
- '@types/unist': 3.0.2
- unist-util-stringify-position: 4.0.0
+ '@types/unist': 3.0.3
vfile-message: 4.0.2
- vite-hot-client@0.2.3(vite@4.5.3(@types/node@20.14.12)(terser@5.31.3)):
+ vite-hot-client@0.2.3(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0)):
dependencies:
- vite: 4.5.3(@types/node@20.14.12)(terser@5.31.3)
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
- vite-node@0.33.0(@types/node@20.14.12)(terser@5.31.3):
+ vite-node@2.1.1(@types/node@22.5.5)(terser@5.33.0):
dependencies:
cac: 6.7.14
- debug: 4.3.5
- mlly: 1.7.0
+ debug: 4.3.7
pathe: 1.1.2
- picocolors: 1.0.1
- vite: 4.5.3(@types/node@20.14.12)(terser@5.31.3)
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
transitivePeerDependencies:
- '@types/node'
- less
- lightningcss
- sass
+ - sass-embedded
- stylus
- sugarss
- supports-color
@@ -14640,138 +12931,125 @@ snapshots:
vite-plugin-banner@0.7.1: {}
- vite-plugin-checker@0.6.2(eslint@9.7.0)(optionator@0.9.4)(typescript@5.5.4)(vite@4.5.3(@types/node@20.14.12)(terser@5.31.3))(vue-tsc@2.0.29(typescript@5.5.4)):
+ vite-plugin-checker@0.8.0(eslint@9.11.0(jiti@1.21.6))(optionator@0.9.4)(typescript@5.6.2)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))(vue-tsc@2.1.6(typescript@5.6.2)):
dependencies:
- '@babel/code-frame': 7.22.13
+ '@babel/code-frame': 7.24.7
ansi-escapes: 4.3.2
chalk: 4.1.2
- chokidar: 3.5.3
+ chokidar: 3.6.0
commander: 8.3.0
fast-glob: 3.3.2
- fs-extra: 11.1.1
- lodash.debounce: 4.0.8
- lodash.pick: 4.4.0
+ fs-extra: 11.2.0
npm-run-path: 4.0.1
- semver: 7.6.3
strip-ansi: 6.0.1
- tiny-invariant: 1.3.1
- vite: 4.5.3(@types/node@20.14.12)(terser@5.31.3)
+ tiny-invariant: 1.3.3
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
- vscode-languageserver-textdocument: 1.0.11
+ vscode-languageserver-textdocument: 1.0.12
vscode-uri: 3.0.8
optionalDependencies:
- eslint: 9.7.0
+ eslint: 9.11.0(jiti@1.21.6)
optionator: 0.9.4
- typescript: 5.5.4
- vue-tsc: 2.0.29(typescript@5.5.4)
+ typescript: 5.6.2
+ vue-tsc: 2.1.6(typescript@5.6.2)
- vite-plugin-css-injected-by-js@3.3.0(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3)):
+ vite-plugin-css-injected-by-js@3.5.1(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0)):
dependencies:
- vite: 5.3.5(@types/node@20.14.12)(terser@5.31.3)
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
- vite-plugin-dts@4.0.0-beta.1(@types/node@20.14.12)(rollup@4.19.0)(typescript@5.5.4)(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3)):
+ vite-plugin-dts@4.0.0-beta.1(@types/node@22.5.5)(rollup@4.22.4)(typescript@5.6.2)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0)):
dependencies:
- '@microsoft/api-extractor': 7.47.2(@types/node@20.14.12)
- '@rollup/pluginutils': 5.1.0(rollup@4.19.0)
- '@volar/typescript': 2.3.4
- '@vue/language-core': 2.0.19(typescript@5.5.4)
+ '@microsoft/api-extractor': 7.47.2(@types/node@22.5.5)
+ '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
+ '@volar/typescript': 2.4.5
+ '@vue/language-core': 2.0.19(typescript@5.6.2)
compare-versions: 6.1.1
- debug: 4.3.5
+ debug: 4.3.7
kolorist: 1.8.0
local-pkg: 0.5.0
- magic-string: 0.30.10
- typescript: 5.5.4
- vue-tsc: 2.0.19(typescript@5.5.4)
+ magic-string: 0.30.11
+ typescript: 5.6.2
+ vue-tsc: 2.0.19(typescript@5.6.2)
optionalDependencies:
- vite: 5.3.5(@types/node@20.14.12)(terser@5.31.3)
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
- vite-plugin-inspect@0.8.4(@nuxt/kit@3.12.3(magicast@0.3.4)(rollup@3.29.4))(rollup@3.29.4)(vite@4.5.3(@types/node@20.14.12)(terser@5.31.3)):
+ vite-plugin-inspect@0.8.7(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.22.4))(rollup@4.22.4)(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0)):
dependencies:
'@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.0(rollup@3.29.4)
- debug: 4.3.5
- error-stack-parser-es: 0.1.4
+ '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
+ debug: 4.3.7
+ error-stack-parser-es: 0.1.5
fs-extra: 11.2.0
open: 10.1.0
perfect-debounce: 1.0.0
- picocolors: 1.0.1
+ picocolors: 1.1.0
sirv: 2.0.4
- vite: 4.5.3(@types/node@20.14.12)(terser@5.31.3)
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
optionalDependencies:
- '@nuxt/kit': 3.12.3(magicast@0.3.4)(rollup@3.29.4)
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.22.4)
transitivePeerDependencies:
- rollup
- supports-color
- vite-plugin-qrcode@0.2.3(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3)):
+ vite-plugin-qrcode@0.2.3(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0)):
dependencies:
qrcode-terminal: 0.12.0
- vite: 5.3.5(@types/node@20.14.12)(terser@5.31.3)
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
- vite-plugin-vue-inspector@5.1.2(vite@4.5.3(@types/node@20.14.12)(terser@5.31.3)):
+ vite-plugin-vue-inspector@5.2.0(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0)):
dependencies:
- '@babel/core': 7.23.5
- '@babel/plugin-proposal-decorators': 7.23.2(@babel/core@7.23.5)
- '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.5)
- '@babel/plugin-transform-typescript': 7.23.5(@babel/core@7.23.5)
- '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.5)
- '@vue/compiler-dom': 3.4.34
+ '@babel/core': 7.25.2
+ '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-syntax-import-attributes': 7.25.6(@babel/core@7.25.2)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2)
+ '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
+ '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.25.2)
+ '@vue/compiler-dom': 3.5.8
kolorist: 1.8.0
- magic-string: 0.30.10
- vite: 4.5.3(@types/node@20.14.12)(terser@5.31.3)
+ magic-string: 0.30.11
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
transitivePeerDependencies:
- supports-color
- vite-svg-loader@5.1.0(vue@3.4.34(typescript@5.5.4)):
+ vite-svg-loader@5.1.0(vue@3.5.8(typescript@5.6.2)):
dependencies:
- svgo: 3.0.5
- vue: 3.4.34(typescript@5.5.4)
+ svgo: 3.3.2
+ vue: 3.5.8(typescript@5.6.2)
- vite@4.5.3(@types/node@20.14.12)(terser@5.31.3):
+ vite@5.4.7(@types/node@22.5.5)(terser@5.33.0):
dependencies:
- esbuild: 0.18.20
- postcss: 8.4.40
- rollup: 3.29.4
+ esbuild: 0.21.5
+ postcss: 8.4.47
+ rollup: 4.22.4
optionalDependencies:
- '@types/node': 20.14.12
+ '@types/node': 22.5.5
fsevents: 2.3.3
- terser: 5.31.3
+ terser: 5.33.0
- vite@5.3.5(@types/node@20.14.12)(terser@5.31.3):
+ vitepress@1.0.0-rc.31(@algolia/client-search@4.24.0)(@types/node@22.5.5)(postcss@8.4.47)(search-insights@2.17.2)(terser@5.33.0)(typescript@5.6.2):
dependencies:
- esbuild: 0.21.5
- postcss: 8.4.40
- rollup: 4.19.0
- optionalDependencies:
- '@types/node': 20.14.12
- fsevents: 2.3.3
- terser: 5.31.3
-
- vitepress@1.0.0-rc.31(@algolia/client-search@4.24.0)(@types/node@20.14.12)(postcss@8.4.40)(search-insights@2.15.0)(terser@5.31.3)(typescript@5.5.4):
- dependencies:
- '@docsearch/css': 3.5.2
- '@docsearch/js': 3.5.2(@algolia/client-search@4.24.0)(search-insights@2.15.0)
- '@types/markdown-it': 13.0.7
- '@vitejs/plugin-vue': 4.6.2(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))(vue@3.4.34(typescript@5.5.4))
- '@vue/devtools-api': 6.5.1
- '@vueuse/core': 10.11.0(vue@3.4.34(typescript@5.5.4))
- '@vueuse/integrations': 10.6.1(focus-trap@7.5.4)(vue@3.4.34(typescript@5.5.4))
- focus-trap: 7.5.4
+ '@docsearch/css': 3.6.1
+ '@docsearch/js': 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.17.2)
+ '@types/markdown-it': 13.0.9
+ '@vitejs/plugin-vue': 4.6.2(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2))
+ '@vue/devtools-api': 6.6.4
+ '@vueuse/core': 10.11.1(vue@3.5.8(typescript@5.6.2))
+ '@vueuse/integrations': 10.11.1(focus-trap@7.6.0)(vue@3.5.8(typescript@5.6.2))
+ focus-trap: 7.6.0
mark.js: 8.11.1
minisearch: 6.3.0
mrmime: 1.0.1
shikiji: 0.7.6
shikiji-transformers: 0.7.6
- vite: 5.3.5(@types/node@20.14.12)(terser@5.31.3)
- vue: 3.4.34(typescript@5.5.4)
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
+ vue: 3.5.8(typescript@5.6.2)
optionalDependencies:
- postcss: 8.4.40
+ postcss: 8.4.47
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/node'
@@ -14791,6 +13069,7 @@ snapshots:
- react
- react-dom
- sass
+ - sass-embedded
- search-insights
- sortablejs
- stylus
@@ -14799,26 +13078,26 @@ snapshots:
- typescript
- universal-cookie
- vitepress@1.3.1(@algolia/client-search@4.24.0)(@types/node@20.14.12)(postcss@8.4.40)(search-insights@2.15.0)(terser@5.31.3)(typescript@5.5.4):
+ vitepress@1.3.1(@algolia/client-search@4.24.0)(@types/node@22.5.5)(postcss@8.4.47)(search-insights@2.17.2)(terser@5.33.0)(typescript@5.6.2):
dependencies:
'@docsearch/css': 3.6.1
- '@docsearch/js': 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.15.0)
- '@shikijs/core': 1.11.2
- '@shikijs/transformers': 1.11.2
+ '@docsearch/js': 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.17.2)
+ '@shikijs/core': 1.18.0
+ '@shikijs/transformers': 1.18.0
'@types/markdown-it': 14.1.2
- '@vitejs/plugin-vue': 5.1.0(vite@5.3.5(@types/node@20.14.12)(terser@5.31.3))(vue@3.4.34(typescript@5.5.4))
- '@vue/devtools-api': 7.3.7
- '@vue/shared': 3.4.34
- '@vueuse/core': 10.11.0(vue@3.4.34(typescript@5.5.4))
- '@vueuse/integrations': 10.11.0(focus-trap@7.5.4)(vue@3.4.34(typescript@5.5.4))
- focus-trap: 7.5.4
+ '@vitejs/plugin-vue': 5.1.4(vite@5.4.7(@types/node@22.5.5)(terser@5.33.0))(vue@3.5.8(typescript@5.6.2))
+ '@vue/devtools-api': 7.4.5
+ '@vue/shared': 3.5.8
+ '@vueuse/core': 10.11.1(vue@3.5.8(typescript@5.6.2))
+ '@vueuse/integrations': 10.11.1(focus-trap@7.6.0)(vue@3.5.8(typescript@5.6.2))
+ focus-trap: 7.6.0
mark.js: 8.11.1
minisearch: 7.1.0
- shiki: 1.11.2
- vite: 5.3.5(@types/node@20.14.12)(terser@5.31.3)
- vue: 3.4.34(typescript@5.5.4)
+ shiki: 1.18.0
+ vite: 5.4.7(@types/node@22.5.5)(terser@5.33.0)
+ vue: 3.5.8(typescript@5.6.2)
optionalDependencies:
- postcss: 8.4.40
+ postcss: 8.4.47
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/node'
@@ -14838,6 +13117,7 @@ snapshots:
- react
- react-dom
- sass
+ - sass-embedded
- search-insights
- sortablejs
- stylus
@@ -14859,7 +13139,7 @@ snapshots:
vscode-jsonrpc: 6.0.0
vscode-languageserver-types: 3.16.0
- vscode-languageserver-textdocument@1.0.11: {}
+ vscode-languageserver-textdocument@1.0.12: {}
vscode-languageserver-types@3.16.0: {}
@@ -14869,104 +13149,72 @@ snapshots:
vscode-uri@3.0.8: {}
- vue-bundle-renderer@2.0.0:
- dependencies:
- ufo: 1.3.1
-
- vue-demi@0.14.10(vue@3.4.27(typescript@5.5.4)):
- dependencies:
- vue: 3.4.27(typescript@5.5.4)
-
- vue-demi@0.14.10(vue@3.4.34(typescript@5.5.4)):
+ vue-bundle-renderer@2.1.0:
dependencies:
- vue: 3.4.34(typescript@5.5.4)
+ ufo: 1.5.4
- vue-demi@0.14.6(vue@3.4.34(typescript@5.5.4)):
+ vue-demi@0.14.10(vue@3.5.8(typescript@5.6.2)):
dependencies:
- vue: 3.4.34(typescript@5.5.4)
+ vue: 3.5.8(typescript@5.6.2)
vue-devtools-stub@0.1.0: {}
- vue-eslint-parser@9.4.2(eslint@9.7.0):
+ vue-eslint-parser@9.4.3(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- debug: 4.3.5
- eslint: 9.7.0
+ debug: 4.3.7
+ eslint: 9.11.0(jiti@1.21.6)
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
espree: 9.6.1
- esquery: 1.5.0
+ esquery: 1.6.0
lodash: 4.17.21
- semver: 7.5.4
+ semver: 7.6.3
transitivePeerDependencies:
- supports-color
- vue-router@4.2.5(vue@3.4.27(typescript@5.5.4)):
- dependencies:
- '@vue/devtools-api': 6.5.1
- vue: 3.4.27(typescript@5.5.4)
-
- vue-router@4.3.2(vue@3.4.34(typescript@5.5.4)):
+ vue-router@4.4.5(vue@3.5.8(typescript@5.6.2)):
dependencies:
- '@vue/devtools-api': 6.6.1
- vue: 3.4.34(typescript@5.5.4)
+ '@vue/devtools-api': 6.6.4
+ vue: 3.5.8(typescript@5.6.2)
vue-template-compiler@2.7.16:
dependencies:
de-indent: 1.0.2
he: 1.2.0
- vue-tsc@2.0.19(typescript@5.5.4):
+ vue-tsc@2.0.19(typescript@5.6.2):
dependencies:
'@volar/typescript': 2.2.5
- '@vue/language-core': 2.0.19(typescript@5.5.4)
+ '@vue/language-core': 2.0.19(typescript@5.6.2)
semver: 7.6.3
- typescript: 5.5.4
+ typescript: 5.6.2
- vue-tsc@2.0.29(typescript@5.5.4):
+ vue-tsc@2.1.6(typescript@5.6.2):
dependencies:
- '@volar/typescript': 2.4.0-alpha.18
- '@vue/language-core': 2.0.29(typescript@5.5.4)
+ '@volar/typescript': 2.4.5
+ '@vue/language-core': 2.1.6(typescript@5.6.2)
semver: 7.6.3
- typescript: 5.5.4
-
- vue@3.4.27(typescript@5.5.4):
- dependencies:
- '@vue/compiler-dom': 3.4.27
- '@vue/compiler-sfc': 3.4.27
- '@vue/runtime-dom': 3.4.27
- '@vue/server-renderer': 3.4.27(vue@3.4.27(typescript@5.5.4))
- '@vue/shared': 3.4.27
- optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
- vue@3.4.34(typescript@5.5.4):
+ vue@3.5.8(typescript@5.6.2):
dependencies:
- '@vue/compiler-dom': 3.4.34
- '@vue/compiler-sfc': 3.4.34
- '@vue/runtime-dom': 3.4.34
- '@vue/server-renderer': 3.4.34(vue@3.4.34(typescript@5.5.4))
- '@vue/shared': 3.4.34
+ '@vue/compiler-dom': 3.5.8
+ '@vue/compiler-sfc': 3.5.8
+ '@vue/runtime-dom': 3.5.8
+ '@vue/server-renderer': 3.5.8(vue@3.5.8(typescript@5.6.2))
+ '@vue/shared': 3.5.8
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
wcwidth@1.0.1:
dependencies:
defaults: 1.0.4
- web-namespaces@2.0.1: {}
-
web-streams-polyfill@3.3.3: {}
webidl-conversions@3.0.1: {}
- webpack-sources@3.2.3: {}
-
- webpack-virtual-modules@0.5.0: {}
-
- webpack-virtual-modules@0.6.1: {}
-
- webpack-virtual-modules@0.6.2:
- optional: true
+ webpack-virtual-modules@0.6.2: {}
whatwg-url@5.0.0:
dependencies:
@@ -15034,32 +13282,26 @@ snapshots:
xtend@4.0.2: {}
- xxhashjs@0.2.2:
- dependencies:
- cuint: 0.2.2
-
y18n@5.0.8: {}
yallist@3.1.1: {}
yallist@4.0.0: {}
- yaml-eslint-parser@1.2.2:
+ yaml-eslint-parser@1.2.3:
dependencies:
eslint-visitor-keys: 3.4.3
lodash: 4.17.21
- yaml: 2.3.3
+ yaml: 2.5.1
- yaml@2.3.2: {}
-
- yaml@2.3.3: {}
+ yaml@2.5.1: {}
yargs-parser@21.1.1: {}
yargs@17.7.2:
dependencies:
cliui: 8.0.1
- escalade: 3.1.1
+ escalade: 3.2.0
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
@@ -15068,16 +13310,16 @@ snapshots:
yocto-queue@0.1.0: {}
- yocto-queue@1.0.0: {}
+ yocto-queue@1.1.1: {}
yoctocolors-cjs@2.1.2: {}
zhead@2.2.4: {}
- zip-stream@5.0.1:
+ zip-stream@6.0.1:
dependencies:
- archiver-utils: 4.0.1
- compress-commons: 5.0.1
- readable-stream: 3.6.2
+ archiver-utils: 5.0.2
+ compress-commons: 6.0.2
+ readable-stream: 4.5.2
zwitch@2.0.4: {}
diff --git a/src/core/injectionKeys.ts b/src/core/injectionKeys.ts
deleted file mode 100644
index c64598b5..00000000
--- a/src/core/injectionKeys.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-import type { EffectComposer } from 'postprocessing'
-import type { InjectionKey, ShallowRef } from 'vue'
-
-export const effectComposerInjectionKey: InjectionKey> = Symbol('effectComposer')
diff --git a/src/core/effects/Bloom.vue b/src/core/postprocessing/Bloom.vue
similarity index 92%
rename from src/core/effects/Bloom.vue
rename to src/core/postprocessing/Bloom.vue
index 72f04ebe..c969e1cd 100644
--- a/src/core/effects/Bloom.vue
+++ b/src/core/postprocessing/Bloom.vue
@@ -1,8 +1,8 @@
+
+
+
+
+
+
+
diff --git a/src/core/three/Glitch.vue b/src/core/three/Glitch.vue
new file mode 100644
index 00000000..40d9ecce
--- /dev/null
+++ b/src/core/three/Glitch.vue
@@ -0,0 +1,34 @@
+
+
+
diff --git a/src/core/three/Halftone.vue b/src/core/three/Halftone.vue
new file mode 100644
index 00000000..2b5af5cb
--- /dev/null
+++ b/src/core/three/Halftone.vue
@@ -0,0 +1,59 @@
+
+
+
diff --git a/src/core/three/Output.vue b/src/core/three/Output.vue
new file mode 100644
index 00000000..91e8c42c
--- /dev/null
+++ b/src/core/three/Output.vue
@@ -0,0 +1,8 @@
+
diff --git a/src/core/three/Pixelation.vue b/src/core/three/Pixelation.vue
new file mode 100644
index 00000000..475ad97f
--- /dev/null
+++ b/src/core/three/Pixelation.vue
@@ -0,0 +1,36 @@
+
+
+
diff --git a/src/core/three/SMAA.vue b/src/core/three/SMAA.vue
new file mode 100644
index 00000000..6e93d0a9
--- /dev/null
+++ b/src/core/three/SMAA.vue
@@ -0,0 +1,26 @@
+
diff --git a/src/core/three/UnrealBloom.vue b/src/core/three/UnrealBloom.vue
new file mode 100644
index 00000000..731cc6f3
--- /dev/null
+++ b/src/core/three/UnrealBloom.vue
@@ -0,0 +1,52 @@
+
+
+
diff --git a/src/core/three/composables/useEffect.ts b/src/core/three/composables/useEffect.ts
new file mode 100644
index 00000000..5268e8fd
--- /dev/null
+++ b/src/core/three/composables/useEffect.ts
@@ -0,0 +1,27 @@
+import type { Pass } from 'three/examples/jsm/postprocessing/Pass.js'
+import type { ShallowRef } from 'vue'
+import { useTresContext } from '@tresjs/core'
+import { inject, onUnmounted, shallowRef, watchEffect } from 'vue'
+import { effectComposerInjectionKey } from '../EffectComposer.vue'
+
+export const useEffect = (newPassFunction: () => T): { pass: ShallowRef } => {
+ const composer = inject(effectComposerInjectionKey)
+
+ const pass = shallowRef(newPassFunction()) as ShallowRef
+ const { sizes } = useTresContext()
+
+ let unwatch = () => {} // seperate declaration prevents error in HMR
+ unwatch = watchEffect(() => {
+ if (!composer?.value || !sizes.height.value || !sizes.width.value) { return }
+
+ composer.value.addPass(pass.value)
+ unwatch()
+ })
+
+ onUnmounted(() => {
+ composer?.value?.removePass(pass.value)
+ pass.value.dispose()
+ })
+
+ return { pass }
+}
diff --git a/src/index.ts b/src/index.ts
index c7e8ad25..f7214535 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -1,22 +1,38 @@
-import Bloom from './core/effects/Bloom.vue'
-import DepthOfField from './core/effects/DepthOfField.vue'
-import EffectComposer from './core/EffectComposer.vue'
-import Glitch from './core/effects/Glitch.vue'
-import Outline from './core/effects/Outline.vue'
-import Pixelation from './core/effects/Pixelation.vue'
-import Vignette from './core/effects/Vignette.vue'
-import Noise from './core/effects/Noise.vue'
-
-import { useEffect } from './core/composables/effect.ts'
+// TODO #122 seperate exports differently
+import Bloom from './core/postprocessing/Bloom.vue'
+import { useEffect } from './core/postprocessing/composables/useEffect'
+import DepthOfField from './core/postprocessing/DepthOfField.vue'
+import EffectComposer from './core/postprocessing/EffectComposer.vue'
+import Glitch from './core/postprocessing/Glitch.vue'
+import Noise from './core/postprocessing/Noise.vue'
+import Outline from './core/postprocessing/Outline.vue'
+import Pixelation from './core/postprocessing/Pixelation.vue'
+import Vignette from './core/postprocessing/Vignette.vue'
+import { useEffect as useEffectThree } from './core/three/composables/useEffect'
+import EffectComposerThree from './core/three/EffectComposer.vue'
+import GlitchThree from './core/three/Glitch.vue'
+import HalftoneThree from './core/three/Halftone.vue'
+import OutputThree from './core/three/Output.vue'
+import PixelationThree from './core/three/Pixelation.vue'
+import SMAAThree from './core/three/SMAA.vue'
+import UnrealBloomThree from './core/three/UnrealBloom.vue'
export {
Bloom,
DepthOfField,
EffectComposer,
+ EffectComposerThree,
Glitch,
+ GlitchThree,
+ HalftoneThree,
Noise,
Outline,
+ OutputThree,
Pixelation,
- Vignette,
+ PixelationThree,
+ SMAAThree,
+ UnrealBloomThree,
useEffect,
+ useEffectThree,
+ Vignette,
}
diff --git a/src/util/prop.ts b/src/util/prop.ts
index 15be378e..3d905ddc 100644
--- a/src/util/prop.ts
+++ b/src/util/prop.ts
@@ -20,17 +20,17 @@ export const makePropWatcher = (
newPlainObjectFunction: () => E & { dispose?: () => void },
watchOptions: WatchOptions = {},
) => watch(propGetter, (newValue) => {
- if (!target.value) { return }
+ if (!target.value) { return }
- if (newValue === undefined) {
- const plainObject = newPlainObjectFunction()
+ if (newValue === undefined) {
+ const plainObject = newPlainObjectFunction()
- set(target.value, propertyPath, get(plainObject, propertyPath))
+ set(target.value, propertyPath, get(plainObject, propertyPath))
- plainObject.dispose?.()
- }
- else { set(target.value, propertyPath, propGetter()) }
- }, watchOptions)
+ plainObject.dispose?.()
+ }
+ else { set(target.value, propertyPath, propGetter()) }
+}, watchOptions)
/**
* Creates multiple prop watchers for monitoring changes to multiple properties and updating a target object.
@@ -46,11 +46,11 @@ export const makePropWatchers = (
target: Ref,
newPlainObjectFunction: () => E & { dispose?: () => void },
) => propGettersAndPropertyPaths.map(([propGetterFn, path]) => makePropWatcher(
- propGetterFn as () => any,
- target,
- path as string,
- newPlainObjectFunction,
- ))
+ propGetterFn as () => any,
+ target,
+ path as string,
+ newPlainObjectFunction,
+))
/**
* Creates multiple prop watchers via the props object for monitoring changes to multiple properties and updating a target object.
@@ -65,8 +65,8 @@ export const makePropWatchersUsingAllProps = (
target: Ref,
newPlainObjectFunction: () => E & { dispose?: () => void },
) => Object.keys(props).map(key => makePropWatcher(
- () => props[key],
- target,
- key,
- newPlainObjectFunction,
- ))
+ () => props[key],
+ target,
+ key,
+ newPlainObjectFunction,
+))
diff --git a/vite.config.ts b/vite.config.ts
index 3d210604..e403b98b 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -1,17 +1,14 @@
-import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
-
-import banner from 'vite-plugin-banner'
-import dts from 'vite-plugin-dts'
+import { bold, gray, lightGreen, magenta } from 'kolorist'
+import { resolve } from 'pathe'
import analyze from 'rollup-plugin-analyzer'
import { visualizer } from 'rollup-plugin-visualizer'
-import { resolve } from 'pathe'
-
-import { bold, gray, lightGreen, magenta } from 'kolorist'
+import { defineConfig } from 'vite'
+import banner from 'vite-plugin-banner'
+import dts from 'vite-plugin-dts'
import pkg from './package.json'
-// eslint-disable-next-line no-console
console.log(`${lightGreen('âē')} ${gray('â ')} ${magenta('ðŦ')} ${bold('Tres/post-processing')} v${pkg.version}`)
// https://vitejs.dev/config/