From 901c7548fca2bc42c597bb5780769f05e63ede96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=8D=E5=A6=82=E6=91=B8=E9=B1=BC=E5=8E=BB?= <1780903673@qq.com> Date: Tue, 6 May 2025 15:33:56 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E2=9C=A8=20=E5=BC=95=E5=85=A5=20vitepr?= =?UTF-8?q?ess-plugin-llms=20=E4=BC=98=E5=8C=96=20AI=20=E7=90=86=E8=A7=A3?= =?UTF-8?q?=20(#1034)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components.d.ts | 1 - docs/.vitepress/config.mts | 43 +- docs/public/_redirects | 4 + package.json | 5 +- pnpm-lock.yaml | 1937 +++++++++++++++++++++++++----------- 5 files changed, 1398 insertions(+), 592 deletions(-) create mode 100644 docs/public/_redirects diff --git a/components.d.ts b/components.d.ts index 683630cb..15d6048c 100644 --- a/components.d.ts +++ b/components.d.ts @@ -7,7 +7,6 @@ export {} declare module 'vue' { export interface GlobalComponents { - ConditionalTest: typeof import('./src/components/conditional-test.vue')['default'] DemoBlock: typeof import('./src/components/demo-block/demo-block.vue')['default'] PageWraper: typeof import('./src/components/page-wraper/page-wraper.vue')['default'] WdPrivacyPopup: typeof import('./src/components/wd-privacy-popup/wd-privacy-popup.vue')['default'] diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index d63bc8ee..a7f37abd 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -1,9 +1,9 @@ /* * @Author: weisheng * @Date: 2023-07-27 10:26:09 - * @LastEditTime: 2025-03-29 15:02:23 + * @LastEditTime: 2025-05-06 15:18:36 * @LastEditors: weisheng - * @Description: + * @Description: * @FilePath: /wot-design-uni/docs/.vitepress/config.mts * 记得注释 */ @@ -11,13 +11,16 @@ import { defineConfig } from 'vitepress'; import viteCompression from 'vite-plugin-compression' import { fileURLToPath, URL } from 'node:url' import { MarkdownTransform } from './plugins/markdown-transform' +import llmstxt from 'vitepress-plugin-llms' import enUS from './locales/en-US' import zhCN from './locales/zh-CN' - - export default defineConfig({ vite: { plugins: [ + llmstxt({ + ignoreFiles: ['reward/*', 'index.md', 'README.md', 'en-US/*.md', 'en-US/**/*.md', 'ads/*', 'guide/cases.md', 'guide/changelog.md', 'guide/join-group.md', 'guide/typography.md'], + domain: 'https://wot-design-uni.cn', + }), MarkdownTransform(), viteCompression({ verbose: true, @@ -25,7 +28,7 @@ export default defineConfig({ threshold: 10240, algorithm: 'gzip', ext: '.gz', - }) + }), ], ssr: { noExternal: ['element-plus'] }, resolve: { @@ -72,7 +75,7 @@ export default defineConfig({ ...zhCN }, 'en-US': { - label: 'English', + label: 'English', lang: 'en-US', ...enUS, } @@ -80,12 +83,12 @@ export default defineConfig({ head: [ ['link', { rel: 'icon', href: '/favicon.ico' }], ['link', { rel: 'stylesheet', href: '/petercatai/assistant.min.css' }], - ['script', {src: '/petercatai/react.development.js' }], - ['script', {src: '/petercatai/react-dom.development.js' }], - ['script', {src: '/petercatai/dayjs.min.js' }], - ['script', {src: '/petercatai/antd.js' }], - ['script', {src: '/petercatai/lottie.js' }], - ['script', {src: '/petercatai/assistant.min.js' }], + ['script', { src: '/petercatai/react.development.js' }], + ['script', { src: '/petercatai/react-dom.development.js' }], + ['script', { src: '/petercatai/dayjs.min.js' }], + ['script', { src: '/petercatai/antd.js' }], + ['script', { src: '/petercatai/lottie.js' }], + ['script', { src: '/petercatai/assistant.min.js' }], ['script', {}, ` !function(p){"use strict";!function(t){var s=window,e=document,i=p,c="".concat("https:"===e.location.protocol?"https://":"http://","sdk.51.la/js-sdk-pro.min.js"),n=e.createElement("script"),r=e.getElementsByTagName("script")[0];n.type="text/javascript",n.setAttribute("charset","UTF-8"),n.async=!0,n.src=c,n.id="LA_COLLECT",i.d=n;var o=function(){s.LA.ids.push(i)};s.LA?s.LA.ids&&o():(s.LA=p,s.LA.ids=[],o()),r.parentNode.insertBefore(n,r)}()}({id:"3J4q4tM6fN0n1fbZ",ck:"3J4q4tM6fN0n1fbZ"}); `], @@ -152,10 +155,10 @@ export default defineConfig({ }, { text: '更新日志', link: '/guide/changelog', - },{ + }, { text: '⭐ 案例', link: '/guide/cases', - },{ + }, { text: '加群沟通', link: '/guide/join-group', } @@ -219,10 +222,10 @@ export default defineConfig({ { text: '更新日志', link: '/guide/changelog', - },{ + }, { text: '⭐ 案例', link: '/guide/cases', - },{ + }, { text: '加群沟通', link: '/guide/join-group', } @@ -369,12 +372,10 @@ export default defineConfig({ }, { link: "/component/password-input", text: "PasswordInput 密码输入框" - }, - , { + }, { link: "/component/signature", text: "Signature 签名" - } - ] + }] }, { text: "反馈", collapsed: false, @@ -436,7 +437,7 @@ export default defineConfig({ link: "/component/number-keyboard", text: "NumberKeyboard 数字键盘" }] - }, + }, { text: "数据展示", collapsed: false, diff --git a/docs/public/_redirects b/docs/public/_redirects new file mode 100644 index 00000000..f51b2e20 --- /dev/null +++ b/docs/public/_redirects @@ -0,0 +1,4 @@ +/llms-full.md /llms-full.txt 200! +/llms-full.txt /llms-full.txt 200! +/llms.md /llms.txt 200! +/llms.txt /llms.txt 200! diff --git a/package.json b/package.json index c544fcc8..65fd0b15 100644 --- a/package.json +++ b/package.json @@ -86,6 +86,7 @@ "@dcloudio/uni-quickapp-webview": "3.0.0-4050720250324001", "element-plus": "^2.3.9", "vite-plugin-compression": "^0.5.1", + "vitepress": "^1.6.3", "vue": "^3.4.38", "vue-i18n": "9.1.9" }, @@ -146,8 +147,8 @@ "uni-read-pages-vite": "^0.0.6", "unplugin-auto-import": "^0.17.5", "unplugin-vue-components": "^0.26.0", - "vite": "5.2.8", - "vitepress": "^1.5.0", + "vite": "5", + "vitepress-plugin-llms": "^1.1.3", "vitest": "^3.1.1", "vue-eslint-parser": "^9.1.0", "vue-tsc": "^2.0.29" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d8bd8da4..12fa3da6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10,55 +10,58 @@ importers: dependencies: '@dcloudio/uni-app': specifier: 3.0.0-4050720250324001 - version: 3.0.0-4050720250324001(@dcloudio/types@3.4.12)(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + version: 3.0.0-4050720250324001(@dcloudio/types@3.4.12)(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-app-harmony': specifier: 3.0.0-4050720250324001 - version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4)) + version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-app-plus': specifier: 3.0.0-4050720250324001 - version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4)) + version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-components': specifier: 3.0.0-4050720250324001 - version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-h5': specifier: 3.0.0-4050720250324001 - version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-mp-alipay': specifier: 3.0.0-4050720250324001 - version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-mp-baidu': specifier: 3.0.0-4050720250324001 - version: 3.0.0-4050720250324001(@dcloudio/types@3.4.12)(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + version: 3.0.0-4050720250324001(@dcloudio/types@3.4.12)(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-mp-jd': specifier: 3.0.0-4050720250324001 - version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-mp-kuaishou': specifier: 3.0.0-4050720250324001 - version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-mp-lark': specifier: 3.0.0-4050720250324001 - version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-mp-qq': specifier: 3.0.0-4050720250324001 - version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-mp-toutiao': specifier: 3.0.0-4050720250324001 - version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-mp-weixin': specifier: 3.0.0-4050720250324001 - version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-mp-xhs': specifier: 3.0.0-4050720250324001 - version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-quickapp-webview': specifier: 3.0.0-4050720250324001 - version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) element-plus: specifier: ^2.3.9 version: 2.3.9(vue@3.4.38(typescript@5.5.4)) vite-plugin-compression: specifier: ^0.5.1 - version: 0.5.1(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6)) + version: 0.5.1(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6)) + vitepress: + specifier: ^1.6.3 + version: 1.6.3(@algolia/client-search@5.24.0)(@types/node@18.15.3)(async-validator@4.2.5)(axios@1.7.9)(postcss@8.5.3)(sass@1.59.3)(search-insights@2.17.3)(terser@5.16.6)(typescript@5.5.4) vue: specifier: ^3.4.38 version: 3.4.38(typescript@5.5.4) @@ -86,16 +89,16 @@ importers: version: 3.4.12 '@dcloudio/uni-automator': specifier: 3.0.0-4050720250324001 - version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(jest-environment-node@27.5.1)(jest@27.0.4(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4)))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(jest-environment-node@27.5.1)(jest@27.0.4(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4)))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-cli-shared': specifier: 3.0.0-4050720250324001 - version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-stacktracey': specifier: 3.0.0-4050720250324001 version: 3.0.0-4050720250324001 '@dcloudio/vite-plugin-uni': specifier: 3.0.0-4050720250324001 - version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4)) + version: 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4)) '@element-plus/icons-vue': specifier: ^2.3.1 version: 2.3.1(vue@3.4.38(typescript@5.5.4)) @@ -131,10 +134,10 @@ importers: version: 9.2.1 '@vitejs/plugin-vue': specifier: ^5.2.3 - version: 5.2.3(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4)) + version: 5.2.3(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4)) '@vitest/coverage-v8': specifier: ^3.1.1 - version: 3.1.1(vitest@3.1.1(@types/node@18.15.3)(jsdom@26.0.0)(sass@1.59.3)(terser@5.16.6)) + version: 3.1.1(vitest@3.1.1(@types/debug@4.1.12)(@types/node@18.15.3)(jiti@1.21.6)(jsdom@26.0.0)(sass@1.59.3)(terser@5.16.6)(tsx@4.19.2)) '@vue/runtime-core': specifier: ^3.4.38 version: 3.4.38 @@ -235,14 +238,14 @@ importers: specifier: ^0.26.0 version: 0.26.0(@babel/parser@7.27.1)(rollup@3.29.5)(vue@3.4.38(typescript@5.5.4)) vite: - specifier: 5.2.8 - version: 5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) - vitepress: - specifier: ^1.5.0 - version: 1.5.0(@algolia/client-search@5.15.0)(@types/node@18.15.3)(async-validator@4.2.5)(axios@1.7.9)(postcss@8.4.49)(sass@1.59.3)(search-insights@2.13.0)(terser@5.16.6)(typescript@5.5.4) + specifier: '5' + version: 5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) + vitepress-plugin-llms: + specifier: ^1.1.3 + version: 1.1.3 vitest: specifier: ^3.1.1 - version: 3.1.1(@types/node@18.15.3)(jsdom@26.0.0)(sass@1.59.3)(terser@5.16.6) + version: 3.1.1(@types/debug@4.1.12)(@types/node@18.15.3)(jiti@1.21.6)(jsdom@26.0.0)(sass@1.59.3)(terser@5.16.6)(tsx@4.19.2) vue-eslint-parser: specifier: ^9.1.0 version: 9.1.0(eslint@8.57.1) @@ -272,56 +275,56 @@ packages: '@algolia/client-search': '>= 4.9.1 < 6' algoliasearch: '>= 4.9.1 < 6' - '@algolia/client-abtesting@5.15.0': - resolution: {integrity: sha512-FaEM40iuiv1mAipYyiptP4EyxkJ8qHfowCpEeusdHUC4C7spATJYArD2rX3AxkVeREkDIgYEOuXcwKUbDCr7Nw==} + '@algolia/client-abtesting@5.24.0': + resolution: {integrity: sha512-pNTIB5YqVVwu6UogvdX8TqsRZENaflqMMjdY7/XIPMNGrBoNH9tewINLI7+qc9tIaOLcAp3ZldqoEwAihZZ3ig==} engines: {node: '>= 14.0.0'} - '@algolia/client-analytics@5.15.0': - resolution: {integrity: sha512-lho0gTFsQDIdCwyUKTtMuf9nCLwq9jOGlLGIeQGKDxXF7HbiAysFIu5QW/iQr1LzMgDyM9NH7K98KY+BiIFriQ==} + '@algolia/client-analytics@5.24.0': + resolution: {integrity: sha512-IF+r9RRQsIf0ylIBNFxo7c6hDxxuhIfIbffhBXEF1HD13rjhP5AVfiaea9RzbsAZoySkm318plDpH/nlGIjbRA==} engines: {node: '>= 14.0.0'} - '@algolia/client-common@5.15.0': - resolution: {integrity: sha512-IofrVh213VLsDkPoSKMeM9Dshrv28jhDlBDLRcVJQvlL8pzue7PEB1EZ4UoJFYS3NSn7JOcJ/V+olRQzXlJj1w==} + '@algolia/client-common@5.24.0': + resolution: {integrity: sha512-p8K6tiXQTebRBxbrzWIfGCvfkT+Umml+2lzI92acZjHsvl6KYH6igOfVstKqXJRei9pvRzEEvVDNDLXDVleGTA==} engines: {node: '>= 14.0.0'} - '@algolia/client-insights@5.15.0': - resolution: {integrity: sha512-bDDEQGfFidDi0UQUCbxXOCdphbVAgbVmxvaV75cypBTQkJ+ABx/Npw7LkFGw1FsoVrttlrrQbwjvUB6mLVKs/w==} + '@algolia/client-insights@5.24.0': + resolution: {integrity: sha512-jOHF0+tixR3IZJMhZPquFNdCVPzwzzXoiqVsbTvfKojeaY6ZXybgUiTSB8JNX+YpsUT8Ebhu3UvRy4mw2PbEzw==} engines: {node: '>= 14.0.0'} - '@algolia/client-personalization@5.15.0': - resolution: {integrity: sha512-LfaZqLUWxdYFq44QrasCDED5bSYOswpQjSiIL7Q5fYlefAAUO95PzBPKCfUhSwhb4rKxigHfDkd81AvEicIEoA==} + '@algolia/client-personalization@5.24.0': + resolution: {integrity: sha512-Fx/Fp6d8UmDBHecTt0XYF8C9TAaA3qeCQortfGSZzWp4gVmtrUCFNZ1SUwb8ULREnO9DanVrM5hGE8R8C4zZTQ==} engines: {node: '>= 14.0.0'} - '@algolia/client-query-suggestions@5.15.0': - resolution: {integrity: sha512-wu8GVluiZ5+il8WIRsGKu8VxMK9dAlr225h878GGtpTL6VBvwyJvAyLdZsfFIpY0iN++jiNb31q2C1PlPL+n/A==} + '@algolia/client-query-suggestions@5.24.0': + resolution: {integrity: sha512-F8ypOedSMhz6W7zuT5O1SXXsdXSOVhY2U6GkRbYk/mzrhs3jWFR3uQIfeQVWmsJjUwIGZmPoAr9E+T/Zm2M4wA==} engines: {node: '>= 14.0.0'} - '@algolia/client-search@5.15.0': - resolution: {integrity: sha512-Z32gEMrRRpEta5UqVQA612sLdoqY3AovvUPClDfMxYrbdDAebmGDVPtSogUba1FZ4pP5dx20D3OV3reogLKsRA==} + '@algolia/client-search@5.24.0': + resolution: {integrity: sha512-k+nuciQuq7WERNNE+hsx3DX636zIy+9R4xdtvW3PANT2a2BDGOv3fv2mta8+QUMcVTVcGe/Mo3QCb4pc1HNoxA==} engines: {node: '>= 14.0.0'} - '@algolia/ingestion@1.15.0': - resolution: {integrity: sha512-MkqkAxBQxtQ5if/EX2IPqFA7LothghVyvPoRNA/meS2AW2qkHwcxjuiBxv4H6mnAVEPfJlhu9rkdVz9LgCBgJg==} + '@algolia/ingestion@1.24.0': + resolution: {integrity: sha512-/lqVxmrvwoA+OyVK4XLMdz/PJaCTW4qYchX1AZ+98fdnH3K6XM/kMydQLfP0bUNGBQbmVrF88MqhqZRnZEn/MA==} engines: {node: '>= 14.0.0'} - '@algolia/monitoring@1.15.0': - resolution: {integrity: sha512-QPrFnnGLMMdRa8t/4bs7XilPYnoUXDY8PMQJ1sf9ZFwhUysYYhQNX34/enoO0LBjpoOY6rLpha39YQEFbzgKyQ==} + '@algolia/monitoring@1.24.0': + resolution: {integrity: sha512-cRisDXQJhvfZCXL4hD22qca2CmW52TniOx6L7pvkaBDx0oQk1k9o+3w11fgfcCG+47OndMeNx5CMpu+K+COMzg==} engines: {node: '>= 14.0.0'} - '@algolia/recommend@5.15.0': - resolution: {integrity: sha512-5eupMwSqMLDObgSMF0XG958zR6GJP3f7jHDQ3/WlzCM9/YIJiWIUoJFGsko9GYsA5xbLDHE/PhWtq4chcCdaGQ==} + '@algolia/recommend@5.24.0': + resolution: {integrity: sha512-JTMz0JqN2gidvKa2QCF/rMe8LNtdHaght03px2cluZaZfBRYy8TgHgkCeBspKKvV/abWJwl7J0FzWThCshqT3w==} engines: {node: '>= 14.0.0'} - '@algolia/requester-browser-xhr@5.15.0': - resolution: {integrity: sha512-Po/GNib6QKruC3XE+WKP1HwVSfCDaZcXu48kD+gwmtDlqHWKc7Bq9lrS0sNZ456rfCKhXksOmMfUs4wRM/Y96w==} + '@algolia/requester-browser-xhr@5.24.0': + resolution: {integrity: sha512-B2Gc+iSxct1WSza5CF6AgfNgmLvVb61d5bqmIWUZixtJIhyAC6lSQZuF+nvt+lmKhQwuY2gYjGGClil8onQvKQ==} engines: {node: '>= 14.0.0'} - '@algolia/requester-fetch@5.15.0': - resolution: {integrity: sha512-rOZ+c0P7ajmccAvpeeNrUmEKoliYFL8aOR5qGW5pFq3oj3Iept7Y5mEtEsOBYsRt6qLnaXn4zUKf+N8nvJpcIw==} + '@algolia/requester-fetch@5.24.0': + resolution: {integrity: sha512-6E5+hliqGc5w8ZbyTAQ+C3IGLZ/GiX623Jl2bgHA974RPyFWzVSj4rKqkboUAxQmrFY7Z02ybJWVZS5OhPQocA==} engines: {node: '>= 14.0.0'} - '@algolia/requester-node-http@5.15.0': - resolution: {integrity: sha512-b1jTpbFf9LnQHEJP5ddDJKE2sAlhYd7EVSOWgzo/27n/SfCoHfqD0VWntnWYD83PnOKvfe8auZ2+xCb0TXotrQ==} + '@algolia/requester-node-http@5.24.0': + resolution: {integrity: sha512-zM+nnqZpiQj20PyAh6uvgdSz+hD7Rj7UfAZwizqNP+bLvcbGXZwABERobuilkCQqyDBBH4uv0yqIcPRl8dSBEg==} engines: {node: '>= 14.0.0'} '@ampproject/remapping@2.3.0': @@ -1318,14 +1321,14 @@ packages: peerDependencies: vite: ^5.2.8 - '@docsearch/css@3.8.0': - resolution: {integrity: sha512-pieeipSOW4sQ0+bE5UFC51AOZp9NGxg89wAlZ1BAQFaiRAGK1IKUaPQ0UGZeNctJXyqZ1UvBtOQh2HH+U5GtmA==} + '@docsearch/css@3.8.2': + resolution: {integrity: sha512-y05ayQFyUmCXze79+56v/4HpycYF3uFqB78pLPrSV5ZKAlDuIAAJNhaRi8tTdRNXh05yxX/TyNnzD6LwSM89vQ==} - '@docsearch/js@3.8.0': - resolution: {integrity: sha512-PVuV629f5UcYRtBWqK7ID6vNL5647+2ADJypwTjfeBIrJfwPuHtzLy39hMGMfFK+0xgRyhTR0FZ83EkdEraBlg==} + '@docsearch/js@3.8.2': + resolution: {integrity: sha512-Q5wY66qHn0SwA7Taa0aDbHiJvaFJLOJyHmooQ7y8hlwwQLQ/5WwCcoX0g7ii04Qi2DJlHsd0XXzJ8Ypw9+9YmQ==} - '@docsearch/react@3.8.0': - resolution: {integrity: sha512-WnFK720+iwTVt94CxY3u+FgX6exb3BfN5kE9xUY6uuAH/9W/UFboBZFLlrw/zxFRHoHZCOXRtOylsXF+6LHI+Q==} + '@docsearch/react@3.8.2': + resolution: {integrity: sha512-xCRrJQlTt8N9GU0DG4ptwHRkfnSnD/YpdeaXe02iKfqs97TkZJv60yE+1eq/tjPcVnTW8dP5qLP7itifFVV5eg==} peerDependencies: '@types/react': '>= 16.8.0 < 19.0.0' react: '>= 16.8.0 < 19.0.0' @@ -1364,6 +1367,12 @@ packages: cpu: [ppc64] os: [aix] + '@esbuild/aix-ppc64@0.25.4': + resolution: {integrity: sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + '@esbuild/android-arm64@0.20.2': resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==} engines: {node: '>=12'} @@ -1382,6 +1391,12 @@ packages: cpu: [arm64] os: [android] + '@esbuild/android-arm64@0.25.4': + resolution: {integrity: sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + '@esbuild/android-arm@0.20.2': resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==} engines: {node: '>=12'} @@ -1400,6 +1415,12 @@ packages: cpu: [arm] os: [android] + '@esbuild/android-arm@0.25.4': + resolution: {integrity: sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + '@esbuild/android-x64@0.20.2': resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==} engines: {node: '>=12'} @@ -1418,6 +1439,12 @@ packages: cpu: [x64] os: [android] + '@esbuild/android-x64@0.25.4': + resolution: {integrity: sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + '@esbuild/darwin-arm64@0.20.2': resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==} engines: {node: '>=12'} @@ -1436,6 +1463,12 @@ packages: cpu: [arm64] os: [darwin] + '@esbuild/darwin-arm64@0.25.4': + resolution: {integrity: sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + '@esbuild/darwin-x64@0.20.2': resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==} engines: {node: '>=12'} @@ -1454,6 +1487,12 @@ packages: cpu: [x64] os: [darwin] + '@esbuild/darwin-x64@0.25.4': + resolution: {integrity: sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + '@esbuild/freebsd-arm64@0.20.2': resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==} engines: {node: '>=12'} @@ -1472,6 +1511,12 @@ packages: cpu: [arm64] os: [freebsd] + '@esbuild/freebsd-arm64@0.25.4': + resolution: {integrity: sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + '@esbuild/freebsd-x64@0.20.2': resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==} engines: {node: '>=12'} @@ -1490,6 +1535,12 @@ packages: cpu: [x64] os: [freebsd] + '@esbuild/freebsd-x64@0.25.4': + resolution: {integrity: sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + '@esbuild/linux-arm64@0.20.2': resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==} engines: {node: '>=12'} @@ -1508,6 +1559,12 @@ packages: cpu: [arm64] os: [linux] + '@esbuild/linux-arm64@0.25.4': + resolution: {integrity: sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + '@esbuild/linux-arm@0.20.2': resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==} engines: {node: '>=12'} @@ -1526,6 +1583,12 @@ packages: cpu: [arm] os: [linux] + '@esbuild/linux-arm@0.25.4': + resolution: {integrity: sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + '@esbuild/linux-ia32@0.20.2': resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==} engines: {node: '>=12'} @@ -1544,6 +1607,12 @@ packages: cpu: [ia32] os: [linux] + '@esbuild/linux-ia32@0.25.4': + resolution: {integrity: sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + '@esbuild/linux-loong64@0.20.2': resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==} engines: {node: '>=12'} @@ -1562,6 +1631,12 @@ packages: cpu: [loong64] os: [linux] + '@esbuild/linux-loong64@0.25.4': + resolution: {integrity: sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + '@esbuild/linux-mips64el@0.20.2': resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==} engines: {node: '>=12'} @@ -1580,6 +1655,12 @@ packages: cpu: [mips64el] os: [linux] + '@esbuild/linux-mips64el@0.25.4': + resolution: {integrity: sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + '@esbuild/linux-ppc64@0.20.2': resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==} engines: {node: '>=12'} @@ -1598,6 +1679,12 @@ packages: cpu: [ppc64] os: [linux] + '@esbuild/linux-ppc64@0.25.4': + resolution: {integrity: sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + '@esbuild/linux-riscv64@0.20.2': resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==} engines: {node: '>=12'} @@ -1616,6 +1703,12 @@ packages: cpu: [riscv64] os: [linux] + '@esbuild/linux-riscv64@0.25.4': + resolution: {integrity: sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + '@esbuild/linux-s390x@0.20.2': resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==} engines: {node: '>=12'} @@ -1634,6 +1727,12 @@ packages: cpu: [s390x] os: [linux] + '@esbuild/linux-s390x@0.25.4': + resolution: {integrity: sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + '@esbuild/linux-x64@0.20.2': resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==} engines: {node: '>=12'} @@ -1652,6 +1751,18 @@ packages: cpu: [x64] os: [linux] + '@esbuild/linux-x64@0.25.4': + resolution: {integrity: sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-arm64@0.25.4': + resolution: {integrity: sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + '@esbuild/netbsd-x64@0.20.2': resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==} engines: {node: '>=12'} @@ -1670,12 +1781,24 @@ packages: cpu: [x64] os: [netbsd] + '@esbuild/netbsd-x64@0.25.4': + resolution: {integrity: sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw==} + 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-arm64@0.25.4': + resolution: {integrity: sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + '@esbuild/openbsd-x64@0.20.2': resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==} engines: {node: '>=12'} @@ -1694,6 +1817,12 @@ packages: cpu: [x64] os: [openbsd] + '@esbuild/openbsd-x64@0.25.4': + resolution: {integrity: sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + '@esbuild/sunos-x64@0.20.2': resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==} engines: {node: '>=12'} @@ -1712,6 +1841,12 @@ packages: cpu: [x64] os: [sunos] + '@esbuild/sunos-x64@0.25.4': + resolution: {integrity: sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + '@esbuild/win32-arm64@0.20.2': resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==} engines: {node: '>=12'} @@ -1730,6 +1865,12 @@ packages: cpu: [arm64] os: [win32] + '@esbuild/win32-arm64@0.25.4': + resolution: {integrity: sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + '@esbuild/win32-ia32@0.20.2': resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==} engines: {node: '>=12'} @@ -1748,6 +1889,12 @@ packages: cpu: [ia32] os: [win32] + '@esbuild/win32-ia32@0.25.4': + resolution: {integrity: sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + '@esbuild/win32-x64@0.20.2': resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==} engines: {node: '>=12'} @@ -1766,6 +1913,12 @@ packages: cpu: [x64] os: [win32] + '@esbuild/win32-x64@0.25.4': + resolution: {integrity: sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + '@eslint-community/eslint-utils@4.2.0': resolution: {integrity: sha512-gB8T4H4DEfX2IV9zGDJPOBgP1e/DbfCPDTtEqUMckpvzS1OYtva8JdFYBqMwYk7xAQ429WGF/UPqn8uQ//h2vQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -1816,8 +1969,8 @@ packages: resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} engines: {node: '>=6.9.0'} - '@iconify-json/simple-icons@1.2.14': - resolution: {integrity: sha512-zLqb48pM1B5vegMBDouyv7FzrROV5HRIjDpl+/PKjY3P7AeSySaOeT6mzutF6hDZCJvn1J7qQ7lug3FOgegiiA==} + '@iconify-json/simple-icons@1.2.33': + resolution: {integrity: sha512-nL5/UmI9x5PQ/AHv6bOaL2pH6twEdEz4pI89efB/K7HFn5etQnxMtGx9DFlOg/sRA2/yFpX8KXvc95CSDv5bJA==} '@iconify/types@2.0.0': resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==} @@ -2220,128 +2373,140 @@ packages: rollup: optional: true - '@rollup/rollup-android-arm-eabi@4.28.1': - resolution: {integrity: sha512-2aZp8AES04KI2dy3Ss6/MDjXbwBzj+i0GqKtWXgw2/Ma6E4jJvujryO6gJAghIRVz7Vwr9Gtl/8na3nDUKpraQ==} + '@rollup/rollup-android-arm-eabi@4.40.1': + resolution: {integrity: sha512-kxz0YeeCrRUHz3zyqvd7n+TVRlNyTifBsmnmNPtk3hQURUyG9eAB+usz6DAwagMusjx/zb3AjvDUvhFGDAexGw==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.28.1': - resolution: {integrity: sha512-EbkK285O+1YMrg57xVA+Dp0tDBRB93/BZKph9XhMjezf6F4TpYjaUSuPt5J0fZXlSag0LmZAsTmdGGqPp4pQFA==} + '@rollup/rollup-android-arm64@4.40.1': + resolution: {integrity: sha512-PPkxTOisoNC6TpnDKatjKkjRMsdaWIhyuMkA4UsBXT9WEZY4uHezBTjs6Vl4PbqQQeu6oION1w2voYZv9yquCw==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.28.1': - resolution: {integrity: sha512-prduvrMKU6NzMq6nxzQw445zXgaDBbMQvmKSJaxpaZ5R1QDM8w+eGxo6Y/jhT/cLoCvnZI42oEqf9KQNYz1fqQ==} + '@rollup/rollup-darwin-arm64@4.40.1': + resolution: {integrity: sha512-VWXGISWFY18v/0JyNUy4A46KCFCb9NVsH+1100XP31lud+TzlezBbz24CYzbnA4x6w4hx+NYCXDfnvDVO6lcAA==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.28.1': - resolution: {integrity: sha512-WsvbOunsUk0wccO/TV4o7IKgloJ942hVFK1CLatwv6TJspcCZb9umQkPdvB7FihmdxgaKR5JyxDjWpCOp4uZlQ==} + '@rollup/rollup-darwin-x64@4.40.1': + resolution: {integrity: sha512-nIwkXafAI1/QCS7pxSpv/ZtFW6TXcNUEHAIA9EIyw5OzxJZQ1YDrX+CL6JAIQgZ33CInl1R6mHet9Y/UZTg2Bw==} cpu: [x64] os: [darwin] - '@rollup/rollup-freebsd-arm64@4.28.1': - resolution: {integrity: sha512-HTDPdY1caUcU4qK23FeeGxCdJF64cKkqajU0iBnTVxS8F7H/7BewvYoG+va1KPSL63kQ1PGNyiwKOfReavzvNA==} + '@rollup/rollup-freebsd-arm64@4.40.1': + resolution: {integrity: sha512-BdrLJ2mHTrIYdaS2I99mriyJfGGenSaP+UwGi1kB9BLOCu9SR8ZpbkmmalKIALnRw24kM7qCN0IOm6L0S44iWw==} cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.28.1': - resolution: {integrity: sha512-m/uYasxkUevcFTeRSM9TeLyPe2QDuqtjkeoTpP9SW0XxUWfcYrGDMkO/m2tTw+4NMAF9P2fU3Mw4ahNvo7QmsQ==} + '@rollup/rollup-freebsd-x64@4.40.1': + resolution: {integrity: sha512-VXeo/puqvCG8JBPNZXZf5Dqq7BzElNJzHRRw3vjBE27WujdzuOPecDPc/+1DcdcTptNBep3861jNq0mYkT8Z6Q==} cpu: [x64] os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.28.1': - resolution: {integrity: sha512-QAg11ZIt6mcmzpNE6JZBpKfJaKkqTm1A9+y9O+frdZJEuhQxiugM05gnCWiANHj4RmbgeVJpTdmKRmH/a+0QbA==} + '@rollup/rollup-linux-arm-gnueabihf@4.40.1': + resolution: {integrity: sha512-ehSKrewwsESPt1TgSE/na9nIhWCosfGSFqv7vwEtjyAqZcvbGIg4JAcV7ZEh2tfj/IlfBeZjgOXm35iOOjadcg==} cpu: [arm] os: [linux] libc: [glibc] - '@rollup/rollup-linux-arm-musleabihf@4.28.1': - resolution: {integrity: sha512-dRP9PEBfolq1dmMcFqbEPSd9VlRuVWEGSmbxVEfiq2cs2jlZAl0YNxFzAQS2OrQmsLBLAATDMb3Z6MFv5vOcXg==} + '@rollup/rollup-linux-arm-musleabihf@4.40.1': + resolution: {integrity: sha512-m39iO/aaurh5FVIu/F4/Zsl8xppd76S4qoID8E+dSRQvTyZTOI2gVk3T4oqzfq1PtcvOfAVlwLMK3KRQMaR8lg==} cpu: [arm] os: [linux] libc: [musl] - '@rollup/rollup-linux-arm64-gnu@4.28.1': - resolution: {integrity: sha512-uGr8khxO+CKT4XU8ZUH1TTEUtlktK6Kgtv0+6bIFSeiSlnGJHG1tSFSjm41uQ9sAO/5ULx9mWOz70jYLyv1QkA==} + '@rollup/rollup-linux-arm64-gnu@4.40.1': + resolution: {integrity: sha512-Y+GHnGaku4aVLSgrT0uWe2o2Rq8te9hi+MwqGF9r9ORgXhmHK5Q71N757u0F8yU1OIwUIFy6YiJtKjtyktk5hg==} cpu: [arm64] os: [linux] libc: [glibc] - '@rollup/rollup-linux-arm64-musl@4.28.1': - resolution: {integrity: sha512-QF54q8MYGAqMLrX2t7tNpi01nvq5RI59UBNx+3+37zoKX5KViPo/gk2QLhsuqok05sSCRluj0D00LzCwBikb0A==} + '@rollup/rollup-linux-arm64-musl@4.40.1': + resolution: {integrity: sha512-jEwjn3jCA+tQGswK3aEWcD09/7M5wGwc6+flhva7dsQNRZZTe30vkalgIzV4tjkopsTS9Jd7Y1Bsj6a4lzz8gQ==} cpu: [arm64] os: [linux] libc: [musl] - '@rollup/rollup-linux-loongarch64-gnu@4.28.1': - resolution: {integrity: sha512-vPul4uodvWvLhRco2w0GcyZcdyBfpfDRgNKU+p35AWEbJ/HPs1tOUrkSueVbBS0RQHAf/A+nNtDpvw95PeVKOA==} + '@rollup/rollup-linux-loongarch64-gnu@4.40.1': + resolution: {integrity: sha512-ySyWikVhNzv+BV/IDCsrraOAZ3UaC8SZB67FZlqVwXwnFhPihOso9rPOxzZbjp81suB1O2Topw+6Ug3JNegejQ==} cpu: [loong64] os: [linux] libc: [glibc] - '@rollup/rollup-linux-powerpc64le-gnu@4.28.1': - resolution: {integrity: sha512-pTnTdBuC2+pt1Rmm2SV7JWRqzhYpEILML4PKODqLz+C7Ou2apEV52h19CR7es+u04KlqplggmN9sqZlekg3R1A==} + '@rollup/rollup-linux-powerpc64le-gnu@4.40.1': + resolution: {integrity: sha512-BvvA64QxZlh7WZWqDPPdt0GH4bznuL6uOO1pmgPnnv86rpUpc8ZxgZwcEgXvo02GRIZX1hQ0j0pAnhwkhwPqWg==} cpu: [ppc64] os: [linux] libc: [glibc] - '@rollup/rollup-linux-riscv64-gnu@4.28.1': - resolution: {integrity: sha512-vWXy1Nfg7TPBSuAncfInmAI/WZDd5vOklyLJDdIRKABcZWojNDY0NJwruY2AcnCLnRJKSaBgf/GiJfauu8cQZA==} + '@rollup/rollup-linux-riscv64-gnu@4.40.1': + resolution: {integrity: sha512-EQSP+8+1VuSulm9RKSMKitTav89fKbHymTf25n5+Yr6gAPZxYWpj3DzAsQqoaHAk9YX2lwEyAf9S4W8F4l3VBQ==} cpu: [riscv64] os: [linux] libc: [glibc] - '@rollup/rollup-linux-s390x-gnu@4.28.1': - resolution: {integrity: sha512-/yqC2Y53oZjb0yz8PVuGOQQNOTwxcizudunl/tFs1aLvObTclTwZ0JhXF2XcPT/zuaymemCDSuuUPXJJyqeDOg==} + '@rollup/rollup-linux-riscv64-musl@4.40.1': + resolution: {integrity: sha512-n/vQ4xRZXKuIpqukkMXZt9RWdl+2zgGNx7Uda8NtmLJ06NL8jiHxUawbwC+hdSq1rrw/9CghCpEONor+l1e2gA==} + cpu: [riscv64] + os: [linux] + libc: [musl] + + '@rollup/rollup-linux-s390x-gnu@4.40.1': + resolution: {integrity: sha512-h8d28xzYb98fMQKUz0w2fMc1XuGzLLjdyxVIbhbil4ELfk5/orZlSTpF/xdI9C8K0I8lCkq+1En2RJsawZekkg==} cpu: [s390x] os: [linux] libc: [glibc] - '@rollup/rollup-linux-x64-gnu@4.28.1': - resolution: {integrity: sha512-fzgeABz7rrAlKYB0y2kSEiURrI0691CSL0+KXwKwhxvj92VULEDQLpBYLHpF49MSiPG4sq5CK3qHMnb9tlCjBw==} + '@rollup/rollup-linux-x64-gnu@4.40.1': + resolution: {integrity: sha512-XiK5z70PEFEFqcNj3/zRSz/qX4bp4QIraTy9QjwJAb/Z8GM7kVUsD0Uk8maIPeTyPCP03ChdI+VVmJriKYbRHQ==} cpu: [x64] os: [linux] libc: [glibc] - '@rollup/rollup-linux-x64-musl@4.28.1': - resolution: {integrity: sha512-xQTDVzSGiMlSshpJCtudbWyRfLaNiVPXt1WgdWTwWz9n0U12cI2ZVtWe/Jgwyv/6wjL7b66uu61Vg0POWVfz4g==} + '@rollup/rollup-linux-x64-musl@4.40.1': + resolution: {integrity: sha512-2BRORitq5rQ4Da9blVovzNCMaUlyKrzMSvkVR0D4qPuOy/+pMCrh1d7o01RATwVy+6Fa1WBw+da7QPeLWU/1mQ==} cpu: [x64] os: [linux] libc: [musl] - '@rollup/rollup-win32-arm64-msvc@4.28.1': - resolution: {integrity: sha512-wSXmDRVupJstFP7elGMgv+2HqXelQhuNf+IS4V+nUpNVi/GUiBgDmfwD0UGN3pcAnWsgKG3I52wMOBnk1VHr/A==} + '@rollup/rollup-win32-arm64-msvc@4.40.1': + resolution: {integrity: sha512-b2bcNm9Kbde03H+q+Jjw9tSfhYkzrDUf2d5MAd1bOJuVplXvFhWz7tRtWvD8/ORZi7qSCy0idW6tf2HgxSXQSg==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.28.1': - resolution: {integrity: sha512-ZkyTJ/9vkgrE/Rk9vhMXhf8l9D+eAhbAVbsGsXKy2ohmJaWg0LPQLnIxRdRp/bKyr8tXuPlXhIoGlEB5XpJnGA==} + '@rollup/rollup-win32-ia32-msvc@4.40.1': + resolution: {integrity: sha512-DfcogW8N7Zg7llVEfpqWMZcaErKfsj9VvmfSyRjCyo4BI3wPEfrzTtJkZG6gKP/Z92wFm6rz2aDO7/JfiR/whA==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.28.1': - resolution: {integrity: sha512-ZvK2jBafvttJjoIdKm/Q/Bh7IJ1Ose9IBOwpOXcOvW3ikGTQGmKDgxTC6oCAzW6PynbkKP8+um1du81XJHZ0JA==} + '@rollup/rollup-win32-x64-msvc@4.40.1': + resolution: {integrity: sha512-ECyOuDeH3C1I8jH2MK1RtBJW+YPMvSfT0a5NN0nHfQYnDSJ6tUiZH3gzwVP5/Kfh/+Tt7tpWVF9LXNTnhTJ3kA==} cpu: [x64] os: [win32] - '@shikijs/core@1.24.0': - resolution: {integrity: sha512-6pvdH0KoahMzr6689yh0QJ3rCgF4j1XsXRHNEeEN6M4xJTfQ6QPWrmHzIddotg+xPJUPEPzYzYCKzpYyhTI6Gw==} + '@shikijs/core@2.5.0': + resolution: {integrity: sha512-uu/8RExTKtavlpH7XqnVYBrfBkUc20ngXiX9NSrBhOVZYv/7XQRKUyhtkeflY5QsxC0GbJThCerruZfsUaSldg==} - '@shikijs/engine-javascript@1.24.0': - resolution: {integrity: sha512-ZA6sCeSsF3Mnlxxr+4wGEJ9Tto4RHmfIS7ox8KIAbH0MTVUkw3roHPHZN+LlJMOHJJOVupe6tvuAzRpN8qK1vA==} + '@shikijs/engine-javascript@2.5.0': + resolution: {integrity: sha512-VjnOpnQf8WuCEZtNUdjjwGUbtAVKuZkVQ/5cHy/tojVVRIRtlWMYVjyWhxOmIq05AlSOv72z7hRNRGVBgQOl0w==} - '@shikijs/engine-oniguruma@1.24.0': - resolution: {integrity: sha512-Eua0qNOL73Y82lGA4GF5P+G2+VXX9XnuUxkiUuwcxQPH4wom+tE39kZpBFXfUuwNYxHSkrSxpB1p4kyRW0moSg==} + '@shikijs/engine-oniguruma@2.5.0': + resolution: {integrity: sha512-pGd1wRATzbo/uatrCIILlAdFVKdxImWJGQ5rFiB5VZi2ve5xj3Ax9jny8QvkaV93btQEwR/rSz5ERFpC5mKNIw==} - '@shikijs/transformers@1.24.0': - resolution: {integrity: sha512-Qf/hby+PRPkoHncjYnJf5svK1aCsOUtQhuLzKPnmeXJtuUZCmbH0pTpdNtXe9tgln/RHlyRJnv7q46HHS1sO0Q==} + '@shikijs/langs@2.5.0': + resolution: {integrity: sha512-Qfrrt5OsNH5R+5tJ/3uYBBZv3SuGmnRPejV9IlIbFH3HTGLDlkqgHymAlzklVmKBjAaVmkPkyikAV/sQ1wSL+w==} - '@shikijs/types@1.24.0': - resolution: {integrity: sha512-aptbEuq1Pk88DMlCe+FzXNnBZ17LCiLIGWAeCWhoFDzia5Q5Krx3DgnULLiouSdd6+LUM39XwXGppqYE0Ghtug==} + '@shikijs/themes@2.5.0': + resolution: {integrity: sha512-wGrk+R8tJnO0VMzmUExHR+QdSaPUl/NKs+a4cQQRWyoc3YFbUzuLEi/KWK1hj+8BfHRKm2jNhhJck1dfstJpiw==} - '@shikijs/vscode-textmate@9.3.0': - resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==} + '@shikijs/transformers@2.5.0': + resolution: {integrity: sha512-SI494W5X60CaUwgi8u4q4m4s3YAFSxln3tzNjOSYqq54wlVgz0/NbbXEb3mdLbqMBztcmS7bVTaEd2w0qMmfeg==} + + '@shikijs/types@2.5.0': + resolution: {integrity: sha512-ygl5yhxki9ZLNuNpPitBWvcy9fsSKKaRuO4BAlMyagszQidxcpLAr0qiW/q43DtSIDxO6hEbtYLiFZNXO/hdGw==} + + '@shikijs/vscode-textmate@10.0.2': + resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==} '@sinonjs/commons@1.8.6': resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==} @@ -2383,9 +2548,15 @@ packages: '@types/conventional-commits-parser@5.0.0': resolution: {integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==} + '@types/debug@4.1.12': + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + '@types/estree@1.0.6': resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} + '@types/estree@1.0.7': + resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==} + '@types/graceful-fs@4.1.9': resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} @@ -2428,6 +2599,9 @@ packages: '@types/minimist@1.2.2': resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} + '@types/ms@2.1.0': + resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} + '@types/node@18.15.3': resolution: {integrity: sha512-p6ua9zBxz5otCmbpb5D3U4B5Nanw6Pk3PPyX05xnxbB/fRv71N7CPmORg7uAD5P70T0xmx1pzAx/FUfa5X+3cw==} @@ -2458,6 +2632,9 @@ packages: '@types/web-bluetooth@0.0.20': resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==} + '@types/web-bluetooth@0.0.21': + resolution: {integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==} + '@types/yargs-parser@21.0.3': resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} @@ -2716,14 +2893,14 @@ packages: '@vue/devtools-api@6.6.4': resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==} - '@vue/devtools-api@7.6.7': - resolution: {integrity: sha512-PV4I31WaV2rfA8RGauM+69uFEzWkqtP561RiLU2wK+Ce85u3zyKW3aoESlLCNzkc4y0JaJyskH6zAE3xWOP8+Q==} + '@vue/devtools-api@7.7.6': + resolution: {integrity: sha512-b2Xx0KvXZObePpXPYHvBRRJLDQn5nhKjXh7vUhMEtWxz1AYNFOVIsh5+HLP8xDGL7sy+Q7hXeUxPHB/KgbtsPw==} - '@vue/devtools-kit@7.6.7': - resolution: {integrity: sha512-V8/jrXY/swHgnblABG9U4QCbE60c6RuPasmv2d9FvVqc5d94t1vDiESuvRmdNJBdWz4/D3q6ffgyAfRVjwHYEw==} + '@vue/devtools-kit@7.7.6': + resolution: {integrity: sha512-geu7ds7tem2Y7Wz+WgbnbZ6T5eadOvozHZ23Atk/8tksHMFOFylKi1xgGlQlVn0wlkEf4hu+vd5ctj1G4kFtwA==} - '@vue/devtools-shared@7.6.7': - resolution: {integrity: sha512-QggO6SviAsolrePAXZ/sA1dSicSPt4TueZibCvydfhNDieL1lAuyMTgQDGst7TEvMGb4vgYv2I+1sDkO4jWNnw==} + '@vue/devtools-shared@7.7.6': + resolution: {integrity: sha512-yFEgJZ/WblEsojQQceuyK6FzpFDx4kqrz2ohInxNj5/DnhoX023upTv4OD6lNPLAA5LLkbwPVb10o/7b+Y4FVA==} '@vue/language-core@2.0.29': resolution: {integrity: sha512-o2qz9JPjhdoVj8D2+9bDXbaI4q2uZTHQA/dbyZT4Bj1FR9viZxDJnLcKVHfxdn6wsOzRgpqIzJEEmSSvgMvDTQ==} @@ -2789,17 +2966,17 @@ packages: '@types/node': optional: true - '@vueuse/core@11.3.0': - resolution: {integrity: sha512-7OC4Rl1f9G8IT6rUfi9JrKiXy4bfmHhZ5x2Ceojy0jnd3mHNEvV4JaRygH362ror6/NZ+Nl+n13LPzGiPN8cKA==} - '@vueuse/core@12.0.0': resolution: {integrity: sha512-C12RukhXiJCbx4MGhjmd/gH52TjJsc3G0E0kQj/kb19H3Nt6n1CA4DRWuTdWWcaFRdlTe0npWDS942mvacvNBw==} + '@vueuse/core@12.8.2': + resolution: {integrity: sha512-HbvCmZdzAu3VGi/pWYm5Ut+Kd9mn1ZHnn4L5G8kOQTPs/IwIAmJoBrmYk2ckLArgMXZj0AW3n5CAejLUO+PhdQ==} + '@vueuse/core@9.13.0': resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==} - '@vueuse/integrations@11.3.0': - resolution: {integrity: sha512-5fzRl0apQWrDezmobchoiGTkGw238VWESxZHazfhP3RM7pDSiyXy18QbfYkILoYNTd23HPAfQTJpkUc5QbkwTw==} + '@vueuse/integrations@12.8.2': + resolution: {integrity: sha512-fbGYivgK5uBTRt7p5F3zy6VrETlV9RtZjBqd1/HxGdjdckBgBM4ugP8LHpjolqTj14TXTxSK1ZfgPbHYyGuH7g==} peerDependencies: async-validator: ^4 axios: ^1 @@ -2839,21 +3016,21 @@ packages: universal-cookie: optional: true - '@vueuse/metadata@11.3.0': - resolution: {integrity: sha512-pwDnDspTqtTo2HwfLw4Rp6yywuuBdYnPYDq+mO38ZYKGebCUQC/nVj/PXSiK9HX5otxLz8Fn7ECPbjiRz2CC3g==} - '@vueuse/metadata@12.0.0': resolution: {integrity: sha512-Yzimd1D3sjxTDOlF05HekU5aSGdKjxhuhRFHA7gDWLn57PRbBIh+SF5NmjhJ0WRgF3my7T8LBucyxdFJjIfRJQ==} + '@vueuse/metadata@12.8.2': + resolution: {integrity: sha512-rAyLGEuoBJ/Il5AmFHiziCPdQzRt88VxR+Y/A/QhJ1EWtWqPBBAxTAFaSkviwEuOEZNtW8pvkPgoCZQ+HxqW1A==} + '@vueuse/metadata@9.13.0': resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==} - '@vueuse/shared@11.3.0': - resolution: {integrity: sha512-P8gSSWQeucH5821ek2mn/ciCk+MS/zoRKqdQIM3bHq6p7GXDAJLmnRRKmF5F65sAVJIfzQlwR3aDzwCn10s8hA==} - '@vueuse/shared@12.0.0': resolution: {integrity: sha512-3i6qtcq2PIio5i/vVYidkkcgvmTjCqrf26u+Fd4LhnbBmIT6FN8y6q/GJERp8lfcB9zVEfjdV0Br0443qZuJpw==} + '@vueuse/shared@12.8.2': + resolution: {integrity: sha512-dznP38YzxZoNloI0qpEfpkms8knDtaoQ6Y/sfS0L7Yki4zh40LFHEhur0odJC6xTHG5dxWVPiUWBXn+wCG2s5w==} + '@vueuse/shared@9.13.0': resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==} @@ -2938,8 +3115,8 @@ packages: ajv@8.17.1: resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} - algoliasearch@5.15.0: - resolution: {integrity: sha512-Yf3Swz1s63hjvBVZ/9f2P1Uu48GjmjCN+Esxb6MAONMGtZB1fRX8/S1AhUTtsuTlcGovbYLxpHgc7wEzstDZBw==} + algoliasearch@5.24.0: + resolution: {integrity: sha512-CkaUygzZ91Xbw11s0CsHMawrK3tl+Ue57725HGRgRzKgt2Z4wvXVXRCtQfvzh8K7Tp4Zp7f1pyHAtMROtTJHxg==} engines: {node: '>= 14.0.0'} ansi-escapes@4.3.2: @@ -3071,6 +3248,9 @@ packages: peerDependencies: '@babel/core': ^7.0.0 + bail@2.0.2: + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} + balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} @@ -3085,8 +3265,8 @@ packages: resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} engines: {node: '>=8'} - birpc@0.2.19: - resolution: {integrity: sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==} + birpc@2.3.0: + resolution: {integrity: sha512-ijbtkn/F3Pvzb6jHypHRyve2QApOCZDR25D/VnkY2G/lBNcXCTsnsCxgY4k4PkVB7zfwzYbY3O9Lcqe3xufS5g==} bl@4.1.0: resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} @@ -3151,6 +3331,15 @@ packages: buffer@5.7.1: resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + byte-size@9.0.1: + resolution: {integrity: sha512-YLe9x3rabBrcI0cueCdLS2l5ONUKywcRpTs02B8KP9/Cimhj7o3ZccGrPnRvcbyHMbb7W79/3MUJl7iGgTXKEw==} + engines: {node: '>=12.17'} + peerDependencies: + '@75lb/nature': latest + peerDependenciesMeta: + '@75lb/nature': + optional: true + bytes@3.1.2: resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} engines: {node: '>= 0.8'} @@ -3225,6 +3414,9 @@ packages: character-entities-legacy@3.0.0: resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} + character-entities@2.0.2: + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + chardet@0.7.0: resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} @@ -3607,6 +3799,9 @@ packages: decimal.js@10.5.0: resolution: {integrity: sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==} + decode-named-character-reference@1.1.0: + resolution: {integrity: sha512-Wy+JTSbFThEOXQIR2L6mxJvEs+veIzpmqD7ynWxMXGpnk3smkHQOp6forLdHsKpAMW9iJpaBBIxz285t1n1C3w==} + decode-uri-component@0.4.1: resolution: {integrity: sha512-+8VxcR21HhTy8nOt6jf20w0c9CADrw1O8d+VZ/YzzCt4bJ3uBjw+D1q2osAB8RnpwwaeYBxy0HyKQxD5JBMuuQ==} engines: {node: '>=14.16'} @@ -3805,6 +4000,11 @@ packages: engines: {node: '>=18'} hasBin: true + esbuild@0.25.4: + resolution: {integrity: sha512-8pgjLUcUjcgDg+2Q4NYXnPbo/vncAY4UmyaCm0jZevERqCHZIaWwdJHkf8XQtu4AxSKCdvrUbT0XUr1IdZzI8Q==} + engines: {node: '>=18'} + hasBin: true + escalade@3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} engines: {node: '>=6'} @@ -3965,6 +4165,13 @@ packages: exsolve@1.0.4: resolution: {integrity: sha512-xsZH6PXaER4XoV+NiT7JHp1bJodJVT+cxeSH1G0f0tlT0lJqYuHUP3bUx2HtfTDvOagMINYp8rsqusxud3RXhw==} + extend-shallow@2.0.1: + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} + + extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + external-editor@3.1.0: resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} engines: {node: '>=4'} @@ -3996,12 +4203,23 @@ packages: fastq@1.15.0: resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} + fault@2.0.1: + resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==} + fb-watchman@2.0.2: resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} fd-slicer@1.1.0: resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + fdir@6.4.4: + resolution: {integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + figures@3.2.0: resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} engines: {node: '>=8'} @@ -4053,8 +4271,8 @@ packages: flatted@3.2.7: resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} - focus-trap@7.6.2: - resolution: {integrity: sha512-9FhUxK1hVju2+AiQIDJ5Dd//9R2n2RAfJ0qfhF4IHGHgcoEUTMpbTeG/zbEuwaiYXfuAH6XE0/aCyxDdRM+W5w==} + focus-trap@7.6.4: + resolution: {integrity: sha512-xx560wGBk7seZ6y933idtjJQc1l+ck+pI3sKvhKozdBV1dRZoKhkW5xoCaFv9tQiX5RH1xfSxjuNu6g+lmN/gw==} follow-redirects@1.15.9: resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==} @@ -4080,6 +4298,10 @@ packages: resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==} engines: {node: '>= 6'} + format@0.2.2: + resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} + engines: {node: '>=0.4.x'} + forwarded@0.2.0: resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} engines: {node: '>= 0.6'} @@ -4246,6 +4468,10 @@ packages: graphemer@1.4.0: resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + gray-matter@4.0.3: + resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} + engines: {node: '>=6.0'} + handlebars@4.7.7: resolution: {integrity: sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==} engines: {node: '>=0.4.7'} @@ -4300,8 +4526,8 @@ packages: resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} engines: {node: '>= 0.4'} - hast-util-to-html@9.0.3: - resolution: {integrity: sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==} + hast-util-to-html@9.0.5: + resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==} hast-util-whitespace@3.0.0: resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} @@ -4490,6 +4716,10 @@ packages: engines: {node: '>=8'} hasBin: true + is-extendable@0.1.1: + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} + is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} @@ -4537,6 +4767,10 @@ packages: resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} engines: {node: '>=0.10.0'} + is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} + is-potential-custom-element-name@1.0.1: resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} @@ -5006,6 +5240,9 @@ packages: resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} engines: {node: '>=10'} + longest-streak@3.1.0: + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + loupe@3.1.3: resolution: {integrity: sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==} @@ -5057,13 +5294,32 @@ packages: mark.js@8.11.1: resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==} + markdown-title@1.0.2: + resolution: {integrity: sha512-MqIQVVkz+uGEHi3TsHx/czcxxCbRIL7sv5K5DnYw/tI+apY54IbPefV/cmgxp6LoJSEx/TqcHdLs/298afG5QQ==} + engines: {node: '>=6'} + math-intrinsics@1.1.0: resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} engines: {node: '>= 0.4'} + mdast-util-from-markdown@2.0.2: + resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} + + mdast-util-frontmatter@2.0.1: + resolution: {integrity: sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==} + + 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.2: + resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} + + mdast-util-to-string@4.0.0: + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} + media-typer@0.3.0: resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} engines: {node: '>= 0.6'} @@ -5104,21 +5360,72 @@ packages: resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} engines: {node: '>= 0.6'} + micromark-core-commonmark@2.0.3: + resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} + + micromark-extension-frontmatter@2.0.0: + resolution: {integrity: sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg==} + + micromark-factory-destination@2.0.1: + resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} + + micromark-factory-label@2.0.1: + resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} + + micromark-factory-space@2.0.1: + resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} + + micromark-factory-title@2.0.1: + resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} + + micromark-factory-whitespace@2.0.1: + resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} + micromark-util-character@2.1.1: resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} + micromark-util-chunked@2.0.1: + resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} + + micromark-util-classify-character@2.0.1: + resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} + + micromark-util-combine-extensions@2.0.1: + resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} + + micromark-util-decode-numeric-character-reference@2.0.2: + resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} + + micromark-util-decode-string@2.0.1: + resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} + micromark-util-encode@2.0.1: resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} + micromark-util-html-tag-name@2.0.1: + resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} + + micromark-util-normalize-identifier@2.0.1: + resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} + + micromark-util-resolve-all@2.0.1: + resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} + micromark-util-sanitize-uri@2.0.1: resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} + micromark-util-subtokenize@2.1.0: + resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==} + micromark-util-symbol@2.0.1: resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} micromark-util-types@2.0.1: resolution: {integrity: sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==} + micromark@4.0.2: + resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==} + micromatch@4.0.5: resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} engines: {node: '>=8.6'} @@ -5127,6 +5434,10 @@ packages: resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} engines: {node: '>=8.6'} + millify@6.1.0: + resolution: {integrity: sha512-H/E3J6t+DQs/F2YgfDhxUVZz/dF8JXPPKTLHL/yHCcLZLtCXJDUaqvhJXQwqOVBvbyNn4T0WjLpIHd7PAw7fBA==} + hasBin: true + mime-db@1.52.0: resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} engines: {node: '>= 0.6'} @@ -5163,6 +5474,10 @@ packages: mini-types@0.1.7: resolution: {integrity: sha512-aSoVvrIr/O9tbzFjSCeKr/T53Hu+un+FXkfWPfGcb/q8eAHXX1CDgSHv8l0GtFTlfHzznmn4hbRGB3UTWmZ3fA==} + minimatch@10.0.1: + resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==} + engines: {node: 20 || >=22} + minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} @@ -5204,8 +5519,8 @@ packages: miniprogram-api-typings@3.12.3: resolution: {integrity: sha512-o7bOfrU28MEMCBWo83nXv0ROQSBFxJcfCl4f2wTYqah64ipC5RGqLJfvWJTWhlQt2ECVwspSzM8LgvnfMo7TEQ==} - minisearch@7.1.1: - resolution: {integrity: sha512-b3YZEYCEH4EdCAtYP7OlDyx7FdPwNzuNwLQ34SfJpM9dlbBZzeXndGavTrC+VCiRWomL21SWfMc6SCKO/U2ZNw==} + minisearch@7.1.2: + resolution: {integrity: sha512-R1Pd9eF+MD5JYDDSPAp/q1ougKglm14uEkPMvQ/05RGmx6G9wvmLTrTI/Q5iPNJLYqNdsDQ7qTGIcNWR+FrHmA==} mitt@3.0.1: resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==} @@ -5361,8 +5676,8 @@ packages: resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} engines: {node: '>=12'} - oniguruma-to-es@0.7.0: - resolution: {integrity: sha512-HRaRh09cE0gRS3+wi2zxekB+I5L8C/gN60S+vb11eADHUaB/q4u8wGGOX3GvwvitG8ixaeycZfeoyruKQzUgNg==} + oniguruma-to-es@3.1.1: + resolution: {integrity: sha512-bUH8SDvPkH3ho3dvwJwfonjlQ4R80vjyvrU8YpxuROddv55vAEJrTuCuCVUhhsHbtlD9tGGbaNApGQckXhS8iQ==} open@8.4.2: resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} @@ -5660,8 +5975,12 @@ packages: resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} engines: {node: ^10 || ^12 || >=14} - preact@10.25.1: - resolution: {integrity: sha512-frxeZV2vhQSohQwJ7FvlqC40ze89+8friponWUFeVEkaCfhC6Eu4V0iND5C9CXz8JLndV07QRDeXzH1+Anz5Og==} + postcss@8.5.3: + resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==} + engines: {node: ^10 || ^12 || >=14} + + preact@10.26.5: + resolution: {integrity: sha512-fmpDkgfGU6JYux9teDWLhj9mKN55tyepwYbxHgQuIxbWQzgFg5vk7Mrrtfx7xRxq798ynkY4DDDxZr235Kk+4w==} prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} @@ -5695,8 +6014,8 @@ packages: resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} engines: {node: '>= 6'} - property-information@6.5.0: - resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} + property-information@7.0.0: + resolution: {integrity: sha512-7D/qOz/+Y4X/rzSB6jKxKUsQnphO046ei8qxG59mtM3RG3DHgTK81HrxrmoDVINJb8NKT5ZsRbwHvQ6B68Iyhg==} proto-list@1.2.4: resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} @@ -5816,14 +6135,14 @@ packages: regenerator-transform@0.15.2: resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} - regex-recursion@4.3.0: - resolution: {integrity: sha512-5LcLnizwjcQ2ALfOj95MjcatxyqF5RPySx9yT+PaXu3Gox2vyAtLDjHB8NTJLtMGkvyau6nI3CfpwFCjPUIs/A==} + regex-recursion@6.0.2: + resolution: {integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==} regex-utilities@2.3.0: resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==} - regex@5.0.2: - resolution: {integrity: sha512-/pczGbKIQgfTMRV0XjABvc5RzLqQmwqxLHdQao2RTXPk+pmTXB2P0IaUHYdYyk412YLwUIkaeMd5T+RzVgTqnQ==} + regex@6.0.1: + resolution: {integrity: sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==} regexp.prototype.flags@1.4.3: resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} @@ -5837,6 +6156,18 @@ packages: resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} hasBin: true + remark-frontmatter@5.0.0: + resolution: {integrity: sha512-XTFYvNASMe5iPN0719nPrdItC9aU0ssC4v14mH1BCi1u0n1gAocqcujWUrByftZTbLhRtiKRyjYTSIOcr69UVQ==} + + remark-parse@11.0.0: + resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} + + remark-stringify@11.0.0: + resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} + + remark@15.0.1: + resolution: {integrity: sha512-Eht5w30ruCXgFmxVUSlNWQ9iiimq07URKeFS3hNc8cUWy1llX4KDWfyEDZRycMc+znsN9Ux5/tJ/BFdgdOwA3A==} + require-directory@2.1.1: resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} engines: {node: '>=0.10.0'} @@ -5914,8 +6245,8 @@ packages: engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true - rollup@4.28.1: - resolution: {integrity: sha512-61fXYl/qNVinKmGSTHAZ6Yy8I3YIJC/r2m9feHo6SwVAVcLT5MPwOUFe7EuURA/4m0NR8lXG4BBXuo/IZEsjMg==} + rollup@4.40.1: + resolution: {integrity: sha512-C5VvvgCCyfyotVITIAv+4efVytl5F7wt+/I2i9q9GZcEXW9BP52YYOXC58igUi+LFZVHukErIIqQSWwv/M3WRw==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -5969,8 +6300,12 @@ packages: scule@1.3.0: resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==} - search-insights@2.13.0: - resolution: {integrity: sha512-Orrsjf9trHHxFRuo9/rzm0KIWmgzE8RMlZMzuhZOJ01Rnz3D0YBAe+V6473t6/H6c7irs6Lt48brULAiRWb3Vw==} + search-insights@2.17.3: + resolution: {integrity: sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==} + + section-matter@1.0.0: + resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} + engines: {node: '>=4'} semver@5.7.1: resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} @@ -6029,8 +6364,8 @@ packages: shell-quote@1.8.0: resolution: {integrity: sha512-QHsz8GgQIGKlRi24yFc6a6lN69Idnx634w49ay6+jA5yFh7a1UY+4Rp6HPx/L/1zcEDPEij8cIsiqR6bQsE5VQ==} - shiki@1.24.0: - resolution: {integrity: sha512-qIneep7QRwxRd5oiHb8jaRzH15V/S8F3saCXOdjwRLgozZJr5x2yeBhQtqkO3FSzQDwYEFAYuifg4oHjpDghrg==} + shiki@2.5.0: + resolution: {integrity: sha512-mI//trrsaiCIPsja5CNfsyNOqgAZUb6VpJA+340toL42UpzQlXpwRV9nch69X6gaUxrr9kaOOa6e3y3uAkGFxQ==} side-channel@1.0.4: resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} @@ -6192,6 +6527,10 @@ packages: resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==} engines: {node: '>=12'} + strip-bom-string@1.0.0: + resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} + engines: {node: '>=0.10.0'} + strip-bom@3.0.0: resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} engines: {node: '>=4'} @@ -6324,6 +6663,10 @@ packages: tinyexec@0.3.2: resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} + tinyglobby@0.2.13: + resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==} + engines: {node: '>=12.0.0'} + tinypool@1.0.2: resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==} engines: {node: ^18.0.0 || >=20.0.0} @@ -6358,6 +6701,9 @@ packages: resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} engines: {node: '>=0.6'} + tokenx@0.4.1: + resolution: {integrity: sha512-LCMniis0WsHel07xh3K9OIt5c9Xla1awtOoWBmUHZBQR7pvTvgGFuYpLiCZWohXPC1YuZORnN0+fCVYI/ie8Jg==} + tough-cookie@4.1.4: resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} engines: {node: '>=6'} @@ -6384,6 +6730,9 @@ packages: resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} engines: {node: '>=8'} + trough@2.2.0: + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} + ts-api-utils@1.4.3: resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==} engines: {node: '>=16'} @@ -6501,6 +6850,9 @@ packages: resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} engines: {node: '>=18'} + unified@11.0.5: + resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} + unimport@3.14.6: resolution: {integrity: sha512-CYvbDaTT04Rh8bmD8jz3WPmHYZRG/NnvYVzwD6V1YAlvvKROlAeNDUBhkBGzNav2RKaeuXvlWYaa1V4Lfi/O0g==} @@ -6513,6 +6865,9 @@ packages: unist-util-position@5.0.0: resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} + unist-util-remove@4.0.0: + resolution: {integrity: sha512-b4gokeGId57UVRX/eVKej5gXqGlc9+trkORhFJpu9raqZkZhU0zm8Doi05+HaiBsMEIJowL+2WtQ5ItjsngPXg==} + unist-util-stringify-position@4.0.0: resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} @@ -6639,36 +6994,8 @@ packages: peerDependencies: vite: '>=2.0.0' - vite@5.2.8: - resolution: {integrity: sha512-OyZR+c1CE8yeHw5V5t59aXsUPPVTHMDjEZz8MgguLL/Q7NblxhZUlTu9xSPqlsUO/y+X7dlU05jdhvyycD55DA==} - engines: {node: ^18.0.0 || >=20.0.0} - hasBin: true - peerDependencies: - '@types/node': ^18.0.0 || >=20.0.0 - 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.4.11: - resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==} + vite@5.4.19: + resolution: {integrity: sha512-qO3aKv3HoQC8QKiNSTuUM1l9o/XX3+c+VTgLHbJWHZGeTPVAg2XwazI9UWzoxjIJCGCV2zU60uqMzjeLZuULqA==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -6698,8 +7025,51 @@ packages: terser: optional: true - vitepress@1.5.0: - resolution: {integrity: sha512-q4Q/G2zjvynvizdB3/bupdYkCJe2umSAMv9Ju4d92E6/NXJ59z70xB0q5p/4lpRyAwflDsbwy1mLV9Q5+nlB+g==} + vite@6.3.5: + resolution: {integrity: sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 + jiti: '>=1.21.0' + less: '*' + lightningcss: ^1.21.0 + sass: '*' + sass-embedded: '*' + stylus: '*' + sugarss: '*' + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + jiti: + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + + vitepress-plugin-llms@1.1.3: + resolution: {integrity: sha512-7pJbG92hI70KerMc0SViIsKzwQHNz6ftrwfmwaT/z1TyfIH3p0X2sZ+fHmSIYYtrYhGPEpqiUhGfAVLhLX54hQ==} + + vitepress@1.6.3: + resolution: {integrity: sha512-fCkfdOk8yRZT8GD9BFqusW3+GggWYZ/rYncOfmgcDtP3ualNHCAg+Robxp2/6xfH1WwPHtGpPwv7mbA3qomtBw==} hasBin: true peerDependencies: markdown-it-mathjax3: ^4 @@ -6744,17 +7114,6 @@ packages: vue-component-type-helpers@2.2.8: resolution: {integrity: sha512-4bjIsC284coDO9om4HPA62M7wfsTvcmZyzdfR0aUlFXqq4tXxM1APyXpNVxPC8QazKw9OhmZNHBVDA6ODaZsrA==} - vue-demi@0.14.10: - resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==} - 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-demi@0.14.5: resolution: {integrity: sha512-o9NUVpl/YlsGJ7t+xuqJKx8EBGf1quRhCiT6D/J0pfwmk9zUwYkC7yrF4SZCe6fETvSM3UNL2edcbYrSyc4QHA==} engines: {node: '>=12'} @@ -7065,110 +7424,110 @@ packages: snapshots: - '@algolia/autocomplete-core@1.17.7(@algolia/client-search@5.15.0)(algoliasearch@5.15.0)(search-insights@2.13.0)': + '@algolia/autocomplete-core@1.17.7(@algolia/client-search@5.24.0)(algoliasearch@5.24.0)(search-insights@2.17.3)': dependencies: - '@algolia/autocomplete-plugin-algolia-insights': 1.17.7(@algolia/client-search@5.15.0)(algoliasearch@5.15.0)(search-insights@2.13.0) - '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.15.0)(algoliasearch@5.15.0) + '@algolia/autocomplete-plugin-algolia-insights': 1.17.7(@algolia/client-search@5.24.0)(algoliasearch@5.24.0)(search-insights@2.17.3) + '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.24.0)(algoliasearch@5.24.0) transitivePeerDependencies: - '@algolia/client-search' - algoliasearch - search-insights - '@algolia/autocomplete-plugin-algolia-insights@1.17.7(@algolia/client-search@5.15.0)(algoliasearch@5.15.0)(search-insights@2.13.0)': + '@algolia/autocomplete-plugin-algolia-insights@1.17.7(@algolia/client-search@5.24.0)(algoliasearch@5.24.0)(search-insights@2.17.3)': dependencies: - '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.15.0)(algoliasearch@5.15.0) - search-insights: 2.13.0 + '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.24.0)(algoliasearch@5.24.0) + search-insights: 2.17.3 transitivePeerDependencies: - '@algolia/client-search' - algoliasearch - '@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.15.0)(algoliasearch@5.15.0)': + '@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.24.0)(algoliasearch@5.24.0)': dependencies: - '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.15.0)(algoliasearch@5.15.0) - '@algolia/client-search': 5.15.0 - algoliasearch: 5.15.0 + '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.24.0)(algoliasearch@5.24.0) + '@algolia/client-search': 5.24.0 + algoliasearch: 5.24.0 - '@algolia/autocomplete-shared@1.17.7(@algolia/client-search@5.15.0)(algoliasearch@5.15.0)': + '@algolia/autocomplete-shared@1.17.7(@algolia/client-search@5.24.0)(algoliasearch@5.24.0)': dependencies: - '@algolia/client-search': 5.15.0 - algoliasearch: 5.15.0 + '@algolia/client-search': 5.24.0 + algoliasearch: 5.24.0 - '@algolia/client-abtesting@5.15.0': + '@algolia/client-abtesting@5.24.0': dependencies: - '@algolia/client-common': 5.15.0 - '@algolia/requester-browser-xhr': 5.15.0 - '@algolia/requester-fetch': 5.15.0 - '@algolia/requester-node-http': 5.15.0 + '@algolia/client-common': 5.24.0 + '@algolia/requester-browser-xhr': 5.24.0 + '@algolia/requester-fetch': 5.24.0 + '@algolia/requester-node-http': 5.24.0 - '@algolia/client-analytics@5.15.0': + '@algolia/client-analytics@5.24.0': dependencies: - '@algolia/client-common': 5.15.0 - '@algolia/requester-browser-xhr': 5.15.0 - '@algolia/requester-fetch': 5.15.0 - '@algolia/requester-node-http': 5.15.0 + '@algolia/client-common': 5.24.0 + '@algolia/requester-browser-xhr': 5.24.0 + '@algolia/requester-fetch': 5.24.0 + '@algolia/requester-node-http': 5.24.0 - '@algolia/client-common@5.15.0': {} + '@algolia/client-common@5.24.0': {} - '@algolia/client-insights@5.15.0': + '@algolia/client-insights@5.24.0': dependencies: - '@algolia/client-common': 5.15.0 - '@algolia/requester-browser-xhr': 5.15.0 - '@algolia/requester-fetch': 5.15.0 - '@algolia/requester-node-http': 5.15.0 + '@algolia/client-common': 5.24.0 + '@algolia/requester-browser-xhr': 5.24.0 + '@algolia/requester-fetch': 5.24.0 + '@algolia/requester-node-http': 5.24.0 - '@algolia/client-personalization@5.15.0': + '@algolia/client-personalization@5.24.0': dependencies: - '@algolia/client-common': 5.15.0 - '@algolia/requester-browser-xhr': 5.15.0 - '@algolia/requester-fetch': 5.15.0 - '@algolia/requester-node-http': 5.15.0 + '@algolia/client-common': 5.24.0 + '@algolia/requester-browser-xhr': 5.24.0 + '@algolia/requester-fetch': 5.24.0 + '@algolia/requester-node-http': 5.24.0 - '@algolia/client-query-suggestions@5.15.0': + '@algolia/client-query-suggestions@5.24.0': dependencies: - '@algolia/client-common': 5.15.0 - '@algolia/requester-browser-xhr': 5.15.0 - '@algolia/requester-fetch': 5.15.0 - '@algolia/requester-node-http': 5.15.0 + '@algolia/client-common': 5.24.0 + '@algolia/requester-browser-xhr': 5.24.0 + '@algolia/requester-fetch': 5.24.0 + '@algolia/requester-node-http': 5.24.0 - '@algolia/client-search@5.15.0': + '@algolia/client-search@5.24.0': dependencies: - '@algolia/client-common': 5.15.0 - '@algolia/requester-browser-xhr': 5.15.0 - '@algolia/requester-fetch': 5.15.0 - '@algolia/requester-node-http': 5.15.0 + '@algolia/client-common': 5.24.0 + '@algolia/requester-browser-xhr': 5.24.0 + '@algolia/requester-fetch': 5.24.0 + '@algolia/requester-node-http': 5.24.0 - '@algolia/ingestion@1.15.0': + '@algolia/ingestion@1.24.0': dependencies: - '@algolia/client-common': 5.15.0 - '@algolia/requester-browser-xhr': 5.15.0 - '@algolia/requester-fetch': 5.15.0 - '@algolia/requester-node-http': 5.15.0 + '@algolia/client-common': 5.24.0 + '@algolia/requester-browser-xhr': 5.24.0 + '@algolia/requester-fetch': 5.24.0 + '@algolia/requester-node-http': 5.24.0 - '@algolia/monitoring@1.15.0': + '@algolia/monitoring@1.24.0': dependencies: - '@algolia/client-common': 5.15.0 - '@algolia/requester-browser-xhr': 5.15.0 - '@algolia/requester-fetch': 5.15.0 - '@algolia/requester-node-http': 5.15.0 + '@algolia/client-common': 5.24.0 + '@algolia/requester-browser-xhr': 5.24.0 + '@algolia/requester-fetch': 5.24.0 + '@algolia/requester-node-http': 5.24.0 - '@algolia/recommend@5.15.0': + '@algolia/recommend@5.24.0': dependencies: - '@algolia/client-common': 5.15.0 - '@algolia/requester-browser-xhr': 5.15.0 - '@algolia/requester-fetch': 5.15.0 - '@algolia/requester-node-http': 5.15.0 + '@algolia/client-common': 5.24.0 + '@algolia/requester-browser-xhr': 5.24.0 + '@algolia/requester-fetch': 5.24.0 + '@algolia/requester-node-http': 5.24.0 - '@algolia/requester-browser-xhr@5.15.0': + '@algolia/requester-browser-xhr@5.24.0': dependencies: - '@algolia/client-common': 5.15.0 + '@algolia/client-common': 5.24.0 - '@algolia/requester-fetch@5.15.0': + '@algolia/requester-fetch@5.24.0': dependencies: - '@algolia/client-common': 5.15.0 + '@algolia/client-common': 5.24.0 - '@algolia/requester-node-http@5.15.0': + '@algolia/requester-node-http@5.24.0': dependencies: - '@algolia/client-common': 5.15.0 + '@algolia/client-common': 5.24.0 '@ampproject/remapping@2.3.0': dependencies: @@ -8408,10 +8767,10 @@ snapshots: '@dcloudio/types@3.4.12': {} - '@dcloudio/uni-app-harmony@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-app-harmony@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-app-uts': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-app-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-app-uts': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-app-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4)) debug: 4.4.0 fs-extra: 10.1.0 licia: 1.38.0 @@ -8426,10 +8785,10 @@ snapshots: - vite - vue - '@dcloudio/uni-app-plus@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-app-plus@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-app-uts': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-app-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-app-uts': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-app-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-app-vue': 3.0.0-4050720250324001 debug: 4.4.0 fs-extra: 10.1.0 @@ -8445,12 +8804,12 @@ snapshots: - vite - vue - '@dcloudio/uni-app-uts@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-app-uts@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: '@babel/parser': 7.26.10 '@babel/types': 7.26.10 - '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-console': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-console': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-i18n': 3.0.0-4050720250324001 '@dcloudio/uni-nvue-styler': 3.0.0-4050720250324001 '@dcloudio/uni-shared': 3.0.0-4050720250324001 @@ -8479,14 +8838,14 @@ snapshots: - ts-node - vue - '@dcloudio/uni-app-vite@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-app-vite@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-i18n': 3.0.0-4050720250324001 '@dcloudio/uni-nvue-styler': 3.0.0-4050720250324001 '@dcloudio/uni-shared': 3.0.0-4050720250324001 '@rollup/pluginutils': 5.1.4(rollup@3.29.5) - '@vitejs/plugin-vue': 5.1.0(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4)) + '@vitejs/plugin-vue': 5.1.0(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4)) '@vue/compiler-dom': 3.4.21 '@vue/compiler-sfc': 3.4.21 debug: 4.4.0 @@ -8504,16 +8863,16 @@ snapshots: '@dcloudio/uni-app-vue@3.0.0-4050720250324001': {} - '@dcloudio/uni-app@3.0.0-4050720250324001(@dcloudio/types@3.4.12)(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-app@3.0.0-4050720250324001(@dcloudio/types@3.4.12)(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: '@dcloudio/types': 3.4.12 - '@dcloudio/uni-cloud': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-components': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-console': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cloud': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-components': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-console': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-i18n': 3.0.0-4050720250324001 - '@dcloudio/uni-push': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-push': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-shared': 3.0.0-4050720250324001 - '@dcloudio/uni-stat': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-stat': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@vue/shared': 3.4.21 transitivePeerDependencies: - '@nuxt/kit' @@ -8524,9 +8883,9 @@ snapshots: - ts-node - vue - '@dcloudio/uni-automator@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(jest-environment-node@27.5.1)(jest@27.0.4(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4)))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-automator@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(jest-environment-node@27.5.1)(jest@27.0.4(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4)))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) address: 1.2.2 cross-env: 7.0.3 debug: 4.4.0 @@ -8551,7 +8910,7 @@ snapshots: - utf-8-validate - vue - '@dcloudio/uni-cli-shared@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-cli-shared@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.26.2 @@ -8571,7 +8930,7 @@ snapshots: '@vue/server-renderer': 3.4.21(vue@3.4.38(typescript@5.5.4)) '@vue/shared': 3.4.21 adm-zip: 0.5.16 - autoprefixer: 10.4.20(postcss@8.4.49) + autoprefixer: 10.4.20(postcss@8.5.3) base64url: 3.0.1 chokidar: 3.5.3 compare-versions: 3.6.0 @@ -8591,9 +8950,9 @@ snapshots: module-alias: 2.2.2 os-locale-s-fix: 1.0.8-fix-1 picocolors: 1.1.1 - postcss-import: 14.1.0(postcss@8.4.49) - postcss-load-config: 3.1.4(postcss@8.4.49)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4)) - postcss-modules: 4.3.1(postcss@8.4.49) + postcss-import: 14.1.0(postcss@8.5.3) + postcss-load-config: 3.1.4(postcss@8.5.3)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4)) + postcss-modules: 4.3.1(postcss@8.5.3) postcss-selector-parser: 6.0.11 resolve: 1.22.10 source-map-js: 1.2.1 @@ -8609,9 +8968,9 @@ snapshots: - ts-node - vue - '@dcloudio/uni-cloud@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-cloud@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-i18n': 3.0.0-4050720250324001 '@dcloudio/uni-shared': 3.0.0-4050720250324001 '@vue/shared': 3.4.21 @@ -8625,10 +8984,10 @@ snapshots: - ts-node - vue - '@dcloudio/uni-components@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-components@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-cloud': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-h5': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cloud': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-h5': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-i18n': 3.0.0-4050720250324001 transitivePeerDependencies: - '@nuxt/kit' @@ -8639,9 +8998,9 @@ snapshots: - ts-node - vue - '@dcloudio/uni-console@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-console@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) fs-extra: 10.1.0 transitivePeerDependencies: - '@nuxt/kit' @@ -8652,9 +9011,9 @@ snapshots: - ts-node - vue - '@dcloudio/uni-h5-vite@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-h5-vite@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-shared': 3.0.0-4050720250324001 '@rollup/pluginutils': 5.1.4(rollup@3.29.5) '@vue/compiler-dom': 3.4.21 @@ -8681,9 +9040,9 @@ snapshots: transitivePeerDependencies: - vue - '@dcloudio/uni-h5@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-h5@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-h5-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-h5-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-h5-vue': 3.0.0-4050720250324001(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-i18n': 3.0.0-4050720250324001 '@dcloudio/uni-shared': 3.0.0-4050720250324001 @@ -8706,10 +9065,10 @@ snapshots: '@dcloudio/uni-i18n@3.0.0-4050720250324001': {} - '@dcloudio/uni-mp-alipay@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-mp-alipay@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-mp-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-mp-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-mp-vue': 3.0.0-4050720250324001 '@dcloudio/uni-shared': 3.0.0-4050720250324001 '@vue/compiler-core': 3.4.21 @@ -8723,14 +9082,14 @@ snapshots: - ts-node - vue - '@dcloudio/uni-mp-baidu@3.0.0-4050720250324001(@dcloudio/types@3.4.12)(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-mp-baidu@3.0.0-4050720250324001(@dcloudio/types@3.4.12)(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-app': 3.0.0-4050720250324001(@dcloudio/types@3.4.12)(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-mp-compiler': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-mp-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-app': 3.0.0-4050720250324001(@dcloudio/types@3.4.12)(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-mp-compiler': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-mp-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-mp-vue': 3.0.0-4050720250324001 - '@dcloudio/uni-mp-weixin': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-mp-weixin': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-shared': 3.0.0-4050720250324001 '@vue/compiler-core': 3.4.21 '@vue/shared': 3.4.21 @@ -8751,12 +9110,12 @@ snapshots: - utf-8-validate - vue - '@dcloudio/uni-mp-compiler@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-mp-compiler@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: '@babel/generator': 7.26.10 '@babel/parser': 7.26.10 '@babel/types': 7.26.10 - '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-shared': 3.0.0-4050720250324001 '@vue/compiler-core': 3.4.21 '@vue/compiler-dom': 3.4.21 @@ -8771,11 +9130,11 @@ snapshots: - ts-node - vue - '@dcloudio/uni-mp-jd@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-mp-jd@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-mp-compiler': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-mp-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-mp-compiler': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-mp-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-mp-vue': 3.0.0-4050720250324001 '@dcloudio/uni-shared': 3.0.0-4050720250324001 '@vue/shared': 3.4.21 @@ -8788,13 +9147,13 @@ snapshots: - ts-node - vue - '@dcloudio/uni-mp-kuaishou@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-mp-kuaishou@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-mp-compiler': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-mp-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-mp-compiler': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-mp-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-mp-vue': 3.0.0-4050720250324001 - '@dcloudio/uni-mp-weixin': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-mp-weixin': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-shared': 3.0.0-4050720250324001 '@vue/compiler-core': 3.4.21 '@vue/shared': 3.4.21 @@ -8809,12 +9168,12 @@ snapshots: - utf-8-validate - vue - '@dcloudio/uni-mp-lark@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-mp-lark@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-mp-compiler': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-mp-toutiao': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-mp-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-mp-compiler': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-mp-toutiao': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-mp-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-mp-vue': 3.0.0-4050720250324001 '@dcloudio/uni-shared': 3.0.0-4050720250324001 '@vue/compiler-core': 3.4.21 @@ -8828,10 +9187,10 @@ snapshots: - ts-node - vue - '@dcloudio/uni-mp-qq@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-mp-qq@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-mp-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-mp-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-mp-vue': 3.0.0-4050720250324001 '@dcloudio/uni-shared': 3.0.0-4050720250324001 '@vue/shared': 3.4.21 @@ -8845,11 +9204,11 @@ snapshots: - ts-node - vue - '@dcloudio/uni-mp-toutiao@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-mp-toutiao@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-mp-compiler': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-mp-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-mp-compiler': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-mp-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-mp-vue': 3.0.0-4050720250324001 '@dcloudio/uni-shared': 3.0.0-4050720250324001 '@vue/compiler-core': 3.4.21 @@ -8863,11 +9222,11 @@ snapshots: - ts-node - vue - '@dcloudio/uni-mp-vite@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-mp-vite@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-i18n': 3.0.0-4050720250324001 - '@dcloudio/uni-mp-compiler': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-mp-compiler': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-mp-vue': 3.0.0-4050720250324001 '@dcloudio/uni-shared': 3.0.0-4050720250324001 '@vue/compiler-dom': 3.4.21 @@ -8888,10 +9247,10 @@ snapshots: '@dcloudio/uni-shared': 3.0.0-4050720250324001 '@vue/shared': 3.4.21 - '@dcloudio/uni-mp-weixin@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-mp-weixin@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-mp-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-mp-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-mp-vue': 3.0.0-4050720250324001 '@dcloudio/uni-shared': 3.0.0-4050720250324001 '@vue/shared': 3.4.21 @@ -8911,11 +9270,11 @@ snapshots: - utf-8-validate - vue - '@dcloudio/uni-mp-xhs@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-mp-xhs@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-mp-compiler': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-mp-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-mp-compiler': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-mp-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-mp-vue': 3.0.0-4050720250324001 '@dcloudio/uni-shared': 3.0.0-4050720250324001 '@vue/shared': 3.4.21 @@ -8933,9 +9292,9 @@ snapshots: parse-css-font: 4.0.0 postcss: 8.4.49 - '@dcloudio/uni-push@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-push@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) transitivePeerDependencies: - '@nuxt/kit' - '@vueuse/core' @@ -8945,10 +9304,10 @@ snapshots: - ts-node - vue - '@dcloudio/uni-quickapp-webview@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-quickapp-webview@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) - '@dcloudio/uni-mp-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-mp-vite': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-mp-vue': 3.0.0-4050720250324001 '@dcloudio/uni-shared': 3.0.0-4050720250324001 '@vue/shared': 3.4.21 @@ -8967,9 +9326,9 @@ snapshots: '@dcloudio/uni-stacktracey@3.0.0-4050720250324001': {} - '@dcloudio/uni-stat@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/uni-stat@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4))': dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-shared': 3.0.0-4050720250324001 debug: 4.4.0 transitivePeerDependencies: @@ -8981,17 +9340,17 @@ snapshots: - ts-node - vue - '@dcloudio/vite-plugin-uni@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4))': + '@dcloudio/vite-plugin-uni@3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4))': dependencies: '@babel/core': 7.25.2 '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2) '@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.25.2) - '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.4.49)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) + '@dcloudio/uni-cli-shared': 3.0.0-4050720250324001(@vueuse/core@12.0.0(typescript@5.5.4))(postcss@8.5.3)(rollup@3.29.5)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4))(vue@3.4.38(typescript@5.5.4)) '@dcloudio/uni-shared': 3.0.0-4050720250324001 '@rollup/pluginutils': 5.1.4(rollup@3.29.5) - '@vitejs/plugin-legacy': 5.3.2(terser@5.16.6)(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6)) - '@vitejs/plugin-vue': 5.1.0(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4)) - '@vitejs/plugin-vue-jsx': 3.1.0(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4)) + '@vitejs/plugin-legacy': 5.3.2(terser@5.16.6)(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6)) + '@vitejs/plugin-vue': 5.1.0(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4)) + '@vitejs/plugin-vue-jsx': 3.1.0(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4)) '@vue/compiler-core': 3.4.21 '@vue/compiler-dom': 3.4.21 '@vue/compiler-sfc': 3.4.21 @@ -9008,7 +9367,7 @@ snapshots: picocolors: 1.1.1 terser: 5.16.6 unplugin-auto-import: 0.18.6(@vueuse/core@12.0.0(typescript@5.5.4))(rollup@3.29.5) - vite: 5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) + vite: 5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) transitivePeerDependencies: - '@nuxt/kit' - '@vueuse/core' @@ -9018,12 +9377,12 @@ snapshots: - ts-node - vue - '@docsearch/css@3.8.0': {} + '@docsearch/css@3.8.2': {} - '@docsearch/js@3.8.0(@algolia/client-search@5.15.0)(search-insights@2.13.0)': + '@docsearch/js@3.8.2(@algolia/client-search@5.24.0)(search-insights@2.17.3)': dependencies: - '@docsearch/react': 3.8.0(@algolia/client-search@5.15.0)(search-insights@2.13.0) - preact: 10.25.1 + '@docsearch/react': 3.8.2(@algolia/client-search@5.24.0)(search-insights@2.17.3) + preact: 10.26.5 transitivePeerDependencies: - '@algolia/client-search' - '@types/react' @@ -9031,14 +9390,14 @@ snapshots: - react-dom - search-insights - '@docsearch/react@3.8.0(@algolia/client-search@5.15.0)(search-insights@2.13.0)': + '@docsearch/react@3.8.2(@algolia/client-search@5.24.0)(search-insights@2.17.3)': dependencies: - '@algolia/autocomplete-core': 1.17.7(@algolia/client-search@5.15.0)(algoliasearch@5.15.0)(search-insights@2.13.0) - '@algolia/autocomplete-preset-algolia': 1.17.7(@algolia/client-search@5.15.0)(algoliasearch@5.15.0) - '@docsearch/css': 3.8.0 - algoliasearch: 5.15.0 + '@algolia/autocomplete-core': 1.17.7(@algolia/client-search@5.24.0)(algoliasearch@5.24.0)(search-insights@2.17.3) + '@algolia/autocomplete-preset-algolia': 1.17.7(@algolia/client-search@5.24.0)(algoliasearch@5.24.0) + '@docsearch/css': 3.8.2 + algoliasearch: 5.24.0 optionalDependencies: - search-insights: 2.13.0 + search-insights: 2.17.3 transitivePeerDependencies: - '@algolia/client-search' @@ -9055,6 +9414,9 @@ snapshots: '@esbuild/aix-ppc64@0.23.1': optional: true + '@esbuild/aix-ppc64@0.25.4': + optional: true + '@esbuild/android-arm64@0.20.2': optional: true @@ -9064,6 +9426,9 @@ snapshots: '@esbuild/android-arm64@0.23.1': optional: true + '@esbuild/android-arm64@0.25.4': + optional: true + '@esbuild/android-arm@0.20.2': optional: true @@ -9073,6 +9438,9 @@ snapshots: '@esbuild/android-arm@0.23.1': optional: true + '@esbuild/android-arm@0.25.4': + optional: true + '@esbuild/android-x64@0.20.2': optional: true @@ -9082,6 +9450,9 @@ snapshots: '@esbuild/android-x64@0.23.1': optional: true + '@esbuild/android-x64@0.25.4': + optional: true + '@esbuild/darwin-arm64@0.20.2': optional: true @@ -9091,6 +9462,9 @@ snapshots: '@esbuild/darwin-arm64@0.23.1': optional: true + '@esbuild/darwin-arm64@0.25.4': + optional: true + '@esbuild/darwin-x64@0.20.2': optional: true @@ -9100,6 +9474,9 @@ snapshots: '@esbuild/darwin-x64@0.23.1': optional: true + '@esbuild/darwin-x64@0.25.4': + optional: true + '@esbuild/freebsd-arm64@0.20.2': optional: true @@ -9109,6 +9486,9 @@ snapshots: '@esbuild/freebsd-arm64@0.23.1': optional: true + '@esbuild/freebsd-arm64@0.25.4': + optional: true + '@esbuild/freebsd-x64@0.20.2': optional: true @@ -9118,6 +9498,9 @@ snapshots: '@esbuild/freebsd-x64@0.23.1': optional: true + '@esbuild/freebsd-x64@0.25.4': + optional: true + '@esbuild/linux-arm64@0.20.2': optional: true @@ -9127,6 +9510,9 @@ snapshots: '@esbuild/linux-arm64@0.23.1': optional: true + '@esbuild/linux-arm64@0.25.4': + optional: true + '@esbuild/linux-arm@0.20.2': optional: true @@ -9136,6 +9522,9 @@ snapshots: '@esbuild/linux-arm@0.23.1': optional: true + '@esbuild/linux-arm@0.25.4': + optional: true + '@esbuild/linux-ia32@0.20.2': optional: true @@ -9145,6 +9534,9 @@ snapshots: '@esbuild/linux-ia32@0.23.1': optional: true + '@esbuild/linux-ia32@0.25.4': + optional: true + '@esbuild/linux-loong64@0.20.2': optional: true @@ -9154,6 +9546,9 @@ snapshots: '@esbuild/linux-loong64@0.23.1': optional: true + '@esbuild/linux-loong64@0.25.4': + optional: true + '@esbuild/linux-mips64el@0.20.2': optional: true @@ -9163,6 +9558,9 @@ snapshots: '@esbuild/linux-mips64el@0.23.1': optional: true + '@esbuild/linux-mips64el@0.25.4': + optional: true + '@esbuild/linux-ppc64@0.20.2': optional: true @@ -9172,6 +9570,9 @@ snapshots: '@esbuild/linux-ppc64@0.23.1': optional: true + '@esbuild/linux-ppc64@0.25.4': + optional: true + '@esbuild/linux-riscv64@0.20.2': optional: true @@ -9181,6 +9582,9 @@ snapshots: '@esbuild/linux-riscv64@0.23.1': optional: true + '@esbuild/linux-riscv64@0.25.4': + optional: true + '@esbuild/linux-s390x@0.20.2': optional: true @@ -9190,6 +9594,9 @@ snapshots: '@esbuild/linux-s390x@0.23.1': optional: true + '@esbuild/linux-s390x@0.25.4': + optional: true + '@esbuild/linux-x64@0.20.2': optional: true @@ -9199,6 +9606,12 @@ snapshots: '@esbuild/linux-x64@0.23.1': optional: true + '@esbuild/linux-x64@0.25.4': + optional: true + + '@esbuild/netbsd-arm64@0.25.4': + optional: true + '@esbuild/netbsd-x64@0.20.2': optional: true @@ -9208,9 +9621,15 @@ snapshots: '@esbuild/netbsd-x64@0.23.1': optional: true + '@esbuild/netbsd-x64@0.25.4': + optional: true + '@esbuild/openbsd-arm64@0.23.1': optional: true + '@esbuild/openbsd-arm64@0.25.4': + optional: true + '@esbuild/openbsd-x64@0.20.2': optional: true @@ -9220,6 +9639,9 @@ snapshots: '@esbuild/openbsd-x64@0.23.1': optional: true + '@esbuild/openbsd-x64@0.25.4': + optional: true + '@esbuild/sunos-x64@0.20.2': optional: true @@ -9229,6 +9651,9 @@ snapshots: '@esbuild/sunos-x64@0.23.1': optional: true + '@esbuild/sunos-x64@0.25.4': + optional: true + '@esbuild/win32-arm64@0.20.2': optional: true @@ -9238,6 +9663,9 @@ snapshots: '@esbuild/win32-arm64@0.23.1': optional: true + '@esbuild/win32-arm64@0.25.4': + optional: true + '@esbuild/win32-ia32@0.20.2': optional: true @@ -9247,6 +9675,9 @@ snapshots: '@esbuild/win32-ia32@0.23.1': optional: true + '@esbuild/win32-ia32@0.25.4': + optional: true + '@esbuild/win32-x64@0.20.2': optional: true @@ -9256,6 +9687,9 @@ snapshots: '@esbuild/win32-x64@0.23.1': optional: true + '@esbuild/win32-x64@0.25.4': + optional: true + '@eslint-community/eslint-utils@4.2.0(eslint@8.57.1)': dependencies: eslint: 8.57.1 @@ -9309,7 +9743,7 @@ snapshots: '@hutson/parse-repository-url@3.0.2': {} - '@iconify-json/simple-icons@1.2.14': + '@iconify-json/simple-icons@1.2.33': dependencies: '@iconify/types': 2.0.0 @@ -9955,93 +10389,105 @@ snapshots: optionalDependencies: rollup: 3.29.5 - '@rollup/rollup-android-arm-eabi@4.28.1': + '@rollup/rollup-android-arm-eabi@4.40.1': optional: true - '@rollup/rollup-android-arm64@4.28.1': + '@rollup/rollup-android-arm64@4.40.1': optional: true - '@rollup/rollup-darwin-arm64@4.28.1': + '@rollup/rollup-darwin-arm64@4.40.1': optional: true - '@rollup/rollup-darwin-x64@4.28.1': + '@rollup/rollup-darwin-x64@4.40.1': optional: true - '@rollup/rollup-freebsd-arm64@4.28.1': + '@rollup/rollup-freebsd-arm64@4.40.1': optional: true - '@rollup/rollup-freebsd-x64@4.28.1': + '@rollup/rollup-freebsd-x64@4.40.1': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.28.1': + '@rollup/rollup-linux-arm-gnueabihf@4.40.1': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.28.1': + '@rollup/rollup-linux-arm-musleabihf@4.40.1': optional: true - '@rollup/rollup-linux-arm64-gnu@4.28.1': + '@rollup/rollup-linux-arm64-gnu@4.40.1': optional: true - '@rollup/rollup-linux-arm64-musl@4.28.1': + '@rollup/rollup-linux-arm64-musl@4.40.1': optional: true - '@rollup/rollup-linux-loongarch64-gnu@4.28.1': + '@rollup/rollup-linux-loongarch64-gnu@4.40.1': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.28.1': + '@rollup/rollup-linux-powerpc64le-gnu@4.40.1': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.28.1': + '@rollup/rollup-linux-riscv64-gnu@4.40.1': optional: true - '@rollup/rollup-linux-s390x-gnu@4.28.1': + '@rollup/rollup-linux-riscv64-musl@4.40.1': optional: true - '@rollup/rollup-linux-x64-gnu@4.28.1': + '@rollup/rollup-linux-s390x-gnu@4.40.1': optional: true - '@rollup/rollup-linux-x64-musl@4.28.1': + '@rollup/rollup-linux-x64-gnu@4.40.1': optional: true - '@rollup/rollup-win32-arm64-msvc@4.28.1': + '@rollup/rollup-linux-x64-musl@4.40.1': optional: true - '@rollup/rollup-win32-ia32-msvc@4.28.1': + '@rollup/rollup-win32-arm64-msvc@4.40.1': optional: true - '@rollup/rollup-win32-x64-msvc@4.28.1': + '@rollup/rollup-win32-ia32-msvc@4.40.1': optional: true - '@shikijs/core@1.24.0': + '@rollup/rollup-win32-x64-msvc@4.40.1': + optional: true + + '@shikijs/core@2.5.0': dependencies: - '@shikijs/engine-javascript': 1.24.0 - '@shikijs/engine-oniguruma': 1.24.0 - '@shikijs/types': 1.24.0 - '@shikijs/vscode-textmate': 9.3.0 + '@shikijs/engine-javascript': 2.5.0 + '@shikijs/engine-oniguruma': 2.5.0 + '@shikijs/types': 2.5.0 + '@shikijs/vscode-textmate': 10.0.2 '@types/hast': 3.0.4 - hast-util-to-html: 9.0.3 + hast-util-to-html: 9.0.5 - '@shikijs/engine-javascript@1.24.0': + '@shikijs/engine-javascript@2.5.0': dependencies: - '@shikijs/types': 1.24.0 - '@shikijs/vscode-textmate': 9.3.0 - oniguruma-to-es: 0.7.0 + '@shikijs/types': 2.5.0 + '@shikijs/vscode-textmate': 10.0.2 + oniguruma-to-es: 3.1.1 - '@shikijs/engine-oniguruma@1.24.0': + '@shikijs/engine-oniguruma@2.5.0': dependencies: - '@shikijs/types': 1.24.0 - '@shikijs/vscode-textmate': 9.3.0 + '@shikijs/types': 2.5.0 + '@shikijs/vscode-textmate': 10.0.2 - '@shikijs/transformers@1.24.0': + '@shikijs/langs@2.5.0': dependencies: - shiki: 1.24.0 + '@shikijs/types': 2.5.0 - '@shikijs/types@1.24.0': + '@shikijs/themes@2.5.0': dependencies: - '@shikijs/vscode-textmate': 9.3.0 + '@shikijs/types': 2.5.0 + + '@shikijs/transformers@2.5.0': + dependencies: + '@shikijs/core': 2.5.0 + '@shikijs/types': 2.5.0 + + '@shikijs/types@2.5.0': + dependencies: + '@shikijs/vscode-textmate': 10.0.2 '@types/hast': 3.0.4 - '@shikijs/vscode-textmate@9.3.0': {} + '@shikijs/vscode-textmate@10.0.2': {} '@sinonjs/commons@1.8.6': dependencies: @@ -10092,8 +10538,14 @@ snapshots: dependencies: '@types/node': 18.15.3 + '@types/debug@4.1.12': + dependencies: + '@types/ms': 2.1.0 + '@types/estree@1.0.6': {} + '@types/estree@1.0.7': {} + '@types/graceful-fs@4.1.9': dependencies: '@types/node': 18.19.87 @@ -10141,6 +10593,8 @@ snapshots: '@types/minimist@1.2.2': {} + '@types/ms@2.1.0': {} + '@types/node@18.15.3': {} '@types/node@18.19.74': @@ -10165,6 +10619,8 @@ snapshots: '@types/web-bluetooth@0.0.20': {} + '@types/web-bluetooth@0.0.21': {} + '@types/yargs-parser@21.0.3': {} '@types/yargs@16.0.9': @@ -10310,7 +10766,7 @@ snapshots: transitivePeerDependencies: - encoding - '@vitejs/plugin-legacy@5.3.2(terser@5.16.6)(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))': + '@vitejs/plugin-legacy@5.3.2(terser@5.16.6)(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))': dependencies: '@babel/core': 7.25.2 '@babel/preset-env': 7.25.4(@babel/core@7.25.2) @@ -10321,36 +10777,36 @@ snapshots: regenerator-runtime: 0.14.1 systemjs: 6.15.1 terser: 5.16.6 - vite: 5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) + vite: 5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue-jsx@3.1.0(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4))': + '@vitejs/plugin-vue-jsx@3.1.0(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4))': dependencies: '@babel/core': 7.25.2 '@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.25.2) '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.25.2) - vite: 5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) + vite: 5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) vue: 3.4.38(typescript@5.5.4) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue@5.1.0(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4))': + '@vitejs/plugin-vue@5.1.0(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4))': dependencies: - vite: 5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) + vite: 5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) vue: 3.4.38(typescript@5.5.4) - '@vitejs/plugin-vue@5.2.3(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4))': + '@vitejs/plugin-vue@5.2.3(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.4.38(typescript@5.5.4))': dependencies: - vite: 5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) + vite: 5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) vue: 3.4.38(typescript@5.5.4) - '@vitejs/plugin-vue@5.2.3(vite@5.4.11(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.5.13(typescript@5.5.4))': + '@vitejs/plugin-vue@5.2.3(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.5.13(typescript@5.5.4))': dependencies: - vite: 5.4.11(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) + vite: 5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) vue: 3.5.13(typescript@5.5.4) - '@vitest/coverage-v8@3.1.1(vitest@3.1.1(@types/node@18.15.3)(jsdom@26.0.0)(sass@1.59.3)(terser@5.16.6))': + '@vitest/coverage-v8@3.1.1(vitest@3.1.1(@types/debug@4.1.12)(@types/node@18.15.3)(jiti@1.21.6)(jsdom@26.0.0)(sass@1.59.3)(terser@5.16.6)(tsx@4.19.2))': dependencies: '@ampproject/remapping': 2.3.0 '@bcoe/v8-coverage': 1.0.2 @@ -10364,7 +10820,7 @@ snapshots: std-env: 3.9.0 test-exclude: 7.0.1 tinyrainbow: 2.0.0 - vitest: 3.1.1(@types/node@18.15.3)(jsdom@26.0.0)(sass@1.59.3)(terser@5.16.6) + vitest: 3.1.1(@types/debug@4.1.12)(@types/node@18.15.3)(jiti@1.21.6)(jsdom@26.0.0)(sass@1.59.3)(terser@5.16.6)(tsx@4.19.2) transitivePeerDependencies: - supports-color @@ -10375,13 +10831,13 @@ snapshots: chai: 5.2.0 tinyrainbow: 2.0.0 - '@vitest/mocker@3.1.1(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))': + '@vitest/mocker@3.1.1(vite@6.3.5(@types/node@18.15.3)(jiti@1.21.6)(sass@1.59.3)(terser@5.16.6)(tsx@4.19.2))': dependencies: '@vitest/spy': 3.1.1 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) + vite: 6.3.5(@types/node@18.15.3)(jiti@1.21.6)(sass@1.59.3)(terser@5.16.6)(tsx@4.19.2) '@vitest/pretty-format@3.1.1': dependencies: @@ -10562,21 +11018,21 @@ snapshots: '@vue/devtools-api@6.6.4': {} - '@vue/devtools-api@7.6.7': + '@vue/devtools-api@7.7.6': dependencies: - '@vue/devtools-kit': 7.6.7 + '@vue/devtools-kit': 7.7.6 - '@vue/devtools-kit@7.6.7': + '@vue/devtools-kit@7.7.6': dependencies: - '@vue/devtools-shared': 7.6.7 - birpc: 0.2.19 + '@vue/devtools-shared': 7.7.6 + birpc: 2.3.0 hookable: 5.5.3 mitt: 3.0.1 perfect-debounce: 1.0.0 speakingurl: 14.0.1 superjson: 2.2.2 - '@vue/devtools-shared@7.6.7': + '@vue/devtools-shared@7.7.6': dependencies: rfdc: 1.4.1 @@ -10660,16 +11116,6 @@ snapshots: optionalDependencies: '@types/node': 18.15.3 - '@vueuse/core@11.3.0(vue@3.5.13(typescript@5.5.4))': - dependencies: - '@types/web-bluetooth': 0.0.20 - '@vueuse/metadata': 11.3.0 - '@vueuse/shared': 11.3.0(vue@3.5.13(typescript@5.5.4)) - vue-demi: 0.14.10(vue@3.5.13(typescript@5.5.4)) - transitivePeerDependencies: - - '@vue/composition-api' - - vue - '@vueuse/core@12.0.0(typescript@5.5.4)': dependencies: '@types/web-bluetooth': 0.0.20 @@ -10679,6 +11125,15 @@ snapshots: transitivePeerDependencies: - typescript + '@vueuse/core@12.8.2(typescript@5.5.4)': + dependencies: + '@types/web-bluetooth': 0.0.21 + '@vueuse/metadata': 12.8.2 + '@vueuse/shared': 12.8.2(typescript@5.5.4) + vue: 3.5.13(typescript@5.5.4) + transitivePeerDependencies: + - typescript + '@vueuse/core@9.13.0(vue@3.4.38(typescript@5.5.4))': dependencies: '@types/web-bluetooth': 0.0.16 @@ -10689,38 +11144,36 @@ snapshots: - '@vue/composition-api' - vue - '@vueuse/integrations@11.3.0(async-validator@4.2.5)(axios@1.7.9)(focus-trap@7.6.2)(vue@3.5.13(typescript@5.5.4))': + '@vueuse/integrations@12.8.2(async-validator@4.2.5)(axios@1.7.9)(focus-trap@7.6.4)(typescript@5.5.4)': dependencies: - '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.5.4)) - '@vueuse/shared': 11.3.0(vue@3.5.13(typescript@5.5.4)) - vue-demi: 0.14.10(vue@3.5.13(typescript@5.5.4)) + '@vueuse/core': 12.8.2(typescript@5.5.4) + '@vueuse/shared': 12.8.2(typescript@5.5.4) + vue: 3.5.13(typescript@5.5.4) optionalDependencies: async-validator: 4.2.5 axios: 1.7.9 - focus-trap: 7.6.2 + focus-trap: 7.6.4 transitivePeerDependencies: - - '@vue/composition-api' - - vue - - '@vueuse/metadata@11.3.0': {} + - typescript '@vueuse/metadata@12.0.0': {} + '@vueuse/metadata@12.8.2': {} + '@vueuse/metadata@9.13.0': {} - '@vueuse/shared@11.3.0(vue@3.5.13(typescript@5.5.4))': - dependencies: - vue-demi: 0.14.10(vue@3.5.13(typescript@5.5.4)) - transitivePeerDependencies: - - '@vue/composition-api' - - vue - '@vueuse/shared@12.0.0(typescript@5.5.4)': dependencies: vue: 3.5.13(typescript@5.5.4) transitivePeerDependencies: - typescript + '@vueuse/shared@12.8.2(typescript@5.5.4)': + dependencies: + vue: 3.5.13(typescript@5.5.4) + transitivePeerDependencies: + - typescript + '@vueuse/shared@9.13.0(vue@3.4.38(typescript@5.5.4))': dependencies: vue-demi: 0.14.5(vue@3.4.38(typescript@5.5.4)) @@ -10803,21 +11256,21 @@ snapshots: json-schema-traverse: 1.0.0 require-from-string: 2.0.2 - algoliasearch@5.15.0: + algoliasearch@5.24.0: dependencies: - '@algolia/client-abtesting': 5.15.0 - '@algolia/client-analytics': 5.15.0 - '@algolia/client-common': 5.15.0 - '@algolia/client-insights': 5.15.0 - '@algolia/client-personalization': 5.15.0 - '@algolia/client-query-suggestions': 5.15.0 - '@algolia/client-search': 5.15.0 - '@algolia/ingestion': 1.15.0 - '@algolia/monitoring': 1.15.0 - '@algolia/recommend': 5.15.0 - '@algolia/requester-browser-xhr': 5.15.0 - '@algolia/requester-fetch': 5.15.0 - '@algolia/requester-node-http': 5.15.0 + '@algolia/client-abtesting': 5.24.0 + '@algolia/client-analytics': 5.24.0 + '@algolia/client-common': 5.24.0 + '@algolia/client-insights': 5.24.0 + '@algolia/client-personalization': 5.24.0 + '@algolia/client-query-suggestions': 5.24.0 + '@algolia/client-search': 5.24.0 + '@algolia/ingestion': 1.24.0 + '@algolia/monitoring': 1.24.0 + '@algolia/recommend': 5.24.0 + '@algolia/requester-browser-xhr': 5.24.0 + '@algolia/requester-fetch': 5.24.0 + '@algolia/requester-node-http': 5.24.0 ansi-escapes@4.3.2: dependencies: @@ -10876,14 +11329,14 @@ snapshots: asynckit@0.4.0: {} - autoprefixer@10.4.20(postcss@8.4.49): + autoprefixer@10.4.20(postcss@8.5.3): dependencies: browserslist: 4.23.3 caniuse-lite: 1.0.30001707 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.1.1 - postcss: 8.4.49 + postcss: 8.5.3 postcss-value-parser: 4.2.0 available-typed-arrays@1.0.5: {} @@ -10976,6 +11429,8 @@ snapshots: babel-plugin-jest-hoist: 27.5.1 babel-preset-current-node-syntax: 1.1.0(@babel/core@7.27.1) + bail@2.0.2: {} + balanced-match@1.0.2: {} base64-js@1.5.1: {} @@ -10984,7 +11439,7 @@ snapshots: binary-extensions@2.2.0: {} - birpc@0.2.19: {} + birpc@2.3.0: {} bl@4.1.0: dependencies: @@ -11066,6 +11521,8 @@ snapshots: base64-js: 1.5.1 ieee754: 1.2.1 + byte-size@9.0.1: {} + bytes@3.1.2: {} cac@6.7.14: {} @@ -11129,6 +11586,8 @@ snapshots: character-entities-legacy@3.0.0: {} + character-entities@2.0.2: {} + chardet@0.7.0: {} check-error@2.1.1: {} @@ -11517,6 +11976,10 @@ snapshots: decimal.js@10.5.0: {} + decode-named-character-reference@1.1.0: + dependencies: + character-entities: 2.0.2 + decode-uri-component@0.4.1: {} dedent@0.7.0: {} @@ -11795,6 +12258,34 @@ snapshots: '@esbuild/win32-ia32': 0.23.1 '@esbuild/win32-x64': 0.23.1 + esbuild@0.25.4: + optionalDependencies: + '@esbuild/aix-ppc64': 0.25.4 + '@esbuild/android-arm': 0.25.4 + '@esbuild/android-arm64': 0.25.4 + '@esbuild/android-x64': 0.25.4 + '@esbuild/darwin-arm64': 0.25.4 + '@esbuild/darwin-x64': 0.25.4 + '@esbuild/freebsd-arm64': 0.25.4 + '@esbuild/freebsd-x64': 0.25.4 + '@esbuild/linux-arm': 0.25.4 + '@esbuild/linux-arm64': 0.25.4 + '@esbuild/linux-ia32': 0.25.4 + '@esbuild/linux-loong64': 0.25.4 + '@esbuild/linux-mips64el': 0.25.4 + '@esbuild/linux-ppc64': 0.25.4 + '@esbuild/linux-riscv64': 0.25.4 + '@esbuild/linux-s390x': 0.25.4 + '@esbuild/linux-x64': 0.25.4 + '@esbuild/netbsd-arm64': 0.25.4 + '@esbuild/netbsd-x64': 0.25.4 + '@esbuild/openbsd-arm64': 0.25.4 + '@esbuild/openbsd-x64': 0.25.4 + '@esbuild/sunos-x64': 0.25.4 + '@esbuild/win32-arm64': 0.25.4 + '@esbuild/win32-ia32': 0.25.4 + '@esbuild/win32-x64': 0.25.4 + escalade@3.1.1: {} escalade@3.2.0: {} @@ -12019,6 +12510,12 @@ snapshots: exsolve@1.0.4: {} + extend-shallow@2.0.1: + dependencies: + is-extendable: 0.1.1 + + extend@3.0.2: {} + external-editor@3.1.0: dependencies: chardet: 0.7.0 @@ -12057,6 +12554,10 @@ snapshots: dependencies: reusify: 1.0.4 + fault@2.0.1: + dependencies: + format: 0.2.2 + fb-watchman@2.0.2: dependencies: bser: 2.1.1 @@ -12065,6 +12566,10 @@ snapshots: dependencies: pend: 1.2.0 + fdir@6.4.4(picomatch@4.0.2): + optionalDependencies: + picomatch: 4.0.2 + figures@3.2.0: dependencies: escape-string-regexp: 1.0.5 @@ -12124,7 +12629,7 @@ snapshots: flatted@3.2.7: {} - focus-trap@7.6.2: + focus-trap@7.6.4: dependencies: tabbable: 6.2.0 @@ -12152,6 +12657,8 @@ snapshots: combined-stream: 1.0.8 mime-types: 2.1.35 + format@0.2.2: {} + forwarded@0.2.0: {} fraction.js@4.3.7: {} @@ -12341,6 +12848,13 @@ snapshots: graphemer@1.4.0: {} + gray-matter@4.0.3: + dependencies: + js-yaml: 3.14.1 + kind-of: 6.0.3 + section-matter: 1.0.0 + strip-bom-string: 1.0.0 + handlebars@4.7.7: dependencies: minimist: 1.2.8 @@ -12386,7 +12900,7 @@ snapshots: dependencies: function-bind: 1.1.2 - hast-util-to-html@9.0.3: + hast-util-to-html@9.0.5: dependencies: '@types/hast': 3.0.4 '@types/unist': 3.0.3 @@ -12395,7 +12909,7 @@ snapshots: hast-util-whitespace: 3.0.0 html-void-elements: 3.0.0 mdast-util-to-hast: 13.2.0 - property-information: 6.5.0 + property-information: 7.0.0 space-separated-tokens: 2.0.2 stringify-entities: 4.0.4 zwitch: 2.0.4 @@ -12481,9 +12995,9 @@ snapshots: icss-replace-symbols@1.1.0: {} - icss-utils@5.1.0(postcss@8.4.49): + icss-utils@5.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.49 + postcss: 8.5.3 ieee754@1.2.1: {} @@ -12578,6 +13092,8 @@ snapshots: is-docker@2.2.1: {} + is-extendable@0.1.1: {} + is-extglob@2.1.1: {} is-fullwidth-code-point@3.0.0: {} @@ -12606,6 +13122,8 @@ snapshots: is-plain-obj@1.1.0: {} + is-plain-obj@4.1.0: {} + is-potential-custom-element-name@1.0.1: {} is-regex@1.1.4: @@ -13347,6 +13865,8 @@ snapshots: slice-ansi: 4.0.0 wrap-ansi: 6.2.0 + longest-streak@3.1.0: {} + loupe@3.1.3: {} lru-cache@10.4.3: {} @@ -13396,8 +13916,43 @@ snapshots: mark.js@8.11.1: {} + markdown-title@1.0.2: {} + math-intrinsics@1.1.0: {} + mdast-util-from-markdown@2.0.2: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + decode-named-character-reference: 1.1.0 + devlop: 1.1.0 + mdast-util-to-string: 4.0.0 + micromark: 4.0.2 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-decode-string: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + unist-util-stringify-position: 4.0.0 + transitivePeerDependencies: + - supports-color + + mdast-util-frontmatter@2.0.1: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + escape-string-regexp: 5.0.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + micromark-extension-frontmatter: 2.0.0 + transitivePeerDependencies: + - supports-color + + 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.4 @@ -13410,6 +13965,22 @@ snapshots: unist-util-visit: 5.0.0 vfile: 6.0.3 + mdast-util-to-markdown@2.1.2: + 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-classify-character: 2.0.1 + micromark-util-decode-string: 2.0.1 + unist-util-visit: 5.0.0 + zwitch: 2.0.4 + + mdast-util-to-string@4.0.0: + dependencies: + '@types/mdast': 4.0.4 + media-typer@0.3.0: {} memoize-one@6.0.0: {} @@ -13444,23 +14015,146 @@ snapshots: methods@1.1.2: {} + micromark-core-commonmark@2.0.3: + dependencies: + decode-named-character-reference: 1.1.0 + devlop: 1.1.0 + micromark-factory-destination: 2.0.1 + micromark-factory-label: 2.0.1 + micromark-factory-space: 2.0.1 + micromark-factory-title: 2.0.1 + micromark-factory-whitespace: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-classify-character: 2.0.1 + micromark-util-html-tag-name: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-subtokenize: 2.1.0 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-extension-frontmatter@2.0.0: + dependencies: + fault: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-factory-destination@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-factory-label@2.0.1: + dependencies: + devlop: 1.1.0 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-factory-space@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-types: 2.0.1 + + micromark-factory-title@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-factory-whitespace@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + micromark-util-character@2.1.1: dependencies: micromark-util-symbol: 2.0.1 micromark-util-types: 2.0.1 + micromark-util-chunked@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-classify-character@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-util-combine-extensions@2.0.1: + dependencies: + micromark-util-chunked: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-util-decode-numeric-character-reference@2.0.2: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-decode-string@2.0.1: + dependencies: + decode-named-character-reference: 1.1.0 + micromark-util-character: 2.1.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-symbol: 2.0.1 + micromark-util-encode@2.0.1: {} + micromark-util-html-tag-name@2.0.1: {} + + micromark-util-normalize-identifier@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-resolve-all@2.0.1: + dependencies: + micromark-util-types: 2.0.1 + micromark-util-sanitize-uri@2.0.1: dependencies: micromark-util-character: 2.1.1 micromark-util-encode: 2.0.1 micromark-util-symbol: 2.0.1 + micromark-util-subtokenize@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + micromark-util-symbol@2.0.1: {} micromark-util-types@2.0.1: {} + micromark@4.0.2: + dependencies: + '@types/debug': 4.1.12 + debug: 4.4.0 + decode-named-character-reference: 1.1.0 + devlop: 1.1.0 + micromark-core-commonmark: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-combine-extensions: 2.0.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-encode: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-subtokenize: 2.1.0 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + transitivePeerDependencies: + - supports-color + micromatch@4.0.5: dependencies: braces: 3.0.3 @@ -13471,6 +14165,10 @@ snapshots: braces: 3.0.3 picomatch: 2.3.1 + millify@6.1.0: + dependencies: + yargs: 17.7.2 + mime-db@1.52.0: {} mime-types@2.1.35: @@ -13493,6 +14191,10 @@ snapshots: mini-types@0.1.7: {} + minimatch@10.0.1: + dependencies: + brace-expansion: 2.0.1 + minimatch@3.1.2: dependencies: brace-expansion: 1.1.11 @@ -13531,7 +14233,7 @@ snapshots: miniprogram-api-typings@3.12.3: {} - minisearch@7.1.1: {} + minisearch@7.1.2: {} mitt@3.0.1: {} @@ -13672,11 +14374,11 @@ snapshots: dependencies: mimic-fn: 4.0.0 - oniguruma-to-es@0.7.0: + oniguruma-to-es@3.1.1: dependencies: emoji-regex-xs: 1.0.0 - regex: 5.0.2 - regex-recursion: 4.3.0 + regex: 6.0.1 + regex-recursion: 6.0.2 open@8.4.2: dependencies: @@ -13884,52 +14586,52 @@ snapshots: pngjs@3.4.0: {} - postcss-import@14.1.0(postcss@8.4.49): + postcss-import@14.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.49 + postcss: 8.5.3 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.10 - postcss-load-config@3.1.4(postcss@8.4.49)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4)): + postcss-load-config@3.1.4(postcss@8.5.3)(ts-node@10.9.2(@types/node@18.15.3)(typescript@5.5.4)): dependencies: lilconfig: 2.1.0 yaml: 1.10.2 optionalDependencies: - postcss: 8.4.49 + postcss: 8.5.3 ts-node: 10.9.2(@types/node@18.15.3)(typescript@5.5.4) - postcss-modules-extract-imports@3.0.0(postcss@8.4.49): + postcss-modules-extract-imports@3.0.0(postcss@8.5.3): dependencies: - postcss: 8.4.49 + postcss: 8.5.3 - postcss-modules-local-by-default@4.0.0(postcss@8.4.49): + postcss-modules-local-by-default@4.0.0(postcss@8.5.3): dependencies: - icss-utils: 5.1.0(postcss@8.4.49) - postcss: 8.4.49 + icss-utils: 5.1.0(postcss@8.5.3) + postcss: 8.5.3 postcss-selector-parser: 6.0.11 postcss-value-parser: 4.2.0 - postcss-modules-scope@3.0.0(postcss@8.4.49): + postcss-modules-scope@3.0.0(postcss@8.5.3): dependencies: - postcss: 8.4.49 + postcss: 8.5.3 postcss-selector-parser: 6.0.11 - postcss-modules-values@4.0.0(postcss@8.4.49): + postcss-modules-values@4.0.0(postcss@8.5.3): dependencies: - icss-utils: 5.1.0(postcss@8.4.49) - postcss: 8.4.49 + icss-utils: 5.1.0(postcss@8.5.3) + postcss: 8.5.3 - postcss-modules@4.3.1(postcss@8.4.49): + postcss-modules@4.3.1(postcss@8.5.3): dependencies: generic-names: 4.0.0 icss-replace-symbols: 1.1.0 lodash.camelcase: 4.3.0 - postcss: 8.4.49 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.49) - postcss-modules-local-by-default: 4.0.0(postcss@8.4.49) - postcss-modules-scope: 3.0.0(postcss@8.4.49) - postcss-modules-values: 4.0.0(postcss@8.4.49) + postcss: 8.5.3 + postcss-modules-extract-imports: 3.0.0(postcss@8.5.3) + postcss-modules-local-by-default: 4.0.0(postcss@8.5.3) + postcss-modules-scope: 3.0.0(postcss@8.5.3) + postcss-modules-values: 4.0.0(postcss@8.5.3) string-hash: 1.1.3 postcss-selector-parser@6.0.11: @@ -13951,7 +14653,13 @@ snapshots: picocolors: 1.1.1 source-map-js: 1.2.1 - preact@10.25.1: {} + postcss@8.5.3: + dependencies: + nanoid: 3.3.8 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + preact@10.26.5: {} prelude-ls@1.2.1: {} @@ -13978,7 +14686,7 @@ snapshots: kleur: 3.0.3 sisteransi: 1.0.5 - property-information@6.5.0: {} + property-information@7.0.0: {} proto-list@1.2.4: {} @@ -14122,13 +14830,13 @@ snapshots: dependencies: '@babel/runtime': 7.21.0 - regex-recursion@4.3.0: + regex-recursion@6.0.2: dependencies: regex-utilities: 2.3.0 regex-utilities@2.3.0: {} - regex@5.0.2: + regex@6.0.1: dependencies: regex-utilities: 2.3.0 @@ -14151,6 +14859,39 @@ snapshots: dependencies: jsesc: 0.5.0 + remark-frontmatter@5.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-frontmatter: 2.0.1 + micromark-extension-frontmatter: 2.0.0 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + + remark-parse@11.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-from-markdown: 2.0.2 + micromark-util-types: 2.0.1 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + + remark-stringify@11.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-to-markdown: 2.1.2 + unified: 11.0.5 + + remark@15.0.1: + dependencies: + '@types/mdast': 4.0.4 + remark-parse: 11.0.0 + remark-stringify: 11.0.0 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + require-directory@2.1.1: {} require-from-string@2.0.2: {} @@ -14214,29 +14955,30 @@ snapshots: fsevents: 2.3.3 optional: true - rollup@4.28.1: + rollup@4.40.1: dependencies: - '@types/estree': 1.0.6 + '@types/estree': 1.0.7 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.28.1 - '@rollup/rollup-android-arm64': 4.28.1 - '@rollup/rollup-darwin-arm64': 4.28.1 - '@rollup/rollup-darwin-x64': 4.28.1 - '@rollup/rollup-freebsd-arm64': 4.28.1 - '@rollup/rollup-freebsd-x64': 4.28.1 - '@rollup/rollup-linux-arm-gnueabihf': 4.28.1 - '@rollup/rollup-linux-arm-musleabihf': 4.28.1 - '@rollup/rollup-linux-arm64-gnu': 4.28.1 - '@rollup/rollup-linux-arm64-musl': 4.28.1 - '@rollup/rollup-linux-loongarch64-gnu': 4.28.1 - '@rollup/rollup-linux-powerpc64le-gnu': 4.28.1 - '@rollup/rollup-linux-riscv64-gnu': 4.28.1 - '@rollup/rollup-linux-s390x-gnu': 4.28.1 - '@rollup/rollup-linux-x64-gnu': 4.28.1 - '@rollup/rollup-linux-x64-musl': 4.28.1 - '@rollup/rollup-win32-arm64-msvc': 4.28.1 - '@rollup/rollup-win32-ia32-msvc': 4.28.1 - '@rollup/rollup-win32-x64-msvc': 4.28.1 + '@rollup/rollup-android-arm-eabi': 4.40.1 + '@rollup/rollup-android-arm64': 4.40.1 + '@rollup/rollup-darwin-arm64': 4.40.1 + '@rollup/rollup-darwin-x64': 4.40.1 + '@rollup/rollup-freebsd-arm64': 4.40.1 + '@rollup/rollup-freebsd-x64': 4.40.1 + '@rollup/rollup-linux-arm-gnueabihf': 4.40.1 + '@rollup/rollup-linux-arm-musleabihf': 4.40.1 + '@rollup/rollup-linux-arm64-gnu': 4.40.1 + '@rollup/rollup-linux-arm64-musl': 4.40.1 + '@rollup/rollup-linux-loongarch64-gnu': 4.40.1 + '@rollup/rollup-linux-powerpc64le-gnu': 4.40.1 + '@rollup/rollup-linux-riscv64-gnu': 4.40.1 + '@rollup/rollup-linux-riscv64-musl': 4.40.1 + '@rollup/rollup-linux-s390x-gnu': 4.40.1 + '@rollup/rollup-linux-x64-gnu': 4.40.1 + '@rollup/rollup-linux-x64-musl': 4.40.1 + '@rollup/rollup-win32-arm64-msvc': 4.40.1 + '@rollup/rollup-win32-ia32-msvc': 4.40.1 + '@rollup/rollup-win32-x64-msvc': 4.40.1 fsevents: 2.3.3 rrweb-cssom@0.8.0: {} @@ -14287,7 +15029,12 @@ snapshots: scule@1.3.0: {} - search-insights@2.13.0: {} + search-insights@2.17.3: {} + + section-matter@1.0.0: + dependencies: + extend-shallow: 2.0.1 + kind-of: 6.0.3 semver@5.7.1: {} @@ -14346,13 +15093,15 @@ snapshots: shell-quote@1.8.0: {} - shiki@1.24.0: + shiki@2.5.0: dependencies: - '@shikijs/core': 1.24.0 - '@shikijs/engine-javascript': 1.24.0 - '@shikijs/engine-oniguruma': 1.24.0 - '@shikijs/types': 1.24.0 - '@shikijs/vscode-textmate': 9.3.0 + '@shikijs/core': 2.5.0 + '@shikijs/engine-javascript': 2.5.0 + '@shikijs/engine-oniguruma': 2.5.0 + '@shikijs/langs': 2.5.0 + '@shikijs/themes': 2.5.0 + '@shikijs/types': 2.5.0 + '@shikijs/vscode-textmate': 10.0.2 '@types/hast': 3.0.4 side-channel@1.0.4: @@ -14528,6 +15277,8 @@ snapshots: dependencies: ansi-regex: 6.0.1 + strip-bom-string@1.0.0: {} + strip-bom@3.0.0: {} strip-bom@4.0.0: {} @@ -14651,6 +15402,11 @@ snapshots: tinyexec@0.3.2: {} + tinyglobby@0.2.13: + dependencies: + fdir: 6.4.4(picomatch@4.0.2) + picomatch: 4.0.2 + tinypool@1.0.2: {} tinyrainbow@2.0.0: {} @@ -14675,6 +15431,8 @@ snapshots: toidentifier@1.0.1: {} + tokenx@0.4.1: {} + tough-cookie@4.1.4: dependencies: psl: 1.15.0 @@ -14700,6 +15458,8 @@ snapshots: trim-newlines@3.0.1: {} + trough@2.2.0: {} + ts-api-utils@1.4.3(typescript@5.5.4): dependencies: typescript: 5.5.4 @@ -14803,6 +15563,16 @@ snapshots: unicorn-magic@0.1.0: {} + unified@11.0.5: + dependencies: + '@types/unist': 3.0.3 + bail: 2.0.2 + devlop: 1.1.0 + extend: 3.0.2 + is-plain-obj: 4.1.0 + trough: 2.2.0 + vfile: 6.0.3 + unimport@3.14.6(rollup@3.29.5): dependencies: '@rollup/pluginutils': 5.1.4(rollup@3.29.5) @@ -14848,6 +15618,12 @@ snapshots: dependencies: '@types/unist': 3.0.3 + unist-util-remove@4.0.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 + unist-util-stringify-position@4.0.0: dependencies: '@types/unist': 3.0.3 @@ -14987,81 +15763,105 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.2 - vite-node@3.1.1(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6): + vite-node@3.1.1(@types/node@18.15.3)(jiti@1.21.6)(sass@1.59.3)(terser@5.16.6)(tsx@4.19.2): dependencies: cac: 6.7.14 debug: 4.4.0 es-module-lexer: 1.6.0 pathe: 2.0.3 - vite: 5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) + vite: 6.3.5(@types/node@18.15.3)(jiti@1.21.6)(sass@1.59.3)(terser@5.16.6)(tsx@4.19.2) transitivePeerDependencies: - '@types/node' + - jiti - less - lightningcss - sass + - sass-embedded - stylus - sugarss - supports-color - terser + - tsx + - yaml - vite-plugin-compression@0.5.1(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6)): + vite-plugin-compression@0.5.1(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6)): dependencies: chalk: 4.1.2 debug: 4.3.4 fs-extra: 10.1.0 - vite: 5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) + vite: 5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) transitivePeerDependencies: - supports-color - vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6): - dependencies: - esbuild: 0.20.2 - postcss: 8.4.49 - rollup: 4.28.1 - optionalDependencies: - '@types/node': 18.15.3 - fsevents: 2.3.3 - sass: 1.59.3 - terser: 5.16.6 - - vite@5.4.11(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6): + vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6): dependencies: esbuild: 0.21.5 - postcss: 8.4.49 - rollup: 4.28.1 + postcss: 8.5.3 + rollup: 4.40.1 optionalDependencies: '@types/node': 18.15.3 fsevents: 2.3.3 sass: 1.59.3 terser: 5.16.6 - vitepress@1.5.0(@algolia/client-search@5.15.0)(@types/node@18.15.3)(async-validator@4.2.5)(axios@1.7.9)(postcss@8.4.49)(sass@1.59.3)(search-insights@2.13.0)(terser@5.16.6)(typescript@5.5.4): + vite@6.3.5(@types/node@18.15.3)(jiti@1.21.6)(sass@1.59.3)(terser@5.16.6)(tsx@4.19.2): dependencies: - '@docsearch/css': 3.8.0 - '@docsearch/js': 3.8.0(@algolia/client-search@5.15.0)(search-insights@2.13.0) - '@iconify-json/simple-icons': 1.2.14 - '@shikijs/core': 1.24.0 - '@shikijs/transformers': 1.24.0 - '@shikijs/types': 1.24.0 + esbuild: 0.25.4 + fdir: 6.4.4(picomatch@4.0.2) + picomatch: 4.0.2 + postcss: 8.5.3 + rollup: 4.40.1 + tinyglobby: 0.2.13 + optionalDependencies: + '@types/node': 18.15.3 + fsevents: 2.3.3 + jiti: 1.21.6 + sass: 1.59.3 + terser: 5.16.6 + tsx: 4.19.2 + + vitepress-plugin-llms@1.1.3: + dependencies: + byte-size: 9.0.1 + gray-matter: 4.0.3 + markdown-title: 1.0.2 + millify: 6.1.0 + minimatch: 10.0.1 + picocolors: 1.1.1 + remark: 15.0.1 + remark-frontmatter: 5.0.0 + tokenx: 0.4.1 + unist-util-remove: 4.0.0 + transitivePeerDependencies: + - '@75lb/nature' + - supports-color + + vitepress@1.6.3(@algolia/client-search@5.24.0)(@types/node@18.15.3)(async-validator@4.2.5)(axios@1.7.9)(postcss@8.5.3)(sass@1.59.3)(search-insights@2.17.3)(terser@5.16.6)(typescript@5.5.4): + dependencies: + '@docsearch/css': 3.8.2 + '@docsearch/js': 3.8.2(@algolia/client-search@5.24.0)(search-insights@2.17.3) + '@iconify-json/simple-icons': 1.2.33 + '@shikijs/core': 2.5.0 + '@shikijs/transformers': 2.5.0 + '@shikijs/types': 2.5.0 '@types/markdown-it': 14.1.2 - '@vitejs/plugin-vue': 5.2.3(vite@5.4.11(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.5.13(typescript@5.5.4)) - '@vue/devtools-api': 7.6.7 + '@vitejs/plugin-vue': 5.2.3(vite@5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6))(vue@3.5.13(typescript@5.5.4)) + '@vue/devtools-api': 7.7.6 '@vue/shared': 3.5.13 - '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.5.4)) - '@vueuse/integrations': 11.3.0(async-validator@4.2.5)(axios@1.7.9)(focus-trap@7.6.2)(vue@3.5.13(typescript@5.5.4)) - focus-trap: 7.6.2 + '@vueuse/core': 12.8.2(typescript@5.5.4) + '@vueuse/integrations': 12.8.2(async-validator@4.2.5)(axios@1.7.9)(focus-trap@7.6.4)(typescript@5.5.4) + focus-trap: 7.6.4 mark.js: 8.11.1 - minisearch: 7.1.1 - shiki: 1.24.0 - vite: 5.4.11(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) + minisearch: 7.1.2 + shiki: 2.5.0 + vite: 5.4.19(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) vue: 3.5.13(typescript@5.5.4) optionalDependencies: - postcss: 8.4.49 + postcss: 8.5.3 transitivePeerDependencies: - '@algolia/client-search' - '@types/node' - '@types/react' - - '@vue/composition-api' - async-validator - axios - change-case @@ -15085,10 +15885,10 @@ snapshots: - typescript - universal-cookie - vitest@3.1.1(@types/node@18.15.3)(jsdom@26.0.0)(sass@1.59.3)(terser@5.16.6): + vitest@3.1.1(@types/debug@4.1.12)(@types/node@18.15.3)(jiti@1.21.6)(jsdom@26.0.0)(sass@1.59.3)(terser@5.16.6)(tsx@4.19.2): dependencies: '@vitest/expect': 3.1.1 - '@vitest/mocker': 3.1.1(vite@5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6)) + '@vitest/mocker': 3.1.1(vite@6.3.5(@types/node@18.15.3)(jiti@1.21.6)(sass@1.59.3)(terser@5.16.6)(tsx@4.19.2)) '@vitest/pretty-format': 3.1.1 '@vitest/runner': 3.1.1 '@vitest/snapshot': 3.1.1 @@ -15104,30 +15904,31 @@ snapshots: tinyexec: 0.3.2 tinypool: 1.0.2 tinyrainbow: 2.0.0 - vite: 5.2.8(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) - vite-node: 3.1.1(@types/node@18.15.3)(sass@1.59.3)(terser@5.16.6) + vite: 6.3.5(@types/node@18.15.3)(jiti@1.21.6)(sass@1.59.3)(terser@5.16.6)(tsx@4.19.2) + vite-node: 3.1.1(@types/node@18.15.3)(jiti@1.21.6)(sass@1.59.3)(terser@5.16.6)(tsx@4.19.2) why-is-node-running: 2.3.0 optionalDependencies: + '@types/debug': 4.1.12 '@types/node': 18.15.3 jsdom: 26.0.0 transitivePeerDependencies: + - jiti - less - lightningcss - msw - sass + - sass-embedded - stylus - sugarss - supports-color - terser + - tsx + - yaml vscode-uri@3.0.8: {} vue-component-type-helpers@2.2.8: {} - vue-demi@0.14.10(vue@3.5.13(typescript@5.5.4)): - dependencies: - vue: 3.5.13(typescript@5.5.4) - vue-demi@0.14.5(vue@3.4.38(typescript@5.5.4)): dependencies: vue: 3.4.38(typescript@5.5.4)