diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e62689385f9..f3661c86ed3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -357,6 +357,10 @@ jobs: p12-file-base64: ${{ secrets.HGUANDL_SIGN_CERT_P12 }} p12-password: ${{ secrets.HGUANDL_SIGN_CERT_PASSWD }} + - name: Setup Xcode Toolchain + run: | + sudo xcode-select -s /Applications/Xcode_15.0.1.app/Contents/Developer + - name: Build Universal Binaries run: | mkdir build diff --git a/.github/workflows/optimize-templates.yml b/.github/workflows/optimize-templates.yml index 0e04df296db..08ef08cb22e 100644 --- a/.github/workflows/optimize-templates.yml +++ b/.github/workflows/optimize-templates.yml @@ -21,7 +21,9 @@ on: required: false jobs: - check-and-optimize-png: + optimize-png: + # Skip workflow to prevent double consecutive runs + if: ${{ github.event.head_commit.author.email != '41898282+github-actions[bot]@users.noreply.github.com' }} runs-on: ubuntu-latest steps: - name: Checkout repository @@ -30,9 +32,32 @@ jobs: show-progress: false persist-credentials: false - - name: Run optimization script + - name: Setup python + uses: actions/setup-python@v5 + with: + python-version: "3.11" + + - name: Cache Python packages + id: cache_python + if: always() + uses: actions/cache@v4 + with: + path: ${{ env.pythonLocation }}/lib/python3.11/site-packages + key: ${{ runner.os }}-pip-optimize-templates-${{ hashFiles('./tools/OptimizeTemplates/requirements.txt') }} + + - name: Install dependencies + if: steps.cache_python.outputs.cache-hit != 'true' + run: | + pip install -r tools/OptimizeTemplates/requirements.txt + + - name: Setup oxipng + uses: baptiste0928/cargo-install@v3 + with: + crate: oxipng + + - name: Run optimize_templates run: | - python3 optimize-templates.py + python3 tools/OptimizeTemplates/optimize_templates.py - name: Commit changes id: commit_changes @@ -42,25 +67,21 @@ jobs: git add . - $commit_msg = "${{ github.event.inputs.commit_message }}" - if (-not [string]::IsNullOrWhiteSpace($commit_msg)) { - $commit_msg = $commit_msg.Trim() - } else { - $commit_msg = "chore: Auto Templates Optimization" - } - git commit -m "$commit_msg" -m "[skip changelog]" - if ($LASTEXITCODE -eq 0) { - Write-Output "have_commits=True" >> $env:GITHUB_OUTPUT - } - - git pull origin $(git rev-parse --abbrev-ref HEAD) --unshallow --rebase - - - name: Cancelling - if: steps.commit_changes.outputs.have_commits != 'True' - uses: andymckay/cancel-action@0.5 + if git diff-index --quiet HEAD --; then + echo "No changes to commit" + else + commit_msg="${{ github.event.inputs.commit_message }}" + if [ -z "$commit_msg" ]; then + commit_msg="chore: Auto Templates Optimization" + fi + git commit -m "$commit_msg" -m "[skip changelog]" + git pull origin $(git rev-parse --abbrev-ref HEAD) --unshallow --rebase + echo "have_commits=True" >> $GITHUB_OUTPUT + fi - name: Push changes if: steps.commit_changes.outputs.have_commits == 'True' uses: ad-m/github-push-action@master with: github_token: ${{ secrets.MAA_RESOURCE_SYNC }} + branch: ${{ github.ref }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b43c220371..3a380ff32c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,6 +32,8 @@ ### 修复 | Fix +* 修复萨卡兹肉鸽去伪存真印象重建后卡死 @zzyyyl +* fix zip filename encoding issue @horror-proton * 完成制造通知弹出时,无法正确识别到所有宿舍 @ABA2396 * 尝试修复萨卡兹肉鸽刷新节点次数耗尽卡死的问题 @zzyyyl * 修复印象加深后卡住的问题 @zzyyyl @@ -67,9 +69,11 @@ * 添加 adb-lite 说明 @Rbqwow * KR 添加 MAA 格式化要求说明 @HX3N * 添加 MAA 格式化要求说明 @SherkeyXD +* fix docsearch base @SherkeyXD ### 其他 | Other +* top operator unrecognized recruitment @Constrat * 修正文档网页右上角search组件本地化显示问题 (#9804) @sevmeowple * switch downloading artifact order @Constrat * 修复 methods 为空时直接崩溃的问题 @zzyyyl @@ -136,6 +140,11 @@ ### For Developers +* macOS CI Xcode版本 @hguandl +* 修复 StrategyChange 时 next 丢失的问题 @zzyyyl +* 更新 DebugTask 方便模板匹配测试 @zzyyyl +* add requirements.txt for optimize-templates.py @Constrat +* optimize templates perf and fixes @Constrat * clang-format 格式修改 (#9586) @zzyyyl * 使用 pre-commit-ci 来格式化与压缩文件 (#9732) @SherkeyXD * 简单处理 DEBUG 的时候 OCR 很卡的问题 @zzyyyl diff --git a/docs/package.json b/docs/package.json index e1a154d5e8f..024dab0158d 100644 --- a/docs/package.json +++ b/docs/package.json @@ -10,14 +10,14 @@ "private": true, "devDependencies": { "@vuepress/bundler-vite": "2.0.0-rc.14", - "@vuepress/plugin-docsearch": "2.0.0-rc.38", + "@vuepress/plugin-docsearch": "2.0.0-rc.40", "@vuepress/plugin-google-analytics": "2.0.0-rc.37", - "@vuepress/plugin-shiki": "^2.0.0-rc.39", + "@vuepress/plugin-shiki": "^2.0.0-rc.40", "markdown-it": "^14.1.0", "markdown-it-anchor": "^9.0.1", "vue": "^3.4.33", "vuepress": "2.0.0-rc.14", - "vuepress-theme-hope": "2.0.0-rc.51" + "vuepress-theme-hope": "2.0.0-rc.52" }, "scripts": { "dev": "vuepress dev .", diff --git a/resource/global/YoStarEN/resource/tasks.json b/resource/global/YoStarEN/resource/tasks.json index 4dd3ccc87a3..5b41c2c7bd4 100644 --- a/resource/global/YoStarEN/resource/tasks.json +++ b/resource/global/YoStarEN/resource/tasks.json @@ -829,7 +829,7 @@ "RecruitTags": { "ocrReplace": [ ["Starter", "新手"], - ["Top Operator", "高级资深干员"], + ["Top Operato.?", "高级资深干员"], ["Senior Operato.?", "资深干员"], ["Melee", "近战位"], ["Ranged", "远程位"], diff --git a/resource/tasks.json b/resource/tasks.json index 071beb1f42e..a08811e7a01 100644 --- a/resource/tasks.json +++ b/resource/tasks.json @@ -6872,13 +6872,13 @@ ] }, "Roguelike@StrategyChange": { - "baseTask": "Roguelike@StrategyChange_default", - "next": ["Roguelike@Stages"] + "baseTask": "Roguelike@StrategyChange_default" }, "Roguelike@StrategyChange_default": { "algorithm": "OcrDetect", "text": ["_SKIP_"], - "roi": [593, 0, 186, 129] + "roi": [593, 0, 186, 129], + "next": ["Roguelike@Stages"] }, "Roguelike@StrategyChange_mode0": { "baseTask": "Roguelike@StrategyChange_default" @@ -9317,7 +9317,8 @@ "next": [ "Sarkaz@Roguelike@StageTraderEnter", "Sarkaz@Roguelike@StageFilterTruthEnter", - "Sarkaz@Roguelike@StageSafeHouseEnter" + "Sarkaz@Roguelike@StageSafeHouseEnter", + "Sarkaz@Roguelike@StageCanReconstructClose" ] }, "Sarkaz@Roguelike@StageCanReconstructConfirm": { diff --git a/resource/template/debug_test_image.png b/resource/template/debug_test_image.png new file mode 100644 index 00000000000..ef5bcd0b7bf Binary files /dev/null and b/resource/template/debug_test_image.png differ diff --git a/src/MaaCore/Task/Interface/DebugTask.cpp b/src/MaaCore/Task/Interface/DebugTask.cpp index 6fa34b523fa..08e9eea7faf 100644 --- a/src/MaaCore/Task/Interface/DebugTask.cpp +++ b/src/MaaCore/Task/Interface/DebugTask.cpp @@ -76,43 +76,27 @@ void asst::DebugTask::test_battle_image() void asst::DebugTask::test_match_template() { - cv::Mat image = asst::imread(utils::path("../../test/match_template/1.png")); - cv::Mat resized; - cv::resize(image, resized, cv::Size(1280, 720), 0, 0, cv::INTER_AREA); - - { + auto test_task = [](const std::string& path, const std::string& task_name) { + cv::Mat image = imread(utils::path(path)); + cv::Mat resized; + cv::resize(image, resized, cv::Size(1280, 720), 0, 0, cv::INTER_AREA); Matcher match_analyzer(resized, Rect(0, 0, 1280, 720)); - const auto& task_ptr = Task.get("Sarkaz@Roguelike@StageSafeHouseEnter"); + const auto& task_ptr = Task.get(task_name); const auto match_task_ptr = std::dynamic_pointer_cast(task_ptr); match_analyzer.set_task_info(match_task_ptr); const auto& result_opt = match_analyzer.analyze(); if (result_opt) { const auto& result = result_opt.value().to_string(); - Log.info(__FUNCTION__, result); + Log.info(path, task_name, result); } - } - - { - Matcher match_analyzer(resized, Rect(0, 0, 1280, 720)); - const auto& task_ptr = Task.get("Sarkaz@Roguelike@StageBoskyPassageEnter"); - const auto match_task_ptr = std::dynamic_pointer_cast(task_ptr); - match_analyzer.set_task_info(match_task_ptr); - const auto& result_opt = match_analyzer.analyze(); - if (result_opt) { - const auto& result = result_opt.value().to_string(); - Log.info(__FUNCTION__, result); + else { + Log.info(path, task_name, "inactive"); } - } + }; - { - Matcher match_analyzer(resized, Rect(0, 0, 1280, 720)); - const auto& task_ptr = Task.get("Sarkaz@Roguelike@StageCombatDpsEnter"); - const auto match_task_ptr = std::dynamic_pointer_cast(task_ptr); - match_analyzer.set_task_info(match_task_ptr); - const auto& result_opt = match_analyzer.analyze(); - if (result_opt) { - const auto& result = result_opt.value().to_string(); - Log.info(__FUNCTION__, result); - } - } + test_task("../../test/dist/1.png", "Sarkaz@Roguelike@StageCombatDps"); + test_task("../../test/dist/2.png", "Sarkaz@Roguelike@StageCombatDps"); + test_task("../../test/dist/3.png", "Sarkaz@Roguelike@StageCombatDps"); + + test_task("../../test/dist/2024-07-27_00-58-36-429_raw.png", "Sarkaz@Roguelike@StageCombatDps"); } diff --git a/tools/OTAPacker/ziplist.sh b/tools/OTAPacker/ziplist.sh index a6893f8f6d6..c984646d50f 100755 --- a/tools/OTAPacker/ziplist.sh +++ b/tools/OTAPacker/ziplist.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -e -zipinfo -O GB2312 -v $1 \ +zipinfo -O utf8 -v $1 \ | sed -n -e '/^Central directory entry/,+3p' -e '/32-bit CRC value (hex):/p' | grep '^ ' \ | sed -e 's/^ //g' | sed -z 's/\n32-bit CRC value (hex):\s*/\t/g' \ | awk '{last = $NF; $NF=""; print last,$0}' diff --git a/tools/OTAPacker/zipota.sh b/tools/OTAPacker/zipota.sh index 14ce0f09cf2..9e37e1cb811 100755 --- a/tools/OTAPacker/zipota.sh +++ b/tools/OTAPacker/zipota.sh @@ -25,6 +25,6 @@ tmpdir=$(mktemp -d /tmp/zipota-files.XXX) comm -23 <(echo "$from_fn") <(echo "$to_fn") > "$tmpdir"/removelist.txt echo "$to_fn" > "$tmpdir"/filelist.txt -zip -r -j "$out_zip" "$tmpdir"/removelist.txt "$tmpdir"/filelist.txt +zip -X -r -j "$out_zip" "$tmpdir"/removelist.txt "$tmpdir"/filelist.txt rm -rf $tmpdir diff --git a/tools/OptimizeTemplates/optimize_templates.json b/tools/OptimizeTemplates/optimize_templates.json index 76464451095..5c06e22579f 100644 --- a/tools/OptimizeTemplates/optimize_templates.json +++ b/tools/OptimizeTemplates/optimize_templates.json @@ -2568,5 +2568,7 @@ "official/Sarkaz@Roguelike@StageRefresh": "332bb67afc54e63fcfafc4182e00b419de87b692d17d95de895c6e339cebdc07", "official/Sarkaz@Roguelike@StageRefreshConfirm": "4a01239d427cbba5ec5b7f3df23c0af987f50620d3fda2143563e68c665e5133", "official/Sarkaz@Roguelike@StageRefreshNoThought": "d63bc4ad27433c0cd12bf0c6a521694116f0b3806175b8b1c38ddb10d4cf336f", - "official/Sarkaz@Roguelike@StageRefreshUpperLimit": "c1fc9a8f2c6ccbced2266af63d21716f52778d5e483044e15542013646272eb1" + "official/Sarkaz@Roguelike@StageRefreshUpperLimit": "c1fc9a8f2c6ccbced2266af63d21716f52778d5e483044e15542013646272eb1", + "docs/en-us/readme/Captain_Falcon": "80bad0702f82a8d3af618321534f5ab42733e550153166c4f5cbeb9f896b744b", + "official/debug_test_image": "80bad0702f82a8d3af618321534f5ab42733e550153166c4f5cbeb9f896b744b" } \ No newline at end of file diff --git a/tools/OptimizeTemplates/requirements.txt b/tools/OptimizeTemplates/requirements.txt new file mode 100644 index 00000000000..68a73a66a4e --- /dev/null +++ b/tools/OptimizeTemplates/requirements.txt @@ -0,0 +1,3 @@ +tqdm +numpy +pillow diff --git a/website/pnpm-lock.yaml b/website/pnpm-lock.yaml index 662c9213795..76bf2159120 100644 --- a/website/pnpm-lock.yaml +++ b/website/pnpm-lock.yaml @@ -21,14 +21,14 @@ importers: specifier: 2.0.0-rc.14 version: 2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5) '@vuepress/plugin-docsearch': - specifier: 2.0.0-rc.38 - version: 2.0.0-rc.38(@algolia/client-search@4.24.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.15.0)(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + specifier: 2.0.0-rc.40 + version: 2.0.0-rc.40(@algolia/client-search@4.24.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.15.0)(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) '@vuepress/plugin-google-analytics': specifier: 2.0.0-rc.37 version: 2.0.0-rc.37(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) '@vuepress/plugin-shiki': - specifier: ^2.0.0-rc.39 - version: 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + specifier: ^2.0.0-rc.40 + version: 2.0.0-rc.40(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) markdown-it: specifier: ^14.1.0 version: 14.1.0 @@ -42,8 +42,8 @@ importers: specifier: 2.0.0-rc.14 version: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) vuepress-theme-hope: - specifier: 2.0.0-rc.51 - version: 2.0.0-rc.51(@vuepress/plugin-docsearch@2.0.0-rc.38(@algolia/client-search@4.24.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.15.0)(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))))(markdown-it@14.1.0)(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + specifier: 2.0.0-rc.52 + version: 2.0.0-rc.52(@vuepress/plugin-docsearch@2.0.0-rc.40(@algolia/client-search@4.24.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.15.0)(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))))(markdown-it@14.1.0)(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) apps/web: dependencies: @@ -1204,9 +1204,15 @@ packages: '@shikijs/core@1.11.0': resolution: {integrity: sha512-VbEhDAhT/2ozO0TPr5/ZQBO/NWLqtk4ZiBf6NplYpF38mKjNfMMied5fNEfIfYfN+cdKvhDB4VMcKvG/g9c3zg==} + '@shikijs/core@1.12.0': + resolution: {integrity: sha512-mc1cLbm6UQ8RxLc0dZES7v5rkH+99LxQp/ZvTqV3NLyYsO/fD6JhEflP1H5b2SDq9gI0+0G36AVZWxvounfR9w==} + '@shikijs/transformers@1.11.0': resolution: {integrity: sha512-RNEUyOxF1cPYVG2EvBv0CZeDU1Tp4fSxmsVD2Ofv+8h9hBqqgpq+l+7uyouyqV1JHNlqwRmUwAqrQU3GQQ3csQ==} + '@shikijs/transformers@1.12.0': + resolution: {integrity: sha512-ZS6RzDCWbnDljViMaeuraGaoMesCzDxzO2Slhpvic6j+Wqq4RXfQgb2ITTSrtBjv2HGCLP22mvXydtWCOKea8g==} + '@sindresorhus/merge-streams@2.3.0': resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} engines: {node: '>=18'} @@ -1411,18 +1417,13 @@ packages: '@vuepress/core@2.0.0-rc.14': resolution: {integrity: sha512-Ly3fypjXGUgPzjfbXKJeyd59jxJgXkhxhWAGkH/rRyQeV8Nr7Wo1ah3H1MeGhlCRGH1T9Yd3Bz9W7QMoyWFfmg==} - '@vuepress/helper@2.0.0-rc.38': - resolution: {integrity: sha512-IgKQCCbfX4zLkRxLwzNtTMKTZdflAlmBTUEkuD/uJrfFJjGvLShnkw2ONIlwSM6U+SWVHKfW5Ls8pndPvxpI1Q==} - peerDependencies: - vuepress: 2.0.0-rc.14 - '@vuepress/helper@2.0.0-rc.39': resolution: {integrity: sha512-X9KiTUjtrT6gxrDUDJhiB5+/kO4via8yzudowOPu55p/MKtPbShlJw/zEDivH3P4nD1LFWnjWWuEBgZLFymLFQ==} peerDependencies: vuepress: 2.0.0-rc.14 - '@vuepress/highlighter-helper@2.0.0-rc.37': - resolution: {integrity: sha512-l7qxuJJP0+zxDd42UctS0Oc240cCN7BvxfEx6XJfaYmn2Yncrbbk15gS9tUT3jeXB959JGm8uUhxpPP0/4w3kw==} + '@vuepress/helper@2.0.0-rc.40': + resolution: {integrity: sha512-6mvH6nRXkdST8ndmms1wf/uVSdzBn/Tc4psWHNlU+TxaYzDHcXCuGOXh5Z97fJGteHy7LZQo1w7eP+Fsr1JAvQ==} peerDependencies: vuepress: 2.0.0-rc.14 @@ -1431,31 +1432,36 @@ packages: peerDependencies: vuepress: 2.0.0-rc.14 + '@vuepress/highlighter-helper@2.0.0-rc.40': + resolution: {integrity: sha512-QgSbGEewNi24sjkHab+IgiUGtu66CXtOTe8YKYXqmuAP5LshFIlF1qJbR2GPDcxevN3+APAu/Q9+wbmfF9tprg==} + peerDependencies: + vuepress: 2.0.0-rc.14 + '@vuepress/markdown@2.0.0-rc.14': resolution: {integrity: sha512-9xr693gkp71qwEbQLxpo1ybhJ+lA2k5SiuFUgqqrmR2a8CSL3gcmKEGM+y7GMnHvL63U2dYlc9pUOtJ5rG9O0Q==} - '@vuepress/plugin-active-header-links@2.0.0-rc.38': - resolution: {integrity: sha512-ERleWy3NBW8IWTrk8UgGMfFP1JJMi2SSGqBaQqAjkh2n2B6BSr+sY3U1yw39pnyFwdc+TwML5JomkV/W5pbTTw==} + '@vuepress/plugin-active-header-links@2.0.0-rc.39': + resolution: {integrity: sha512-Nm4srR+/kEoawFikbpXdJmi3dvXKU4RcsuOW6d0Aa6JWdiB8sX9PbCWbJD+ZWvAa8o+ySBBHFNd4exTzfCtBlw==} peerDependencies: vuepress: 2.0.0-rc.14 - '@vuepress/plugin-back-to-top@2.0.0-rc.38': - resolution: {integrity: sha512-KrEeyv2QX7YZVrvCBohPWdwFXwKFIwyb6HjEKW/2H82+XfBMg1D9b7vqCp/W4EJ1F6ERPYgJLj0sv2AockHZtg==} + '@vuepress/plugin-back-to-top@2.0.0-rc.39': + resolution: {integrity: sha512-rG9HVgvpxURGfDZeuVRCjXLFHIEqPh1VPqkQpldh1zpDbB4+V2xqq73TYfpjFBRekN8lJZ0JO3BJ8f7p9t4wLg==} peerDependencies: vuepress: 2.0.0-rc.14 - '@vuepress/plugin-blog@2.0.0-rc.38': - resolution: {integrity: sha512-YcwspZIbTxdLNEjkHGAAlaLSfPubHa+j8mdI1NKWjsY1amVnDH2q3/1vIVCaP/YN9a+eHtvTXy6mikNrhnEjgw==} + '@vuepress/plugin-blog@2.0.0-rc.39': + resolution: {integrity: sha512-YHxsZxlIeJGCcOdEm4c4lQoNHx358Zxu/0tvRC/jEwXgyZUnqSpbMd3FLJ9Yl7CPsp18PMLIN7d8YQOetR17zA==} peerDependencies: vuepress: 2.0.0-rc.14 - '@vuepress/plugin-catalog@2.0.0-rc.38': - resolution: {integrity: sha512-XvWlM3D0+zelruCuTknzBlXCcA6fF9zV7UQco/IM1YLqobwNIvJuk9w86UQSw1dh6NVrRVGX3YCz20E3bK8ByQ==} + '@vuepress/plugin-catalog@2.0.0-rc.39': + resolution: {integrity: sha512-WAxCpDAZO4Pzozh6l5zPk/XYXgxAMq96PksgrVjlWsp1c4UKM7QiUMAXKH0UfbgcQhtLJoWQ37F8EZnJAMEXDQ==} peerDependencies: vuepress: 2.0.0-rc.14 - '@vuepress/plugin-comment@2.0.0-rc.38': - resolution: {integrity: sha512-V1SqLFv3nJZN2DbMnCa9KMmrYknUwx2/KOqV3FcEXJ2uPZDY2jLnu/yolU6S3YZ6BfJPT15wPPBGlHRLDLnTOg==} + '@vuepress/plugin-comment@2.0.0-rc.39': + resolution: {integrity: sha512-/oCS+0wH/MtE4c1HUKlqH/tj70oXSz/tfR1hsHj8F8wiZ+IVJxexvtzMKk0vdRmYnH4nqeZh6dg5ggSJjrLEZQ==} peerDependencies: '@waline/client': ^3.1.0 artalk: ^2.8.7 @@ -1469,18 +1475,18 @@ packages: twikoo: optional: true - '@vuepress/plugin-copy-code@2.0.0-rc.38': - resolution: {integrity: sha512-SKO88dEwkCn+2YRNGZJHId8sulas4B8tD8suzSwNyTi+9+T54hrhQpc4cN1GjfbxOPFcINAQsndZFKMX6Wg6tg==} + '@vuepress/plugin-copy-code@2.0.0-rc.39': + resolution: {integrity: sha512-Udd73yfUvjCQadE+QRXCC+Rw2zxRNsBIcpDcFMzs3Vz93LbZxbG0cv6pO4rdKb3OrFH9M0JTawoWyANZspt3QQ==} peerDependencies: vuepress: 2.0.0-rc.14 - '@vuepress/plugin-copyright@2.0.0-rc.38': - resolution: {integrity: sha512-ILkUG2yscwajwfa/Ox1QLZJcn76XGRFaRsRm9O/MzkHtZ/qRJ1QZa0ccqpYPKmNWAPw7isPfi95qeAg0nl34KQ==} + '@vuepress/plugin-copyright@2.0.0-rc.39': + resolution: {integrity: sha512-webOz7vcBydcpqRdLMQYtykEGD5NqZ8ykoZ6dLF9Yk7LteUgsSVUSMm7cJ2vxG2dD/SeH5dPlsr02lH+PH0VbQ==} peerDependencies: vuepress: 2.0.0-rc.14 - '@vuepress/plugin-docsearch@2.0.0-rc.38': - resolution: {integrity: sha512-B+MsWiL99/8MGT9PKhd1D0cYxy8KtL7LF3viPUIyWnDnM4YBPa4SnlG/VUYs7+kCJYCGY5/sw5u//D52gbGJSg==} + '@vuepress/plugin-docsearch@2.0.0-rc.40': + resolution: {integrity: sha512-k3sfer1Vm+bxx0DZv3mWXMNmhDB/LfFOiApM2/T6sChvlScWvlHscydUtp48dmkF4qJV+bieQw0FDzO6oEHeXA==} peerDependencies: vuepress: 2.0.0-rc.14 @@ -1494,38 +1500,38 @@ packages: peerDependencies: vuepress: 2.0.0-rc.14 - '@vuepress/plugin-links-check@2.0.0-rc.38': - resolution: {integrity: sha512-UAf7WpfIdMYD14H3N7oXhriOHmWiErWpNGaRGauZvTXPZV3VE8sSylZ7ezsYjepvWstFGqfN0AmBvl46S++AJg==} + '@vuepress/plugin-links-check@2.0.0-rc.39': + resolution: {integrity: sha512-2lQHIMO49jYcJnEWHf7yoXnuFUrAQC+LfzSvaeCMUzshEIDTJXy96LSCQCjRWwW02GL65qS9ODfr6b8DDuXMgg==} peerDependencies: vuepress: 2.0.0-rc.14 - '@vuepress/plugin-notice@2.0.0-rc.38': - resolution: {integrity: sha512-HYS2fTXU8/Nw6S1U3opWMkbGe70I+e/ADyCbcix0Zhz+/5RNoFIuoAT9TmAC2vqO0Bl/LwaLFZItj3frK0m8IQ==} + '@vuepress/plugin-notice@2.0.0-rc.39': + resolution: {integrity: sha512-GNnNIxZJBt2q8XAtgrpCxovEB0vRXjrCccu4TBjPnSimjreo/i7uaHkxDyCb3O9tNQGEd6OaObOkHFBJ7vXaTg==} peerDependencies: vuepress: 2.0.0-rc.14 - '@vuepress/plugin-nprogress@2.0.0-rc.38': - resolution: {integrity: sha512-KtTvwOA25n8KtXQ1adL3Pa0vf2OdosAxG4UMYGbULe1ScCH9ER86B+cD3vG+pAXLSolNlKmg+VsGjQcO+vF4jQ==} + '@vuepress/plugin-nprogress@2.0.0-rc.39': + resolution: {integrity: sha512-HH+GuR2sxzVQ5uIQxDHnQF5RevjefviLuAbB1UH4u1R6DRUDd9+DrqXm4T/0LJJWo4OCPO4DLzPpmRESjuZifw==} peerDependencies: vuepress: 2.0.0-rc.14 - '@vuepress/plugin-photo-swipe@2.0.0-rc.38': - resolution: {integrity: sha512-S1PtFr6UZ7zTp+J6TorOzuXC2lpcQJ/G7iTS24px2swyzELfpBjhf3gdOKl9wjsnqJ/4DdyUkoHUX0dA7piAkw==} + '@vuepress/plugin-photo-swipe@2.0.0-rc.39': + resolution: {integrity: sha512-MS9xlTAEd7/nJHSPphS2diyvyRzuXRk0zYVlBSDcv8ge3X9gxkMhEcOoRfU6PymxMuovJKBIeTE4mvZQ9Wl9eQ==} peerDependencies: vuepress: 2.0.0-rc.14 - '@vuepress/plugin-reading-time@2.0.0-rc.38': - resolution: {integrity: sha512-ocX2nmvUNbXhuCizTIVZIR2K1pmYA1vA741IH5BPhvD8y5JYc9mZsudJZLPRUgYEi/Yx2o6XMnwqAKrwCqypig==} + '@vuepress/plugin-reading-time@2.0.0-rc.39': + resolution: {integrity: sha512-ChfVi6be4hAXd0XIgyfdNGayIQTzRKFZB2JFWB12+TYBJr6TQ7j6tmL7FWOiYPXUPetVPm6CfuY+mdiaBq2vqg==} peerDependencies: vuepress: 2.0.0-rc.14 - '@vuepress/plugin-rtl@2.0.0-rc.38': - resolution: {integrity: sha512-Jfw0iQXRwddi8GiwBB78+Sdonp5VUZGE2md1IUu9xQuMJ4oW6Fgp1duIp2rWEGiiezwz6CqQb2a/ph3s8NYgPw==} + '@vuepress/plugin-rtl@2.0.0-rc.39': + resolution: {integrity: sha512-1ndKbzpGxJ6qLIOjTeZkAcsqq4eJ54hUrhraOmv21UneVIVDSAt80VeKnSwl8p269T94AxqNqfLsnnaCQ5uvRw==} peerDependencies: vuepress: 2.0.0-rc.14 - '@vuepress/plugin-sass-palette@2.0.0-rc.38': - resolution: {integrity: sha512-lYVtH02y1bG62sc0r2IiSxNqm+5bQYr75GhEqEnFYh9ZmXLLKdCIw84T/JcK4GLi3MOn5rCPO3o4O6DaPM817g==} + '@vuepress/plugin-sass-palette@2.0.0-rc.39': + resolution: {integrity: sha512-jBo/4Lz7H9pa7TCqMSFiEyZRowsLCOVHj+yrp0PE1fAwx+qTm9dNSDKauWIKGplFGQqf4BdKITE7hPDoBePiDw==} peerDependencies: sass-loader: ^14.0.0 vuepress: 2.0.0-rc.14 @@ -1533,33 +1539,33 @@ packages: sass-loader: optional: true - '@vuepress/plugin-seo@2.0.0-rc.38': - resolution: {integrity: sha512-H/f2AtEYohFy0QJv/mbwmdDj0NgY5mpbKY1GtPW+LBn5fymWJ37TZ+gz+/+Htq4BdEbWQmcIj2XteTxdzeyAvQ==} + '@vuepress/plugin-seo@2.0.0-rc.39': + resolution: {integrity: sha512-n6w3ifBU2HK3b6twxJQiiv7vZxjCi0DCgW3Ellp7pNI/uZU6PnfkZ+UjtlHieScThe7A8Q+mxW/T7CyWC6/8cw==} peerDependencies: vuepress: 2.0.0-rc.14 - '@vuepress/plugin-shiki@2.0.0-rc.38': - resolution: {integrity: sha512-e+4OiDxry48bGskgvpxItsNxLOjAckMjASNcH9xGaXeUH3LiwTaCDIBbb89GeIh1LJ4Xnjw1HMlkpomgQmrI8A==} + '@vuepress/plugin-shiki@2.0.0-rc.39': + resolution: {integrity: sha512-QnD8VhOqpkgLCnwLGzcyPY8eC1dam2Navud9DyisLtqWOJ6zmjFZEE1O5elUjh6cPUtarN8bQQ/zn1M1ebRURA==} peerDependencies: vuepress: 2.0.0-rc.14 - '@vuepress/plugin-shiki@2.0.0-rc.39': - resolution: {integrity: sha512-QnD8VhOqpkgLCnwLGzcyPY8eC1dam2Navud9DyisLtqWOJ6zmjFZEE1O5elUjh6cPUtarN8bQQ/zn1M1ebRURA==} + '@vuepress/plugin-shiki@2.0.0-rc.40': + resolution: {integrity: sha512-9m0xjBI0kR6/7mmVFg2ydV6h8mdpphmwtrRDGYnM+MOIU2bvcLRbDwqx/VjyuHO8JlC+vj8eprVU46FPfJC7/A==} peerDependencies: vuepress: 2.0.0-rc.14 - '@vuepress/plugin-sitemap@2.0.0-rc.38': - resolution: {integrity: sha512-R5arITfgVxvdpsapUG48vWR0/loy70MGYC97XU5m9BbNh/Wd7y+QXn6OOAXTAT4U4Vl6c18zMeq3kVyrhj0dKQ==} + '@vuepress/plugin-sitemap@2.0.0-rc.39': + resolution: {integrity: sha512-/dgI8JK4oFaFG3Dmw34cwY5J/gYXNWto7RwR7H8wcK10cWuoT2tNV56BeixWiaqsKj1BZjv2GMwZTLpPgYxgZw==} peerDependencies: vuepress: 2.0.0-rc.14 - '@vuepress/plugin-theme-data@2.0.0-rc.38': - resolution: {integrity: sha512-YeqhtIzBbdB9OORY2M/N+c8O0HqqfEj/6H8waGXfBxHnb/M+kTJ2PnmCjiqrjiTG1JuhuZOpxIjG/rio2VV3+A==} + '@vuepress/plugin-theme-data@2.0.0-rc.39': + resolution: {integrity: sha512-fNwaPpqM46gI23n5d4UrwC8Y+JRDi7mKs1sjawqKU9PdJpUQKd/2lOSOSx/farLqxiswHTQdZtLCxWjvWlcZRw==} peerDependencies: vuepress: 2.0.0-rc.14 - '@vuepress/plugin-watermark@2.0.0-rc.38': - resolution: {integrity: sha512-5lFQ2Cr5PXS57IzGOC0X4h/4XPmC9FSyEweeR3cGMhLqJ1CST0TplUzRftVNsqoXibH/2/UKBQch01tQxzrCAg==} + '@vuepress/plugin-watermark@2.0.0-rc.39': + resolution: {integrity: sha512-16BZnwIZa+AEBcnXI59udHX04/VLiCwrdy8wsdBf3vy5co8/PPyG3iDC1Tlwbkotsuz/+J23KG7MjN4Fr9dFEQ==} peerDependencies: vuepress: 2.0.0-rc.14 @@ -3158,6 +3164,9 @@ packages: shiki@1.11.0: resolution: {integrity: sha512-NqH/O1zRHvnuk/WfSL6b7+DtI7/kkMMSQGlZhm9DyzSU+SoIHhaw/fBZMr+zp9R8KjdIzkk3JKSC6hORuGDyng==} + shiki@1.12.0: + resolution: {integrity: sha512-BuAxWOm5JhRcbSOl7XCei8wGjgJJonnV0oipUupPY58iULxUGyHhW5CF+9FRMuM1pcJ5cGEJGll1LusX6FwpPA==} + side-channel@1.0.6: resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} engines: {node: '>= 0.4'} @@ -3570,8 +3579,8 @@ packages: typescript: optional: true - vuepress-plugin-components@2.0.0-rc.51: - resolution: {integrity: sha512-oPlym6g6hAqX9PzV40jrCqrST5XNz2QLYUP+OtvT6iStJkmyjirVOJ/0eVLXRo8lVfqntcBEKebZ5dhz5qYB9w==} + vuepress-plugin-components@2.0.0-rc.52: + resolution: {integrity: sha512-mQRi0XzdUD025ewjBXlhlh948ReOcohMlBEdkxQVNZaLa5OM2mtZm8TJvN1MkSKeiTMZjtzARO1AJNGyhZWFpw==} engines: {node: '>=18.19.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'} peerDependencies: artplayer: ^5.0.0 @@ -3595,8 +3604,8 @@ packages: vidstack: optional: true - vuepress-plugin-md-enhance@2.0.0-rc.51: - resolution: {integrity: sha512-m8J9DUleFvwfNujgRgRlkwddPTCyumtlPtOXgRpnnTn1uiXVtJoq4PwFMY7PiNMoNr0Q/6a6fuDjEJfNgG/l1w==} + vuepress-plugin-md-enhance@2.0.0-rc.52: + resolution: {integrity: sha512-4lED2FSelBbtBVE5Hon9FQpCgmG1xQbi3+rFrj/Aa1VF+8PTjqFdG4NkdRTx94beOeu/A5jvWp5TFWMbaXD7hA==} engines: {node: '>=18.19.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'} peerDependencies: '@types/reveal.js': ^5.0.0 @@ -3647,26 +3656,26 @@ packages: sass-loader: optional: true - vuepress-shared@2.0.0-rc.51: - resolution: {integrity: sha512-9E/7nV1qe9A2gydeYClkmPH6McXOrI26rdFXybrMEbBHUhzmqsBN7GaM3YxNE6qSqGzpEBOOuurBllJFKwd66A==} + vuepress-shared@2.0.0-rc.52: + resolution: {integrity: sha512-/Y5Qpl8ueqiggqFAyeJ9U2PhLyE7O5hl3r1k4vER/gKpaeYIqmPxf0ToJMFa3uc4luoNEe/9NJb6LJCrcPjFEA==} engines: {node: '>=18.19.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'} peerDependencies: vuepress: 2.0.0-rc.14 - vuepress-theme-hope@2.0.0-rc.51: - resolution: {integrity: sha512-Q7AIm8pp0mWtWWiJmLSpWo7yY6a8e4JJx5V0sktD8dDsiscBUB4ct3jimJQWe7X6QJx9uOFEVaulHAtSm3I4lw==} + vuepress-theme-hope@2.0.0-rc.52: + resolution: {integrity: sha512-QCfIxIQCFOUpJsOUEPi1QtLPUbKjA0alvjb5JJPMGvHqqP2HHOtSuTdoODqy1qWPUg2/GBR/OLjfpqs14joP+w==} engines: {node: '>=18.19.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'} peerDependencies: - '@vuepress/plugin-docsearch': 2.0.0-rc.38 - '@vuepress/plugin-feed': 2.0.0-rc.38 - '@vuepress/plugin-prismjs': 2.0.0-rc.37 - '@vuepress/plugin-pwa': 2.0.0-rc.38 - '@vuepress/plugin-redirect': 2.0.0-rc.38 - '@vuepress/plugin-search': 2.0.0-rc.38 + '@vuepress/plugin-docsearch': 2.0.0-rc.39 + '@vuepress/plugin-feed': 2.0.0-rc.39 + '@vuepress/plugin-prismjs': 2.0.0-rc.39 + '@vuepress/plugin-pwa': 2.0.0-rc.39 + '@vuepress/plugin-redirect': 2.0.0-rc.39 + '@vuepress/plugin-search': 2.0.0-rc.39 nodejs-jieba: ^0.1.2 sass-loader: ^14.0.0 vuepress: 2.0.0-rc.14 - vuepress-plugin-search-pro: 2.0.0-rc.51 + vuepress-plugin-search-pro: 2.0.0-rc.52 peerDependenciesMeta: '@vuepress/plugin-docsearch': optional: true @@ -4824,10 +4833,18 @@ snapshots: dependencies: '@types/hast': 3.0.4 + '@shikijs/core@1.12.0': + dependencies: + '@types/hast': 3.0.4 + '@shikijs/transformers@1.11.0': dependencies: shiki: 1.11.0 + '@shikijs/transformers@1.12.0': + dependencies: + shiki: 1.12.0 + '@sindresorhus/merge-streams@2.3.0': {} '@sindresorhus/merge-streams@4.0.0': {} @@ -5138,33 +5155,33 @@ snapshots: - supports-color - typescript - '@vuepress/helper@2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/helper@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: - '@vue/shared': 3.4.34 + '@vue/shared': 3.4.33 cheerio: 1.0.0-rc.12 fflate: 0.8.2 gray-matter: 4.0.3 - vue: 3.4.34(typescript@4.9.5) + vue: 3.4.33(typescript@4.9.5) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - typescript - '@vuepress/helper@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/helper@2.0.0-rc.40(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: - '@vue/shared': 3.4.33 + '@vue/shared': 3.4.34 cheerio: 1.0.0-rc.12 fflate: 0.8.2 gray-matter: 4.0.3 - vue: 3.4.33(typescript@4.9.5) + vue: 3.4.34(typescript@4.9.5) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - typescript - '@vuepress/highlighter-helper@2.0.0-rc.37(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/highlighter-helper@2.0.0-rc.39(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) - '@vuepress/highlighter-helper@2.0.0-rc.39(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/highlighter-helper@2.0.0-rc.40(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) @@ -5189,77 +5206,77 @@ snapshots: transitivePeerDependencies: - supports-color - '@vuepress/plugin-active-header-links@2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/plugin-active-header-links@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: - '@vueuse/core': 10.11.0(vue@3.4.34(typescript@4.9.5)) - vue: 3.4.34(typescript@4.9.5) + '@vueuse/core': 10.11.0(vue@3.4.33(typescript@4.9.5)) + vue: 3.4.33(typescript@4.9.5) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - '@vue/composition-api' - typescript - '@vuepress/plugin-back-to-top@2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/plugin-back-to-top@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: - '@vuepress/helper': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vueuse/core': 10.11.0(vue@3.4.34(typescript@4.9.5)) - vue: 3.4.34(typescript@4.9.5) + '@vuepress/helper': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vueuse/core': 10.11.0(vue@3.4.33(typescript@4.9.5)) + vue: 3.4.33(typescript@4.9.5) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - '@vue/composition-api' - typescript - '@vuepress/plugin-blog@2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/plugin-blog@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: - '@vuepress/helper': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/helper': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) chokidar: 3.6.0 - vue: 3.4.34(typescript@4.9.5) + vue: 3.4.33(typescript@4.9.5) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - typescript - '@vuepress/plugin-catalog@2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/plugin-catalog@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: - '@vuepress/helper': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - vue: 3.4.34(typescript@4.9.5) + '@vuepress/helper': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + vue: 3.4.33(typescript@4.9.5) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - typescript - '@vuepress/plugin-comment@2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/plugin-comment@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: - '@vuepress/helper': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/helper': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) giscus: 1.5.0 - vue: 3.4.34(typescript@4.9.5) + vue: 3.4.33(typescript@4.9.5) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - typescript - '@vuepress/plugin-copy-code@2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/plugin-copy-code@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: - '@vuepress/helper': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vueuse/core': 10.11.0(vue@3.4.34(typescript@4.9.5)) - vue: 3.4.34(typescript@4.9.5) + '@vuepress/helper': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vueuse/core': 10.11.0(vue@3.4.33(typescript@4.9.5)) + vue: 3.4.33(typescript@4.9.5) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - '@vue/composition-api' - typescript - '@vuepress/plugin-copyright@2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/plugin-copyright@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: - '@vuepress/helper': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vueuse/core': 10.11.0(vue@3.4.34(typescript@4.9.5)) - vue: 3.4.34(typescript@4.9.5) + '@vuepress/helper': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vueuse/core': 10.11.0(vue@3.4.33(typescript@4.9.5)) + vue: 3.4.33(typescript@4.9.5) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - '@vue/composition-api' - typescript - '@vuepress/plugin-docsearch@2.0.0-rc.38(@algolia/client-search@4.24.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.15.0)(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/plugin-docsearch@2.0.0-rc.40(@algolia/client-search@4.24.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.15.0)(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: '@docsearch/css': 3.6.1 '@docsearch/js': 3.6.1(@algolia/client-search@4.24.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.15.0) '@docsearch/react': 3.6.1(@algolia/client-search@4.24.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.15.0) - '@vuepress/helper': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/helper': 2.0.0-rc.40(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) '@vueuse/core': 10.11.0(vue@3.4.34(typescript@4.9.5)) ts-debounce: 4.0.0 vue: 3.4.34(typescript@4.9.5) @@ -5282,114 +5299,114 @@ snapshots: dependencies: vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) - '@vuepress/plugin-links-check@2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/plugin-links-check@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: - '@vuepress/helper': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/helper': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - typescript - '@vuepress/plugin-notice@2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/plugin-notice@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: - '@vuepress/helper': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vueuse/core': 10.11.0(vue@3.4.34(typescript@4.9.5)) - vue: 3.4.34(typescript@4.9.5) + '@vuepress/helper': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vueuse/core': 10.11.0(vue@3.4.33(typescript@4.9.5)) + vue: 3.4.33(typescript@4.9.5) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - '@vue/composition-api' - typescript - '@vuepress/plugin-nprogress@2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/plugin-nprogress@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: - vue: 3.4.34(typescript@4.9.5) + vue: 3.4.33(typescript@4.9.5) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - typescript - '@vuepress/plugin-photo-swipe@2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/plugin-photo-swipe@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: - '@vuepress/helper': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vueuse/core': 10.11.0(vue@3.4.34(typescript@4.9.5)) + '@vuepress/helper': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vueuse/core': 10.11.0(vue@3.4.33(typescript@4.9.5)) photoswipe: 5.4.4 - vue: 3.4.34(typescript@4.9.5) + vue: 3.4.33(typescript@4.9.5) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - '@vue/composition-api' - typescript - '@vuepress/plugin-reading-time@2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/plugin-reading-time@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: - '@vuepress/helper': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - vue: 3.4.34(typescript@4.9.5) + '@vuepress/helper': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + vue: 3.4.33(typescript@4.9.5) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - typescript - '@vuepress/plugin-rtl@2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/plugin-rtl@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: - vue: 3.4.34(typescript@4.9.5) + vue: 3.4.33(typescript@4.9.5) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - typescript - '@vuepress/plugin-sass-palette@2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/plugin-sass-palette@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: - '@vuepress/helper': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/helper': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) chokidar: 3.6.0 sass: 1.77.8 vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - typescript - '@vuepress/plugin-seo@2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/plugin-seo@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: - '@vuepress/helper': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/helper': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - typescript - '@vuepress/plugin-shiki@2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/plugin-shiki@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: '@shikijs/transformers': 1.11.0 - '@vuepress/helper': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/highlighter-helper': 2.0.0-rc.37(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/helper': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/highlighter-helper': 2.0.0-rc.39(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) nanoid: 5.0.7 shiki: 1.11.0 vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - typescript - '@vuepress/plugin-shiki@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/plugin-shiki@2.0.0-rc.40(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: - '@shikijs/transformers': 1.11.0 - '@vuepress/helper': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/highlighter-helper': 2.0.0-rc.39(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@shikijs/transformers': 1.12.0 + '@vuepress/helper': 2.0.0-rc.40(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/highlighter-helper': 2.0.0-rc.40(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) nanoid: 5.0.7 - shiki: 1.11.0 + shiki: 1.12.0 vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - typescript - '@vuepress/plugin-sitemap@2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/plugin-sitemap@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: - '@vuepress/helper': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/helper': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) sitemap: 8.0.0 vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - typescript - '@vuepress/plugin-theme-data@2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/plugin-theme-data@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: '@vue/devtools-api': 6.6.3 - vue: 3.4.34(typescript@4.9.5) + vue: 3.4.33(typescript@4.9.5) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - typescript - '@vuepress/plugin-watermark@2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': + '@vuepress/plugin-watermark@2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)))': dependencies: - '@vuepress/helper': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - vue: 3.4.34(typescript@4.9.5) + '@vuepress/helper': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + vue: 3.4.33(typescript@4.9.5) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) watermark-js-plus: 1.5.2 transitivePeerDependencies: @@ -5415,6 +5432,16 @@ snapshots: transitivePeerDependencies: - supports-color + '@vueuse/core@10.11.0(vue@3.4.33(typescript@4.9.5))': + dependencies: + '@types/web-bluetooth': 0.0.20 + '@vueuse/metadata': 10.11.0 + '@vueuse/shared': 10.11.0(vue@3.4.33(typescript@4.9.5)) + vue-demi: 0.14.8(vue@3.4.33(typescript@4.9.5)) + transitivePeerDependencies: + - '@vue/composition-api' + - vue + '@vueuse/core@10.11.0(vue@3.4.34(typescript@4.9.5))': dependencies: '@types/web-bluetooth': 0.0.20 @@ -5427,6 +5454,13 @@ snapshots: '@vueuse/metadata@10.11.0': {} + '@vueuse/shared@10.11.0(vue@3.4.33(typescript@4.9.5))': + dependencies: + vue-demi: 0.14.8(vue@3.4.33(typescript@4.9.5)) + transitivePeerDependencies: + - '@vue/composition-api' + - vue + '@vueuse/shared@10.11.0(vue@3.4.34(typescript@4.9.5))': dependencies: vue-demi: 0.14.8(vue@3.4.34(typescript@4.9.5)) @@ -7177,6 +7211,11 @@ snapshots: '@shikijs/core': 1.11.0 '@types/hast': 3.0.4 + shiki@1.12.0: + dependencies: + '@shikijs/core': 1.12.0 + '@types/hast': 3.0.4 + side-channel@1.0.6: dependencies: call-bind: 1.0.7 @@ -7552,6 +7591,10 @@ snapshots: fsevents: 2.3.3 sass: 1.77.8 + vue-demi@0.14.8(vue@3.4.33(typescript@4.9.5)): + dependencies: + vue: 3.4.33(typescript@4.9.5) + vue-demi@0.14.8(vue@3.4.34(typescript@4.9.5)): dependencies: vue: 3.4.34(typescript@4.9.5) @@ -7581,23 +7624,23 @@ snapshots: optionalDependencies: typescript: 4.9.5 - vuepress-plugin-components@2.0.0-rc.51(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))): + vuepress-plugin-components@2.0.0-rc.52(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))): dependencies: '@stackblitz/sdk': 1.11.0 - '@vuepress/helper': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/plugin-sass-palette': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vueuse/core': 10.11.0(vue@3.4.34(typescript@4.9.5)) + '@vuepress/helper': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/plugin-sass-palette': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vueuse/core': 10.11.0(vue@3.4.33(typescript@4.9.5)) balloon-css: 1.2.0 create-codepen: 2.0.0 qrcode: 1.5.3 - vue: 3.4.34(typescript@4.9.5) + vue: 3.4.33(typescript@4.9.5) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) - vuepress-shared: 2.0.0-rc.51(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + vuepress-shared: 2.0.0-rc.52(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) transitivePeerDependencies: - '@vue/composition-api' - typescript - vuepress-plugin-md-enhance@2.0.0-rc.51(markdown-it@14.1.0)(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))): + vuepress-plugin-md-enhance@2.0.0-rc.52(markdown-it@14.1.0)(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))): dependencies: '@mdit/plugin-alert': 0.12.0(markdown-it@14.1.0) '@mdit/plugin-align': 0.12.0(markdown-it@14.1.0) @@ -7623,71 +7666,71 @@ snapshots: '@mdit/plugin-tex': 0.12.0(markdown-it@14.1.0) '@mdit/plugin-uml': 0.12.0(markdown-it@14.1.0) '@types/markdown-it': 14.1.1 - '@vuepress/helper': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/plugin-sass-palette': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vueuse/core': 10.11.0(vue@3.4.34(typescript@4.9.5)) + '@vuepress/helper': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/plugin-sass-palette': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vueuse/core': 10.11.0(vue@3.4.33(typescript@4.9.5)) balloon-css: 1.2.0 js-yaml: 4.1.0 - vue: 3.4.34(typescript@4.9.5) + vue: 3.4.33(typescript@4.9.5) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) - vuepress-shared: 2.0.0-rc.51(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + vuepress-shared: 2.0.0-rc.52(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) transitivePeerDependencies: - '@vue/composition-api' - markdown-it - typescript - vuepress-shared@2.0.0-rc.51(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))): + vuepress-shared@2.0.0-rc.52(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))): dependencies: - '@vuepress/helper': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vueuse/core': 10.11.0(vue@3.4.34(typescript@4.9.5)) + '@vuepress/helper': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vueuse/core': 10.11.0(vue@3.4.33(typescript@4.9.5)) cheerio: 1.0.0-rc.12 dayjs: 1.11.12 execa: 9.3.0 fflate: 0.8.2 gray-matter: 4.0.3 semver: 7.6.3 - vue: 3.4.34(typescript@4.9.5) + vue: 3.4.33(typescript@4.9.5) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) transitivePeerDependencies: - '@vue/composition-api' - typescript - vuepress-theme-hope@2.0.0-rc.51(@vuepress/plugin-docsearch@2.0.0-rc.38(@algolia/client-search@4.24.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.15.0)(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))))(markdown-it@14.1.0)(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))): + vuepress-theme-hope@2.0.0-rc.52(@vuepress/plugin-docsearch@2.0.0-rc.40(@algolia/client-search@4.24.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.15.0)(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))))(markdown-it@14.1.0)(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))): dependencies: - '@vuepress/helper': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/plugin-active-header-links': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/plugin-back-to-top': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/plugin-blog': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/plugin-catalog': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/plugin-comment': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/plugin-copy-code': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/plugin-copyright': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/helper': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/plugin-active-header-links': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/plugin-back-to-top': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/plugin-blog': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/plugin-catalog': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/plugin-comment': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/plugin-copy-code': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/plugin-copyright': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) '@vuepress/plugin-git': 2.0.0-rc.38(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/plugin-links-check': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/plugin-notice': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/plugin-nprogress': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/plugin-photo-swipe': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/plugin-reading-time': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/plugin-rtl': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/plugin-sass-palette': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/plugin-seo': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/plugin-shiki': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/plugin-sitemap': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/plugin-theme-data': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vuepress/plugin-watermark': 2.0.0-rc.38(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - '@vueuse/core': 10.11.0(vue@3.4.34(typescript@4.9.5)) + '@vuepress/plugin-links-check': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/plugin-notice': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/plugin-nprogress': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/plugin-photo-swipe': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/plugin-reading-time': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/plugin-rtl': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/plugin-sass-palette': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/plugin-seo': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/plugin-shiki': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/plugin-sitemap': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/plugin-theme-data': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/plugin-watermark': 2.0.0-rc.39(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vueuse/core': 10.11.0(vue@3.4.33(typescript@4.9.5)) balloon-css: 1.2.0 bcrypt-ts: 5.0.2 cheerio: 1.0.0-rc.12 chokidar: 3.6.0 gray-matter: 4.0.3 - vue: 3.4.34(typescript@4.9.5) + vue: 3.4.33(typescript@4.9.5) vuepress: 2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5)) - vuepress-plugin-components: 2.0.0-rc.51(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - vuepress-plugin-md-enhance: 2.0.0-rc.51(markdown-it@14.1.0)(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) - vuepress-shared: 2.0.0-rc.51(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + vuepress-plugin-components: 2.0.0-rc.52(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + vuepress-plugin-md-enhance: 2.0.0-rc.52(markdown-it@14.1.0)(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + vuepress-shared: 2.0.0-rc.52(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) optionalDependencies: - '@vuepress/plugin-docsearch': 2.0.0-rc.38(@algolia/client-search@4.24.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.15.0)(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) + '@vuepress/plugin-docsearch': 2.0.0-rc.40(@algolia/client-search@4.24.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.15.0)(typescript@4.9.5)(vuepress@2.0.0-rc.14(@vuepress/bundler-vite@2.0.0-rc.14(@types/node@20.14.11)(jiti@1.21.6)(sass@1.77.8)(typescript@4.9.5)(yaml@2.4.5))(typescript@4.9.5)(vue@3.4.33(typescript@4.9.5))) transitivePeerDependencies: - '@types/reveal.js' - '@vue/composition-api'