From 7230dd9fd2379c39f21c8bc307a3b1cae5a61c1c Mon Sep 17 00:00:00 2001 From: "142vip.cn" <2237221210@qq.com> Date: Sat, 21 Dec 2024 21:52:01 +0800 Subject: [PATCH] =?UTF-8?q?fix(@142vip/vuepress):=20=E4=BF=AE=E5=A4=8D`vue?= =?UTF-8?q?press-theme-hope`=E5=8D=87=E7=BA=A7=E5=90=8E=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E5=A4=B1=E6=95=88=E5=BC=82=E5=B8=B8=EF=BC=8C=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=20(#255)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/vuepress/package.json | 2 +- packages/vuepress/src/core/index.ts | 4 +- packages/vuepress/src/core/theme-plugins.ts | 78 +- packages/vuepress/src/core/theme.ts | 50 +- pnpm-lock.yaml | 871 +++++++++----------- 5 files changed, 459 insertions(+), 546 deletions(-) diff --git a/packages/vuepress/package.json b/packages/vuepress/package.json index 9667fb2..cac0499 100644 --- a/packages/vuepress/package.json +++ b/packages/vuepress/package.json @@ -45,6 +45,7 @@ "@vuepress/plugin-markdown-image": "2.0.0-rc.30", "@vuepress/plugin-markdown-tab": "2.0.0-rc.47", "@vuepress/plugin-redirect": "2.0.0-rc.8", + "@vuepress/plugin-slimsearch": "2.0.0-rc.61", "dashjs": "^4.7.4", "hls.js": "^1.5.13", "mermaid": "^10.9.1 || ^11.0.0", @@ -54,7 +55,6 @@ "vidstack": "^1.11.30", "vue": "^3.5.8", "vuepress": "2.0.0-rc.19", - "vuepress-plugin-search-pro": "2.0.0-rc.59", "vuepress-theme-hope": "2.0.0-rc.66" }, "devDependencies": { diff --git a/packages/vuepress/src/core/index.ts b/packages/vuepress/src/core/index.ts index 040df7b..ef1a455 100644 --- a/packages/vuepress/src/core/index.ts +++ b/packages/vuepress/src/core/index.ts @@ -1,6 +1,6 @@ export * from './bundler' +export * from './constant' export * from './headers' export * from './i18n' -export * from './constant' -export * from './theme-plugins' export * from './theme' +export * from './theme-plugins' diff --git a/packages/vuepress/src/core/theme-plugins.ts b/packages/vuepress/src/core/theme-plugins.ts index 674fb98..6832ec6 100644 --- a/packages/vuepress/src/core/theme-plugins.ts +++ b/packages/vuepress/src/core/theme-plugins.ts @@ -55,45 +55,6 @@ export const baseThemePluginOptions = { // // 启用图片大小 // size: true, // }), - // 代码块 - mdEnhance: { - // 支持任务列表 - tasklist: true, - playground: { - presets: ['ts', 'vue'], - }, - // revealjs: [ - // 'highlight', - // 'math', - // 'search', - // 'notes', - // 'zoom', - // ], - // stylize: [ - // { - // matcher: 'Recommended', - // replacer: ({ tag }) => { - // if (tag === 'em') { - // return { - // tag: 'Badge', - // attrs: { type: 'tip' }, - // content: 'Recommended', - // } - // } - // }, - // }, - // ], - sub: true, - sup: true, - vPre: true, - vuePlayground: true, - // 文件导入配置别名 - include: true, - // mermaid - mermaid: true, - // 自定义对齐 - align: true, - }, copyCode: { showInMobile: true, }, @@ -112,48 +73,11 @@ export const baseThemePluginOptions = { 'XiGua', ], }, - searchPro: { + slimsearch: { // 参考:https://plugin-search-pro.vuejs.press/zh/config.html#locales locales: { '/': searchProCNLocals, }, }, - // 参考:https://theme-hope.vuejs.press/zh/config/plugins/others.html#markdowntab - markdownTab: true, nprogress: true, - // 代码高亮:https://theme-hope.vuejs.press/zh/guide/feature/code-block.html - shiki: { - // 参考:https://shiki.tmrs.site/languages - langs: [ - 'ts', - 'js', - 'vue', - 'json', - 'json5', - 'jsonc', - 'jsx', - 'lua', - 'shellscript', - 'diff', - 'c', - 'c++', - 'dockerfile', - 'nginx', - 'proto', - 'java', - 'javascript', - 'typescript', - 'yaml', - 'text', - 'graphql', - 'http', - 'python', - 'xml', - ], - // 你想要使用的主题 - themes: { - light: 'one-light', - dark: 'one-dark-pro', - }, - }, } diff --git a/packages/vuepress/src/core/theme.ts b/packages/vuepress/src/core/theme.ts index 98fd17e..74ad8b4 100644 --- a/packages/vuepress/src/core/theme.ts +++ b/packages/vuepress/src/core/theme.ts @@ -68,8 +68,54 @@ const baseThemeConfig = { // version: '', // }), // copyright: getCopyRightText(''), - plugins: { - ...baseThemePluginOptions, + plugins: baseThemePluginOptions, + markdown: { + // 支持任务列表 + tasklist: true, + playground: { + presets: ['ts', 'vue'], + }, + sub: true, + sup: true, + vPre: true, + vuePlayground: true, + // 文件导入配置别名 + include: true, + // mermaid + mermaid: true, + // 自定义对齐 + align: true, + tabs: true, + codeTabs: true, + highlighter: { + // 参考:https://shiki.tmrs.site/languages + langs: [ + 'ts', + 'js', + 'vue', + 'json', + 'json5', + 'jsonc', + 'jsx', + 'lua', + 'shellscript', + 'diff', + 'c', + 'c++', + 'dockerfile', + 'nginx', + 'proto', + 'java', + 'javascript', + 'typescript', + 'yaml', + 'text', + 'graphql', + 'http', + 'python', + 'xml', + ], + }, }, } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3d03f9e..f7bd803 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -186,7 +186,7 @@ importers: dependencies: '@antfu/eslint-config': specifier: ^2.27.3 - version: 2.27.3(@typescript-eslint/utils@8.11.0(eslint@8.55.0)(typescript@5.7.2))(@vue/compiler-sfc@3.5.13)(eslint@8.55.0)(typescript@5.7.2) + version: 2.27.3(@typescript-eslint/utils@8.18.1(eslint@8.55.0)(typescript@5.7.2))(@vue/compiler-sfc@3.5.13)(eslint@8.55.0)(typescript@5.7.2) eslint: specifier: 8.55.0 version: 8.55.0 @@ -383,16 +383,19 @@ importers: version: 4.4.2 '@vuepress/bundler-vite': specifier: 2.0.0-rc.19 - version: 2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0) + version: 2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0) '@vuepress/plugin-markdown-image': specifier: 2.0.0-rc.30 - version: 2.0.0-rc.30(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + version: 2.0.0-rc.30(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) '@vuepress/plugin-markdown-tab': specifier: 2.0.0-rc.47 - version: 2.0.0-rc.47(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + version: 2.0.0-rc.47(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) '@vuepress/plugin-redirect': specifier: 2.0.0-rc.8 - version: 2.0.0-rc.8(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + version: 2.0.0-rc.8(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-slimsearch': + specifier: 2.0.0-rc.61 + version: 2.0.0-rc.61(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) dashjs: specifier: ^4.7.4 version: 4.7.4 @@ -419,13 +422,10 @@ importers: version: 3.5.12(typescript@5.7.2) vuepress: specifier: 2.0.0-rc.19 - version: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) - vuepress-plugin-search-pro: - specifier: 2.0.0-rc.59 - version: 2.0.0-rc.59(sass-embedded@1.80.4)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + version: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) vuepress-theme-hope: specifier: 2.0.0-rc.66 - version: 2.0.0-rc.66(@vue/repl@4.4.2)(dashjs@4.7.4)(hls.js@1.5.17)(katex@0.16.11)(markdown-it@14.1.0)(mermaid@10.9.3)(sass-embedded@1.80.4)(typescript@5.7.2)(vidstack@1.12.12)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + version: 2.0.0-rc.66(@vue/repl@4.4.2)(@vuepress/plugin-slimsearch@2.0.0-rc.61(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))))(dashjs@4.7.4)(hls.js@1.5.17)(katex@0.16.11)(markdown-it@14.1.0)(mermaid@10.9.3)(sass-embedded@1.80.4)(typescript@5.7.2)(vidstack@1.12.12)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) devDependencies: typescript: specifier: ^5.5.4 @@ -750,8 +750,8 @@ packages: '@bufbuild/protobuf@2.2.3': resolution: {integrity: sha512-tFQoXHJdkEOSwj5tRIZSPNUuXK3RaR7T1nUrPgbYX1pUbvqqaaZAsfo+NXBPsz5rZMSKVFrgK1WL8Q/MSLvprg==} - '@clack/core@0.3.4': - resolution: {integrity: sha512-H4hxZDXgHtWTwV3RAVenqcC4VbJZNegbBjlPvzOzCouXtS2y3sDvlO3IsbrPNWuLWPPlYVYPghQdSF64683Ldw==} + '@clack/core@0.3.5': + resolution: {integrity: sha512-5cfhQNH+1VQ2xLQlmzXMqUoiaH0lRBq9/CLW9lTyMbuKLC3+xEK01tHVvyut++mLOn5urSHmkm6I0Lg9MaJSTQ==} '@clack/prompts@0.7.0': resolution: {integrity: sha512-0MhX9/B4iL6Re04jPrttDm+BsP8y6mS7byuv0BvXgdXhbV5PdlsHt55dvNsuBCPZ7xq1oTAOOuotR9NFbQyMSA==} @@ -1911,96 +1911,115 @@ packages: resolution: {integrity: sha512-h2Ay79YFXyQi+QZKo3ISZDyKaVD7uUvukEHTOft7kh00WF9mxAaxZsNs3o/eukbeKuH35jBvQqrT61fzKfAB/Q==} cpu: [arm] os: [linux] + libc: [glibc] '@rollup/rollup-linux-arm-gnueabihf@4.28.1': resolution: {integrity: sha512-QAg11ZIt6mcmzpNE6JZBpKfJaKkqTm1A9+y9O+frdZJEuhQxiugM05gnCWiANHj4RmbgeVJpTdmKRmH/a+0QbA==} cpu: [arm] os: [linux] + libc: [glibc] '@rollup/rollup-linux-arm-musleabihf@4.27.3': resolution: {integrity: sha512-Sv2GWmrJfRY57urktVLQ0VKZjNZGogVtASAgosDZ1aUB+ykPxSi3X1nWORL5Jk0sTIIwQiPH7iE3BMi9zGWfkg==} cpu: [arm] os: [linux] + libc: [musl] '@rollup/rollup-linux-arm-musleabihf@4.28.1': resolution: {integrity: sha512-dRP9PEBfolq1dmMcFqbEPSd9VlRuVWEGSmbxVEfiq2cs2jlZAl0YNxFzAQS2OrQmsLBLAATDMb3Z6MFv5vOcXg==} cpu: [arm] os: [linux] + libc: [musl] '@rollup/rollup-linux-arm64-gnu@4.27.3': resolution: {integrity: sha512-FPoJBLsPW2bDNWjSrwNuTPUt30VnfM8GPGRoLCYKZpPx0xiIEdFip3dH6CqgoT0RnoGXptaNziM0WlKgBc+OWQ==} cpu: [arm64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-arm64-gnu@4.28.1': resolution: {integrity: sha512-uGr8khxO+CKT4XU8ZUH1TTEUtlktK6Kgtv0+6bIFSeiSlnGJHG1tSFSjm41uQ9sAO/5ULx9mWOz70jYLyv1QkA==} cpu: [arm64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-arm64-musl@4.27.3': resolution: {integrity: sha512-TKxiOvBorYq4sUpA0JT+Fkh+l+G9DScnG5Dqx7wiiqVMiRSkzTclP35pE6eQQYjP4Gc8yEkJGea6rz4qyWhp3g==} cpu: [arm64] os: [linux] + libc: [musl] '@rollup/rollup-linux-arm64-musl@4.28.1': resolution: {integrity: sha512-QF54q8MYGAqMLrX2t7tNpi01nvq5RI59UBNx+3+37zoKX5KViPo/gk2QLhsuqok05sSCRluj0D00LzCwBikb0A==} cpu: [arm64] os: [linux] + libc: [musl] '@rollup/rollup-linux-loongarch64-gnu@4.28.1': resolution: {integrity: sha512-vPul4uodvWvLhRco2w0GcyZcdyBfpfDRgNKU+p35AWEbJ/HPs1tOUrkSueVbBS0RQHAf/A+nNtDpvw95PeVKOA==} cpu: [loong64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-powerpc64le-gnu@4.27.3': resolution: {integrity: sha512-v2M/mPvVUKVOKITa0oCFksnQQ/TqGrT+yD0184/cWHIu0LoIuYHwox0Pm3ccXEz8cEQDLk6FPKd1CCm+PlsISw==} cpu: [ppc64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-powerpc64le-gnu@4.28.1': resolution: {integrity: sha512-pTnTdBuC2+pt1Rmm2SV7JWRqzhYpEILML4PKODqLz+C7Ou2apEV52h19CR7es+u04KlqplggmN9sqZlekg3R1A==} cpu: [ppc64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-riscv64-gnu@4.27.3': resolution: {integrity: sha512-LdrI4Yocb1a/tFVkzmOE5WyYRgEBOyEhWYJe4gsDWDiwnjYKjNs7PS6SGlTDB7maOHF4kxevsuNBl2iOcj3b4A==} cpu: [riscv64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-riscv64-gnu@4.28.1': resolution: {integrity: sha512-vWXy1Nfg7TPBSuAncfInmAI/WZDd5vOklyLJDdIRKABcZWojNDY0NJwruY2AcnCLnRJKSaBgf/GiJfauu8cQZA==} cpu: [riscv64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-s390x-gnu@4.27.3': resolution: {integrity: sha512-d4wVu6SXij/jyiwPvI6C4KxdGzuZOvJ6y9VfrcleHTwo68fl8vZC5ZYHsCVPUi4tndCfMlFniWgwonQ5CUpQcA==} cpu: [s390x] os: [linux] + libc: [glibc] '@rollup/rollup-linux-s390x-gnu@4.28.1': resolution: {integrity: sha512-/yqC2Y53oZjb0yz8PVuGOQQNOTwxcizudunl/tFs1aLvObTclTwZ0JhXF2XcPT/zuaymemCDSuuUPXJJyqeDOg==} cpu: [s390x] os: [linux] + libc: [glibc] '@rollup/rollup-linux-x64-gnu@4.27.3': resolution: {integrity: sha512-/6bn6pp1fsCGEY5n3yajmzZQAh+mW4QPItbiWxs69zskBzJuheb3tNynEjL+mKOsUSFK11X4LYF2BwwXnzWleA==} cpu: [x64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-x64-gnu@4.28.1': resolution: {integrity: sha512-fzgeABz7rrAlKYB0y2kSEiURrI0691CSL0+KXwKwhxvj92VULEDQLpBYLHpF49MSiPG4sq5CK3qHMnb9tlCjBw==} cpu: [x64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-x64-musl@4.27.3': resolution: {integrity: sha512-nBXOfJds8OzUT1qUreT/en3eyOXd2EH5b0wr2bVB5999qHdGKkzGzIyKYaKj02lXk6wpN71ltLIaQpu58YFBoQ==} cpu: [x64] os: [linux] + libc: [musl] '@rollup/rollup-linux-x64-musl@4.28.1': resolution: {integrity: sha512-xQTDVzSGiMlSshpJCtudbWyRfLaNiVPXt1WgdWTwWz9n0U12cI2ZVtWe/Jgwyv/6wjL7b66uu61Vg0POWVfz4g==} cpu: [x64] os: [linux] + libc: [musl] '@rollup/rollup-win32-arm64-msvc@4.27.3': resolution: {integrity: sha512-ogfbEVQgIZOz5WPWXF2HVb6En+kWzScuxJo/WdQTqEgeyGkaa2ui5sQav9Zkr7bnNCLK48uxmmK0TySm22eiuw==} @@ -2098,8 +2117,8 @@ packages: '@stackblitz/sdk@1.11.0': resolution: {integrity: sha512-DFQGANNkEZRzFk1/rDP6TcFdM82ycHE+zfl9C/M/jXlH68jiqHWHFMQURLELoD8koxvu/eW5uhg94NSAZlYrUQ==} - '@stylistic/eslint-plugin@2.9.0': - resolution: {integrity: sha512-OrDyFAYjBT61122MIY1a3SfEgy3YCMgt2vL4eoPmvTwDBwyQhAXurxNQznlRD/jESNfYWfID8Ej+31LljvF7Xg==} + '@stylistic/eslint-plugin@2.12.1': + resolution: {integrity: sha512-fubZKIHSPuo07FgRTn6S4Nl0uXPRPYVNpyZzIDGfp7Fny6JjNus6kReLD7NI380JXi4HtUTSOZ34LBuNPO1XLQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=8.40.0' @@ -2151,6 +2170,9 @@ packages: '@types/debug@4.1.12': resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + '@types/doctrine@0.0.9': + resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==} + '@types/eslint@9.6.1': resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==} @@ -2322,61 +2344,51 @@ packages: '@types/yargs@17.0.33': resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} - '@typescript-eslint/eslint-plugin@8.11.0': - resolution: {integrity: sha512-KhGn2LjW1PJT2A/GfDpiyOfS4a8xHQv2myUagTM5+zsormOmBlYsnQ6pobJ8XxJmh6hnHwa2Mbe3fPrDJoDhbA==} + '@typescript-eslint/eslint-plugin@8.18.1': + resolution: {integrity: sha512-Ncvsq5CT3Gvh+uJG0Lwlho6suwDfUXH0HztslDf5I+F2wAFAZMRwYLEorumpKLzmO2suAXZ/td1tBg4NZIi9CQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 eslint: ^8.57.0 || ^9.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/parser@8.11.0': - resolution: {integrity: sha512-lmt73NeHdy1Q/2ul295Qy3uninSqi6wQI18XwSpm8w0ZbQXUpjCAWP1Vlv/obudoBiIjJVjlztjQ+d/Md98Yxg==} + '@typescript-eslint/parser@8.18.1': + resolution: {integrity: sha512-rBnTWHCdbYM2lh7hjyXqxk70wvon3p2FyaniZuey5TrcGBpfhVp0OxOa6gxr9Q9YhZFKyfbEnxc24ZnVbbUkCA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/scope-manager@8.11.0': - resolution: {integrity: sha512-Uholz7tWhXmA4r6epo+vaeV7yjdKy5QFCERMjs1kMVsLRKIrSdM6o21W2He9ftp5PP6aWOVpD5zvrvuHZC0bMQ==} + '@typescript-eslint/scope-manager@8.18.1': + resolution: {integrity: sha512-HxfHo2b090M5s2+/9Z3gkBhI6xBH8OJCFjH9MhQ+nnoZqxU3wNxkLT+VWXWSFWc3UF3Z+CfPAyqdCTdoXtDPCQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/type-utils@8.11.0': - resolution: {integrity: sha512-ItiMfJS6pQU0NIKAaybBKkuVzo6IdnAhPFZA/2Mba/uBjuPQPet/8+zh5GtLHwmuFRShZx+8lhIs7/QeDHflOg==} + '@typescript-eslint/type-utils@8.18.1': + resolution: {integrity: sha512-jAhTdK/Qx2NJPNOTxXpMwlOiSymtR2j283TtPqXkKBdH8OAMmhiUfP0kJjc/qSE51Xrq02Gj9NY7MwK+UxVwHQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/types@8.11.0': - resolution: {integrity: sha512-tn6sNMHf6EBAYMvmPUaKaVeYvhUsrE6x+bXQTxjQRp360h1giATU0WvgeEys1spbvb5R+VpNOZ+XJmjD8wOUHw==} + '@typescript-eslint/types@8.18.1': + resolution: {integrity: sha512-7uoAUsCj66qdNQNpH2G8MyTFlgerum8ubf21s3TSM3XmKXuIn+H2Sifh/ES2nPOPiYSRJWAk0fDkW0APBWcpfw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.11.0': - resolution: {integrity: sha512-yHC3s1z1RCHoCz5t06gf7jH24rr3vns08XXhfEqzYpd6Hll3z/3g23JRi0jM8A47UFKNc3u/y5KIMx8Ynbjohg==} + '@typescript-eslint/typescript-estree@8.18.1': + resolution: {integrity: sha512-z8U21WI5txzl2XYOW7i9hJhxoKKNG1kcU4RzyNvKrdZDmbjkmLBo8bgeiOJmA06kizLI76/CCBAAGlTlEeUfyg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/utils@8.11.0': - resolution: {integrity: sha512-CYiX6WZcbXNJV7UNB4PLDIBtSdRmRI/nb0FMyqHPTQD1rMjA0foPLaPUV39C/MxkTd/QKSeX+Gb34PPsDVC35g==} + '@typescript-eslint/utils@8.18.1': + resolution: {integrity: sha512-8vikiIj2ebrC4WRdcAdDcmnu9Q/MXXwg+STf40BVfT8exDqBCUPdypvzcUPxEqRGKg9ALagZ0UWcYCtn+4W2iQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/visitor-keys@8.11.0': - resolution: {integrity: sha512-EaewX6lxSjRJnc+99+dqzTeoDZUfyrA52d2/HRrkI830kgovWsmIiTfmr0NZorzqic7ga+1bS60lRBUgR3n/Bw==} + '@typescript-eslint/visitor-keys@8.18.1': + resolution: {integrity: sha512-Vj0WLm5/ZsD013YeUKn+K0y8p1M0jPpxOkKdbD1wB0ns53a5piVY02zjf072TblEweAbcYiFiPoSMF3kp+VhhQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@ungap/structured-clone@1.2.0': @@ -2396,8 +2408,8 @@ packages: vite: ^5.0.0 || ^6.0.0 vue: ^3.2.25 - '@vitest/eslint-plugin@1.1.7': - resolution: {integrity: sha512-pTWGW3y6lH2ukCuuffpan6kFxG6nIuoesbhMiQxskyQMRcCN5t9SXsKrNHvEw3p8wcCsgJoRqFZVkOTn6TjclA==} + '@vitest/eslint-plugin@1.1.20': + resolution: {integrity: sha512-2eLsgUm+GVOpDfNyH2do//MiNO/WZkXrPi+EjDmXEdUt6Jwnziq4H221L8vJE0aJys+l1FRfSkm4QbaIyDCfBg==} peerDependencies: '@typescript-eslint/utils': '>= 8.0' eslint: '>= 8.57.0' @@ -2512,13 +2524,13 @@ packages: peerDependencies: vuepress: 2.0.0-rc.15 - '@vuepress/helper@2.0.0-rc.56': - resolution: {integrity: sha512-O4iGck8PnloYypgRx6w+Vc/yG7wi7pyli0FZo82LNx/6OmZAdilFUIacLO3Cr0HLmpX9sK6NzQJeJ4HAgsiIUw==} + '@vuepress/helper@2.0.0-rc.57': + resolution: {integrity: sha512-6tJpiVCMdJ5bu5tvH51o+SIDyQG20kqYBvOPeRRsBVGjp8n0rH6KDGY0xDEkd/HF8mJ9UPqNYvqhsQyI3iKKWQ==} peerDependencies: vuepress: 2.0.0-rc.18 - '@vuepress/helper@2.0.0-rc.57': - resolution: {integrity: sha512-6tJpiVCMdJ5bu5tvH51o+SIDyQG20kqYBvOPeRRsBVGjp8n0rH6KDGY0xDEkd/HF8mJ9UPqNYvqhsQyI3iKKWQ==} + '@vuepress/helper@2.0.0-rc.61': + resolution: {integrity: sha512-M/ZLSTYl7APDFGELf+jzQmgcak+tsYcLZYpmJSQagIJl/cdBJohNWjqu/t0/1b2iXbX0s4dLapS9mRiuKa1WDw==} peerDependencies: vuepress: 2.0.0-rc.18 @@ -2688,21 +2700,6 @@ packages: peerDependencies: vuepress: 2.0.0-rc.19 - '@vuepress/plugin-sass-palette@2.0.0-rc.56': - resolution: {integrity: sha512-gGA/CidSaOGiuskWKPsUGFVgiv3xEZAQDMRUaAgeMdvObJ70/wYO09uPaTu56mesrpc9P+FBMH67sdTQfHietQ==} - peerDependencies: - sass: ^1.80.3 - sass-embedded: ^1.80.3 - sass-loader: ^16.0.2 - vuepress: 2.0.0-rc.18 - peerDependenciesMeta: - sass: - optional: true - sass-embedded: - optional: true - sass-loader: - optional: true - '@vuepress/plugin-sass-palette@2.0.0-rc.66': resolution: {integrity: sha512-ghMAGK+nRyLmTssppOYcF3N4hsVrM+4H88WKNM6u9QwGx0EyzC/tEEL0CE3QwgJMMt6FKVGsHwDC64Mz/j2a3g==} peerDependencies: @@ -2733,6 +2730,11 @@ packages: peerDependencies: vuepress: 2.0.0-rc.19 + '@vuepress/plugin-slimsearch@2.0.0-rc.61': + resolution: {integrity: sha512-Ti0ZED+BsHgv7qT4CMpWrUpT7hBLa7D+RUZBUkY5Wxj4ZTq+rOEpWxx7lfaVgH+PcH1U6biV1y0pvWZv31CMxg==} + peerDependencies: + vuepress: 2.0.0-rc.18 + '@vuepress/plugin-theme-data@2.0.0-rc.66': resolution: {integrity: sha512-zCojGjYuQo/EXeF4cXA99ubxE7TUNDopMUGIjKKJjpDs1me6zkXSj1NqKnUD3+uHpP0PP7YXfROxTlk6Fy+FGg==} peerDependencies: @@ -2753,6 +2755,9 @@ packages: '@vueuse/core@11.2.0': resolution: {integrity: sha512-JIUwRcOqOWzcdu1dGlfW04kaJhW3EXnnjJJfLTtddJanymTL7lF1C0+dVVZ/siLfc73mWn+cGP1PE1PKPruRSA==} + '@vueuse/core@11.3.0': + resolution: {integrity: sha512-7OC4Rl1f9G8IT6rUfi9JrKiXy4bfmHhZ5x2Ceojy0jnd3mHNEvV4JaRygH362ror6/NZ+Nl+n13LPzGiPN8cKA==} + '@vueuse/core@12.0.0': resolution: {integrity: sha512-C12RukhXiJCbx4MGhjmd/gH52TjJsc3G0E0kQj/kb19H3Nt6n1CA4DRWuTdWWcaFRdlTe0npWDS942mvacvNBw==} @@ -2809,6 +2814,9 @@ packages: '@vueuse/metadata@11.2.0': resolution: {integrity: sha512-L0ZmtRmNx+ZW95DmrgD6vn484gSpVeRbgpWevFKXwqqQxW9hnSi2Ppuh2BzMjnbv4aJRiIw8tQatXT9uOB23dQ==} + '@vueuse/metadata@11.3.0': + resolution: {integrity: sha512-pwDnDspTqtTo2HwfLw4Rp6yywuuBdYnPYDq+mO38ZYKGebCUQC/nVj/PXSiK9HX5otxLz8Fn7ECPbjiRz2CC3g==} + '@vueuse/metadata@12.0.0': resolution: {integrity: sha512-Yzimd1D3sjxTDOlF05HekU5aSGdKjxhuhRFHA7gDWLn57PRbBIh+SF5NmjhJ0WRgF3my7T8LBucyxdFJjIfRJQ==} @@ -2824,6 +2832,9 @@ packages: '@vueuse/shared@11.2.0': resolution: {integrity: sha512-VxFjie0EanOudYSgMErxXfq6fo8vhr5ICI+BuE3I9FnX7ePllEsVrRQ7O6Q1TLgApeLuPKcHQxAXpP+KnlrJsg==} + '@vueuse/shared@11.3.0': + resolution: {integrity: sha512-P8gSSWQeucH5821ek2mn/ciCk+MS/zoRKqdQIM3bHq6p7GXDAJLmnRRKmF5F65sAVJIfzQlwR3aDzwCn10s8hA==} + '@vueuse/shared@12.0.0': resolution: {integrity: sha512-3i6qtcq2PIio5i/vVYidkkcgvmTjCqrf26u+Fd4LhnbBmIT6FN8y6q/GJERp8lfcB9zVEfjdV0Br0443qZuJpw==} @@ -3967,16 +3978,18 @@ packages: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} engines: {node: '>=10'} - escape-string-regexp@5.0.0: - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} - engines: {node: '>=12'} - eslint-compat-utils@0.5.1: resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} engines: {node: '>=12'} peerDependencies: eslint: '>=6.0.0' + eslint-compat-utils@0.6.4: + resolution: {integrity: sha512-/u+GQt8NMfXO8w17QendT4gvO5acfxQsAKirAt0LVxDnr2N8YLCVbregaNc/Yhp7NM128DwCaRvr8PLDfeNkQw==} + engines: {node: '>=12'} + peerDependencies: + eslint: '>=6.0.0' + eslint-config-flat-gitignore@0.1.8: resolution: {integrity: sha512-OEUbS2wzzYtUfshjOqzFo4Bl4lHykXUdM08TCnYNl7ki+niW4Q1R0j0FDFDr0vjVsI5ZFOz5LvluxOP+Ew+dYw==} @@ -3986,6 +3999,17 @@ packages: eslint-import-resolver-node@0.3.9: resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} + eslint-json-compat-utils@0.2.1: + resolution: {integrity: sha512-YzEodbDyW8DX8bImKhAcCeu/L31Dd/70Bidx2Qex9OFUtgzXLqtfWL4Hr5fM/aCCB8QUZLuJur0S9k6UfgFkfg==} + engines: {node: '>=12'} + peerDependencies: + '@eslint/json': '*' + eslint: '*' + jsonc-eslint-parser: ^2.4.0 + peerDependenciesMeta: + '@eslint/json': + optional: true + eslint-merge-processors@0.1.0: resolution: {integrity: sha512-IvRXXtEajLeyssvW4wJcZ2etxkR9mUf4zpNwgI+m/Uac9RfXHskuJefkHUcawVzePnd6xp24enp5jfgdHzjRdQ==} peerDependencies: @@ -4007,20 +4031,20 @@ packages: peerDependencies: eslint: '>=8' - eslint-plugin-import-x@4.3.1: - resolution: {integrity: sha512-5TriWkXulDl486XnYYRgsL+VQoS/7mhN/2ci02iLCuL7gdhbiWxnsuL/NTcaKY9fpMgsMFjWZBtIGW7pb+RX0g==} + eslint-plugin-import-x@4.6.1: + resolution: {integrity: sha512-wluSUifMIb7UfwWXqx7Yx0lE/SGCcGXECLx/9bCmbY2nneLwvAZ4vkd1IXDjPKFvdcdUgr1BaRnaRpx3k2+Pfw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 - eslint-plugin-jsdoc@50.4.3: - resolution: {integrity: sha512-uWtwFxGRv6B8sU63HZM5dAGDhgsatb+LONwmILZJhdRALLOkCX2HFZhdL/Kw2ls8SQMAVEfK+LmnEfxInRN8HA==} + eslint-plugin-jsdoc@50.6.1: + resolution: {integrity: sha512-UWyaYi6iURdSfdVVqvfOs2vdCVz0J40O/z/HTsv2sFjdjmdlUI/qlKLOTmwbPQ2tAfQnE5F9vqx+B+poF71DBQ==} engines: {node: '>=18'} peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 - eslint-plugin-jsonc@2.16.0: - resolution: {integrity: sha512-Af/ZL5mgfb8FFNleH6KlO4/VdmDuTqmM+SPnWcdoWywTetv7kq+vQe99UyQb9XO3b0OWLVuTH7H0d/PXYCMdSg==} + eslint-plugin-jsonc@2.18.2: + resolution: {integrity: sha512-SDhJiSsWt3nItl/UuIv+ti4g3m4gpGkmnUJS9UWR3TrpyNsIcnJoBRD7Kof6cM4Rk3L0wrmY5Tm3z7ZPjR2uGg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' @@ -4031,8 +4055,8 @@ packages: peerDependencies: eslint: '>=8' - eslint-plugin-n@17.11.1: - resolution: {integrity: sha512-93IUD82N6tIEgjztVI/l3ElHtC2wTa9boJHrD8iN+NyDxjxz/daZUZKfkedjBZNdg6EqDk4irybUsiPwDqXAEA==} + eslint-plugin-n@17.15.1: + resolution: {integrity: sha512-KFw7x02hZZkBdbZEFQduRGH4VkIH4MW97ClsbAM4Y4E6KguBJWGfWG1P4HEIpZk2bkoWf0bojpnjNAhYQP8beA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=8.23.0' @@ -4060,8 +4084,8 @@ packages: vue-eslint-parser: optional: true - eslint-plugin-regexp@2.6.0: - resolution: {integrity: sha512-FCL851+kislsTEQEMioAlpDuK5+E5vs0hi1bF8cFlPlHcEjeRhuAzEsGikXRreE+0j4WhW2uO54MqTjXtYOi3A==} + eslint-plugin-regexp@2.7.0: + resolution: {integrity: sha512-U8oZI77SBtH8U3ulZ05iu0qEzIizyEDXd+BWHvyVxTOjGwcDcvy/kEpgFG4DYca2ByRLiVPFZ2GeH7j1pdvZTA==} engines: {node: ^18 || >=20} peerDependencies: eslint: '>=8.44.0' @@ -4087,14 +4111,14 @@ packages: '@typescript-eslint/eslint-plugin': optional: true - eslint-plugin-vue@9.29.1: - resolution: {integrity: sha512-MH/MbVae4HV/tM8gKAVWMPJbYgW04CK7SuzYRrlNERpxbO0P3+Zdsa2oAcFBW6xNu7W6lIkGOsFAMCRTYmrlWQ==} + eslint-plugin-vue@9.32.0: + resolution: {integrity: sha512-b/Y05HYmnB/32wqVcjxjHZzNpwxj1onBOvqW89W+V+XNG1dRuaFbNd3vT9CLbr2LXjEoq+3vn8DanWf7XU22Ug==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 - eslint-plugin-yml@1.14.0: - resolution: {integrity: sha512-ESUpgYPOcAYQO9czugcX5OqRvn/ydDVwGCPXY4YjPqc09rHaUVUA6IE6HLQys4rXk/S+qx3EwTd1wHCwam/OWQ==} + eslint-plugin-yml@1.16.0: + resolution: {integrity: sha512-t4MNCetPjTn18/fUDlQ/wKkcYjnuLYKChBrZ0qUaNqRigVqChHWzTP8SrfFi5s4keX3vdlkWRSu8zHJMdKwxWQ==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' @@ -4113,8 +4137,8 @@ packages: resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - eslint-visitor-keys@4.1.0: - resolution: {integrity: sha512-Q7lok0mqMUSf5a/AdAZkA5a/gHcO6snwQClVNNvFKCAVlxXucdU8pKydU5ZVZjBx5xr37vGbFFWtLQYreLzrZg==} + eslint-visitor-keys@4.2.0: + resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} eslint@8.55.0: @@ -4127,8 +4151,8 @@ packages: resolution: {integrity: sha512-acMtooReAQGzLU0zcuEDHa8S62meh5aIyi8jboYxyvAePdmuWx2Mpwmt0xjwO0bs9/SXf+dvXJ0QJoDWw814Iw==} hasBin: true - espree@10.2.0: - resolution: {integrity: sha512-upbkBJbckcCNBDBDXEbuhjbP68n+scUd3k/U2EkyM9nw+I/jPiL4cLF/Al06CF96wRltFda16sxDFrxsI1v0/g==} + espree@10.3.0: + resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} espree@9.6.1: @@ -4449,8 +4473,8 @@ packages: resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} engines: {node: '>=8'} - globals@15.11.0: - resolution: {integrity: sha512-yeyNSjdbyVaWurlwCpcA6XNBrHTMIeDdj0/hnvX/OLJ9ekOXYbLsLinH/MucQyGvNnXhidTdNhTtJaffL2sMfw==} + globals@15.14.0: + resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==} engines: {node: '>=18'} globby@11.1.0: @@ -5150,8 +5174,8 @@ packages: resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} engines: {node: '>=6'} - local-pkg@0.5.0: - resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==} + local-pkg@0.5.1: + resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==} engines: {node: '>=14'} localforage@1.10.0: @@ -5778,8 +5802,8 @@ packages: resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==} engines: {node: '>=8'} - package-manager-detector@0.2.2: - resolution: {integrity: sha512-VgXbyrSNsml4eHWIvxxG/nTL4wgybMTXCV2Un/+yEc3aDKKU6nQBZjbeP3Pl3qm9Qg92X/1ng4ffvCeD/zwHgg==} + package-manager-detector@0.2.8: + resolution: {integrity: sha512-ts9KSdroZisdvKMWVAVCXiKqnqNfXz4+IbrBG8/BWx/TR5le+jfenvoBuIZ6UWM9nz47W7AbD9qYfAwfWMIwzA==} parent-module@1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} @@ -6740,8 +6764,8 @@ packages: slashes@3.0.12: resolution: {integrity: sha512-Q9VME8WyGkc7pJf6QEkj3wE+2CnvZMI+XJhwdTPR8Z/kWQRXi7boAWLDibRPyHRTUTPx5FaU7MsyrjI3yLB4HA==} - slimsearch@2.1.1: - resolution: {integrity: sha512-l1utJWal8F/RIheYk88DE2+enI12nIrn5SHt4ih/CNAH81PzkTv2GVBODlLynDJb7xan5hjd8XTL5f0L4cxLQA==} + slimsearch@2.2.2: + resolution: {integrity: sha512-C+E3y4sKKzPzcOyty0G9CjXdLvY0ZWPSCQCDNqSv/P6+rvoL6RiHvuwr0wnxf0QgdbdyNiJQ0w7OdudHoabpCg==} engines: {node: '>=18.18.0'} source-map-js@1.2.1: @@ -7535,29 +7559,6 @@ packages: sass-loader: optional: true - vuepress-plugin-search-pro@2.0.0-rc.59: - resolution: {integrity: sha512-lMkslae/+0i7f7MnD4wG2HPLRb+qlJ/8OvDlWgyeJTeutOxeCVj49uKLlfnquoZDnin60wDXUBvjY3BX03i6/g==} - engines: {node: '>=18.19.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'} - deprecated: Please use @vuepress/plugin-slimsearch instead - peerDependencies: - sass: ^1.80.3 - sass-embedded: ^1.80.3 - sass-loader: ^16.0.2 - vuepress: 2.0.0-rc.18 - peerDependenciesMeta: - sass: - optional: true - sass-embedded: - optional: true - sass-loader: - optional: true - - vuepress-shared@2.0.0-rc.59: - resolution: {integrity: sha512-NUGEX8e4TQ2L6F7ooLDELRtUWiHxE5ztP1rJxyg9FzKZ6MiINB5b669LcQSh/xAlY4fm9p80Y4C/52+zmNDEoA==} - engines: {node: '>=18.19.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'} - peerDependencies: - vuepress: 2.0.0-rc.18 - vuepress-shared@2.0.0-rc.64: resolution: {integrity: sha512-YA0z7Pwob8Bj7uHNHBXGpH6GeaLAhBFlvBtTM136zZhsUb2mQptB67y1B03RLDYtfzMP06WKCh449azdVbZykA==} engines: {node: '>=18.19.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'} @@ -7910,38 +7911,38 @@ snapshots: transitivePeerDependencies: - chokidar - '@antfu/eslint-config@2.27.3(@typescript-eslint/utils@8.11.0(eslint@8.55.0)(typescript@5.7.2))(@vue/compiler-sfc@3.5.13)(eslint@8.55.0)(typescript@5.7.2)': + '@antfu/eslint-config@2.27.3(@typescript-eslint/utils@8.18.1(eslint@8.55.0)(typescript@5.7.2))(@vue/compiler-sfc@3.5.13)(eslint@8.55.0)(typescript@5.7.2)': dependencies: '@antfu/install-pkg': 0.4.1 '@clack/prompts': 0.7.0 '@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@8.55.0) - '@stylistic/eslint-plugin': 2.9.0(eslint@8.55.0)(typescript@5.7.2) - '@typescript-eslint/eslint-plugin': 8.11.0(@typescript-eslint/parser@8.11.0(eslint@8.55.0)(typescript@5.7.2))(eslint@8.55.0)(typescript@5.7.2) - '@typescript-eslint/parser': 8.11.0(eslint@8.55.0)(typescript@5.7.2) - '@vitest/eslint-plugin': 1.1.7(@typescript-eslint/utils@8.11.0(eslint@8.55.0)(typescript@5.7.2))(eslint@8.55.0)(typescript@5.7.2) + '@stylistic/eslint-plugin': 2.12.1(eslint@8.55.0)(typescript@5.7.2) + '@typescript-eslint/eslint-plugin': 8.18.1(@typescript-eslint/parser@8.18.1(eslint@8.55.0)(typescript@5.7.2))(eslint@8.55.0)(typescript@5.7.2) + '@typescript-eslint/parser': 8.18.1(eslint@8.55.0)(typescript@5.7.2) + '@vitest/eslint-plugin': 1.1.20(@typescript-eslint/utils@8.18.1(eslint@8.55.0)(typescript@5.7.2))(eslint@8.55.0)(typescript@5.7.2) eslint: 8.55.0 eslint-config-flat-gitignore: 0.1.8 eslint-flat-config-utils: 0.3.1 eslint-merge-processors: 0.1.0(eslint@8.55.0) eslint-plugin-antfu: 2.7.0(eslint@8.55.0) eslint-plugin-command: 0.2.6(eslint@8.55.0) - eslint-plugin-import-x: 4.3.1(eslint@8.55.0)(typescript@5.7.2) - eslint-plugin-jsdoc: 50.4.3(eslint@8.55.0) - eslint-plugin-jsonc: 2.16.0(eslint@8.55.0) + eslint-plugin-import-x: 4.6.1(eslint@8.55.0)(typescript@5.7.2) + eslint-plugin-jsdoc: 50.6.1(eslint@8.55.0) + eslint-plugin-jsonc: 2.18.2(eslint@8.55.0) eslint-plugin-markdown: 5.1.0(eslint@8.55.0) - eslint-plugin-n: 17.11.1(eslint@8.55.0) + eslint-plugin-n: 17.15.1(eslint@8.55.0) eslint-plugin-no-only-tests: 3.3.0 eslint-plugin-perfectionist: 3.9.1(eslint@8.55.0)(typescript@5.7.2)(vue-eslint-parser@9.4.3(eslint@8.55.0)) - eslint-plugin-regexp: 2.6.0(eslint@8.55.0) + eslint-plugin-regexp: 2.7.0(eslint@8.55.0) eslint-plugin-toml: 0.11.1(eslint@8.55.0) eslint-plugin-unicorn: 55.0.0(eslint@8.55.0) - eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@8.55.0)(typescript@5.7.2))(eslint@8.55.0)(typescript@5.7.2))(eslint@8.55.0) - eslint-plugin-vue: 9.29.1(eslint@8.55.0) - eslint-plugin-yml: 1.14.0(eslint@8.55.0) + eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.18.1(@typescript-eslint/parser@8.18.1(eslint@8.55.0)(typescript@5.7.2))(eslint@8.55.0)(typescript@5.7.2))(eslint@8.55.0) + eslint-plugin-vue: 9.32.0(eslint@8.55.0) + eslint-plugin-yml: 1.16.0(eslint@8.55.0) eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.5.13)(eslint@8.55.0) - globals: 15.11.0 + globals: 15.14.0 jsonc-eslint-parser: 2.4.0 - local-pkg: 0.5.0 + local-pkg: 0.5.1 parse-gitignore: 2.0.0 picocolors: 1.1.1 toml-eslint-parser: 0.10.0 @@ -7949,6 +7950,7 @@ snapshots: yaml-eslint-parser: 1.2.3 yargs: 17.7.2 transitivePeerDependencies: + - '@eslint/json' - '@typescript-eslint/utils' - '@vue/compiler-sfc' - supports-color @@ -7958,7 +7960,7 @@ snapshots: '@antfu/install-pkg@0.4.1': dependencies: - package-manager-detector: 0.2.2 + package-manager-detector: 0.2.8 tinyexec: 0.3.1 '@antfu/utils@0.7.10': {} @@ -8160,14 +8162,14 @@ snapshots: '@bufbuild/protobuf@2.2.3': {} - '@clack/core@0.3.4': + '@clack/core@0.3.5': dependencies: picocolors: 1.1.1 sisteransi: 1.0.5 '@clack/prompts@0.7.0': dependencies: - '@clack/core': 0.3.4 + '@clack/core': 0.3.5 picocolors: 1.1.1 sisteransi: 1.0.5 @@ -9297,12 +9299,12 @@ snapshots: '@stackblitz/sdk@1.11.0': {} - '@stylistic/eslint-plugin@2.9.0(eslint@8.55.0)(typescript@5.7.2)': + '@stylistic/eslint-plugin@2.12.1(eslint@8.55.0)(typescript@5.7.2)': dependencies: - '@typescript-eslint/utils': 8.11.0(eslint@8.55.0)(typescript@5.7.2) + '@typescript-eslint/utils': 8.18.1(eslint@8.55.0)(typescript@5.7.2) eslint: 8.55.0 - eslint-visitor-keys: 4.1.0 - espree: 10.2.0 + eslint-visitor-keys: 4.2.0 + espree: 10.3.0 estraverse: 5.3.0 picomatch: 4.0.2 transitivePeerDependencies: @@ -9365,6 +9367,8 @@ snapshots: dependencies: '@types/ms': 0.7.34 + '@types/doctrine@0.0.9': {} + '@types/eslint@9.6.1': dependencies: '@types/estree': 1.0.6 @@ -9551,86 +9555,82 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@8.55.0)(typescript@5.7.2))(eslint@8.55.0)(typescript@5.7.2)': + '@typescript-eslint/eslint-plugin@8.18.1(@typescript-eslint/parser@8.18.1(eslint@8.55.0)(typescript@5.7.2))(eslint@8.55.0)(typescript@5.7.2)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.11.0(eslint@8.55.0)(typescript@5.7.2) - '@typescript-eslint/scope-manager': 8.11.0 - '@typescript-eslint/type-utils': 8.11.0(eslint@8.55.0)(typescript@5.7.2) - '@typescript-eslint/utils': 8.11.0(eslint@8.55.0)(typescript@5.7.2) - '@typescript-eslint/visitor-keys': 8.11.0 + '@typescript-eslint/parser': 8.18.1(eslint@8.55.0)(typescript@5.7.2) + '@typescript-eslint/scope-manager': 8.18.1 + '@typescript-eslint/type-utils': 8.18.1(eslint@8.55.0)(typescript@5.7.2) + '@typescript-eslint/utils': 8.18.1(eslint@8.55.0)(typescript@5.7.2) + '@typescript-eslint/visitor-keys': 8.18.1 eslint: 8.55.0 graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 ts-api-utils: 1.3.0(typescript@5.7.2) - optionalDependencies: typescript: 5.7.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.11.0(eslint@8.55.0)(typescript@5.7.2)': + '@typescript-eslint/parser@8.18.1(eslint@8.55.0)(typescript@5.7.2)': dependencies: - '@typescript-eslint/scope-manager': 8.11.0 - '@typescript-eslint/types': 8.11.0 - '@typescript-eslint/typescript-estree': 8.11.0(typescript@5.7.2) - '@typescript-eslint/visitor-keys': 8.11.0 - debug: 4.3.7 + '@typescript-eslint/scope-manager': 8.18.1 + '@typescript-eslint/types': 8.18.1 + '@typescript-eslint/typescript-estree': 8.18.1(typescript@5.7.2) + '@typescript-eslint/visitor-keys': 8.18.1 + debug: 4.4.0 eslint: 8.55.0 - optionalDependencies: typescript: 5.7.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.11.0': + '@typescript-eslint/scope-manager@8.18.1': dependencies: - '@typescript-eslint/types': 8.11.0 - '@typescript-eslint/visitor-keys': 8.11.0 + '@typescript-eslint/types': 8.18.1 + '@typescript-eslint/visitor-keys': 8.18.1 - '@typescript-eslint/type-utils@8.11.0(eslint@8.55.0)(typescript@5.7.2)': + '@typescript-eslint/type-utils@8.18.1(eslint@8.55.0)(typescript@5.7.2)': dependencies: - '@typescript-eslint/typescript-estree': 8.11.0(typescript@5.7.2) - '@typescript-eslint/utils': 8.11.0(eslint@8.55.0)(typescript@5.7.2) + '@typescript-eslint/typescript-estree': 8.18.1(typescript@5.7.2) + '@typescript-eslint/utils': 8.18.1(eslint@8.55.0)(typescript@5.7.2) debug: 4.4.0 + eslint: 8.55.0 ts-api-utils: 1.3.0(typescript@5.7.2) - optionalDependencies: typescript: 5.7.2 transitivePeerDependencies: - - eslint - supports-color - '@typescript-eslint/types@8.11.0': {} + '@typescript-eslint/types@8.18.1': {} - '@typescript-eslint/typescript-estree@8.11.0(typescript@5.7.2)': + '@typescript-eslint/typescript-estree@8.18.1(typescript@5.7.2)': dependencies: - '@typescript-eslint/types': 8.11.0 - '@typescript-eslint/visitor-keys': 8.11.0 - debug: 4.3.7 + '@typescript-eslint/types': 8.18.1 + '@typescript-eslint/visitor-keys': 8.18.1 + debug: 4.4.0 fast-glob: 3.3.2 is-glob: 4.0.3 minimatch: 9.0.5 semver: 7.6.3 ts-api-utils: 1.3.0(typescript@5.7.2) - optionalDependencies: typescript: 5.7.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.11.0(eslint@8.55.0)(typescript@5.7.2)': + '@typescript-eslint/utils@8.18.1(eslint@8.55.0)(typescript@5.7.2)': dependencies: '@eslint-community/eslint-utils': 4.4.1(eslint@8.55.0) - '@typescript-eslint/scope-manager': 8.11.0 - '@typescript-eslint/types': 8.11.0 - '@typescript-eslint/typescript-estree': 8.11.0(typescript@5.7.2) + '@typescript-eslint/scope-manager': 8.18.1 + '@typescript-eslint/types': 8.18.1 + '@typescript-eslint/typescript-estree': 8.18.1(typescript@5.7.2) eslint: 8.55.0 + typescript: 5.7.2 transitivePeerDependencies: - supports-color - - typescript - '@typescript-eslint/visitor-keys@8.11.0': + '@typescript-eslint/visitor-keys@8.18.1': dependencies: - '@typescript-eslint/types': 8.11.0 - eslint-visitor-keys: 3.4.3 + '@typescript-eslint/types': 8.18.1 + eslint-visitor-keys: 4.2.0 '@ungap/structured-clone@1.2.0': {} @@ -9644,14 +9644,9 @@ snapshots: vite: 6.0.4(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(yaml@2.6.0) vue: 3.5.13(typescript@5.7.2) - '@vitejs/plugin-vue@5.2.1(vite@6.0.4(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(yaml@2.6.0))(vue@3.5.13(typescript@5.7.2))': + '@vitest/eslint-plugin@1.1.20(@typescript-eslint/utils@8.18.1(eslint@8.55.0)(typescript@5.7.2))(eslint@8.55.0)(typescript@5.7.2)': dependencies: - vite: 6.0.4(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(yaml@2.6.0) - vue: 3.5.13(typescript@5.7.2) - - '@vitest/eslint-plugin@1.1.7(@typescript-eslint/utils@8.11.0(eslint@8.55.0)(typescript@5.7.2))(eslint@8.55.0)(typescript@5.7.2)': - dependencies: - '@typescript-eslint/utils': 8.11.0(eslint@8.55.0)(typescript@5.7.2) + '@typescript-eslint/utils': 8.18.1(eslint@8.55.0)(typescript@5.7.2) eslint: 8.55.0 optionalDependencies: typescript: 5.7.2 @@ -9835,37 +9830,6 @@ snapshots: - typescript - yaml - '@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0)': - dependencies: - '@vitejs/plugin-vue': 5.2.1(vite@6.0.4(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(yaml@2.6.0))(vue@3.5.13(typescript@5.7.2)) - '@vuepress/bundlerutils': 2.0.0-rc.19(typescript@5.7.2) - '@vuepress/client': 2.0.0-rc.19(typescript@5.7.2) - '@vuepress/core': 2.0.0-rc.19(typescript@5.7.2) - '@vuepress/shared': 2.0.0-rc.19 - '@vuepress/utils': 2.0.0-rc.19 - autoprefixer: 10.4.20(postcss@8.4.49) - connect-history-api-fallback: 2.0.0 - postcss: 8.4.49 - postcss-load-config: 6.0.1(jiti@2.4.2)(postcss@8.4.49)(tsx@4.19.2)(yaml@2.6.0) - rollup: 4.28.1 - vite: 6.0.4(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(yaml@2.6.0) - vue: 3.5.13(typescript@5.7.2) - vue-router: 4.5.0(vue@3.5.13(typescript@5.7.2)) - transitivePeerDependencies: - - '@types/node' - - jiti - - less - - lightningcss - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - - tsx - - typescript - - yaml - '@vuepress/bundlerutils@2.0.0-rc.19(typescript@5.7.2)': dependencies: '@vuepress/client': 2.0.0-rc.19(typescript@5.7.2) @@ -9911,20 +9875,20 @@ snapshots: - supports-color - typescript - '@vuepress/helper@2.0.0-rc.47(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/helper@2.0.0-rc.47(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: '@vue/shared': 3.5.13 - '@vueuse/core': 11.1.0(vue@3.5.13(typescript@5.7.2)) + '@vueuse/core': 11.2.0(vue@3.5.13(typescript@5.7.2)) cheerio: 1.0.0 fflate: 0.8.2 gray-matter: 4.0.3 vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - '@vue/composition-api' - typescript - '@vuepress/helper@2.0.0-rc.56(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/helper@2.0.0-rc.57(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: '@vue/shared': 3.5.13 '@vueuse/core': 11.2.0(vue@3.5.13(typescript@5.7.2)) @@ -9932,25 +9896,25 @@ snapshots: fflate: 0.8.2 gray-matter: 4.0.3 vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - '@vue/composition-api' - typescript - '@vuepress/helper@2.0.0-rc.57(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/helper@2.0.0-rc.61(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: '@vue/shared': 3.5.13 - '@vueuse/core': 11.1.0(vue@3.5.13(typescript@5.7.2)) + '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.7.2)) cheerio: 1.0.0 fflate: 0.8.2 gray-matter: 4.0.3 vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - '@vue/composition-api' - typescript - '@vuepress/helper@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/helper@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: '@vue/shared': 3.5.13 '@vueuse/core': 12.0.0(typescript@5.7.2) @@ -9958,24 +9922,24 @@ snapshots: fflate: 0.8.2 gray-matter: 4.0.3 vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - typescript - '@vuepress/helper@2.0.0-rc.7(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/helper@2.0.0-rc.7(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: '@vue/shared': 3.5.13 cheerio: 1.0.0-rc.12 fflate: 0.8.2 gray-matter: 4.0.3 vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - typescript - '@vuepress/highlighter-helper@2.0.0-rc.66(@vueuse/core@12.0.0(typescript@5.7.2))(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/highlighter-helper@2.0.0-rc.66(@vueuse/core@12.0.0(typescript@5.7.2))(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) optionalDependencies: '@vueuse/core': 12.0.0(typescript@5.7.2) @@ -10000,156 +9964,156 @@ snapshots: transitivePeerDependencies: - supports-color - '@vuepress/plugin-active-header-links@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-active-header-links@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: '@vueuse/core': 12.0.0(typescript@5.7.2) vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - typescript - '@vuepress/plugin-back-to-top@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-back-to-top@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) '@vueuse/core': 12.0.0(typescript@5.7.2) vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - typescript - '@vuepress/plugin-blog@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-blog@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) chokidar: 3.6.0 vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - typescript - '@vuepress/plugin-catalog@2.0.0-rc.67(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-catalog@2.0.0-rc.67(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - typescript - '@vuepress/plugin-comment@2.0.0-rc.67(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-comment@2.0.0-rc.67(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) giscus: 1.5.0 vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - typescript - '@vuepress/plugin-copy-code@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-copy-code@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) '@vueuse/core': 12.0.0(typescript@5.7.2) vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - typescript - '@vuepress/plugin-copyright@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-copyright@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) '@vueuse/core': 12.0.0(typescript@5.7.2) vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - typescript - '@vuepress/plugin-git@2.0.0-rc.66(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-git@2.0.0-rc.66(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: execa: 9.5.2 - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) - '@vuepress/plugin-links-check@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-links-check@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - typescript - '@vuepress/plugin-markdown-ext@2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-markdown-ext@2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: '@mdit/plugin-container': 0.14.0(markdown-it@14.1.0) '@mdit/plugin-footnote': 0.14.0(markdown-it@14.1.0) '@mdit/plugin-tasklist': 0.14.0(markdown-it@14.1.0) '@types/markdown-it': 14.1.2 - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) js-yaml: 4.1.0 - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - markdown-it - typescript - '@vuepress/plugin-markdown-hint@2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-markdown-hint@2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: '@mdit/plugin-alert': 0.14.0(markdown-it@14.1.0) '@mdit/plugin-container': 0.14.0(markdown-it@14.1.0) '@types/markdown-it': 14.1.2 - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) '@vueuse/core': 12.0.0(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - markdown-it - typescript - '@vuepress/plugin-markdown-image@2.0.0-rc.30(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-markdown-image@2.0.0-rc.30(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: '@mdit/plugin-figure': 0.12.0(markdown-it@14.1.0) '@mdit/plugin-img-lazyload': 0.12.0(markdown-it@14.1.0) '@mdit/plugin-img-mark': 0.12.0(markdown-it@14.1.0) '@mdit/plugin-img-size': 0.12.0(markdown-it@14.1.0) '@types/markdown-it': 14.1.2 - '@vuepress/helper': 2.0.0-rc.57(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + '@vuepress/helper': 2.0.0-rc.57(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - '@vue/composition-api' - markdown-it - typescript - '@vuepress/plugin-markdown-image@2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-markdown-image@2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: '@mdit/plugin-figure': 0.14.0(markdown-it@14.1.0) '@mdit/plugin-img-lazyload': 0.14.0(markdown-it@14.1.0) '@mdit/plugin-img-mark': 0.14.0(markdown-it@14.1.0) '@mdit/plugin-img-size': 0.14.0(markdown-it@14.1.0) '@types/markdown-it': 14.1.2 - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - markdown-it - typescript - '@vuepress/plugin-markdown-include@2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-markdown-include@2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: '@mdit/plugin-include': 0.14.0(markdown-it@14.1.0) '@types/markdown-it': 14.1.2 - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - markdown-it - typescript - '@vuepress/plugin-markdown-math@2.0.0-rc.66(katex@0.16.11)(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-markdown-math@2.0.0-rc.66(katex@0.16.11)(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: '@mdit/plugin-katex-slim': 0.14.0(katex@0.16.11)(markdown-it@14.1.0) '@mdit/plugin-mathjax-slim': 0.14.0(markdown-it@14.1.0) '@types/markdown-it': 14.1.2 - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) optionalDependencies: katex: 0.16.11 transitivePeerDependencies: - markdown-it - typescript - '@vuepress/plugin-markdown-stylize@2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-markdown-stylize@2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: '@mdit/plugin-align': 0.14.0(markdown-it@14.1.0) '@mdit/plugin-attrs': 0.14.0(markdown-it@14.1.0) @@ -10159,155 +10123,157 @@ snapshots: '@mdit/plugin-sub': 0.14.0(markdown-it@14.1.0) '@mdit/plugin-sup': 0.14.0(markdown-it@14.1.0) '@types/markdown-it': 14.1.2 - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - markdown-it - typescript - '@vuepress/plugin-markdown-tab@2.0.0-rc.47(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-markdown-tab@2.0.0-rc.47(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: '@mdit/plugin-tab': 0.13.2(markdown-it@14.1.0) '@types/markdown-it': 14.1.2 - '@vuepress/helper': 2.0.0-rc.47(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.47(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) '@vueuse/core': 11.1.0(vue@3.5.12(typescript@5.7.2)) vue: 3.5.12(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - '@vue/composition-api' - markdown-it - typescript - '@vuepress/plugin-markdown-tab@2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-markdown-tab@2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: '@mdit/plugin-tab': 0.14.0(markdown-it@14.1.0) '@types/markdown-it': 14.1.2 - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) '@vueuse/core': 12.0.0(typescript@5.7.2) vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - markdown-it - typescript - '@vuepress/plugin-notice@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-notice@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) '@vueuse/core': 12.0.0(typescript@5.7.2) vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - typescript - '@vuepress/plugin-nprogress@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-nprogress@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - typescript - '@vuepress/plugin-photo-swipe@2.0.0-rc.67(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-photo-swipe@2.0.0-rc.67(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) '@vueuse/core': 12.0.0(typescript@5.7.2) photoswipe: 5.4.4 vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - typescript - '@vuepress/plugin-reading-time@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-reading-time@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - typescript - '@vuepress/plugin-redirect@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-redirect@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) '@vueuse/core': 12.0.0(typescript@5.7.2) cac: 6.7.14 vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - typescript - '@vuepress/plugin-redirect@2.0.0-rc.8(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-redirect@2.0.0-rc.8(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.7(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.7(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) '@vueuse/core': 10.11.1(vue@3.5.12(typescript@5.7.2)) cac: 6.7.14 vue: 3.5.12(typescript@5.7.2) vue-router: 4.4.5(vue@3.5.12(typescript@5.7.2)) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - '@vue/composition-api' - typescript - '@vuepress/plugin-rtl@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-rtl@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - typescript - '@vuepress/plugin-sass-palette@2.0.0-rc.56(sass-embedded@1.80.4)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-sass-palette@2.0.0-rc.66(sass-embedded@1.80.4)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.56(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) chokidar: 4.0.1 - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) optionalDependencies: sass-embedded: 1.80.4 transitivePeerDependencies: - - '@vue/composition-api' - typescript - '@vuepress/plugin-sass-palette@2.0.0-rc.66(sass-embedded@1.80.4)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-seo@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - chokidar: 4.0.1 - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) - optionalDependencies: - sass-embedded: 1.80.4 + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - typescript - '@vuepress/plugin-seo@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': - dependencies: - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) - transitivePeerDependencies: - - typescript - - '@vuepress/plugin-shiki@2.0.0-rc.66(@vueuse/core@12.0.0(typescript@5.7.2))(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-shiki@2.0.0-rc.66(@vueuse/core@12.0.0(typescript@5.7.2))(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: '@shikijs/transformers': 1.24.3 - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/highlighter-helper': 2.0.0-rc.66(@vueuse/core@12.0.0(typescript@5.7.2))(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/highlighter-helper': 2.0.0-rc.66(@vueuse/core@12.0.0(typescript@5.7.2))(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) nanoid: 5.0.9 shiki: 1.24.3 - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - '@vueuse/core' - typescript - '@vuepress/plugin-sitemap@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-sitemap@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) sitemap: 8.0.0 - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - typescript - '@vuepress/plugin-theme-data@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + '@vuepress/plugin-slimsearch@2.0.0-rc.61(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': + dependencies: + '@vuepress/helper': 2.0.0-rc.61(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.7.2)) + cheerio: 1.0.0 + chokidar: 3.6.0 + slimsearch: 2.2.2 + vue: 3.5.13(typescript@5.7.2) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + transitivePeerDependencies: + - '@vue/composition-api' + - typescript + + '@vuepress/plugin-theme-data@2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)))': dependencies: '@vue/devtools-api': 7.6.8 vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - typescript @@ -10351,21 +10317,21 @@ snapshots: - '@vue/composition-api' - vue - '@vueuse/core@11.1.0(vue@3.5.13(typescript@5.7.2))': + '@vueuse/core@11.2.0(vue@3.5.13(typescript@5.7.2))': dependencies: '@types/web-bluetooth': 0.0.20 - '@vueuse/metadata': 11.1.0 - '@vueuse/shared': 11.1.0(vue@3.5.13(typescript@5.7.2)) + '@vueuse/metadata': 11.2.0 + '@vueuse/shared': 11.2.0(vue@3.5.13(typescript@5.7.2)) vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.2)) transitivePeerDependencies: - '@vue/composition-api' - vue - '@vueuse/core@11.2.0(vue@3.5.13(typescript@5.7.2))': + '@vueuse/core@11.3.0(vue@3.5.13(typescript@5.7.2))': dependencies: '@types/web-bluetooth': 0.0.20 - '@vueuse/metadata': 11.2.0 - '@vueuse/shared': 11.2.0(vue@3.5.13(typescript@5.7.2)) + '@vueuse/metadata': 11.3.0 + '@vueuse/shared': 11.3.0(vue@3.5.13(typescript@5.7.2)) vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.2)) transitivePeerDependencies: - '@vue/composition-api' @@ -10410,6 +10376,8 @@ snapshots: '@vueuse/metadata@11.2.0': {} + '@vueuse/metadata@11.3.0': {} + '@vueuse/metadata@12.0.0': {} '@vueuse/metadata@9.13.0': {} @@ -10428,14 +10396,14 @@ snapshots: - '@vue/composition-api' - vue - '@vueuse/shared@11.1.0(vue@3.5.13(typescript@5.7.2))': + '@vueuse/shared@11.2.0(vue@3.5.13(typescript@5.7.2))': dependencies: vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.2)) transitivePeerDependencies: - '@vue/composition-api' - vue - '@vueuse/shared@11.2.0(vue@3.5.13(typescript@5.7.2))': + '@vueuse/shared@11.3.0(vue@3.5.13(typescript@5.7.2))': dependencies: vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.2)) transitivePeerDependencies: @@ -11787,13 +11755,16 @@ snapshots: escape-string-regexp@4.0.0: {} - escape-string-regexp@5.0.0: {} - eslint-compat-utils@0.5.1(eslint@8.55.0): dependencies: eslint: 8.55.0 semver: 7.6.3 + eslint-compat-utils@0.6.4(eslint@8.55.0): + dependencies: + eslint: 8.55.0 + semver: 7.6.3 + eslint-config-flat-gitignore@0.1.8: dependencies: find-up-simple: 1.0.0 @@ -11812,6 +11783,12 @@ snapshots: transitivePeerDependencies: - supports-color + eslint-json-compat-utils@0.2.1(eslint@8.55.0)(jsonc-eslint-parser@2.4.0): + dependencies: + eslint: 8.55.0 + esquery: 1.6.0 + jsonc-eslint-parser: 2.4.0 + eslint-merge-processors@0.1.0(eslint@8.55.0): dependencies: eslint: 8.55.0 @@ -11833,11 +11810,14 @@ snapshots: eslint: 8.55.0 eslint-compat-utils: 0.5.1(eslint@8.55.0) - eslint-plugin-import-x@4.3.1(eslint@8.55.0)(typescript@5.7.2): + eslint-plugin-import-x@4.6.1(eslint@8.55.0)(typescript@5.7.2): dependencies: - '@typescript-eslint/utils': 8.11.0(eslint@8.55.0)(typescript@5.7.2) - debug: 4.3.7 + '@types/doctrine': 0.0.9 + '@typescript-eslint/scope-manager': 8.18.1 + '@typescript-eslint/utils': 8.18.1(eslint@8.55.0)(typescript@5.7.2) + debug: 4.4.0 doctrine: 3.0.0 + enhanced-resolve: 5.17.1 eslint: 8.55.0 eslint-import-resolver-node: 0.3.9 get-tsconfig: 4.8.1 @@ -11845,20 +11825,20 @@ snapshots: minimatch: 9.0.5 semver: 7.6.3 stable-hash: 0.0.4 - tslib: 2.8.0 + tslib: 2.8.1 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-jsdoc@50.4.3(eslint@8.55.0): + eslint-plugin-jsdoc@50.6.1(eslint@8.55.0): dependencies: '@es-joy/jsdoccomment': 0.49.0 are-docs-informative: 0.0.2 comment-parser: 1.4.1 - debug: 4.3.7 + debug: 4.4.0 escape-string-regexp: 4.0.0 eslint: 8.55.0 - espree: 10.2.0 + espree: 10.3.0 esquery: 1.6.0 parse-imports: 2.2.1 semver: 7.6.3 @@ -11867,16 +11847,19 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-jsonc@2.16.0(eslint@8.55.0): + eslint-plugin-jsonc@2.18.2(eslint@8.55.0): dependencies: '@eslint-community/eslint-utils': 4.4.1(eslint@8.55.0) eslint: 8.55.0 - eslint-compat-utils: 0.5.1(eslint@8.55.0) + eslint-compat-utils: 0.6.4(eslint@8.55.0) + eslint-json-compat-utils: 0.2.1(eslint@8.55.0)(jsonc-eslint-parser@2.4.0) espree: 9.6.1 graphemer: 1.4.0 jsonc-eslint-parser: 2.4.0 natural-compare: 1.4.0 synckit: 0.6.2 + transitivePeerDependencies: + - '@eslint/json' eslint-plugin-markdown@5.1.0(eslint@8.55.0): dependencies: @@ -11885,14 +11868,14 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-n@17.11.1(eslint@8.55.0): + eslint-plugin-n@17.15.1(eslint@8.55.0): dependencies: '@eslint-community/eslint-utils': 4.4.1(eslint@8.55.0) enhanced-resolve: 5.17.1 eslint: 8.55.0 eslint-plugin-es-x: 7.8.0(eslint@8.55.0) get-tsconfig: 4.8.1 - globals: 15.11.0 + globals: 15.14.0 ignore: 5.3.2 minimatch: 9.0.5 semver: 7.6.3 @@ -11901,8 +11884,8 @@ snapshots: eslint-plugin-perfectionist@3.9.1(eslint@8.55.0)(typescript@5.7.2)(vue-eslint-parser@9.4.3(eslint@8.55.0)): dependencies: - '@typescript-eslint/types': 8.11.0 - '@typescript-eslint/utils': 8.11.0(eslint@8.55.0)(typescript@5.7.2) + '@typescript-eslint/types': 8.18.1 + '@typescript-eslint/utils': 8.18.1(eslint@8.55.0)(typescript@5.7.2) eslint: 8.55.0 minimatch: 9.0.5 natural-compare-lite: 1.4.0 @@ -11912,7 +11895,7 @@ snapshots: - supports-color - typescript - eslint-plugin-regexp@2.6.0(eslint@8.55.0): + eslint-plugin-regexp@2.7.0(eslint@8.55.0): dependencies: '@eslint-community/eslint-utils': 4.4.1(eslint@8.55.0) '@eslint-community/regexpp': 4.12.1 @@ -11925,7 +11908,7 @@ snapshots: eslint-plugin-toml@0.11.1(eslint@8.55.0): dependencies: - debug: 4.3.7 + debug: 4.4.0 eslint: 8.55.0 eslint-compat-utils: 0.5.1(eslint@8.55.0) lodash: 4.17.21 @@ -11942,7 +11925,7 @@ snapshots: core-js-compat: 3.38.1 eslint: 8.55.0 esquery: 1.6.0 - globals: 15.11.0 + globals: 15.14.0 indent-string: 4.0.0 is-builtin-module: 3.2.1 jsesc: 3.0.2 @@ -11953,13 +11936,13 @@ snapshots: semver: 7.6.3 strip-indent: 3.0.0 - eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@8.55.0)(typescript@5.7.2))(eslint@8.55.0)(typescript@5.7.2))(eslint@8.55.0): + eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.18.1(@typescript-eslint/parser@8.18.1(eslint@8.55.0)(typescript@5.7.2))(eslint@8.55.0)(typescript@5.7.2))(eslint@8.55.0): dependencies: eslint: 8.55.0 optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.11.0(@typescript-eslint/parser@8.11.0(eslint@8.55.0)(typescript@5.7.2))(eslint@8.55.0)(typescript@5.7.2) + '@typescript-eslint/eslint-plugin': 8.18.1(@typescript-eslint/parser@8.18.1(eslint@8.55.0)(typescript@5.7.2))(eslint@8.55.0)(typescript@5.7.2) - eslint-plugin-vue@9.29.1(eslint@8.55.0): + eslint-plugin-vue@9.32.0(eslint@8.55.0): dependencies: '@eslint-community/eslint-utils': 4.4.1(eslint@8.55.0) eslint: 8.55.0 @@ -11973,11 +11956,11 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-yml@1.14.0(eslint@8.55.0): + eslint-plugin-yml@1.16.0(eslint@8.55.0): dependencies: - debug: 4.3.7 + debug: 4.4.0 eslint: 8.55.0 - eslint-compat-utils: 0.5.1(eslint@8.55.0) + eslint-compat-utils: 0.6.4(eslint@8.55.0) lodash: 4.17.21 natural-compare: 1.4.0 yaml-eslint-parser: 1.2.3 @@ -11996,7 +11979,7 @@ snapshots: eslint-visitor-keys@3.4.3: {} - eslint-visitor-keys@4.1.0: {} + eslint-visitor-keys@4.2.0: {} eslint@8.55.0: dependencies: @@ -12045,11 +12028,11 @@ snapshots: dependencies: tsx: 4.19.2 - espree@10.2.0: + espree@10.3.0: dependencies: acorn: 8.14.0 acorn-jsx: 5.3.2(acorn@8.14.0) - eslint-visitor-keys: 4.1.0 + eslint-visitor-keys: 4.2.0 espree@9.6.1: dependencies: @@ -12459,7 +12442,7 @@ snapshots: dependencies: type-fest: 0.20.2 - globals@15.11.0: {} + globals@15.14.0: {} globby@11.1.0: dependencies: @@ -13312,7 +13295,7 @@ snapshots: pify: 4.0.1 strip-bom: 3.0.0 - local-pkg@0.5.0: + local-pkg@0.5.1: dependencies: mlly: 1.7.3 pkg-types: 1.2.1 @@ -14093,7 +14076,7 @@ snapshots: registry-url: 5.1.0 semver: 6.3.1 - package-manager-detector@0.2.2: {} + package-manager-detector@0.2.8: {} parent-module@1.0.1: dependencies: @@ -15012,7 +14995,7 @@ snapshots: slashes@3.0.12: {} - slimsearch@2.1.1: {} + slimsearch@2.2.2: {} source-map-js@1.2.1: {} @@ -15172,12 +15155,12 @@ snapshots: synckit@0.6.2: dependencies: - tslib: 2.8.0 + tslib: 2.8.1 synckit@0.9.2: dependencies: '@pkgr/core': 0.1.1 - tslib: 2.8.0 + tslib: 2.8.1 tabbable@6.2.0: {} @@ -15578,19 +15561,6 @@ snapshots: tsx: 4.19.2 yaml: 2.6.0 - vite@6.0.4(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(yaml@2.6.0): - dependencies: - esbuild: 0.24.0 - postcss: 8.4.49 - rollup: 4.28.1 - optionalDependencies: - '@types/node': 22.8.1 - fsevents: 2.3.3 - jiti: 2.4.2 - sass-embedded: 1.80.4 - tsx: 4.19.2 - yaml: 2.6.0 - vitepress@1.5.0(@algolia/client-search@5.15.0)(@types/node@22.10.2)(async-validator@4.2.5)(axios@1.7.9)(postcss@8.4.49)(qrcode@1.5.4)(sass-embedded@1.80.4)(search-insights@2.17.2)(typescript@5.7.2): dependencies: '@docsearch/css': 3.8.0 @@ -15651,7 +15621,7 @@ snapshots: vue-eslint-parser@9.4.3(eslint@8.55.0): dependencies: - debug: 4.3.7 + debug: 4.4.0 eslint: 8.55.0 eslint-scope: 7.2.2 eslint-visitor-keys: 3.4.3 @@ -15692,18 +15662,18 @@ snapshots: optionalDependencies: typescript: 5.7.2 - vuepress-plugin-components@2.0.0-rc.65(dashjs@4.7.4)(hls.js@1.5.17)(sass-embedded@1.80.4)(typescript@5.7.2)(vidstack@1.12.12)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))): + vuepress-plugin-components@2.0.0-rc.65(dashjs@4.7.4)(hls.js@1.5.17)(sass-embedded@1.80.4)(typescript@5.7.2)(vidstack@1.12.12)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))): dependencies: '@stackblitz/sdk': 1.11.0 - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-sass-palette': 2.0.0-rc.66(sass-embedded@1.80.4)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-sass-palette': 2.0.0-rc.66(sass-embedded@1.80.4)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) '@vueuse/core': 12.0.0(typescript@5.7.2) balloon-css: 1.2.0 create-codepen: 2.0.0 qrcode: 1.5.4 vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) - vuepress-shared: 2.0.0-rc.64(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress-shared: 2.0.0-rc.64(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) optionalDependencies: dashjs: 4.7.4 hls.js: 1.5.17 @@ -15712,21 +15682,21 @@ snapshots: transitivePeerDependencies: - typescript - vuepress-plugin-md-enhance@2.0.0-rc.64(@vue/repl@4.4.2)(markdown-it@14.1.0)(mermaid@10.9.3)(sass-embedded@1.80.4)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))): + vuepress-plugin-md-enhance@2.0.0-rc.64(@vue/repl@4.4.2)(markdown-it@14.1.0)(mermaid@10.9.3)(sass-embedded@1.80.4)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))): dependencies: '@mdit/plugin-container': 0.14.0(markdown-it@14.1.0) '@mdit/plugin-demo': 0.14.0(markdown-it@14.1.0) '@mdit/plugin-plantuml': 0.14.0(markdown-it@14.1.0) '@mdit/plugin-uml': 0.14.0(markdown-it@14.1.0) '@types/markdown-it': 14.1.2 - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-sass-palette': 2.0.0-rc.66(sass-embedded@1.80.4)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-sass-palette': 2.0.0-rc.66(sass-embedded@1.80.4)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) '@vueuse/core': 12.0.0(typescript@5.7.2) balloon-css: 1.2.0 js-yaml: 4.1.0 vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) - vuepress-shared: 2.0.0-rc.64(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress-shared: 2.0.0-rc.64(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) optionalDependencies: '@vue/repl': 4.4.2 mermaid: 10.9.3 @@ -15735,84 +15705,57 @@ snapshots: - markdown-it - typescript - vuepress-plugin-search-pro@2.0.0-rc.59(sass-embedded@1.80.4)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))): + vuepress-shared@2.0.0-rc.64(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))): dependencies: - '@vuepress/helper': 2.0.0-rc.56(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-sass-palette': 2.0.0-rc.56(sass-embedded@1.80.4)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vueuse/core': 11.2.0(vue@3.5.13(typescript@5.7.2)) - cheerio: 1.0.0 - chokidar: 3.6.0 - slimsearch: 2.1.1 - vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) - vuepress-shared: 2.0.0-rc.59(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - optionalDependencies: - sass-embedded: 1.80.4 - transitivePeerDependencies: - - '@vue/composition-api' - - typescript - - vuepress-shared@2.0.0-rc.59(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))): - dependencies: - '@vuepress/helper': 2.0.0-rc.56(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vueuse/core': 11.2.0(vue@3.5.13(typescript@5.7.2)) - dayjs: 1.11.13 - vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) - transitivePeerDependencies: - - '@vue/composition-api' - - typescript - - vuepress-shared@2.0.0-rc.64(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))): - dependencies: - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) '@vueuse/core': 12.0.0(typescript@5.7.2) dayjs: 1.11.13 vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) transitivePeerDependencies: - typescript - vuepress-theme-hope@2.0.0-rc.66(@vue/repl@4.4.2)(dashjs@4.7.4)(hls.js@1.5.17)(katex@0.16.11)(markdown-it@14.1.0)(mermaid@10.9.3)(sass-embedded@1.80.4)(typescript@5.7.2)(vidstack@1.12.12)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))): - dependencies: - '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-active-header-links': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-back-to-top': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-blog': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-catalog': 2.0.0-rc.67(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-comment': 2.0.0-rc.67(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-copy-code': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-copyright': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-git': 2.0.0-rc.66(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-links-check': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-markdown-ext': 2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-markdown-hint': 2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-markdown-image': 2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-markdown-include': 2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-markdown-math': 2.0.0-rc.66(katex@0.16.11)(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-markdown-stylize': 2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-markdown-tab': 2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-notice': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-nprogress': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-photo-swipe': 2.0.0-rc.67(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-reading-time': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-redirect': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-rtl': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-sass-palette': 2.0.0-rc.66(sass-embedded@1.80.4)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-seo': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-shiki': 2.0.0-rc.66(@vueuse/core@12.0.0(typescript@5.7.2))(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-sitemap': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - '@vuepress/plugin-theme-data': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + vuepress-theme-hope@2.0.0-rc.66(@vue/repl@4.4.2)(@vuepress/plugin-slimsearch@2.0.0-rc.61(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))))(dashjs@4.7.4)(hls.js@1.5.17)(katex@0.16.11)(markdown-it@14.1.0)(mermaid@10.9.3)(sass-embedded@1.80.4)(typescript@5.7.2)(vidstack@1.12.12)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))): + dependencies: + '@vuepress/helper': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-active-header-links': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-back-to-top': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-blog': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-catalog': 2.0.0-rc.67(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-comment': 2.0.0-rc.67(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-copy-code': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-copyright': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-git': 2.0.0-rc.66(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-links-check': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-markdown-ext': 2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-markdown-hint': 2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-markdown-image': 2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-markdown-include': 2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-markdown-math': 2.0.0-rc.66(katex@0.16.11)(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-markdown-stylize': 2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-markdown-tab': 2.0.0-rc.66(markdown-it@14.1.0)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-notice': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-nprogress': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-photo-swipe': 2.0.0-rc.67(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-reading-time': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-redirect': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-rtl': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-sass-palette': 2.0.0-rc.66(sass-embedded@1.80.4)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-seo': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-shiki': 2.0.0-rc.66(@vueuse/core@12.0.0(typescript@5.7.2))(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-sitemap': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + '@vuepress/plugin-theme-data': 2.0.0-rc.66(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) '@vueuse/core': 12.0.0(typescript@5.7.2) balloon-css: 1.2.0 bcrypt-ts: 5.0.3 chokidar: 3.6.0 vue: 3.5.13(typescript@5.7.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) - vuepress-plugin-components: 2.0.0-rc.65(dashjs@4.7.4)(hls.js@1.5.17)(sass-embedded@1.80.4)(typescript@5.7.2)(vidstack@1.12.12)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - vuepress-plugin-md-enhance: 2.0.0-rc.64(@vue/repl@4.4.2)(markdown-it@14.1.0)(mermaid@10.9.3)(sass-embedded@1.80.4)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) - vuepress-shared: 2.0.0-rc.64(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)) + vuepress-plugin-components: 2.0.0-rc.65(dashjs@4.7.4)(hls.js@1.5.17)(sass-embedded@1.80.4)(typescript@5.7.2)(vidstack@1.12.12)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + vuepress-plugin-md-enhance: 2.0.0-rc.64(@vue/repl@4.4.2)(markdown-it@14.1.0)(mermaid@10.9.3)(sass-embedded@1.80.4)(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) + vuepress-shared: 2.0.0-rc.64(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) optionalDependencies: + '@vuepress/plugin-slimsearch': 2.0.0-rc.61(typescript@5.7.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2))) sass-embedded: 1.80.4 transitivePeerDependencies: - '@vue/repl' @@ -15838,7 +15781,7 @@ snapshots: - typescript - vidstack - vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.13(typescript@5.7.2)): + vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)): dependencies: '@vuepress/cli': 2.0.0-rc.19(typescript@5.7.2) '@vuepress/client': 2.0.0-rc.19(typescript@5.7.2) @@ -15846,14 +15789,14 @@ snapshots: '@vuepress/markdown': 2.0.0-rc.19 '@vuepress/shared': 2.0.0-rc.19 '@vuepress/utils': 2.0.0-rc.19 - vue: 3.5.13(typescript@5.7.2) + vue: 3.5.12(typescript@5.7.2) optionalDependencies: '@vuepress/bundler-vite': 2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0) transitivePeerDependencies: - supports-color - typescript - vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.12(typescript@5.7.2)): + vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0))(typescript@5.7.2)(vue@3.5.13(typescript@5.7.2)): dependencies: '@vuepress/cli': 2.0.0-rc.19(typescript@5.7.2) '@vuepress/client': 2.0.0-rc.19(typescript@5.7.2) @@ -15861,9 +15804,9 @@ snapshots: '@vuepress/markdown': 2.0.0-rc.19 '@vuepress/shared': 2.0.0-rc.19 '@vuepress/utils': 2.0.0-rc.19 - vue: 3.5.12(typescript@5.7.2) + vue: 3.5.13(typescript@5.7.2) optionalDependencies: - '@vuepress/bundler-vite': 2.0.0-rc.19(@types/node@22.8.1)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0) + '@vuepress/bundler-vite': 2.0.0-rc.19(@types/node@22.10.2)(jiti@2.4.2)(sass-embedded@1.80.4)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.0) transitivePeerDependencies: - supports-color - typescript