diff --git a/docs/.vuepress/public/src/2025-03-08_00-55-10.png b/docs/.vuepress/public/src/2025-03-08_00-55-10.png new file mode 100644 index 0000000..a991117 Binary files /dev/null and b/docs/.vuepress/public/src/2025-03-08_00-55-10.png differ diff --git a/docs/.vuepress/public/src/2025-03-08_00-56-17.png b/docs/.vuepress/public/src/2025-03-08_00-56-17.png new file mode 100644 index 0000000..b6dc347 Binary files /dev/null and b/docs/.vuepress/public/src/2025-03-08_00-56-17.png differ diff --git a/docs/.vuepress/public/src/2025-03-08_01-03-19.png b/docs/.vuepress/public/src/2025-03-08_01-03-19.png new file mode 100644 index 0000000..c33ebb2 Binary files /dev/null and b/docs/.vuepress/public/src/2025-03-08_01-03-19.png differ diff --git a/docs/.vuepress/public/src/2025-03-08_01-04-38.png b/docs/.vuepress/public/src/2025-03-08_01-04-38.png new file mode 100644 index 0000000..ab8fceb Binary files /dev/null and b/docs/.vuepress/public/src/2025-03-08_01-04-38.png differ diff --git a/docs/.vuepress/public/src/2025-03-08_01-07-06.png b/docs/.vuepress/public/src/2025-03-08_01-07-06.png new file mode 100644 index 0000000..d553ece Binary files /dev/null and b/docs/.vuepress/public/src/2025-03-08_01-07-06.png differ diff --git a/docs/.vuepress/public/src/2025-03-08_01-14-00.png b/docs/.vuepress/public/src/2025-03-08_01-14-00.png new file mode 100644 index 0000000..ce9d0e5 Binary files /dev/null and b/docs/.vuepress/public/src/2025-03-08_01-14-00.png differ diff --git a/docs/.vuepress/public/src/2025-03-08_01-19-32.png b/docs/.vuepress/public/src/2025-03-08_01-19-32.png new file mode 100644 index 0000000..3eae3f7 Binary files /dev/null and b/docs/.vuepress/public/src/2025-03-08_01-19-32.png differ diff --git a/docs/.vuepress/public/src/2025-03-08_01-22-23.png b/docs/.vuepress/public/src/2025-03-08_01-22-23.png new file mode 100644 index 0000000..c9b5efe Binary files /dev/null and b/docs/.vuepress/public/src/2025-03-08_01-22-23.png differ diff --git a/docs/notes/CS-DIY/1.必学工具/Git.md b/docs/notes/CS-DIY/1.必学工具/1.Git.md similarity index 100% rename from docs/notes/CS-DIY/1.必学工具/Git.md rename to docs/notes/CS-DIY/1.必学工具/1.Git.md diff --git a/docs/notes/CS-DIY/1.必学工具/Markdown.md b/docs/notes/CS-DIY/1.必学工具/2.Markdown.md similarity index 100% rename from docs/notes/CS-DIY/1.必学工具/Markdown.md rename to docs/notes/CS-DIY/1.必学工具/2.Markdown.md diff --git a/docs/notes/CS-DIY/1.必学工具/3.Vim.md b/docs/notes/CS-DIY/1.必学工具/3.Vim.md new file mode 100644 index 0000000..cdda044 --- /dev/null +++ b/docs/notes/CS-DIY/1.必学工具/3.Vim.md @@ -0,0 +1,46 @@ +--- +title: Vim +createTime: 2025/03/08 00:19:37 +permalink: /csdiy/tools-must/Vim/ +icon: devicon:vim +--- + +> Vim: 一种上古年代的现代文本编辑器 + +## 为什么学习Vim? + +在我看来 Vim 编辑器有如下的好处: + +* 让你的整个开发过程手指不需要离开键盘,而且光标的移动不需要方向键使得你的手指一直处在打字的最佳位置。 +* 方便的文件切换以及面板控制可以让你同时开发多份文件甚至同一个文件的不同位置。 +* Vim 的宏操作可以批量化处理重复操作(例如多行 tab,批量加双引号等等) +* Vim 是很多服务器自带的命令行编辑器,当你通过 ssh 连接远程服务器之后,由于没有图形界面,只能在命令行里进行开发(当然现在很多 IDE 如 PyCharm 提供了 ssh 插件可以解决这个问题)。 +* 异常丰富的插件生态,让你拥有世界上最花里胡哨的命令行编辑器。 + +## 如何学习 Vim + +不幸的是 Vim 的学习曲线确实相当陡峭,我花了好几个星期才慢慢适应了用 Vim 进行开发的过程。最开始你会觉得非常不适应,但一旦熬过了初始阶段,相信我,你会爱上 Vim。 + +Vim 的学习资料浩如烟海,但掌握它最好的方式还是将它用在日常的开发过程中,而不是一上来就去学各种花里胡哨的高级 Vim 技巧。个人推荐的学习路线如下: + +* 先阅读这篇 [tutorial](https://missing.csail.mit.edu/2020/editors/),掌握基本的 Vim 概念和使用方式,不想看英文的可以阅读[这篇教程](https://github.com/wsdjeg/vim-galore-zh_cn)。 +* 用 Vim 自带的 vimtutor 进行练习,安装完 Vim 之后直接在命令行里输入 vimtutor 即可进入练习程序。 +* 最后就是强迫自己使用 Vim 进行开发,IDE 里可以安装 Vim 插件。 +* 等你完全适应 Vim 之后新的世界便向你敞开了大门,你可以按需配置自己的 Vim(修改 .vimrc 文件),网上有数不胜数的资源可以借鉴。 +* 如果你想对配置 Vim 有更加深入的了解,Learn Vim Script the Hard Way 是一个很好的资源。 + +## 关于键位映射 + +用 Vim 编辑代码的时候会频繁用到 ESC 和 CTRL 键, 但是这两个键都离 home row 很远, 可以把 CapsLock 键映射到 Esc 或者 Ctrl 键,让手更舒服一些。 + +Windows 系统可以使用 [Powertoys](https://learn.microsoft.com/en-us/windows/powertoys/) 或者 [AutoHotkey](https://www.autohotkey.com/) 重映射键位。 + +MacOS 系统提供了重映射键位的[设置](https://vim.fandom.com/wiki/Map_caps_lock_to_escape_in_macOS),另外也可以使用 [Karabiner-Elements](https://karabiner-elements.pqrs.org/) 重映射。 + +Linux 系统可以使用 [xremap](https://github.com/xremap/xremap) 进行映射,对于 wayland 和 x.org 都可以使用,并且支持分别映射点按和按住。 + +但更佳的做法是同时将 CapsLock 映射为 Ctrl 和 Esc,点按为 Esc,按住为 Ctrl。这是不同系统下的实现方法: + +* [Windows](https://gist.github.com/sedm0784/4443120) +* [MacOS](https://ke-complex-modifications.pqrs.org/#caps_lock_tapped_escape_held_left_control) +* [Linux](https://www.jianshu.com/p/6fdc0e0fb266) \ No newline at end of file diff --git a/docs/notes/CS-DIY/1.必学工具/LaTeX.md b/docs/notes/CS-DIY/1.必学工具/4.LaTeX.md similarity index 100% rename from docs/notes/CS-DIY/1.必学工具/LaTeX.md rename to docs/notes/CS-DIY/1.必学工具/4.LaTeX.md diff --git a/docs/notes/CS-DIY/1.必学工具/Magic/Clash-Core/1.Windows.md b/docs/notes/CS-DIY/1.必学工具/Magic/Clash-Core/1.Windows.md index 6fafabb..0e2e9a8 100644 --- a/docs/notes/CS-DIY/1.必学工具/Magic/Clash-Core/1.Windows.md +++ b/docs/notes/CS-DIY/1.必学工具/Magic/Clash-Core/1.Windows.md @@ -5,9 +5,64 @@ permalink: /csdiy/tools-must/magic/clash-core/windows/ icon: mingcute:windows-fill --- +:::info Github无法访问? + +[下载Watt Toolkit](https://steampp.net/) +下载完成后,默认安装,国内推荐下面三个下载地址。 + +![2025-03-08_01-04-38.png](/src/2025-03-08_01-04-38.png) + +打开软件,点击左侧的网络加速,勾选上github,即可解决Github无法访问的问题。 + +![2025-03-08_01-03-19.png](/src/2025-03-08_01-03-19.png) + +::: + ## Clash Verge Windows配置教程 +:::steps + +1. 下载Clash Verge 首先前往下载最新Release的Clash Verge +点击Releases下载最新版本的Clash Verge + +![2025-03-08_00-55-10.png](/src/2025-03-08_00-55-10.png) + +下载.exe文件 + +![202-03-08_00-56-17.png](/src/2025-03-08_00-56-17.png) + +2. 安装 +![2025-03-08_01-07-06.png](/src/2025-03-08_01-07-06.png) +默认安装即可,位置可以自定义 + +3. 设置Clash Verge +![2025-03-08_01-14-00.png](/src/2025-03-08_01-14-00.png) + :::info 含义 + - TUN(虚拟网卡):Clash Verge会创建一个虚拟网卡,所有的流量都会通过这个虚拟网卡进行转发,这样就可以实现全局代理。
+ - 系统代理:开启后,Clash Verge会自动设置系统代理,这样所有的流量都会通过Clash Verge进行转发。
+ - 开机自启:开启后,Clash Verge会在系统启动时自动启动。
+ - 静默启动:开启后,开机后Clash Verge会在后台运行,不会弹出窗口。
+ - 局域网连接:开启后,应用层流量在局域网内通过Clash Verge进行转发。
+ - IPV6:开启后,Clash Verge会自动设置IPV6代理。
+ - 统一延迟:开启后,Clash Verge会统一延迟,这样可以避免一些网站检测到你使用了代理。 + ::: + + +4. 导入订阅 + 联系管理员获取订阅链接,点击订阅按钮,输入订阅链接,点击确定 + +![2025-03-08_01-19-32.png](/src/2025-03-08_01-19-32.png) + +5. 选择节点 + +点击代理,点击wifi图标测速,选择延迟最低的节点即可 + +![2025-03-08_01-22-23.png](/src/2025-03-08_01-22-23.png) + +## 卸载Clash Verge + +Win + S 搜素Clash Verge,右键卸载即可 \ No newline at end of file diff --git a/docs/notes/CS-DIY/2.编程入门/1.Python.md b/docs/notes/CS-DIY/2.编程入门/1.Python.md index 088ce60..4b75e8f 100644 --- a/docs/notes/CS-DIY/2.编程入门/1.Python.md +++ b/docs/notes/CS-DIY/2.编程入门/1.Python.md @@ -8,24 +8,28 @@ icon: devicon:python ## 学习路线 -IDE 推荐 PyCharm,软件教程见 [https://www.jetbrains.com/zh-cn/pycharm/learn/](https://www.jetbrains. -com/zh-cn/pycharm/learn/) +IDE 推荐 ==PyCharm=={.important},软件教程见[:[logos:pycharm]:PyCharm](/campus-wiki/common-softwares/IDE/PyCharm/) -PyCharm软件安装包可在[PGuide Alist](http://192.168.183.171:5244/softwares/JetBrainsIDEs/pycharm-professional-2024.2.4.exe)下载 +PyCharm专业版软件安装包可在[Alist动态开源软件镜像站](http://192.168.183.171:5244/softwares/JetBrainsIDEs/pycharm-professional-2024.2.4.exe)下载 -申请教育版参考:[申请学生邮箱](../../%E5%A4%A7%E5%AD%A6%E7%99%BE%E7%A7%91/%E7%94%B3%E8%AF%B7%E5%AD%A6%E7%94%9F%E9%82%AE%E7%AE%B1.md) +申请大学生教育认证专业版参考[申请JetBrains专业版](/campus-wiki/apply-student-email/#申请学生邮箱) 读书党: -● 《python从入门到精通》一书,代码跟着敲,随书视频跟着看,书籍同时也跟着读 +:::steps -● 学完python从入门到精通还不够的,这本书囊括并不全面,这个时候去B站找小甲鱼Python,学完就行,python就入门了@[bilibili](BV1c4411e77t)。 +1. 《python从入门到精通》一书,代码跟着敲,随书视频跟着看,书籍同时也跟着读 +2. 学完python从入门到精通还不够的,这本书囊括并不全面,这个时候去B站找小甲鱼Python,学完就行,python就入门了 @[bilibili](BV1c4411e77t) +3. 然后重医图书馆《python可视化数据分析》[机器学习实战笔记](https://blog.csdn.net/Crayonxin2000/article/details/122741295)(好像是叫这个名字?反正是一本红色的蜥蜴书,图灵或者机械工业出版的)跟着代码敲,读书,做笔记思考学习数据分析的精髓就行了,然后你就入门数据分析了 +4. 最后就是机器学习。建议你学这个之前有同济绿色版本高数上下册的基础和概率统计的基础,学起来会舒服很多,购买西瓜书读书,然后去GitHub上拉点项目跟着复现实现,恭喜你,机器学习入门了。 -● 然后重医图书馆《python可视化数据分析》[机器学习实战笔记](https://blog.csdn.net/Crayonxin2000/article/details/122741295)(好像是叫这个名字?反正是一本红色的蜥蜴书,图灵或者机械工业出版的)跟着代码敲,读书,做笔记思考学习数据分析的精髓就行了,然后你就入门数据分析了 - -● 最后就是机器学习。建议你学这个之前有同济绿色版本高数上下册的基础和概率统计的基础,学起来会舒服很多,购买西瓜书读书,然后去GitHub上拉点项目跟着复现实现,恭喜你,机器学习入门了。 +[//]: # (TODO: PDF传COS) +::: +:::caution PDF资源因github压缩损坏 +正迁移至对象存储,稍后更新 +::: diff --git a/docs/notes/CS-DIY/2.编程入门/README.md b/docs/notes/CS-DIY/2.编程入门/README.md index 44d1ef3..95c77dd 100644 --- a/docs/notes/CS-DIY/2.编程入门/README.md +++ b/docs/notes/CS-DIY/2.编程入门/README.md @@ -4,17 +4,35 @@ title: README createTime: 2025/03/01 02:47:36 permalink: /csdiy/program-begin/ config: - - - type: features + - type: features features: - - - title: Python + - title: Python icon: devicon:python details: Everyone can do python things link: /csdiy/program-begin/python/ - - - title: C++ + - title: C++ icon: devicon:cplusplus details: System based programming language link: /csdiy/program-begin/c-plus/ + - title: Java + icon: devicon:java + details: Java is a high-level, class-based, object-oriented programming language + link: /csdiy/program-begin/java/ + - title: C + icon: devicon:c + details: C is a general-purpose, procedural computer programming language + link: /csdiy/program-begin/c/ + - title: JavaScript + icon: devicon:javascript + details: JavaScript is a high-level, interpreted programming language + link: /csdiy/program-begin/javascript/ + - title: HTML + icon: devicon:html5 + details: HTML is the standard markup language for documents designed to be displayed in a web browser + link: /csdiy/program-begin/html/ + - title: CSS + icon: devicon:css3 + details: CSS is a style sheet language used for describing the presentation of a document written in a markup language + link: /csdiy/program-begin/css/ + --- diff --git a/docs/notes/Templates.md b/docs/notes/Templates.md index 626c54f..ed30124 100644 --- a/docs/notes/Templates.md +++ b/docs/notes/Templates.md @@ -4,4 +4,6 @@ createTime: 2025/03/08 00:02:21 permalink: /templates/ --- - \ No newline at end of file + + + \ No newline at end of file diff --git a/docs/notes/学习笔记/ROS2/1.VMWare安装.md b/docs/notes/学习笔记/ROS2/1.VMWare安装.md index 6f3c3f3..732a5a7 100644 --- a/docs/notes/学习笔记/ROS2/1.VMWare安装.md +++ b/docs/notes/学习笔记/ROS2/1.VMWare安装.md @@ -84,14 +84,14 @@ network: addresses: [ 8.8.8.8, 8.8.4.4, 192.168.11.2, 233.5.5.5 ] ``` - - -其中: - + :::info IP解释 - `192.168.11.133`是本地中未被占用的CIDR地址 - `192.168.11.133`是你想设置的固定地址 -- `192.168.11.0`是VMware WorkStation的NAT模式子网网段,网关设置为同一网段即可转发流量,例如此处的`192.168.11.2`。 +- `192.168.11.0`是VMware WorkStation的NAT模式子网网段 +- 网关设置为同一网段即可转发流量,例如此处的`192.168.11.2`,不可为广播地址或主机地址 - `233.5.5.5`是阿里云的DNS + ::: + 最后输入使配置生效 diff --git a/docs/notes/学习笔记/ROS2/中智讯一代小车.md b/docs/notes/学习笔记/ROS2/中智讯一代小车.md index 70cfeab..bd4ae0c 100644 --- a/docs/notes/学习笔记/ROS2/中智讯一代小车.md +++ b/docs/notes/学习笔记/ROS2/中智讯一代小车.md @@ -5,4 +5,4 @@ permalink: /learning-notes/zcloud-car1/ icon: /zzx.png --- -https://www.zonesion.com.cn/index/index/productinfo/id/25.html \ No newline at end of file +[https://www.zonesion.com.cn/index/index/productinfo/id/25.html](https://www.zonesion.com.cn/index/index/productinfo/id/25.html) \ No newline at end of file diff --git a/package.json b/package.json index c550467..fa622c1 100644 --- a/package.json +++ b/package.json @@ -17,13 +17,13 @@ "vp-update": "pnpm dlx vp-update" }, "devDependencies": { - "@vuepress/bundler-vite": "2.0.0-rc.19", + "@vuepress/bundler-vite": "2.0.0-rc.20", "http-server": "^14.1.1", "sass-embedded": "^1.85.1", "typescript": "^5.8.2", "vue": "^3.5.13", - "vuepress": "2.0.0-rc.19", - "vuepress-theme-plume": "1.0.0-rc.131" + "vuepress": "2.0.0-rc.20", + "vuepress-theme-plume": "1.0.0-rc.135" }, "dependencies": { "@waline/client": "^3.5.5", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5eeec8d..7c21bb2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -40,8 +40,8 @@ importers: version: 1.8.0 devDependencies: '@vuepress/bundler-vite': - specifier: 2.0.0-rc.19 - version: 2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2) + specifier: 2.0.0-rc.20 + version: 2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2) http-server: specifier: ^14.1.1 version: 14.1.1 @@ -55,11 +55,11 @@ importers: specifier: ^3.5.13 version: 3.5.13(typescript@5.8.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.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + specifier: 2.0.0-rc.20 + version: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) vuepress-theme-plume: - specifier: 1.0.0-rc.131 - version: 1.0.0-rc.131(@algolia/client-search@5.20.3)(@waline/client@3.5.5(typescript@5.8.2))(artplayer@5.2.2)(dashjs@5.0.0)(echarts@5.6.0)(hls.js@1.5.20)(less@4.2.2)(markdown-it@14.1.0)(mermaid@11.4.1)(mpegts.js@1.8.0)(sass-embedded@1.85.1)(sass@1.84.0)(search-insights@2.17.3)(stylus@0.64.0)(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + specifier: 1.0.0-rc.135 + version: 1.0.0-rc.135(@algolia/client-search@5.20.3)(@waline/client@3.5.5(typescript@5.8.2))(artplayer@5.2.2)(dashjs@5.0.0)(echarts@5.6.0)(hls.js@1.5.20)(less@4.2.2)(markdown-it@14.1.0)(mermaid@11.4.1)(mpegts.js@1.8.0)(sass-embedded@1.85.1)(sass@1.84.0)(search-insights@2.17.3)(stylus@0.64.0)(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) packages: @@ -205,12 +205,6 @@ packages: search-insights: optional: true - '@esbuild/aix-ppc64@0.21.5': - resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [aix] - '@esbuild/aix-ppc64@0.24.2': resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==} engines: {node: '>=18'} @@ -223,12 +217,6 @@ packages: cpu: [ppc64] os: [aix] - '@esbuild/android-arm64@0.21.5': - resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - '@esbuild/android-arm64@0.24.2': resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==} engines: {node: '>=18'} @@ -241,12 +229,6 @@ packages: cpu: [arm64] os: [android] - '@esbuild/android-arm@0.21.5': - resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - '@esbuild/android-arm@0.24.2': resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==} engines: {node: '>=18'} @@ -259,12 +241,6 @@ packages: cpu: [arm] os: [android] - '@esbuild/android-x64@0.21.5': - resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - '@esbuild/android-x64@0.24.2': resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==} engines: {node: '>=18'} @@ -277,12 +253,6 @@ packages: cpu: [x64] os: [android] - '@esbuild/darwin-arm64@0.21.5': - resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - '@esbuild/darwin-arm64@0.24.2': resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==} engines: {node: '>=18'} @@ -295,12 +265,6 @@ packages: cpu: [arm64] os: [darwin] - '@esbuild/darwin-x64@0.21.5': - resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - '@esbuild/darwin-x64@0.24.2': resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==} engines: {node: '>=18'} @@ -313,12 +277,6 @@ packages: cpu: [x64] os: [darwin] - '@esbuild/freebsd-arm64@0.21.5': - resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - '@esbuild/freebsd-arm64@0.24.2': resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==} engines: {node: '>=18'} @@ -331,12 +289,6 @@ packages: cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-x64@0.21.5': - resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - '@esbuild/freebsd-x64@0.24.2': resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==} engines: {node: '>=18'} @@ -349,12 +301,6 @@ packages: cpu: [x64] os: [freebsd] - '@esbuild/linux-arm64@0.21.5': - resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - '@esbuild/linux-arm64@0.24.2': resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==} engines: {node: '>=18'} @@ -367,12 +313,6 @@ packages: cpu: [arm64] os: [linux] - '@esbuild/linux-arm@0.21.5': - resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - '@esbuild/linux-arm@0.24.2': resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==} engines: {node: '>=18'} @@ -385,12 +325,6 @@ packages: cpu: [arm] os: [linux] - '@esbuild/linux-ia32@0.21.5': - resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - '@esbuild/linux-ia32@0.24.2': resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==} engines: {node: '>=18'} @@ -403,12 +337,6 @@ packages: cpu: [ia32] os: [linux] - '@esbuild/linux-loong64@0.21.5': - resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - '@esbuild/linux-loong64@0.24.2': resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==} engines: {node: '>=18'} @@ -421,12 +349,6 @@ packages: cpu: [loong64] os: [linux] - '@esbuild/linux-mips64el@0.21.5': - resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - '@esbuild/linux-mips64el@0.24.2': resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==} engines: {node: '>=18'} @@ -439,12 +361,6 @@ packages: cpu: [mips64el] os: [linux] - '@esbuild/linux-ppc64@0.21.5': - resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - '@esbuild/linux-ppc64@0.24.2': resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==} engines: {node: '>=18'} @@ -457,12 +373,6 @@ packages: cpu: [ppc64] os: [linux] - '@esbuild/linux-riscv64@0.21.5': - resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - '@esbuild/linux-riscv64@0.24.2': resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==} engines: {node: '>=18'} @@ -475,12 +385,6 @@ packages: cpu: [riscv64] os: [linux] - '@esbuild/linux-s390x@0.21.5': - resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - '@esbuild/linux-s390x@0.24.2': resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==} engines: {node: '>=18'} @@ -493,12 +397,6 @@ packages: cpu: [s390x] os: [linux] - '@esbuild/linux-x64@0.21.5': - resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - '@esbuild/linux-x64@0.24.2': resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==} engines: {node: '>=18'} @@ -523,12 +421,6 @@ packages: cpu: [arm64] os: [netbsd] - '@esbuild/netbsd-x64@0.21.5': - resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - '@esbuild/netbsd-x64@0.24.2': resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==} engines: {node: '>=18'} @@ -553,12 +445,6 @@ packages: cpu: [arm64] os: [openbsd] - '@esbuild/openbsd-x64@0.21.5': - resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - '@esbuild/openbsd-x64@0.24.2': resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==} engines: {node: '>=18'} @@ -571,12 +457,6 @@ packages: cpu: [x64] os: [openbsd] - '@esbuild/sunos-x64@0.21.5': - resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - '@esbuild/sunos-x64@0.24.2': resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==} engines: {node: '>=18'} @@ -589,12 +469,6 @@ packages: cpu: [x64] os: [sunos] - '@esbuild/win32-arm64@0.21.5': - resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - '@esbuild/win32-arm64@0.24.2': resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==} engines: {node: '>=18'} @@ -607,12 +481,6 @@ packages: cpu: [arm64] os: [win32] - '@esbuild/win32-ia32@0.21.5': - resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - '@esbuild/win32-ia32@0.24.2': resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==} engines: {node: '>=18'} @@ -625,12 +493,6 @@ packages: cpu: [ia32] os: [win32] - '@esbuild/win32-x64@0.21.5': - resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - '@esbuild/win32-x64@0.24.2': resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==} engines: {node: '>=18'} @@ -1105,29 +967,31 @@ packages: '@sec-ant/readable-stream@0.4.1': resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==} - '@shikijs/core@2.5.0': - resolution: {integrity: sha512-uu/8RExTKtavlpH7XqnVYBrfBkUc20ngXiX9NSrBhOVZYv/7XQRKUyhtkeflY5QsxC0GbJThCerruZfsUaSldg==} + '@shikijs/core@3.1.0': + resolution: {integrity: sha512-1ppAOyg3F18N8Ge9DmJjGqRVswihN33rOgPovR6gUHW17Hw1L4RlRhnmVQcsacSHh0A8IO1FIgNbtTxUFwodmg==} - '@shikijs/engine-javascript@2.5.0': - resolution: {integrity: sha512-VjnOpnQf8WuCEZtNUdjjwGUbtAVKuZkVQ/5cHy/tojVVRIRtlWMYVjyWhxOmIq05AlSOv72z7hRNRGVBgQOl0w==} + '@shikijs/engine-javascript@3.1.0': + resolution: {integrity: sha512-/LwkhW17jYi7uPcdaaSQQDNW+xgrHXarkrxYPoC6WPzH2xW5mFMw12doHXJBqxmYvtcTbaatcv2MkH9+3PU1FA==} - '@shikijs/engine-oniguruma@2.5.0': - resolution: {integrity: sha512-pGd1wRATzbo/uatrCIILlAdFVKdxImWJGQ5rFiB5VZi2ve5xj3Ax9jny8QvkaV93btQEwR/rSz5ERFpC5mKNIw==} + '@shikijs/engine-oniguruma@3.1.0': + resolution: {integrity: sha512-reRgy8VzDPdiDocuGDD60Rk/jLxgcgy+6H4n6jYLeN2Yw5ikasRjQQx8ERXtDM35yg2v/d6KolDBcK8hYYhcmw==} - '@shikijs/langs@2.5.0': - resolution: {integrity: sha512-Qfrrt5OsNH5R+5tJ/3uYBBZv3SuGmnRPejV9IlIbFH3HTGLDlkqgHymAlzklVmKBjAaVmkPkyikAV/sQ1wSL+w==} + '@shikijs/langs@3.1.0': + resolution: {integrity: sha512-hAM//sExPXAXG3ZDWjrmV6Vlw4zlWFOcT1ZXNhFRBwPP27scZu/ZIdZ+TdTgy06zSvyF4KIjnF8j6+ScKGu6ww==} - '@shikijs/themes@2.5.0': - resolution: {integrity: sha512-wGrk+R8tJnO0VMzmUExHR+QdSaPUl/NKs+a4cQQRWyoc3YFbUzuLEi/KWK1hj+8BfHRKm2jNhhJck1dfstJpiw==} + '@shikijs/themes@3.1.0': + resolution: {integrity: sha512-A4MJmy9+ydLNbNCtkmdTp8a+ON+MMXoUe1KTkELkyu0+pHGOcbouhNuobhZoK59cL4cOST6CCz1x+kUdkp9UZA==} - '@shikijs/transformers@2.5.0': - resolution: {integrity: sha512-SI494W5X60CaUwgi8u4q4m4s3YAFSxln3tzNjOSYqq54wlVgz0/NbbXEb3mdLbqMBztcmS7bVTaEd2w0qMmfeg==} + '@shikijs/transformers@3.1.0': + resolution: {integrity: sha512-Et+agcilvJOmWh/goUczrdM6R35JrEr8B8xZxJVv6rCIpUo2rICtWZF4YBUIILx5mV78455EcYyFPCrk3lJ+nw==} - '@shikijs/twoslash@2.5.0': - resolution: {integrity: sha512-OdyoZRbzTB80qHFHdaXT070OG9hiljxbsJMZmrMAPWXG2e4FV8wbC63VBM5BJXa1DH645nw20VX1MzASkO5V9g==} + '@shikijs/twoslash@3.1.0': + resolution: {integrity: sha512-cEaS6Nw1IhcJRc0RxJWIaZLXq0A5d9aJ9LoRfO4+y1L1wqC/+YCqrMEZqxkdjep3usCbZRae13fcXMd4pz8fHQ==} + peerDependencies: + typescript: '>=5.5.0' - '@shikijs/types@2.5.0': - resolution: {integrity: sha512-ygl5yhxki9ZLNuNpPitBWvcy9fsSKKaRuO4BAlMyagszQidxcpLAr0qiW/q43DtSIDxO6hEbtYLiFZNXO/hdGw==} + '@shikijs/types@3.1.0': + resolution: {integrity: sha512-F8e7Fy4ihtcNpJG572BZZC1ErYrBrzJ5Cbc9Zi3REgWry43gIvjJ9lFAoUnuy7Bvy4IFz7grUSxL5edfrrjFEA==} '@shikijs/vscode-textmate@10.0.2': resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==} @@ -1341,8 +1205,8 @@ packages: '@vue/devtools-shared@7.7.2': resolution: {integrity: sha512-uBFxnp8gwW2vD6FrJB8JZLUzVb6PNRG0B0jBnHsOH8uKyva2qINY8PTF5Te4QlTbMDqU5K6qtJDr6cNsKWhbOA==} - '@vue/language-core@2.1.10': - resolution: {integrity: sha512-DAI289d0K3AB5TUG3xDp9OuQ71CnrujQwJrQnfuZDwo6eGNf0UoRlPuaVNO+Zrn65PC3j0oB2i7mNmVPggeGeQ==} + '@vue/language-core@2.2.4': + resolution: {integrity: sha512-eGGdw7eWUwdIn9Fy/irJ7uavCGfgemuHQABgJ/hU1UgZFnbTg9VWeXvHQdhY+2SPQZWJqWXvRWIg67t4iWEa+Q==} peerDependencies: typescript: '*' peerDependenciesMeta: @@ -1366,67 +1230,57 @@ packages: '@vue/shared@3.5.13': resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==} - '@vuepress-plume/plugin-content-update@1.0.0-rc.131': - resolution: {integrity: sha512-qg7T7U6YK3bx8mdP+C+RmAoFOr6Nir3Q7QP6m2FZrPNBti52AnPOZd0DvzT9dQXnAtR4HVddN7CrOdKw5REulQ==} + '@vuepress-plume/plugin-fonts@1.0.0-rc.135': + resolution: {integrity: sha512-sWeMrQc98hfRDajSoXNphf6nDJXGVlPXIebk1qT7gmwNpQ2YWxdBxUq4/v9Cnu5rOobxaOU5/lj0gy4BWtLHNQ==} peerDependencies: - vuepress: 2.0.0-rc.19 + vuepress: 2.0.0-rc.20 - '@vuepress-plume/plugin-fonts@1.0.0-rc.131': - resolution: {integrity: sha512-PV6z5z0BrgLLSjjE+u6987ISoT9To9tRq3q/TZmzZ5Qe4F0re0DAqIpR2dnpssdXwHQf+QpAB03kzj9MdS1pKg==} + '@vuepress-plume/plugin-search@1.0.0-rc.135': + resolution: {integrity: sha512-TYR8rKE6a+OHp3FqUjKqXBDqWWiM1lMJcLtDgIHpbrpK9imz2lYralxYmq9FzQChr79uiFAvcjVgrPHppIISrg==} peerDependencies: - vuepress: 2.0.0-rc.19 + vuepress: 2.0.0-rc.20 - '@vuepress-plume/plugin-search@1.0.0-rc.131': - resolution: {integrity: sha512-0L++SgEWfXEOvNzNI21jW3n2OoAhONLtYZysVvGGS2FNAd2Jn2i4MHapaTfz5rLgMvuNnT73VgfvUDrT8L7qmg==} + '@vuepress-plume/plugin-shikiji@1.0.0-rc.135': + resolution: {integrity: sha512-ZH1ahZMJHbzWaTPoZmOd4LxzVP9KA7ExWI+pqHtcJEJ3N8N/hMZdCqt8S5/IOhf9D7clU5wEhYoti10WdthiIg==} peerDependencies: - vuepress: 2.0.0-rc.19 + vuepress: 2.0.0-rc.20 - '@vuepress-plume/plugin-shikiji@1.0.0-rc.131': - resolution: {integrity: sha512-MDfR/mt3iR9v9/7NyxftNtR8C7nRP7MHaqoYOX/OjbJhoVAoWcZArysbXyCOPRMqNpiMxj092JxmCaxs3cxEQQ==} - peerDependencies: - vuepress: 2.0.0-rc.19 + '@vuepress/bundler-vite@2.0.0-rc.20': + resolution: {integrity: sha512-h+b/TSWidqGpnZ6YnMYm35HVSZFk+vCjzgR78SuNrQBd7kkTU2EDvd5sPD1LaoRe7QBSWDm288oDoiDNE0hW3Q==} - '@vuepress/bundler-vite@2.0.0-rc.19': - resolution: {integrity: sha512-Vn0wEVRcdAld+8NJeELSwrj5JEPObRn0xpRWtAau/UwVWHmMLo16RRkTvXdjSiwpDWeP/9ztC5buyTXVoeb7Dw==} + '@vuepress/bundlerutils@2.0.0-rc.20': + resolution: {integrity: sha512-5CZExSHx8wdBCUh8d7qPBheMPekDMznQELkL5biXR06gmYjckNkMSsaeP7QVZUzKZDRERFD6yG6a8YV9xAyqeA==} - '@vuepress/bundlerutils@2.0.0-rc.19': - resolution: {integrity: sha512-ln5htptK14OMJV3yeGRxAwYhSkVxrTwEHEaifeWrFvjuNxj2kLmkCl7MDdzr232jSOWwkCcmbOyafbxMsaRDkQ==} - - '@vuepress/cli@2.0.0-rc.19': - resolution: {integrity: sha512-QFicPNIj3RZAJbHoLbeYlPJsPchnQLGuw0n8xv0eeUi9ejEXO1huWA8sLoPbTGdiDW+PHr1MHnaVMkyUfwaKcQ==} + '@vuepress/cli@2.0.0-rc.20': + resolution: {integrity: sha512-BzKoOYq6R6pwi0jvmzI9Yo6TM3u1BFiU3UCx8+78x6YNlUvz7LG4h5o0BZDsmq+AknGDH37T+vtnIs2vblhwKg==} hasBin: true - '@vuepress/client@2.0.0-rc.19': - resolution: {integrity: sha512-vUAU6n4qmtXqthxkb4LHq0D+VWSDenwBDf0jUs7RaBLuOVrbPtmH/hs4k1vLIlGdwC3Zs/G6tlB4UmuZiiwR8Q==} + '@vuepress/client@2.0.0-rc.20': + resolution: {integrity: sha512-rEye9BmaTK+WHeKv3tFTARhvgkHoai5Ajv9JCRvVCwotBXhLFR9p3us8hxcA94u6ts0TwJxsDzxv/wQQ+9v/PQ==} - '@vuepress/core@2.0.0-rc.19': - resolution: {integrity: sha512-rvmBPMIWS2dey/2QjxZoO0OcrUU46NE3mSLk3oU7JOP0cG7xvRxf6U1OXiwYLC3fPO4g6XbHiKe6gihkmL6VDA==} + '@vuepress/core@2.0.0-rc.20': + resolution: {integrity: sha512-FcDvG+i35TGd0JZrOAPEUuXkCiVMdoohF1+rKRuIAknRX+SecaqN1RcrQlUEG1HBX+U2h4UGtOM1QkaLmQb8Mg==} - '@vuepress/helper@2.0.0-rc.71': - resolution: {integrity: sha512-1KGpCn7uVmnStbdPp55A8hDwvRY+ek+wMbVa29BayEDj8YnJcoEz8PDdVFdK1P4FUfSqqxzZtQg/7BdFsAozTg==} + '@vuepress/helper@2.0.0-rc.79': + resolution: {integrity: sha512-Ulaba+qNDuiSak1M9mFKCPyI9kHYnO1WUjSEJAJp2RPeLvCS6Y4FV6jo0DfIE0ZsQ0J3K4c4j6OkY2UZUi8SWQ==} peerDependencies: - vuepress: 2.0.0-rc.19 + vuepress: 2.0.0-rc.20 - '@vuepress/helper@2.0.0-rc.73': - resolution: {integrity: sha512-Jvj5Deg59M8wZXRk6Ax4PLV8mNPK2k9XlPfPUAvb8/PQjYa270CJAdH2CIeXkh9ujPcVlO0Ie9eBXRPaGwfszw==} + '@vuepress/markdown@2.0.0-rc.20': + resolution: {integrity: sha512-Q/zsW9Kp1BDsLaTxP6J9sVUtH8FfIYkEb6vMT8HHhNvEcIcoLBQRWMZp0VG3yuYRW5sMzjMU5IPD3BdSi52ayw==} + + '@vuepress/plugin-cache@2.0.0-rc.79': + resolution: {integrity: sha512-uyTUWogCJczonPcDafxXasnD80mcwG/HRm2EbxOP6hu6PkTnU7T8ZhLVLUE1sgxCqkHZxItFnZRr41BKNf9liw==} peerDependencies: - vuepress: 2.0.0-rc.19 + vuepress: 2.0.0-rc.20 - '@vuepress/markdown@2.0.0-rc.19': - resolution: {integrity: sha512-6jgUXhpEK55PEEGtPhz7Hq/JqTbLU8n9w2D7emXiK2FYcbeKpjoRIbVRzmzB/dXeK3NzHChANu2IIqpOT6Ba1w==} - - '@vuepress/plugin-cache@2.0.0-rc.66': - resolution: {integrity: sha512-bM6Gk5EE9rYO9Fz7cORd7c0txOrAMC6Dq+2lIZsIfs3nveVD6nqqblzhg30Er96lO1nXHCATbO5ok6uF+rSICg==} + '@vuepress/plugin-comment@2.0.0-rc.79': + resolution: {integrity: sha512-6Lftq7+VGNfBSRJQzrv8HCeiNUvdTR3ezcb6LRTbV3o7kP6CDoECsuGthY6lon9HHVc0gVXtflzqd3P2uyqaxg==} peerDependencies: - vuepress: 2.0.0-rc.19 - - '@vuepress/plugin-comment@2.0.0-rc.73': - resolution: {integrity: sha512-kKIuiDQ7sv4ZzYNrS+FptGiqo9uj3Jx7/r1rZj5FB5zMbdJ8gFAkeSf8tKsQijnBralP1zD1NEr90NnQoi3f+w==} - peerDependencies: - '@waline/client': ^3.5.0 - artalk: ^2.9.0 - twikoo: ^1.6.39 - vuepress: 2.0.0-rc.19 + '@waline/client': ^3.5.5 + artalk: ^2.9.1 + twikoo: ^1.6.41 + vuepress: 2.0.0-rc.20 peerDependenciesMeta: '@waline/client': optional: true @@ -1435,65 +1289,65 @@ packages: twikoo: optional: true - '@vuepress/plugin-docsearch@2.0.0-rc.73': - resolution: {integrity: sha512-+JqyfBRvtKM2OSYSJ0BsboVMklBsfPou7bT4aeVGi4dYstgq0B3vXaTY7rRMuc2cqVHtKNOfmggqrb0mXJA5Kw==} + '@vuepress/plugin-docsearch@2.0.0-rc.79': + resolution: {integrity: sha512-9f9CNu0zYsw6pF550/7/S5PvLLH+EXUw7Ni1ugKR/jZB54opNJX+1XAvYc6xWZC/7DNcYH96N7zOQGnbEj9JEg==} peerDependencies: - vuepress: 2.0.0-rc.19 + vuepress: 2.0.0-rc.20 - '@vuepress/plugin-git@2.0.0-rc.68': - resolution: {integrity: sha512-k/tXBSIyQM26UrmDK/mN1/q6gw8PmF2uLyIaso+B39qCOFQKUBq4uJF2a0oYTq9tpjM5AHwwBpytPE5cdV/BPQ==} + '@vuepress/plugin-git@2.0.0-rc.79': + resolution: {integrity: sha512-f3S3VieD0+K2V5feSbs85rzMXm4Pwk7ieP4UnAEDGfEXKTsPDJIuf5mLrbxL+9dwfopylO6A2rugtUqESQ2VKQ==} peerDependencies: - vuepress: 2.0.0-rc.19 + vuepress: 2.0.0-rc.20 - '@vuepress/plugin-markdown-hint@2.0.0-rc.73': - resolution: {integrity: sha512-BwAc9Pb/fsNfYrgnH70/qfhK/mYlk9Sf9h13HC4GJ+0w9P9fB34B9/nkqmWXZRw84KZQZ139XKfRVjdz1fzgSw==} + '@vuepress/plugin-markdown-hint@2.0.0-rc.79': + resolution: {integrity: sha512-iZ9u9qIy5ahG0oL67M/rWHhQPVShhUztAH/VZrNowB+NMYp3sf4TsecLtG9pt0hZzoCg0MY9qbsvbXjNvqk9Gg==} peerDependencies: - vuepress: 2.0.0-rc.19 + vuepress: 2.0.0-rc.20 - '@vuepress/plugin-markdown-image@2.0.0-rc.73': - resolution: {integrity: sha512-Wb/vBqSLHvjBSo0C7JcgKvuzcbVFSL040NIKXmhmFcy+KhIdNZTt28E7ikPE7ZZua+6l6rei9SSrQLDIvSWhgg==} + '@vuepress/plugin-markdown-image@2.0.0-rc.79': + resolution: {integrity: sha512-gW0Lv+3m98Zw6fc7JDuqrx/nmdFLv35/SU5+Olv5RuDQ5d9LoZtMxxmItLK6PO9xu9CW+XhjgQ7ELCrOxgsAwQ==} peerDependencies: - vuepress: 2.0.0-rc.19 + vuepress: 2.0.0-rc.20 - '@vuepress/plugin-markdown-include@2.0.0-rc.73': - resolution: {integrity: sha512-KBHi6OVM/lxtAFKiWncQCGYXnaMRdWWwNESVkf2Y8EKVHlYyhxVXw8eAzkppyusEi6pNiYCPM7M/GvQzJ2GWsw==} + '@vuepress/plugin-markdown-include@2.0.0-rc.79': + resolution: {integrity: sha512-Pa9Dg0D3TzkqChAXb/MvZNkjEp9NiFXQtpk7OyFsgZOy0qYxMGKUoyU+2pBn1AgPE8d5s61ZxqrBo/U/rbQGkA==} peerDependencies: - vuepress: 2.0.0-rc.19 + vuepress: 2.0.0-rc.20 - '@vuepress/plugin-markdown-math@2.0.0-rc.73': - resolution: {integrity: sha512-CKeLCZkTTAeHGY3GbBtOzmRcp4u8sQY5N4sW1Jf5OkaGjnu4p+ee1iSDbOR+tGqyt+tJfxnMP0baqHaX1hkXgg==} + '@vuepress/plugin-markdown-math@2.0.0-rc.79': + resolution: {integrity: sha512-fX+z0hZMV1yXohqgSE4jC/K9Di8eJ75hZ5/guva+822EwyZiVO3Apugg1h1vbGzsJ45ocZVyfrZSE4CbteZR7Q==} peerDependencies: - katex: ^0.16.10 + katex: ^0.16.21 mathjax-full: ^3.2.2 - vuepress: 2.0.0-rc.19 + vuepress: 2.0.0-rc.20 peerDependenciesMeta: katex: optional: true mathjax-full: optional: true - '@vuepress/plugin-nprogress@2.0.0-rc.73': - resolution: {integrity: sha512-N481LI3MaDep2Jxn0d6Fc5EzygbEklvFOrkX7EFASIa01uOY7xDt9lsbvMXmbzjSUwGZkW+kRFu7GRx56Nxd0Q==} + '@vuepress/plugin-nprogress@2.0.0-rc.79': + resolution: {integrity: sha512-ac8scystGE/BDtinHSUn5VnVpsENRmkQ26idIdP7DdGxRZGG7wrHuD/18c0meNPTxR/tJIpDCvIelu/9sjefkg==} peerDependencies: - vuepress: 2.0.0-rc.19 + vuepress: 2.0.0-rc.20 - '@vuepress/plugin-photo-swipe@2.0.0-rc.73': - resolution: {integrity: sha512-KWctA9uMcFWoZ8Ae6aTBsG6zMpHfdj5hkfhtASMEarbZA86dZwAxGOa1HlALCZJ1EBC1F0fsysm3tvEQhQlI9g==} + '@vuepress/plugin-photo-swipe@2.0.0-rc.79': + resolution: {integrity: sha512-qGL5ZtzJ89s8qhZecXpGsluj1mAAEERl3XGDqJrrCXmGVcRdzqylfew5+uGVzweWBmvviz86bzSm9aDl8adLHQ==} peerDependencies: - vuepress: 2.0.0-rc.19 + vuepress: 2.0.0-rc.20 - '@vuepress/plugin-reading-time@2.0.0-rc.73': - resolution: {integrity: sha512-ozsO8h/MXb7Is+wjTd/yHSV7C0exG6QDInAzdc8yLuZpPcIc9R/IyofopLiJAPE7N8SEuYuwKCLVS21kQYcCpA==} + '@vuepress/plugin-reading-time@2.0.0-rc.79': + resolution: {integrity: sha512-XmjfJrrmz9sC3/2skCn8WPe5a8mISykh8Bt4nVa5paIoxE9OWM72N7+o+f8WdTBtNImlwyS5DQ/DScYxxWfJsw==} peerDependencies: - vuepress: 2.0.0-rc.19 + vuepress: 2.0.0-rc.20 - '@vuepress/plugin-sass-palette@2.0.0-rc.71': - resolution: {integrity: sha512-+5ig0dYptqkSUcWegB0OTjLMvfveVNoU8mRbZ6CLx5AImvu7SfpB17TJElHaAl0aOL6pRnsqDr7xkryAmAmaPg==} + '@vuepress/plugin-sass-palette@2.0.0-rc.79': + resolution: {integrity: sha512-1ama/+ydedV672anpI/3UFV4BDWWk+9xHY9LqB0h75EWWKHTx4zhOQc2j/iq9UgfHLQPIMjIId/FSUndNo4avg==} peerDependencies: - sass: ^1.80.3 - sass-embedded: ^1.80.3 - sass-loader: ^16.0.2 - vuepress: 2.0.0-rc.19 + sass: ^1.85.0 + sass-embedded: ^1.85.0 + sass-loader: ^16.0.5 + vuepress: 2.0.0-rc.20 peerDependenciesMeta: sass: optional: true @@ -1502,26 +1356,26 @@ packages: sass-loader: optional: true - '@vuepress/plugin-seo@2.0.0-rc.73': - resolution: {integrity: sha512-rSiYJPJp21y57a8ITVYTPwQGxff+FS2mZq/LmkE3KxRhDBAvhQZUZLFg8AIqSlnIZ8JuJi0Pvm6tvpRRLcC1Gw==} + '@vuepress/plugin-seo@2.0.0-rc.79': + resolution: {integrity: sha512-A/F1z/yEab6c8yjV9GQupafM8Yxa3JkvBi2i6+uLDd7IAo2ochoT8cs+9yRIDnLzwwuXJZDpfC18FNFekYSliA==} peerDependencies: - vuepress: 2.0.0-rc.19 + vuepress: 2.0.0-rc.20 - '@vuepress/plugin-sitemap@2.0.0-rc.73': - resolution: {integrity: sha512-WYHaTpNxE6pelsEZjf44/VcF0qcLenXd3xjrhzuhx19VQoGY8t7tMJCNng47zYO71NqTiAClzLfHkG3zIbhLdQ==} + '@vuepress/plugin-sitemap@2.0.0-rc.79': + resolution: {integrity: sha512-g0wrWNOCoah0aNPnPlKESbBkCecFuwnQ0ddCAnopHs6ctnMqU3OR6vsyG1/z09aPZtfHZGS+yv64eHEHYu41Pg==} peerDependencies: - vuepress: 2.0.0-rc.19 + vuepress: 2.0.0-rc.20 - '@vuepress/plugin-watermark@2.0.0-rc.73': - resolution: {integrity: sha512-Za6QSkvvYfN0spvg+9gJvOIMWMLrBMoy5wJi2wCuB0hDOGnNrxeKUV1oh2KMWXrucSAC8xGEFj7I+6h22m+7Cw==} + '@vuepress/plugin-watermark@2.0.0-rc.79': + resolution: {integrity: sha512-Y1HnZpf8KrAA5I0OW6/JmUvF6IyEmAHlsL0yg6LEdby62kUCrBeuDtABZapgT/OkKm/aHEOa47epJF3fk5/bUQ==} peerDependencies: - vuepress: 2.0.0-rc.19 + vuepress: 2.0.0-rc.20 - '@vuepress/shared@2.0.0-rc.19': - resolution: {integrity: sha512-xaDeZxX0Qetc2Y6/lrzO6M/40i3LmMm7Fk85bOftBBOaNehZ24RdsmIHBJDDv+bTUv+DBF++1/mOtbt6DBRzEA==} + '@vuepress/shared@2.0.0-rc.20': + resolution: {integrity: sha512-fMCJxO9tqEGZJ85cYLz4pIP6TnUpC7kUgGJtpSGivro0NA7tqTVv4MVQwQ5J3w4YkQfEJirhlAYEOTrlols52Q==} - '@vuepress/utils@2.0.0-rc.19': - resolution: {integrity: sha512-cgzk8/aJquZKgFMNTuqdjbU5NrCzrPmdTyhYBcmliL/6N/He1OTWn3PD9QWUGJNODb1sPRJpklZnCpU07waLmg==} + '@vuepress/utils@2.0.0-rc.20': + resolution: {integrity: sha512-X3KL2tQrmrnyzQeQhIx7E9j0ssvfddLNrEu8pqUYevuYH3xrnrIT5XBNiTqvnDEFYDYcD2R5gFBCGtLs3uYo6g==} '@vueuse/core@12.7.0': resolution: {integrity: sha512-jtK5B7YjZXmkGNHjviyGO4s3ZtEhbzSgrbX+s5o+Lr8i2nYqNyHuPVOeTdM1/hZ5Tkxg/KktAuAVDDiHMraMVA==} @@ -1590,8 +1444,8 @@ packages: resolution: {integrity: sha512-iNC6BGvipaalFfDfDnXUje8GUlW5asj0cTMsZJwO/0rhsyLx1L7GZFAY8wW+eQ6AM4Yge2p5GSE5hrBlfSD90Q==} engines: {node: '>= 14.0.0'} - alien-signals@0.2.2: - resolution: {integrity: sha512-cZIRkbERILsBOXTQmMrxc9hgpxglstn69zm+F1ARf4aPAzdAFYd6sBq87ErO0Fj3DV94tglcyHG5kQz9nDC/8A==} + alien-signals@1.0.4: + resolution: {integrity: sha512-DJqqQD3XcsaQcQ1s+iE2jDUZmmQpXwHiR6fCAim/w87luaW+vmLY8fMlrdkmRwzaFXhkxf3rqPCR59tKVv1MDw==} annotation@0.1.0: resolution: {integrity: sha512-4Oly9tUQoNbj7K/05Co17k80ghwqGyREw6/5vCmfpKY3OGtivh6rK+JVKa1s2aSTCpFbZguF1ut2fsJ1WkrZhA==} @@ -1676,8 +1530,8 @@ packages: bcp-47@2.1.0: resolution: {integrity: sha512-9IIS3UPrvIa1Ej+lVDdDwO7zLehjqsaByECw0bu2RRGP73jALm6FYbzI5gWbgHLvNdkvfXB5YrSbocZdOS0c0w==} - bcrypt-ts@5.0.3: - resolution: {integrity: sha512-2FcgD12xPbwCoe5i9/HK0jJ1xA1m+QfC1e6htG9Bl/hNOnLyaFmQSlqLKcfe3QdnoMPKpKEGFCbESBTg+SJNOw==} + bcrypt-ts@6.0.0: + resolution: {integrity: sha512-P6B36krzeMDEIzG2o2SiDxHCSHeWF2Fvj/Kvmr5gAMBs6jpKfU/9LPXkrd4Ztp3reeq9nNZEU3DQq/e0xZ1T9w==} engines: {node: '>=18'} binary-extensions@2.3.0: @@ -2157,11 +2011,6 @@ packages: es6-promise@4.2.8: resolution: {integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==} - esbuild@0.21.5: - resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} - engines: {node: '>=12'} - hasBin: true - esbuild@0.24.2: resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==} engines: {node: '>=18'} @@ -2426,8 +2275,8 @@ packages: engines: {node: '>=0.10.0'} hasBin: true - image-size@1.2.0: - resolution: {integrity: sha512-4S8fwbO6w3GeCVN6OPtA9I5IGKkcDMPcKndtUlpJuCwu7JLjtj7JZpwqLuyY2nrmQT3AWsCJLSKPsc2mPBSl3w==} + image-size@2.0.0: + resolution: {integrity: sha512-HP07n1SpdIXGUL4VotUIOQz66MQOq8g7VN+Yj02YTVowqZScQ5i/JYU0+lkNr2pwt5j4hOpk94/UBV1ZCbS2fA==} engines: {node: '>=16.x'} hasBin: true @@ -2440,9 +2289,6 @@ packages: imsc@1.1.5: resolution: {integrity: sha512-V8je+CGkcvGhgl2C1GlhqFFiUOIEdwXbXLiu1Fcubvvbo+g9inauqT3l0pNYXGoLPBj3jxtZz9t+wCopMkwadQ==} - inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - internal-slot@1.1.0: resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} engines: {node: '>= 0.4'} @@ -3117,9 +2963,6 @@ packages: queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - queue@6.0.2: - resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==} - readdirp@3.6.0: resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} engines: {node: '>=8.10.0'} @@ -3373,8 +3216,8 @@ packages: resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} engines: {node: '>=8'} - shiki@2.5.0: - resolution: {integrity: sha512-mI//trrsaiCIPsja5CNfsyNOqgAZUb6VpJA+340toL42UpzQlXpwRV9nch69X6gaUxrr9kaOOa6e3y3uAkGFxQ==} + shiki@3.1.0: + resolution: {integrity: sha512-LdTNyWQlC5zdCaHdcp1zPA1OVA2ivb+KjGOOnGcy02tGaF5ja+dGibWFH7Ar8YlngUgK/scDqworK18Ys9cbYA==} side-channel-list@1.0.0: resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} @@ -3538,18 +3381,18 @@ packages: tslib@2.8.1: resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} - twoslash-protocol@0.2.12: - resolution: {integrity: sha512-5qZLXVYfZ9ABdjqbvPc4RWMr7PrpPaaDSeaYY55vl/w1j6H6kzsWK/urAEIXlzYlyrFmyz1UbwIt+AA0ck+wbg==} + twoslash-protocol@0.3.1: + resolution: {integrity: sha512-BMePTL9OkuNISSyyMclBBhV2s9++DiOCyhhCoV5Kaht6eaWLwVjCCUJHY33eZJPsyKeZYS8Wzz0h+XI01VohVw==} - twoslash-vue@0.2.12: - resolution: {integrity: sha512-kxH60DLn2QBcN2wjqxgMDkyRgmPXsytv7fJIlsyFMDPSkm1/lMrI/UMrNAshNaRHcI+hv8x3h/WBgcvlb2RNAQ==} + twoslash-vue@0.3.1: + resolution: {integrity: sha512-9/PS0/iL2m8G6N2ILdI18sZ8l6ex+W2nN5jIaTpfFPlnY0MOX2G5UxEVs+AuNimM9SwEnwfiIuDY9ubDCIQpSQ==} peerDependencies: - typescript: '*' + typescript: ^5.5.0 - twoslash@0.2.12: - resolution: {integrity: sha512-tEHPASMqi7kqwfJbkk7hc/4EhlrKCSLcur+TcvYki3vhIfaRMXnXjaYFgXpoZRbT6GdprD4tGuVBEmTpUgLBsw==} + twoslash@0.3.1: + resolution: {integrity: sha512-OGqMTGvqXTcb92YQdwGfEdK0nZJA64Aj/ChLOelbl3TfYch2IoBST0Yx4C0LQ7Lzyqm9RpgcpgDxeXQIz4p2Kg==} peerDependencies: - typescript: '*' + typescript: ^5.5.0 typed-array-buffer@1.0.3: resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} @@ -3653,8 +3496,8 @@ packages: vfile@6.0.3: resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} - vite@6.0.11: - resolution: {integrity: sha512-4VL9mQPKoHy4+FE0NnRE/kbY51TOfaknxAjt3fJbGJxhIpBZiqVzlZDEesWWsuREXHwNdAoOFZ9MkPEVXczHwg==} + vite@6.1.1: + resolution: {integrity: sha512-4GgM54XrwRfrOp297aIYspIti66k56v16ZnqHvrIM7mG+HjDlAwS7p+Srr7J6fGvEdOJ5JcQ/D9T7HhtdXDTzA==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true peerDependencies: @@ -3731,8 +3574,8 @@ packages: typescript: optional: true - vuepress-plugin-md-enhance@2.0.0-rc.69: - resolution: {integrity: sha512-mzlMDFTAPQIrBRiaVWAAc0IGhAHj7CU1A3l+MVg1ezYUcPIHEmm4lSSHS1IUIUBjkCpplHux75iAFE8Ua6TC5w==} + vuepress-plugin-md-enhance@2.0.0-rc.72: + resolution: {integrity: sha512-UHfbnKAksGdVUfXNPAaMmdx/MbII0gctkxi1lcbb/83g+8C6LLHqtEeThFlJ+mbibpiwwMpTA9LFrCglQHBW6Q==} engines: {node: '>=18.19.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'} peerDependencies: '@vue/repl': ^4.1.1 @@ -3745,10 +3588,10 @@ packages: markmap-view: ^0.18.5 mermaid: ^11.2.0 sandpack-vue3: ^3.0.0 - sass: ^1.81.0 - sass-embedded: ^1.81.0 - sass-loader: ^16.0.2 - vuepress: 2.0.0-rc.19 + sass: ^1.85.0 + sass-embedded: ^1.85.0 + sass-loader: ^16.0.5 + vuepress: 2.0.0-rc.20 peerDependenciesMeta: '@vue/repl': optional: true @@ -3777,11 +3620,11 @@ packages: sass-loader: optional: true - vuepress-plugin-md-power@1.0.0-rc.131: - resolution: {integrity: sha512-MeH1YsfrFOL77OQUdiCjFZWB1C9DgN5Xp1CWFgdrCfJuT+8NhYp9eo2P8vBVw+9h82zN2aq61od9RedM7vTnsA==} + vuepress-plugin-md-power@1.0.0-rc.135: + resolution: {integrity: sha512-veIZnEZRcwAxPbx5N0yRw9FK2pmKgwJozE0Z4DkQ4RBLwv9nt+Orxj8CS9PnEfRLjOH5HeWik8bAEy2SdJZ2OQ==} peerDependencies: artplayer: ^5.2.0 - dashjs: ^4.7.4 + dashjs: ^5.0.0 esbuild: '>=0.24.2' hls.js: ^1.5.18 less: ^4.2.1 @@ -3790,7 +3633,7 @@ packages: sass: ^1.83.0 sass-embedded: ^1.83.0 stylus: '>=0.64.0' - vuepress: 2.0.0-rc.19 + vuepress: 2.0.0-rc.20 peerDependenciesMeta: artplayer: optional: true @@ -3803,22 +3646,22 @@ packages: mpegts.js: optional: true - vuepress-shared@2.0.0-rc.69: - resolution: {integrity: sha512-c3YMPmyrWzpyHiPWK2GdJva6Sb//gu6dh+4iuYafj/ceFFxZz0g6utjektx0CZomxe6V+MDUGuIbppUrsayVBg==} + vuepress-shared@2.0.0-rc.72: + resolution: {integrity: sha512-2MP0+/b+ne4Lpg/ryK+JmSJvrWu3TdanzukihJWUo1odDLCpZJYMAOf8fFHvW/qrAdqTRlF4Mz03jySjH+I7Rg==} engines: {node: '>=18.19.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'} peerDependencies: - vuepress: 2.0.0-rc.19 + vuepress: 2.0.0-rc.20 - vuepress-theme-plume@1.0.0-rc.131: - resolution: {integrity: sha512-69DRYIEzj8dt5Tns7/m9xwQyD5WJcALJ2ZSi3XfxaQAbcB084gi6IVyek2wn6w+GK3eLAZ3OSk5skj86NTYviw==} + vuepress-theme-plume@1.0.0-rc.135: + resolution: {integrity: sha512-24TKbjDTAXURZ4PeYZdsZqJHGyPNQmpZEa4MDQFdGA4Z866N4IDq9BAhN2iKDiYgvVGfhbrzgh+aHKlDTxuzaw==} peerDependencies: '@iconify/json': ^2 mathjax-full: ^3.2.2 - sass: ^1.83.0 - sass-embedded: ^1.83.0 - sass-loader: ^16.0.3 + sass: ^1.85.0 + sass-embedded: ^1.85.0 + sass-loader: ^16.0.5 swiper: ^11.0.0 - vuepress: 2.0.0-rc.19 + vuepress: 2.0.0-rc.20 peerDependenciesMeta: '@iconify/json': optional: true @@ -3833,13 +3676,13 @@ packages: swiper: optional: true - vuepress@2.0.0-rc.19: - resolution: {integrity: sha512-JDeuPTu14Kprdqx2geAryjFJvUzVaMnOLewlAgwVuZTygDWb8cgXhu9/p6rqzzdHETtIrvjbASBhH7JPyqmxmA==} + vuepress@2.0.0-rc.20: + resolution: {integrity: sha512-rAGD+/OBqBQb/qnKdoMuRPkv0Pcwu+OWrs0dW5vqJpswsa9pArrCwsfQKKGpxZI24BkutxIwnUSgUP5LBAtgIw==} engines: {node: ^18.19.0 || >=20.4.0} hasBin: true peerDependencies: - '@vuepress/bundler-vite': 2.0.0-rc.19 - '@vuepress/bundler-webpack': 2.0.0-rc.19 + '@vuepress/bundler-vite': 2.0.0-rc.20 + '@vuepress/bundler-webpack': 2.0.0-rc.20 vue: ^3.5.0 peerDependenciesMeta: '@vuepress/bundler-vite': @@ -3850,8 +3693,8 @@ packages: watermark-js-plus@1.5.8: resolution: {integrity: sha512-dSQHNSq8hVe6abEAPGKPcjq88XKWu4wiikeELyUlcs48xqQOWG3eWeWNLHcG6Pegujp8HTLXPzKsDvzFLKC+iA==} - webworkify-webpack@https://codeload.github.com/xqq/webworkify-webpack/tar.gz/24d1e719b4a6cac37a518b2bb10fe124527ef4ef: - resolution: {tarball: https://codeload.github.com/xqq/webworkify-webpack/tar.gz/24d1e719b4a6cac37a518b2bb10fe124527ef4ef} + webworkify-webpack@git+https://git@github.com:xqq/webworkify-webpack.git#24d1e719b4a6cac37a518b2bb10fe124527ef4ef: + resolution: {commit: 24d1e719b4a6cac37a518b2bb10fe124527ef4ef, repo: git@github.com:xqq/webworkify-webpack.git, type: git} version: 2.1.5 whatwg-encoding@2.0.0: @@ -4079,153 +3922,102 @@ snapshots: transitivePeerDependencies: - '@algolia/client-search' - '@esbuild/aix-ppc64@0.21.5': - optional: true - '@esbuild/aix-ppc64@0.24.2': optional: true '@esbuild/aix-ppc64@0.25.0': optional: true - '@esbuild/android-arm64@0.21.5': - optional: true - '@esbuild/android-arm64@0.24.2': optional: true '@esbuild/android-arm64@0.25.0': optional: true - '@esbuild/android-arm@0.21.5': - optional: true - '@esbuild/android-arm@0.24.2': optional: true '@esbuild/android-arm@0.25.0': optional: true - '@esbuild/android-x64@0.21.5': - optional: true - '@esbuild/android-x64@0.24.2': optional: true '@esbuild/android-x64@0.25.0': optional: true - '@esbuild/darwin-arm64@0.21.5': - optional: true - '@esbuild/darwin-arm64@0.24.2': optional: true '@esbuild/darwin-arm64@0.25.0': optional: true - '@esbuild/darwin-x64@0.21.5': - optional: true - '@esbuild/darwin-x64@0.24.2': optional: true '@esbuild/darwin-x64@0.25.0': optional: true - '@esbuild/freebsd-arm64@0.21.5': - optional: true - '@esbuild/freebsd-arm64@0.24.2': optional: true '@esbuild/freebsd-arm64@0.25.0': optional: true - '@esbuild/freebsd-x64@0.21.5': - optional: true - '@esbuild/freebsd-x64@0.24.2': optional: true '@esbuild/freebsd-x64@0.25.0': optional: true - '@esbuild/linux-arm64@0.21.5': - optional: true - '@esbuild/linux-arm64@0.24.2': optional: true '@esbuild/linux-arm64@0.25.0': optional: true - '@esbuild/linux-arm@0.21.5': - optional: true - '@esbuild/linux-arm@0.24.2': optional: true '@esbuild/linux-arm@0.25.0': optional: true - '@esbuild/linux-ia32@0.21.5': - optional: true - '@esbuild/linux-ia32@0.24.2': optional: true '@esbuild/linux-ia32@0.25.0': optional: true - '@esbuild/linux-loong64@0.21.5': - optional: true - '@esbuild/linux-loong64@0.24.2': optional: true '@esbuild/linux-loong64@0.25.0': optional: true - '@esbuild/linux-mips64el@0.21.5': - optional: true - '@esbuild/linux-mips64el@0.24.2': optional: true '@esbuild/linux-mips64el@0.25.0': optional: true - '@esbuild/linux-ppc64@0.21.5': - optional: true - '@esbuild/linux-ppc64@0.24.2': optional: true '@esbuild/linux-ppc64@0.25.0': optional: true - '@esbuild/linux-riscv64@0.21.5': - optional: true - '@esbuild/linux-riscv64@0.24.2': optional: true '@esbuild/linux-riscv64@0.25.0': optional: true - '@esbuild/linux-s390x@0.21.5': - optional: true - '@esbuild/linux-s390x@0.24.2': optional: true '@esbuild/linux-s390x@0.25.0': optional: true - '@esbuild/linux-x64@0.21.5': - optional: true - '@esbuild/linux-x64@0.24.2': optional: true @@ -4238,9 +4030,6 @@ snapshots: '@esbuild/netbsd-arm64@0.25.0': optional: true - '@esbuild/netbsd-x64@0.21.5': - optional: true - '@esbuild/netbsd-x64@0.24.2': optional: true @@ -4253,45 +4042,30 @@ snapshots: '@esbuild/openbsd-arm64@0.25.0': optional: true - '@esbuild/openbsd-x64@0.21.5': - optional: true - '@esbuild/openbsd-x64@0.24.2': optional: true '@esbuild/openbsd-x64@0.25.0': optional: true - '@esbuild/sunos-x64@0.21.5': - optional: true - '@esbuild/sunos-x64@0.24.2': optional: true '@esbuild/sunos-x64@0.25.0': optional: true - '@esbuild/win32-arm64@0.21.5': - optional: true - '@esbuild/win32-arm64@0.24.2': optional: true '@esbuild/win32-arm64@0.25.0': optional: true - '@esbuild/win32-ia32@0.21.5': - optional: true - '@esbuild/win32-ia32@0.24.2': optional: true '@esbuild/win32-ia32@0.25.0': optional: true - '@esbuild/win32-x64@0.21.5': - optional: true - '@esbuild/win32-x64@0.24.2': optional: true @@ -4671,49 +4445,47 @@ snapshots: '@sec-ant/readable-stream@0.4.1': {} - '@shikijs/core@2.5.0': + '@shikijs/core@3.1.0': dependencies: - '@shikijs/engine-javascript': 2.5.0 - '@shikijs/engine-oniguruma': 2.5.0 - '@shikijs/types': 2.5.0 + '@shikijs/types': 3.1.0 '@shikijs/vscode-textmate': 10.0.2 '@types/hast': 3.0.4 hast-util-to-html: 9.0.5 - '@shikijs/engine-javascript@2.5.0': + '@shikijs/engine-javascript@3.1.0': dependencies: - '@shikijs/types': 2.5.0 + '@shikijs/types': 3.1.0 '@shikijs/vscode-textmate': 10.0.2 oniguruma-to-es: 3.1.1 - '@shikijs/engine-oniguruma@2.5.0': + '@shikijs/engine-oniguruma@3.1.0': dependencies: - '@shikijs/types': 2.5.0 + '@shikijs/types': 3.1.0 '@shikijs/vscode-textmate': 10.0.2 - '@shikijs/langs@2.5.0': + '@shikijs/langs@3.1.0': dependencies: - '@shikijs/types': 2.5.0 + '@shikijs/types': 3.1.0 - '@shikijs/themes@2.5.0': + '@shikijs/themes@3.1.0': dependencies: - '@shikijs/types': 2.5.0 + '@shikijs/types': 3.1.0 - '@shikijs/transformers@2.5.0': + '@shikijs/transformers@3.1.0': dependencies: - '@shikijs/core': 2.5.0 - '@shikijs/types': 2.5.0 + '@shikijs/core': 3.1.0 + '@shikijs/types': 3.1.0 - '@shikijs/twoslash@2.5.0(typescript@5.8.2)': + '@shikijs/twoslash@3.1.0(typescript@5.8.2)': dependencies: - '@shikijs/core': 2.5.0 - '@shikijs/types': 2.5.0 - twoslash: 0.2.12(typescript@5.8.2) + '@shikijs/core': 3.1.0 + '@shikijs/types': 3.1.0 + twoslash: 0.3.1(typescript@5.8.2) + typescript: 5.8.2 transitivePeerDependencies: - supports-color - - typescript - '@shikijs/types@2.5.0': + '@shikijs/types@3.1.0': dependencies: '@shikijs/vscode-textmate': 10.0.2 '@types/hast': 3.0.4 @@ -4893,7 +4665,7 @@ snapshots: '@types/sax@1.2.7': dependencies: - '@types/node': 17.0.45 + '@types/node': 22.13.9 '@types/trusted-types@2.0.7': {} @@ -4910,9 +4682,9 @@ snapshots: '@ungap/structured-clone@1.3.0': {} - '@vitejs/plugin-vue@5.2.1(vite@6.0.11(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0))(vue@3.5.13(typescript@5.8.2))': + '@vitejs/plugin-vue@5.2.1(vite@6.1.1(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0))(vue@3.5.13(typescript@5.8.2))': dependencies: - vite: 6.0.11(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0) + vite: 6.1.1(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0) vue: 3.5.13(typescript@5.8.2) '@volar/language-core@2.4.11': @@ -4976,13 +4748,13 @@ snapshots: dependencies: rfdc: 1.4.1 - '@vue/language-core@2.1.10(typescript@5.8.2)': + '@vue/language-core@2.2.4(typescript@5.8.2)': dependencies: '@volar/language-core': 2.4.11 '@vue/compiler-dom': 3.5.13 '@vue/compiler-vue2': 2.7.16 '@vue/shared': 3.5.13 - alien-signals: 0.2.2 + alien-signals: 1.0.4 minimatch: 9.0.5 muggle-string: 0.4.1 path-browserify: 1.0.1 @@ -5013,20 +4785,13 @@ snapshots: '@vue/shared@3.5.13': {} - '@vuepress-plume/plugin-content-update@1.0.0-rc.131(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': + '@vuepress-plume/plugin-fonts@1.0.0-rc.135(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': dependencies: - vue: 3.5.13(typescript@5.8.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) - transitivePeerDependencies: - - typescript + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) - '@vuepress-plume/plugin-fonts@1.0.0-rc.131(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': + '@vuepress-plume/plugin-search@1.0.0-rc.135(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': dependencies: - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) - - '@vuepress-plume/plugin-search@1.0.0-rc.131(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': - dependencies: - '@vuepress/helper': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/helper': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) '@vueuse/core': 12.7.0(typescript@5.8.2) '@vueuse/integrations': 12.7.0(focus-trap@7.6.4)(typescript@5.8.2) chokidar: 3.6.0 @@ -5035,7 +4800,7 @@ snapshots: minisearch: 7.1.2 p-map: 7.0.3 vue: 3.5.13(typescript@5.8.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) transitivePeerDependencies: - async-validator - axios @@ -5050,12 +4815,12 @@ snapshots: - typescript - universal-cookie - '@vuepress-plume/plugin-shikiji@1.0.0-rc.131(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': + '@vuepress-plume/plugin-shikiji@1.0.0-rc.135(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': dependencies: - '@shikijs/transformers': 2.5.0 - '@shikijs/twoslash': 2.5.0(typescript@5.8.2) + '@shikijs/transformers': 3.1.0 + '@shikijs/twoslash': 3.1.0(typescript@5.8.2) '@types/hast': 3.0.4 - '@vuepress/helper': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/helper': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) '@vueuse/core': 12.7.0(typescript@5.8.2) fast-glob: 3.3.3 floating-vue: 5.2.2(vue@3.5.13(typescript@5.8.2)) @@ -5063,30 +4828,30 @@ snapshots: mdast-util-gfm: 3.1.0 mdast-util-to-hast: 13.2.0 nanoid: 5.1.2 - shiki: 2.5.0 - twoslash: 0.2.12(typescript@5.8.2) - twoslash-vue: 0.2.12(typescript@5.8.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + shiki: 3.1.0 + twoslash: 0.3.1(typescript@5.8.2) + twoslash-vue: 0.3.1(typescript@5.8.2) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) transitivePeerDependencies: - '@nuxt/kit' - supports-color - typescript - vue - '@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2)': + '@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2)': dependencies: - '@vitejs/plugin-vue': 5.2.1(vite@6.0.11(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0))(vue@3.5.13(typescript@5.8.2)) - '@vuepress/bundlerutils': 2.0.0-rc.19(typescript@5.8.2) - '@vuepress/client': 2.0.0-rc.19(typescript@5.8.2) - '@vuepress/core': 2.0.0-rc.19(typescript@5.8.2) - '@vuepress/shared': 2.0.0-rc.19 - '@vuepress/utils': 2.0.0-rc.19 + '@vitejs/plugin-vue': 5.2.1(vite@6.1.1(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0))(vue@3.5.13(typescript@5.8.2)) + '@vuepress/bundlerutils': 2.0.0-rc.20(typescript@5.8.2) + '@vuepress/client': 2.0.0-rc.20(typescript@5.8.2) + '@vuepress/core': 2.0.0-rc.20(typescript@5.8.2) + '@vuepress/shared': 2.0.0-rc.20 + '@vuepress/utils': 2.0.0-rc.20 autoprefixer: 10.4.20(postcss@8.5.3) connect-history-api-fallback: 2.0.0 postcss: 8.5.3 postcss-load-config: 6.0.1(postcss@8.5.3) rollup: 4.34.9 - vite: 6.0.11(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0) + vite: 6.1.1(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0) vue: 3.5.13(typescript@5.8.2) vue-router: 4.5.0(vue@3.5.13(typescript@5.8.2)) transitivePeerDependencies: @@ -5104,52 +4869,53 @@ snapshots: - typescript - yaml - '@vuepress/bundlerutils@2.0.0-rc.19(typescript@5.8.2)': + '@vuepress/bundlerutils@2.0.0-rc.20(typescript@5.8.2)': dependencies: - '@vuepress/client': 2.0.0-rc.19(typescript@5.8.2) - '@vuepress/core': 2.0.0-rc.19(typescript@5.8.2) - '@vuepress/shared': 2.0.0-rc.19 - '@vuepress/utils': 2.0.0-rc.19 + '@vuepress/client': 2.0.0-rc.20(typescript@5.8.2) + '@vuepress/core': 2.0.0-rc.20(typescript@5.8.2) + '@vuepress/shared': 2.0.0-rc.20 + '@vuepress/utils': 2.0.0-rc.20 vue: 3.5.13(typescript@5.8.2) vue-router: 4.5.0(vue@3.5.13(typescript@5.8.2)) transitivePeerDependencies: - supports-color - typescript - '@vuepress/cli@2.0.0-rc.19(typescript@5.8.2)': + '@vuepress/cli@2.0.0-rc.20(typescript@5.8.2)': dependencies: - '@vuepress/core': 2.0.0-rc.19(typescript@5.8.2) - '@vuepress/shared': 2.0.0-rc.19 - '@vuepress/utils': 2.0.0-rc.19 + '@vuepress/core': 2.0.0-rc.20(typescript@5.8.2) + '@vuepress/shared': 2.0.0-rc.20 + '@vuepress/utils': 2.0.0-rc.20 cac: 6.7.14 chokidar: 3.6.0 envinfo: 7.14.0 - esbuild: 0.21.5 + esbuild: 0.24.2 transitivePeerDependencies: - supports-color - typescript - '@vuepress/client@2.0.0-rc.19(typescript@5.8.2)': + '@vuepress/client@2.0.0-rc.20(typescript@5.8.2)': dependencies: '@vue/devtools-api': 7.7.2 - '@vuepress/shared': 2.0.0-rc.19 + '@vue/devtools-kit': 7.7.2 + '@vuepress/shared': 2.0.0-rc.20 vue: 3.5.13(typescript@5.8.2) vue-router: 4.5.0(vue@3.5.13(typescript@5.8.2)) transitivePeerDependencies: - typescript - '@vuepress/core@2.0.0-rc.19(typescript@5.8.2)': + '@vuepress/core@2.0.0-rc.20(typescript@5.8.2)': dependencies: - '@vuepress/client': 2.0.0-rc.19(typescript@5.8.2) - '@vuepress/markdown': 2.0.0-rc.19 - '@vuepress/shared': 2.0.0-rc.19 - '@vuepress/utils': 2.0.0-rc.19 + '@vuepress/client': 2.0.0-rc.20(typescript@5.8.2) + '@vuepress/markdown': 2.0.0-rc.20 + '@vuepress/shared': 2.0.0-rc.20 + '@vuepress/utils': 2.0.0-rc.20 vue: 3.5.13(typescript@5.8.2) transitivePeerDependencies: - supports-color - typescript - '@vuepress/helper@2.0.0-rc.71(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': + '@vuepress/helper@2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': dependencies: '@vue/shared': 3.5.13 '@vueuse/core': 12.7.0(typescript@5.8.2) @@ -5157,23 +4923,11 @@ snapshots: fflate: 0.8.2 gray-matter: 4.0.3 vue: 3.5.13(typescript@5.8.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) transitivePeerDependencies: - typescript - '@vuepress/helper@2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': - dependencies: - '@vue/shared': 3.5.13 - '@vueuse/core': 12.7.0(typescript@5.8.2) - cheerio: 1.0.0 - fflate: 0.8.2 - gray-matter: 4.0.3 - vue: 3.5.13(typescript@5.8.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) - transitivePeerDependencies: - - typescript - - '@vuepress/markdown@2.0.0-rc.19': + '@vuepress/markdown@2.0.0-rc.20': dependencies: '@mdit-vue/plugin-component': 2.1.3 '@mdit-vue/plugin-frontmatter': 2.1.3 @@ -5185,8 +4939,8 @@ snapshots: '@mdit-vue/types': 2.1.0 '@types/markdown-it': 14.1.2 '@types/markdown-it-emoji': 3.0.1 - '@vuepress/shared': 2.0.0-rc.19 - '@vuepress/utils': 2.0.0-rc.19 + '@vuepress/shared': 2.0.0-rc.20 + '@vuepress/utils': 2.0.0-rc.20 markdown-it: 14.1.0 markdown-it-anchor: 9.2.0(@types/markdown-it@14.1.2)(markdown-it@14.1.0) markdown-it-emoji: 3.0.0 @@ -5194,34 +4948,34 @@ snapshots: transitivePeerDependencies: - supports-color - '@vuepress/plugin-cache@2.0.0-rc.66(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': + '@vuepress/plugin-cache@2.0.0-rc.79(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': dependencies: ci-info: 4.1.0 lru-cache: 10.4.3 - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) - '@vuepress/plugin-comment@2.0.0-rc.73(@waline/client@3.5.5(typescript@5.8.2))(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': + '@vuepress/plugin-comment@2.0.0-rc.79(@waline/client@3.5.5(typescript@5.8.2))(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/helper': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) '@vueuse/core': 12.7.0(typescript@5.8.2) giscus: 1.6.0 vue: 3.5.13(typescript@5.8.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) optionalDependencies: '@waline/client': 3.5.5(typescript@5.8.2) transitivePeerDependencies: - typescript - '@vuepress/plugin-docsearch@2.0.0-rc.73(@algolia/client-search@5.20.3)(search-insights@2.17.3)(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': + '@vuepress/plugin-docsearch@2.0.0-rc.79(@algolia/client-search@5.20.3)(search-insights@2.17.3)(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': dependencies: '@docsearch/css': 3.9.0 '@docsearch/js': 3.9.0(@algolia/client-search@5.20.3)(search-insights@2.17.3) '@docsearch/react': 3.9.0(@algolia/client-search@5.20.3)(search-insights@2.17.3) - '@vuepress/helper': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/helper': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) '@vueuse/core': 12.7.0(typescript@5.8.2) ts-debounce: 4.0.0 vue: 3.5.13(typescript@5.8.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) transitivePeerDependencies: - '@algolia/client-search' - '@types/react' @@ -5230,132 +4984,132 @@ snapshots: - search-insights - typescript - '@vuepress/plugin-git@2.0.0-rc.68(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': + '@vuepress/plugin-git@2.0.0-rc.79(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': dependencies: execa: 9.5.2 - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) - '@vuepress/plugin-markdown-hint@2.0.0-rc.73(markdown-it@14.1.0)(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': + '@vuepress/plugin-markdown-hint@2.0.0-rc.79(markdown-it@14.1.0)(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': dependencies: '@mdit/plugin-alert': 0.16.0(markdown-it@14.1.0) '@mdit/plugin-container': 0.16.0(markdown-it@14.1.0) '@types/markdown-it': 14.1.2 - '@vuepress/helper': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/helper': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) '@vueuse/core': 12.7.0(typescript@5.8.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) transitivePeerDependencies: - markdown-it - typescript - '@vuepress/plugin-markdown-image@2.0.0-rc.73(markdown-it@14.1.0)(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': + '@vuepress/plugin-markdown-image@2.0.0-rc.79(markdown-it@14.1.0)(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': dependencies: '@mdit/plugin-figure': 0.16.0(markdown-it@14.1.0) '@mdit/plugin-img-lazyload': 0.16.0(markdown-it@14.1.0) '@mdit/plugin-img-mark': 0.16.0(markdown-it@14.1.0) '@mdit/plugin-img-size': 0.16.0(markdown-it@14.1.0) '@types/markdown-it': 14.1.2 - '@vuepress/helper': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + '@vuepress/helper': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) transitivePeerDependencies: - markdown-it - typescript - '@vuepress/plugin-markdown-include@2.0.0-rc.73(markdown-it@14.1.0)(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': + '@vuepress/plugin-markdown-include@2.0.0-rc.79(markdown-it@14.1.0)(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': dependencies: '@mdit/plugin-include': 0.16.0(markdown-it@14.1.0) '@types/markdown-it': 14.1.2 - '@vuepress/helper': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + '@vuepress/helper': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) transitivePeerDependencies: - markdown-it - typescript - '@vuepress/plugin-markdown-math@2.0.0-rc.73(katex@0.16.21)(markdown-it@14.1.0)(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': + '@vuepress/plugin-markdown-math@2.0.0-rc.79(katex@0.16.21)(markdown-it@14.1.0)(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': dependencies: '@mdit/plugin-katex-slim': 0.16.7(katex@0.16.21)(markdown-it@14.1.0) '@mdit/plugin-mathjax-slim': 0.16.0(markdown-it@14.1.0) '@types/markdown-it': 14.1.2 - '@vuepress/helper': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/helper': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) vue: 3.5.13(typescript@5.8.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) optionalDependencies: katex: 0.16.21 transitivePeerDependencies: - markdown-it - typescript - '@vuepress/plugin-nprogress@2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': + '@vuepress/plugin-nprogress@2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/helper': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) vue: 3.5.13(typescript@5.8.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) transitivePeerDependencies: - typescript - '@vuepress/plugin-photo-swipe@2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': + '@vuepress/plugin-photo-swipe@2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/helper': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) '@vueuse/core': 12.7.0(typescript@5.8.2) photoswipe: 5.4.4 vue: 3.5.13(typescript@5.8.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) transitivePeerDependencies: - typescript - '@vuepress/plugin-reading-time@2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': + '@vuepress/plugin-reading-time@2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/helper': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) vue: 3.5.13(typescript@5.8.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) transitivePeerDependencies: - typescript - '@vuepress/plugin-sass-palette@2.0.0-rc.71(sass-embedded@1.85.1)(sass@1.84.0)(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': + '@vuepress/plugin-sass-palette@2.0.0-rc.79(sass-embedded@1.85.1)(sass@1.84.0)(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.71(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/helper': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) chokidar: 4.0.3 - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) optionalDependencies: sass: 1.84.0 sass-embedded: 1.85.1 transitivePeerDependencies: - typescript - '@vuepress/plugin-seo@2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': + '@vuepress/plugin-seo@2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + '@vuepress/helper': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) transitivePeerDependencies: - typescript - '@vuepress/plugin-sitemap@2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': + '@vuepress/plugin-sitemap@2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/helper': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) sitemap: 8.0.0 - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) transitivePeerDependencies: - typescript - '@vuepress/plugin-watermark@2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': + '@vuepress/plugin-watermark@2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))': dependencies: - '@vuepress/helper': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/helper': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) '@vueuse/core': 12.7.0(typescript@5.8.2) vue: 3.5.13(typescript@5.8.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) watermark-js-plus: 1.5.8 transitivePeerDependencies: - typescript - '@vuepress/shared@2.0.0-rc.19': + '@vuepress/shared@2.0.0-rc.20': dependencies: '@mdit-vue/types': 2.1.0 - '@vuepress/utils@2.0.0-rc.19': + '@vuepress/utils@2.0.0-rc.20': dependencies: '@types/debug': 4.1.12 '@types/fs-extra': 11.0.4 '@types/hash-sum': 1.0.2 - '@vuepress/shared': 2.0.0-rc.19 + '@vuepress/shared': 2.0.0-rc.20 debug: 4.4.0 fs-extra: 11.3.0 globby: 14.1.0 @@ -5425,7 +5179,7 @@ snapshots: '@algolia/requester-fetch': 5.20.3 '@algolia/requester-node-http': 5.20.3 - alien-signals@0.2.2: {} + alien-signals@1.0.4: {} annotation@0.1.0: {} @@ -5514,7 +5268,7 @@ snapshots: is-alphanumerical: 2.0.1 is-decimal: 2.0.1 - bcrypt-ts@5.0.3: {} + bcrypt-ts@6.0.0: {} binary-extensions@2.3.0: {} @@ -6098,32 +5852,6 @@ snapshots: es6-promise@4.2.8: {} - esbuild@0.21.5: - optionalDependencies: - '@esbuild/aix-ppc64': 0.21.5 - '@esbuild/android-arm': 0.21.5 - '@esbuild/android-arm64': 0.21.5 - '@esbuild/android-x64': 0.21.5 - '@esbuild/darwin-arm64': 0.21.5 - '@esbuild/darwin-x64': 0.21.5 - '@esbuild/freebsd-arm64': 0.21.5 - '@esbuild/freebsd-x64': 0.21.5 - '@esbuild/linux-arm': 0.21.5 - '@esbuild/linux-arm64': 0.21.5 - '@esbuild/linux-ia32': 0.21.5 - '@esbuild/linux-loong64': 0.21.5 - '@esbuild/linux-mips64el': 0.21.5 - '@esbuild/linux-ppc64': 0.21.5 - '@esbuild/linux-riscv64': 0.21.5 - '@esbuild/linux-s390x': 0.21.5 - '@esbuild/linux-x64': 0.21.5 - '@esbuild/netbsd-x64': 0.21.5 - '@esbuild/openbsd-x64': 0.21.5 - '@esbuild/sunos-x64': 0.21.5 - '@esbuild/win32-arm64': 0.21.5 - '@esbuild/win32-ia32': 0.21.5 - '@esbuild/win32-x64': 0.21.5 - esbuild@0.24.2: optionalDependencies: '@esbuild/aix-ppc64': 0.24.2 @@ -6468,9 +6196,7 @@ snapshots: image-size@0.5.5: optional: true - image-size@1.2.0: - dependencies: - queue: 6.0.2 + image-size@2.0.0: {} immediate@3.0.6: {} @@ -6480,8 +6206,6 @@ snapshots: dependencies: sax: 1.2.1 - inherits@2.0.4: {} - internal-slot@1.1.0: dependencies: es-errors: 1.3.0 @@ -7093,7 +6817,7 @@ snapshots: mpegts.js@1.8.0: dependencies: es6-promise: 4.2.8 - webworkify-webpack: https://codeload.github.com/xqq/webworkify-webpack/tar.gz/24d1e719b4a6cac37a518b2bb10fe124527ef4ef + webworkify-webpack: git+https://git@github.com:xqq/webworkify-webpack.git#24d1e719b4a6cac37a518b2bb10fe124527ef4ef mrcolor@https://codeload.github.com/rook2pawn/mrcolor/tar.gz/refs/heads/master: dependencies: @@ -7297,10 +7021,6 @@ snapshots: queue-microtask@1.2.3: {} - queue@6.0.2: - dependencies: - inherits: 2.0.4 - readdirp@3.6.0: dependencies: picomatch: 2.3.1 @@ -7563,14 +7283,14 @@ snapshots: shebang-regex@3.0.0: {} - shiki@2.5.0: + shiki@3.1.0: dependencies: - '@shikijs/core': 2.5.0 - '@shikijs/engine-javascript': 2.5.0 - '@shikijs/engine-oniguruma': 2.5.0 - '@shikijs/langs': 2.5.0 - '@shikijs/themes': 2.5.0 - '@shikijs/types': 2.5.0 + '@shikijs/core': 3.1.0 + '@shikijs/engine-javascript': 3.1.0 + '@shikijs/engine-oniguruma': 3.1.0 + '@shikijs/langs': 3.1.0 + '@shikijs/themes': 3.1.0 + '@shikijs/types': 3.1.0 '@shikijs/vscode-textmate': 10.0.2 '@types/hast': 3.0.4 @@ -7744,21 +7464,21 @@ snapshots: tslib@2.8.1: {} - twoslash-protocol@0.2.12: {} + twoslash-protocol@0.3.1: {} - twoslash-vue@0.2.12(typescript@5.8.2): + twoslash-vue@0.3.1(typescript@5.8.2): dependencies: - '@vue/language-core': 2.1.10(typescript@5.8.2) - twoslash: 0.2.12(typescript@5.8.2) - twoslash-protocol: 0.2.12 + '@vue/language-core': 2.2.4(typescript@5.8.2) + twoslash: 0.3.1(typescript@5.8.2) + twoslash-protocol: 0.3.1 typescript: 5.8.2 transitivePeerDependencies: - supports-color - twoslash@0.2.12(typescript@5.8.2): + twoslash@0.3.1(typescript@5.8.2): dependencies: '@typescript/vfs': 1.6.1(typescript@5.8.2) - twoslash-protocol: 0.2.12 + twoslash-protocol: 0.3.1 typescript: 5.8.2 transitivePeerDependencies: - supports-color @@ -7883,7 +7603,7 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.2 - vite@6.0.11(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0): + vite@6.1.1(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0): dependencies: esbuild: 0.24.2 postcss: 8.5.3 @@ -7932,21 +7652,21 @@ snapshots: optionalDependencies: typescript: 5.8.2 - vuepress-plugin-md-enhance@2.0.0-rc.69(echarts@5.6.0)(markdown-it@14.1.0)(mermaid@11.4.1)(sass-embedded@1.85.1)(sass@1.84.0)(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))): + vuepress-plugin-md-enhance@2.0.0-rc.72(echarts@5.6.0)(markdown-it@14.1.0)(mermaid@11.4.1)(sass-embedded@1.85.1)(sass@1.84.0)(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))): dependencies: '@mdit/plugin-container': 0.16.0(markdown-it@14.1.0) '@mdit/plugin-demo': 0.16.0(markdown-it@14.1.0) '@mdit/plugin-plantuml': 0.16.0(markdown-it@14.1.0) '@mdit/plugin-uml': 0.16.0(markdown-it@14.1.0) '@types/markdown-it': 14.1.2 - '@vuepress/helper': 2.0.0-rc.71(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - '@vuepress/plugin-sass-palette': 2.0.0-rc.71(sass-embedded@1.85.1)(sass@1.84.0)(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/helper': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/plugin-sass-palette': 2.0.0-rc.79(sass-embedded@1.85.1)(sass@1.84.0)(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) '@vueuse/core': 12.7.0(typescript@5.8.2) balloon-css: 1.2.0 js-yaml: 4.1.0 vue: 3.5.13(typescript@5.8.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) - vuepress-shared: 2.0.0-rc.69(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + vuepress-shared: 2.0.0-rc.72(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) optionalDependencies: echarts: 5.6.0 mermaid: 11.4.1 @@ -7956,7 +7676,7 @@ snapshots: - markdown-it - typescript - vuepress-plugin-md-power@1.0.0-rc.131(artplayer@5.2.2)(dashjs@5.0.0)(esbuild@0.25.0)(hls.js@1.5.20)(less@4.2.2)(markdown-it@14.1.0)(mpegts.js@1.8.0)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))): + vuepress-plugin-md-power@1.0.0-rc.135(artplayer@5.2.2)(dashjs@5.0.0)(esbuild@0.25.0)(hls.js@1.5.20)(less@4.2.2)(markdown-it@14.1.0)(mpegts.js@1.8.0)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))): dependencies: '@mdit/plugin-attrs': 0.16.7(markdown-it@14.1.0) '@mdit/plugin-footnote': 0.16.0(markdown-it@14.1.0) @@ -7965,11 +7685,11 @@ snapshots: '@mdit/plugin-sup': 0.16.0(markdown-it@14.1.0) '@mdit/plugin-tab': 0.16.0(markdown-it@14.1.0) '@mdit/plugin-tasklist': 0.16.0(markdown-it@14.1.0) - '@vuepress/helper': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/helper': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) '@vueuse/core': 12.7.0(typescript@5.8.2) chokidar: 3.6.0 esbuild: 0.25.0 - image-size: 1.2.0 + image-size: 2.0.0 less: 4.2.2 local-pkg: 1.1.1 lru-cache: 11.0.2 @@ -7977,12 +7697,12 @@ snapshots: nanoid: 5.1.2 sass: 1.84.0 sass-embedded: 1.85.1 - shiki: 2.5.0 + shiki: 3.1.0 stylus: 0.64.0 tm-grammars: 1.22.19 tm-themes: 1.9.14 vue: 3.5.13(typescript@5.8.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) optionalDependencies: artplayer: 5.2.2 dashjs: 5.0.0 @@ -7992,42 +7712,41 @@ snapshots: transitivePeerDependencies: - typescript - vuepress-shared@2.0.0-rc.69(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))): + vuepress-shared@2.0.0-rc.72(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))): dependencies: - '@vuepress/helper': 2.0.0-rc.71(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/helper': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) '@vueuse/core': 12.7.0(typescript@5.8.2) dayjs: 1.11.13 vue: 3.5.13(typescript@5.8.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) transitivePeerDependencies: - typescript - vuepress-theme-plume@1.0.0-rc.131(@algolia/client-search@5.20.3)(@waline/client@3.5.5(typescript@5.8.2))(artplayer@5.2.2)(dashjs@5.0.0)(echarts@5.6.0)(hls.js@1.5.20)(less@4.2.2)(markdown-it@14.1.0)(mermaid@11.4.1)(mpegts.js@1.8.0)(sass-embedded@1.85.1)(sass@1.84.0)(search-insights@2.17.3)(stylus@0.64.0)(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))): + vuepress-theme-plume@1.0.0-rc.135(@algolia/client-search@5.20.3)(@waline/client@3.5.5(typescript@5.8.2))(artplayer@5.2.2)(dashjs@5.0.0)(echarts@5.6.0)(hls.js@1.5.20)(less@4.2.2)(markdown-it@14.1.0)(mermaid@11.4.1)(mpegts.js@1.8.0)(sass-embedded@1.85.1)(sass@1.84.0)(search-insights@2.17.3)(stylus@0.64.0)(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))): dependencies: '@iconify/utils': 2.3.0 '@iconify/vue': 4.3.0(vue@3.5.13(typescript@5.8.2)) '@pengzhanbo/utils': 1.2.0 - '@vuepress-plume/plugin-content-update': 1.0.0-rc.131(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - '@vuepress-plume/plugin-fonts': 1.0.0-rc.131(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - '@vuepress-plume/plugin-search': 1.0.0-rc.131(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - '@vuepress-plume/plugin-shikiji': 1.0.0-rc.131(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - '@vuepress/helper': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - '@vuepress/plugin-cache': 2.0.0-rc.66(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - '@vuepress/plugin-comment': 2.0.0-rc.73(@waline/client@3.5.5(typescript@5.8.2))(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - '@vuepress/plugin-docsearch': 2.0.0-rc.73(@algolia/client-search@5.20.3)(search-insights@2.17.3)(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - '@vuepress/plugin-git': 2.0.0-rc.68(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - '@vuepress/plugin-markdown-hint': 2.0.0-rc.73(markdown-it@14.1.0)(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - '@vuepress/plugin-markdown-image': 2.0.0-rc.73(markdown-it@14.1.0)(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - '@vuepress/plugin-markdown-include': 2.0.0-rc.73(markdown-it@14.1.0)(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - '@vuepress/plugin-markdown-math': 2.0.0-rc.73(katex@0.16.21)(markdown-it@14.1.0)(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - '@vuepress/plugin-nprogress': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - '@vuepress/plugin-photo-swipe': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - '@vuepress/plugin-reading-time': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - '@vuepress/plugin-seo': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - '@vuepress/plugin-sitemap': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - '@vuepress/plugin-watermark': 2.0.0-rc.73(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress-plume/plugin-fonts': 1.0.0-rc.135(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress-plume/plugin-search': 1.0.0-rc.135(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress-plume/plugin-shikiji': 1.0.0-rc.135(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/helper': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/plugin-cache': 2.0.0-rc.79(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/plugin-comment': 2.0.0-rc.79(@waline/client@3.5.5(typescript@5.8.2))(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/plugin-docsearch': 2.0.0-rc.79(@algolia/client-search@5.20.3)(search-insights@2.17.3)(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/plugin-git': 2.0.0-rc.79(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/plugin-markdown-hint': 2.0.0-rc.79(markdown-it@14.1.0)(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/plugin-markdown-image': 2.0.0-rc.79(markdown-it@14.1.0)(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/plugin-markdown-include': 2.0.0-rc.79(markdown-it@14.1.0)(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/plugin-markdown-math': 2.0.0-rc.79(katex@0.16.21)(markdown-it@14.1.0)(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/plugin-nprogress': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/plugin-photo-swipe': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/plugin-reading-time': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/plugin-seo': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/plugin-sitemap': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + '@vuepress/plugin-watermark': 2.0.0-rc.79(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) '@vueuse/core': 12.7.0(typescript@5.8.2) - bcrypt-ts: 5.0.3 + bcrypt-ts: 6.0.0 chokidar: 3.6.0 create-filter: 1.1.0 dayjs: 1.11.13 @@ -8039,9 +7758,9 @@ snapshots: local-pkg: 1.1.1 nanoid: 5.1.2 vue: 3.5.13(typescript@5.8.2) - vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) - vuepress-plugin-md-enhance: 2.0.0-rc.69(echarts@5.6.0)(markdown-it@14.1.0)(mermaid@11.4.1)(sass-embedded@1.85.1)(sass@1.84.0)(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) - vuepress-plugin-md-power: 1.0.0-rc.131(artplayer@5.2.2)(dashjs@5.0.0)(esbuild@0.25.0)(hls.js@1.5.20)(less@4.2.2)(markdown-it@14.1.0)(mpegts.js@1.8.0)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + vuepress: 2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) + vuepress-plugin-md-enhance: 2.0.0-rc.72(echarts@5.6.0)(markdown-it@14.1.0)(mermaid@11.4.1)(sass-embedded@1.85.1)(sass@1.84.0)(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) + vuepress-plugin-md-power: 1.0.0-rc.135(artplayer@5.2.2)(dashjs@5.0.0)(esbuild@0.25.0)(hls.js@1.5.20)(less@4.2.2)(markdown-it@14.1.0)(mpegts.js@1.8.0)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2)(vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))) optionalDependencies: sass: 1.84.0 sass-embedded: 1.85.1 @@ -8086,24 +7805,24 @@ snapshots: - typescript - universal-cookie - vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)): + vuepress@2.0.0-rc.20(@vuepress/bundler-vite@2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2))(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)): dependencies: - '@vuepress/cli': 2.0.0-rc.19(typescript@5.8.2) - '@vuepress/client': 2.0.0-rc.19(typescript@5.8.2) - '@vuepress/core': 2.0.0-rc.19(typescript@5.8.2) - '@vuepress/markdown': 2.0.0-rc.19 - '@vuepress/shared': 2.0.0-rc.19 - '@vuepress/utils': 2.0.0-rc.19 + '@vuepress/cli': 2.0.0-rc.20(typescript@5.8.2) + '@vuepress/client': 2.0.0-rc.20(typescript@5.8.2) + '@vuepress/core': 2.0.0-rc.20(typescript@5.8.2) + '@vuepress/markdown': 2.0.0-rc.20 + '@vuepress/shared': 2.0.0-rc.20 + '@vuepress/utils': 2.0.0-rc.20 vue: 3.5.13(typescript@5.8.2) optionalDependencies: - '@vuepress/bundler-vite': 2.0.0-rc.19(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2) + '@vuepress/bundler-vite': 2.0.0-rc.20(@types/node@22.13.9)(less@4.2.2)(sass-embedded@1.85.1)(sass@1.84.0)(stylus@0.64.0)(typescript@5.8.2) transitivePeerDependencies: - supports-color - typescript watermark-js-plus@1.5.8: {} - webworkify-webpack@https://codeload.github.com/xqq/webworkify-webpack/tar.gz/24d1e719b4a6cac37a518b2bb10fe124527ef4ef: {} + webworkify-webpack@git+https://git@github.com:xqq/webworkify-webpack.git#24d1e719b4a6cac37a518b2bb10fe124527ef4ef: {} whatwg-encoding@2.0.0: dependencies: