From 4f894993ea6a6e078ac82086b9ee5a50f6655467 Mon Sep 17 00:00:00 2001 From: Guide Date: Sun, 3 Sep 2023 14:59:59 +0800 Subject: [PATCH] =?UTF-8?q?[docs=20feat]=E5=8D=87=E7=BA=A7=E5=90=8C?= =?UTF-8?q?=E6=AD=A5vuepress-theme-hope=E4=B8=BB=E9=A2=982.0.0-beta.236?= =?UTF-8?q?=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../zhishixingqiu-two-years.md | 16 +- .../network/other-network-questions.md | 16 + .../java-concurrent-questions-01.md | 8 + docs/system-design/J2EE基础知识.md | 16 +- .../security/data-desensitization.md | 4 +- .../security/design-of-authority-system.md | 2 + docs/system-design/security/jwt-intro.md | 2 + package.json | 10 +- pnpm-lock.yaml | 2746 +++++++++-------- 9 files changed, 1522 insertions(+), 1298 deletions(-) diff --git a/docs/about-the-author/zhishixingqiu-two-years.md b/docs/about-the-author/zhishixingqiu-two-years.md index 89c05b7b..bef5b48e 100644 --- a/docs/about-the-author/zhishixingqiu-two-years.md +++ b/docs/about-the-author/zhishixingqiu-two-years.md @@ -68,9 +68,15 @@ star: 2 ![](https://oss.javaguide.cn/xingqiu/image-20230421154518800.png) -![](https://oss.javaguide.cn/xingqiu/Xnip2023-04-21_15-48-13.png) +并且,每个月都会整理出当月优质的主题,方便大家阅读学习,避免错过优质的内容。毫不夸张,单纯这些优质主题就足够门票价值了。 -加入星球之后,记得抽时间把星球精华主题看看,相信你一定会有所收货! +![星球每月优质主题整理概览](https://oss.javaguide.cn/xingqiu/image-20230902091117181.png) + +加入星球之后,一定要记得抽时间把星球精华主题看看,相信你一定会有所收货! + +JavaGuide 知识星球优质主题汇总传送门:(为了避免这里成为知识杂货铺,我会对严格筛选入选的优质主题)。 + +![星球优质主题汇总](https://oss.javaguide.cn/xingqiu/Xnip2023-04-21_15-48-13.png) ### 简历修改 @@ -133,11 +139,7 @@ star: 2 ## 如何加入? -三年前,星球的定价是 **50/年** (星球规定的最低定价),我还附送了 33 元优惠券。扣除了星球手续费,发了各种福利之后,就是纯粹在做公益。感兴趣的小伙伴可以看看我在 2020-01-03 发的头条:[做了一个很久没敢做的事情](https://mp.weixin.qq.com/s?__biz=Mzg2OTA0Njk0OA==&mid=2247486049&idx=1&sn=e0161b409e8f164251bdaa0c83a476bc&chksm=cea245aaf9d5ccbcafdb95a546d959508814085620aabdbb4385c4b8cea6e50bf157c3697041&token=1614894361&lang=zh_CN#rd),考古一下。 - -随着时间推移,星球沉淀的干货资源越来越多,我花在星球上的时间也越来越多。于是,我将星球的定价慢慢调整为了 **166/年**!后续会将星球的价格调整为 **196/年**,想要加入的小伙伴一定要尽早。 - -这里再送一个 **30** 元的星球专属优惠券吧,数量有限(价格即将上调。老用户续费半价 ,微信扫码即可续费)! +这里赠送一个 **30** 元的星球专属优惠券吧,数量有限(价格即将上调。老用户续费半价 ,微信扫码即可续费)! ![知识星球30元优惠卷](https://oss.javaguide.cn/xingqiu/xingqiuyouhuijuan-30.jpg) diff --git a/docs/cs-basics/network/other-network-questions.md b/docs/cs-basics/network/other-network-questions.md index 569c0c11..0f6cb337 100644 --- a/docs/cs-basics/network/other-network-questions.md +++ b/docs/cs-basics/network/other-network-questions.md @@ -232,6 +232,22 @@ URI 的作用像身份证号一样,URL 的作用更像家庭住址一样。URL 准确点来说,这个问题属于认证授权的范畴,你可以在 [认证授权基础概念详解](../../system-design/security/basis-of-authority-certification.md) 这篇文章中找到详细的答案。 +### GET 和 POST 的区别 + +这个问题在知乎上被讨论的挺火热的,地址: 。 + +![](https://static001.geekbang.org/infoq/04/0454a5fff1437c32754f1dfcc3881148.png) + +GET 和 POST 是 HTTP 协议中两种常用的请求方法,它们在不同的场景和目的下有不同的特点和用法。一般来说,可以从以下几个方面来区分二者(重点搞清两者在语义上的区别即可): + +- 语义(主要区别):GET 通常用于获取或查询资源,而 POST 通常用于创建或修改资源。 +- 幂等:GET 请求是幂等的,即多次重复执行不会改变资源的状态,而 POST 请求是不幂等的,即每次执行可能会产生不同的结果或影响资源的状态。 +- 格式:GET 请求的参数通常放在 URL 中,形成查询字符串(querystring),而 POST 请求的参数通常放在请求体(body)中,可以有多种编码格式,如 application/x-www-form-urlencoded、multipart/form-data、application/json 等。GET 请求的 URL 长度受到浏览器和服务器的限制,而 POST 请求的 body 大小则没有明确的限制。不过,实际上 GET 请求也可以用 body 传输数据,只是并不推荐这样做,因为这样可能会导致一些兼容性或者语义上的问题。 +- 缓存:由于 GET 请求是幂等的,它可以被浏览器或其他中间节点(如代理、网关)缓存起来,以提高性能和效率。而 POST 请求则不适合被缓存,因为它可能有副作用,每次执行可能需要实时的响应。 +- 安全性:GET 请求和 POST 请求如果使用 HTTP 协议的话,那都不安全,因为 HTTP 协议本身是明文传输的,必须使用 HTTPS 协议来加密传输数据。另外,GET 请求相比 POST 请求更容易泄露敏感数据,因为 GET 请求的参数通常放在 URL 中。 + +再次提示,重点搞清两者在语义上的区别即可,实际使用过程中,也是通过语义来区分使用 GET 还是 POST。不过,也有一些项目所有的请求都用 POST,这个并不是固定的,项目组达成共识即可。 + ## PING ### PING 命令的作用是什么? diff --git a/docs/java/concurrent/java-concurrent-questions-01.md b/docs/java/concurrent/java-concurrent-questions-01.md index 9394e55a..cb244c8f 100644 --- a/docs/java/concurrent/java-concurrent-questions-01.md +++ b/docs/java/concurrent/java-concurrent-questions-01.md @@ -134,6 +134,14 @@ public class MultiThread { - 线程安全指的是在多线程环境下,对于同一份数据,不管有多少个线程同时访问,都能保证这份数据的正确性和一致性。 - 线程不安全则表示在多线程环境下,对于同一份数据,多个线程同时访问时可能会导致数据混乱、错误或者丢失。 +## 单核 CPU 上运行多个线程效率一定会高吗? + +单核CPU同时运行多个线程的效率是否会高,取决于线程的类型和任务的性质。一般来说,有两种类型的线程:CPU密集型和IO密集型。CPU密集型的线程主要进行计算和逻辑处理,需要占用大量的CPU资源。IO密集型的线程主要进行输入输出操作,如读写文件、网络通信等,需要等待IO设备的响应,而不占用太多的CPU资源。 + +在单核CPU上,同一时刻只能有一个线程在运行,其他线程需要等待CPU的时间片分配。如果线程是CPU密集型的,那么多个线程同时运行会导致频繁的线程切换,增加了系统的开销,降低了效率。如果线程是IO密集型的,那么多个线程同时运行可以利用CPU在等待IO时的空闲时间,提高了效率。 + +因此,对于单核CPU来说,如果任务是CPU密集型的,那么开很多线程会影响效率;如果任务是IO密集型的,那么开很多线程会提高效率。当然,这里的“很多”也要适度,不能超过系统能够承受的上限。 + ## 说说线程的生命周期和状态? Java 线程在运行的生命周期中的指定时刻只可能处于下面 6 种不同状态的其中一个状态: diff --git a/docs/system-design/J2EE基础知识.md b/docs/system-design/J2EE基础知识.md index 986e7e6f..b834abfc 100644 --- a/docs/system-design/J2EE基础知识.md +++ b/docs/system-design/J2EE基础知识.md @@ -40,16 +40,20 @@ Servlet 接口定义了 5 个方法,其中**前三个方法与 Servlet 生命 参考:《javaweb 整合开发王者归来》P81 -## get 和 post 请求的区别 +## GET 和 POST 的区别 -get 和 post 请求实际上是没有区别,大家可以自行查询相关文章(参考文章:[https://www.cnblogs.com/logsharing/p/8448446.html](https://www.cnblogs.com/logsharing/p/8448446.html),知乎对应的问题链接:[get 和 post 区别?](https://www.zhihu.com/question/28586791))! +这个问题在知乎上被讨论的挺火热的,地址: 。 -可以把 get 和 post 当作两个不同的行为,两者并没有什么本质区别,底层都是 TCP 连接。 get 请求用来从服务器上获得资源,而 post 是用来向服务器提交数据。比如你要获取人员列表可以用 get 请求,你需要创建一个人员可以用 post 。这也是 Restful API 最基本的一个要求。 +![](https://static001.geekbang.org/infoq/04/0454a5fff1437c32754f1dfcc3881148.png) -推荐阅读: +GET 和 POST 是 HTTP 协议中两种常用的请求方法,它们在不同的场景和目的下有不同的特点和用法。一般来说,可以从以下几个方面来区分它们: -- -- +- 语义上的区别:GET 通常用于获取或查询资源,而 POST 通常用于创建或修改资源。GET 请求应该是幂等的,即多次重复执行不会改变资源的状态,而 POST 请求则可能有副作用,即每次执行可能会产生不同的结果或影响资源的状态。 +- 格式上的区别:GET 请求的参数通常放在 URL 中,形成查询字符串(querystring),而 POST 请求的参数通常放在请求体(body)中,可以有多种编码格式,如 application/x-www-form-urlencoded、multipart/form-data、application/json 等。GET 请求的 URL 长度受到浏览器和服务器的限制,而 POST 请求的 body 大小则没有明确的限制。 +- 缓存上的区别:由于 GET 请求是幂等的,它可以被浏览器或其他中间节点(如代理、网关)缓存起来,以提高性能和效率。而 POST 请求则不适合被缓存,因为它可能有副作用,每次执行可能需要实时的响应。 +- 安全性上的区别:GET 请求和 POST 请求都不是绝对安全的,因为 HTTP 协议本身是明文传输的,无论是 URL、header 还是 body 都可能被窃取或篡改。为了保证安全性,必须使用 HTTPS 协议来加密传输数据。不过,在一些场景下,GET 请求相比 POST 请求更容易泄露敏感数据,因为 GET 请求的参数会出现在 URL 中,而 URL 可能会被记录在浏览器历史、服务器日志、代理日志等地方。因此,一般情况下,私密数据传输应该使用 POST + body。 + +重点搞清了,两者在语义上的区别即可。不过,也有一些项目所有的请求都用 POST,这个并不是固定的,项目组达成共识即可。 ## 什么情况下调用 doGet()和 doPost() diff --git a/docs/system-design/security/data-desensitization.md b/docs/system-design/security/data-desensitization.md index 7261baab..7d86aedb 100644 --- a/docs/system-design/security/data-desensitization.md +++ b/docs/system-design/security/data-desensitization.md @@ -1,10 +1,12 @@ --- -title: 数据脱敏 +title: 数据脱敏方案总结 category: 系统设计 tag: - 安全 --- + + > 本文转载完善自[Hutool:一行代码搞定数据脱敏 - 京东云开发者](https://mp.weixin.qq.com/s/1qFWczesU50ndPPLtABHFg)。 ## 什么是数据脱敏 diff --git a/docs/system-design/security/design-of-authority-system.md b/docs/system-design/security/design-of-authority-system.md index 91252316..34f14e57 100644 --- a/docs/system-design/security/design-of-authority-system.md +++ b/docs/system-design/security/design-of-authority-system.md @@ -12,6 +12,8 @@ head: content: 基于角色的访问控制(Role-Based Access Control,简称 RBAC)指的是通过用户的角色(Role)授权其相关权限,实现了灵活的访问控制,相比直接授予用户权限,要更加简单、高效、可扩展。 --- + + > 作者:转转技术团队 > > 原文:https://mp.weixin.qq.com/s/ONMuELjdHYa0yQceTj01Iw diff --git a/docs/system-design/security/jwt-intro.md b/docs/system-design/security/jwt-intro.md index 4d3f47cf..8f6208fa 100644 --- a/docs/system-design/security/jwt-intro.md +++ b/docs/system-design/security/jwt-intro.md @@ -5,6 +5,8 @@ tag: - 安全 --- + + ## 什么是 JWT? JWT (JSON Web Token) 是目前最流行的跨域认证解决方案,是一种基于 Token 的认证授权机制。 从 JWT 的全称可以看出,JWT 本身也是 Token,一种规范化之后的 JSON 结构的 Token。 diff --git a/package.json b/package.json index dbac7758..58f13883 100644 --- a/package.json +++ b/package.json @@ -21,16 +21,16 @@ }, "packageManager": "pnpm@8.6.0", "dependencies": { - "@vuepress/client": "2.0.0-beta.62", - "@vuepress/utils": "2.0.0-beta.62", + "@vuepress/client": "2.0.0-beta.67", + "@vuepress/utils": "2.0.0-beta.67", "husky": "8.0.3", "markdownlint-cli": "0.34.0", "nano-staged": "0.8.0", "nodejs-jieba": "0.0.2", "prettier": "2.8.8", "vue": "3.3.4", - "vuepress": "2.0.0-beta.62", - "@vuepress/plugin-search": "2.0.0-beta.62", - "vuepress-theme-hope": "2.0.0-beta.221" + "vuepress": "2.0.0-beta.67", + "@vuepress/plugin-search": "2.0.0-beta.67", + "vuepress-theme-hope": "2.0.0-beta.236" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4387ed8e..6548d420 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -6,14 +6,14 @@ settings: dependencies: '@vuepress/client': - specifier: 2.0.0-beta.62 - version: registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 + specifier: 2.0.0-beta.67 + version: registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 '@vuepress/plugin-search': - specifier: 2.0.0-beta.62 - version: registry.npmmirror.com/@vuepress/plugin-search@2.0.0-beta.62 + specifier: 2.0.0-beta.67 + version: registry.npmmirror.com/@vuepress/plugin-search@2.0.0-beta.67 '@vuepress/utils': - specifier: 2.0.0-beta.62 - version: registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 + specifier: 2.0.0-beta.67 + version: registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 husky: specifier: 8.0.3 version: registry.npmmirror.com/husky@8.0.3 @@ -33,11 +33,11 @@ dependencies: specifier: 3.3.4 version: registry.npmmirror.com/vue@3.3.4 vuepress: - specifier: 2.0.0-beta.62 - version: registry.npmmirror.com/vuepress@2.0.0-beta.62(@vuepress/client@2.0.0-beta.62)(vue@3.3.4) + specifier: 2.0.0-beta.67 + version: registry.npmmirror.com/vuepress@2.0.0-beta.67(@vuepress/client@2.0.0-beta.67)(vue@3.3.4) vuepress-theme-hope: - specifier: 2.0.0-beta.221 - version: registry.npmmirror.com/vuepress-theme-hope@2.0.0-beta.221(vuepress@2.0.0-beta.62) + specifier: 2.0.0-beta.236 + version: registry.npmmirror.com/vuepress-theme-hope@2.0.0-beta.236(vuepress@2.0.0-beta.67) packages: @@ -66,54 +66,55 @@ packages: leven: registry.npmmirror.com/leven@3.1.0 dev: false - registry.npmmirror.com/@babel/code-frame@7.21.4: - resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.21.4.tgz} + registry.npmmirror.com/@babel/code-frame@7.22.13: + resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.22.13.tgz} name: '@babel/code-frame' - version: 7.21.4 + version: 7.22.13 engines: {node: '>=6.9.0'} dependencies: - '@babel/highlight': registry.npmmirror.com/@babel/highlight@7.18.6 + '@babel/highlight': registry.npmmirror.com/@babel/highlight@7.22.13 + chalk: registry.npmmirror.com/chalk@2.4.2 dev: false - registry.npmmirror.com/@babel/compat-data@7.22.3: - resolution: {integrity: sha512-aNtko9OPOwVESUFp3MZfD8Uzxl7JzSeJpd7npIoxCasU37PFbAQRpKglkaKwlHOyeJdrREpo8TW8ldrkYWwvIQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.22.3.tgz} + registry.npmmirror.com/@babel/compat-data@7.22.9: + resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.22.9.tgz} name: '@babel/compat-data' - version: 7.22.3 + version: 7.22.9 engines: {node: '>=6.9.0'} dev: false - registry.npmmirror.com/@babel/core@7.22.1: - resolution: {integrity: sha512-Hkqu7J4ynysSXxmAahpN1jjRwVJ+NdpraFLIWflgjpVob3KNyK3/tIUc7Q7szed8WMp0JNa7Qtd1E9Oo22F9gA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/core/-/core-7.22.1.tgz} + registry.npmmirror.com/@babel/core@7.22.11: + resolution: {integrity: sha512-lh7RJrtPdhibbxndr6/xx0w8+CVlY5FJZiaSz908Fpy+G0xkBFTvwLcKJFF4PJxVfGhVWNebikpWGnOoC71juQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/core/-/core-7.22.11.tgz} name: '@babel/core' - version: 7.22.1 + version: 7.22.11 engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': registry.npmmirror.com/@ampproject/remapping@2.2.1 - '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.21.4 - '@babel/generator': registry.npmmirror.com/@babel/generator@7.22.3 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.22.1(@babel/core@7.22.1) - '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.22.1 - '@babel/helpers': registry.npmmirror.com/@babel/helpers@7.22.3 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.4 - '@babel/template': registry.npmmirror.com/@babel/template@7.21.9 - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.22.4 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 + '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.22.13 + '@babel/generator': registry.npmmirror.com/@babel/generator@7.22.10 + '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.22.10 + '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.22.9(@babel/core@7.22.11) + '@babel/helpers': registry.npmmirror.com/@babel/helpers@7.22.11 + '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.14 + '@babel/template': registry.npmmirror.com/@babel/template@7.22.5 + '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.22.11 + '@babel/types': registry.npmmirror.com/@babel/types@7.22.11 convert-source-map: registry.npmmirror.com/convert-source-map@1.9.0 debug: registry.npmmirror.com/debug@4.3.4 gensync: registry.npmmirror.com/gensync@1.0.0-beta.2 json5: registry.npmmirror.com/json5@2.2.3 - semver: registry.npmmirror.com/semver@6.3.0 + semver: registry.npmmirror.com/semver@6.3.1 transitivePeerDependencies: - supports-color dev: false - registry.npmmirror.com/@babel/generator@7.22.3: - resolution: {integrity: sha512-C17MW4wlk//ES/CJDL51kPNwl+qiBQyN7b9SKyVp11BLGFeSPoVaHrv+MNt8jwQFhQWowW88z1eeBx3pFz9v8A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/generator/-/generator-7.22.3.tgz} + registry.npmmirror.com/@babel/generator@7.22.10: + resolution: {integrity: sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/generator/-/generator-7.22.10.tgz} name: '@babel/generator' - version: 7.22.3 + version: 7.22.10 engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 + '@babel/types': registry.npmmirror.com/@babel/types@7.22.11 '@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping@0.3.3 '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.18 jsesc: registry.npmmirror.com/jsesc@2.5.2 @@ -125,7 +126,7 @@ packages: version: 7.18.6 engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 + '@babel/types': registry.npmmirror.com/@babel/types@7.22.11 dev: false registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor@7.22.3: @@ -134,27 +135,23 @@ packages: version: 7.22.3 engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 + '@babel/types': registry.npmmirror.com/@babel/types@7.22.11 dev: false - registry.npmmirror.com/@babel/helper-compilation-targets@7.22.1(@babel/core@7.22.1): - resolution: {integrity: sha512-Rqx13UM3yVB5q0D/KwQ8+SPfX/+Rnsy1Lw1k/UwOC4KC6qrzIQoY3lYnBu5EHKBlEHHcj0M0W8ltPSkD8rqfsQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.1.tgz} - id: registry.npmmirror.com/@babel/helper-compilation-targets/7.22.1 + registry.npmmirror.com/@babel/helper-compilation-targets@7.22.10: + resolution: {integrity: sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz} name: '@babel/helper-compilation-targets' - version: 7.22.1 + version: 7.22.10 engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': registry.npmmirror.com/@babel/compat-data@7.22.3 - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option@7.21.0 - browserslist: registry.npmmirror.com/browserslist@4.21.7 + '@babel/compat-data': registry.npmmirror.com/@babel/compat-data@7.22.9 + '@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option@7.22.5 + browserslist: registry.npmmirror.com/browserslist@4.21.10 lru-cache: registry.npmmirror.com/lru-cache@5.1.1 - semver: registry.npmmirror.com/semver@6.3.0 + semver: registry.npmmirror.com/semver@6.3.1 dev: false - registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.1(@babel/core@7.22.1): + registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.1(@babel/core@7.22.11): resolution: {integrity: sha512-SowrZ9BWzYFgzUMwUmowbPSGu6CXL5MSuuCkG3bejahSpSymioPmuLdhPxNOc9MjuNGjy7M/HaXvJ8G82Lywlw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.1.tgz} id: registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.22.1 name: '@babel/helper-create-class-features-plugin' @@ -163,21 +160,21 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.18.6 - '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.1 - '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.21.0 + '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 + '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.22.5 '@babel/helper-member-expression-to-functions': registry.npmmirror.com/@babel/helper-member-expression-to-functions@7.22.3 '@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression@7.18.6 '@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers@7.22.1 '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers@7.20.0 - '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration@7.18.6 - semver: registry.npmmirror.com/semver@6.3.0 + '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration@7.22.6 + semver: registry.npmmirror.com/semver@6.3.1 transitivePeerDependencies: - supports-color dev: false - registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.1(@babel/core@7.22.1): + registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.1(@babel/core@7.22.11): resolution: {integrity: sha512-WWjdnfR3LPIe+0EY8td7WmjhytxXtjKAEpnAxun/hkNiyOaPlvGK+NZaBFIdi9ndYV3Gav7BpFvtUwnaJlwi1w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.1.tgz} id: registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.1 name: '@babel/helper-create-regexp-features-plugin' @@ -186,13 +183,13 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.18.6 regexpu-core: registry.npmmirror.com/regexpu-core@5.3.2 - semver: registry.npmmirror.com/semver@6.3.0 + semver: registry.npmmirror.com/semver@6.3.1 dev: false - registry.npmmirror.com/@babel/helper-define-polyfill-provider@0.4.0(@babel/core@7.22.1): + registry.npmmirror.com/@babel/helper-define-polyfill-provider@0.4.0(@babel/core@7.22.11): resolution: {integrity: sha512-RnanLx5ETe6aybRi1cO/edaRH+bNYWaryCEmjDDYyNr4wnSzyOp8T0dWipmqVHKEY3AbVKUom50AKSlj1zmKbg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.0.tgz} id: registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.4.0 name: '@babel/helper-define-polyfill-provider' @@ -200,41 +197,41 @@ packages: peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.22.1(@babel/core@7.22.1) + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 debug: registry.npmmirror.com/debug@4.3.4 lodash.debounce: registry.npmmirror.com/lodash.debounce@4.0.8 resolve: registry.npmmirror.com/resolve@1.22.2 - semver: registry.npmmirror.com/semver@6.3.0 + semver: registry.npmmirror.com/semver@6.3.1 transitivePeerDependencies: - supports-color dev: false - registry.npmmirror.com/@babel/helper-environment-visitor@7.22.1: - resolution: {integrity: sha512-Z2tgopurB/kTbidvzeBrc2To3PUP/9i5MUe+fU6QJCQDyPwSH2oRapkLw3KGECDYSjhQZCNxEvNvZlLw8JjGwA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.1.tgz} + registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5: + resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz} name: '@babel/helper-environment-visitor' - version: 7.22.1 + version: 7.22.5 engines: {node: '>=6.9.0'} dev: false - registry.npmmirror.com/@babel/helper-function-name@7.21.0: - resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz} + registry.npmmirror.com/@babel/helper-function-name@7.22.5: + resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz} name: '@babel/helper-function-name' - version: 7.21.0 + version: 7.22.5 engines: {node: '>=6.9.0'} dependencies: - '@babel/template': registry.npmmirror.com/@babel/template@7.21.9 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 + '@babel/template': registry.npmmirror.com/@babel/template@7.22.5 + '@babel/types': registry.npmmirror.com/@babel/types@7.22.11 dev: false - registry.npmmirror.com/@babel/helper-hoist-variables@7.18.6: - resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz} + registry.npmmirror.com/@babel/helper-hoist-variables@7.22.5: + resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz} name: '@babel/helper-hoist-variables' - version: 7.18.6 + version: 7.22.5 engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 + '@babel/types': registry.npmmirror.com/@babel/types@7.22.11 dev: false registry.npmmirror.com/@babel/helper-member-expression-to-functions@7.22.3: @@ -243,34 +240,33 @@ packages: version: 7.22.3 engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 + '@babel/types': registry.npmmirror.com/@babel/types@7.22.11 dev: false - registry.npmmirror.com/@babel/helper-module-imports@7.21.4: - resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz} + registry.npmmirror.com/@babel/helper-module-imports@7.22.5: + resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz} name: '@babel/helper-module-imports' - version: 7.21.4 + version: 7.22.5 engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 + '@babel/types': registry.npmmirror.com/@babel/types@7.22.11 dev: false - registry.npmmirror.com/@babel/helper-module-transforms@7.22.1: - resolution: {integrity: sha512-dxAe9E7ySDGbQdCVOY/4+UcD8M9ZFqZcZhSPsPacvCG4M+9lwtDDQfI2EoaSvmf7W/8yCBkGU0m7Pvt1ru3UZw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.1.tgz} + registry.npmmirror.com/@babel/helper-module-transforms@7.22.9(@babel/core@7.22.11): + resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz} + id: registry.npmmirror.com/@babel/helper-module-transforms/7.22.9 name: '@babel/helper-module-transforms' - version: 7.22.1 + version: 7.22.9 engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: - '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.1 - '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports@7.21.4 - '@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access@7.21.5 - '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration@7.18.6 - '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.19.1 - '@babel/template': registry.npmmirror.com/@babel/template@7.21.9 - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.22.4 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 - transitivePeerDependencies: - - supports-color + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 + '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports@7.22.5 + '@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access@7.22.5 + '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration@7.22.6 + '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.22.5 dev: false registry.npmmirror.com/@babel/helper-optimise-call-expression@7.18.6: @@ -279,7 +275,7 @@ packages: version: 7.18.6 engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 + '@babel/types': registry.npmmirror.com/@babel/types@7.22.11 dev: false registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5: @@ -289,7 +285,7 @@ packages: engines: {node: '>=6.9.0'} dev: false - registry.npmmirror.com/@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.22.1): + registry.npmmirror.com/@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.22.11): resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz} id: registry.npmmirror.com/@babel/helper-remap-async-to-generator/7.18.9 name: '@babel/helper-remap-async-to-generator' @@ -298,11 +294,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.18.6 - '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.1 + '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 '@babel/helper-wrap-function': registry.npmmirror.com/@babel/helper-wrap-function@7.20.5 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 + '@babel/types': registry.npmmirror.com/@babel/types@7.22.11 transitivePeerDependencies: - supports-color dev: false @@ -313,23 +309,23 @@ packages: version: 7.22.1 engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.1 + '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 '@babel/helper-member-expression-to-functions': registry.npmmirror.com/@babel/helper-member-expression-to-functions@7.22.3 '@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression@7.18.6 - '@babel/template': registry.npmmirror.com/@babel/template@7.21.9 - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.22.4 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 + '@babel/template': registry.npmmirror.com/@babel/template@7.22.5 + '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.22.11 + '@babel/types': registry.npmmirror.com/@babel/types@7.22.11 transitivePeerDependencies: - supports-color dev: false - registry.npmmirror.com/@babel/helper-simple-access@7.21.5: - resolution: {integrity: sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz} + registry.npmmirror.com/@babel/helper-simple-access@7.22.5: + resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz} name: '@babel/helper-simple-access' - version: 7.21.5 + version: 7.22.5 engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 + '@babel/types': registry.npmmirror.com/@babel/types@7.22.11 dev: false registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers@7.20.0: @@ -338,16 +334,16 @@ packages: version: 7.20.0 engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 + '@babel/types': registry.npmmirror.com/@babel/types@7.22.11 dev: false - registry.npmmirror.com/@babel/helper-split-export-declaration@7.18.6: - resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz} + registry.npmmirror.com/@babel/helper-split-export-declaration@7.22.6: + resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz} name: '@babel/helper-split-export-declaration' - version: 7.18.6 + version: 7.22.6 engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 + '@babel/types': registry.npmmirror.com/@babel/types@7.22.11 dev: false registry.npmmirror.com/@babel/helper-string-parser@7.21.5: @@ -357,6 +353,13 @@ packages: engines: {node: '>=6.9.0'} dev: false + registry.npmmirror.com/@babel/helper-string-parser@7.22.5: + resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz} + name: '@babel/helper-string-parser' + version: 7.22.5 + engines: {node: '>=6.9.0'} + dev: false + registry.npmmirror.com/@babel/helper-validator-identifier@7.19.1: resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz} name: '@babel/helper-validator-identifier' @@ -364,10 +367,17 @@ packages: engines: {node: '>=6.9.0'} dev: false - registry.npmmirror.com/@babel/helper-validator-option@7.21.0: - resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz} + registry.npmmirror.com/@babel/helper-validator-identifier@7.22.5: + resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz} + name: '@babel/helper-validator-identifier' + version: 7.22.5 + engines: {node: '>=6.9.0'} + dev: false + + registry.npmmirror.com/@babel/helper-validator-option@7.22.5: + resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz} name: '@babel/helper-validator-option' - version: 7.21.0 + version: 7.22.5 engines: {node: '>=6.9.0'} dev: false @@ -377,38 +387,48 @@ packages: version: 7.20.5 engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.21.0 - '@babel/template': registry.npmmirror.com/@babel/template@7.21.9 - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.22.4 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 + '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.22.5 + '@babel/template': registry.npmmirror.com/@babel/template@7.22.5 + '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.22.11 + '@babel/types': registry.npmmirror.com/@babel/types@7.22.11 transitivePeerDependencies: - supports-color dev: false - registry.npmmirror.com/@babel/helpers@7.22.3: - resolution: {integrity: sha512-jBJ7jWblbgr7r6wYZHMdIqKc73ycaTcCaWRq4/2LpuPHcx7xMlZvpGQkOYc9HeSjn6rcx15CPlgVcBtZ4WZJ2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helpers/-/helpers-7.22.3.tgz} + registry.npmmirror.com/@babel/helpers@7.22.11: + resolution: {integrity: sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helpers/-/helpers-7.22.11.tgz} name: '@babel/helpers' - version: 7.22.3 + version: 7.22.11 engines: {node: '>=6.9.0'} dependencies: - '@babel/template': registry.npmmirror.com/@babel/template@7.21.9 - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.22.4 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 + '@babel/template': registry.npmmirror.com/@babel/template@7.22.5 + '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.22.11 + '@babel/types': registry.npmmirror.com/@babel/types@7.22.11 transitivePeerDependencies: - supports-color dev: false - registry.npmmirror.com/@babel/highlight@7.18.6: - resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/highlight/-/highlight-7.18.6.tgz} + registry.npmmirror.com/@babel/highlight@7.22.13: + resolution: {integrity: sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/highlight/-/highlight-7.22.13.tgz} name: '@babel/highlight' - version: 7.18.6 + version: 7.22.13 engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.19.1 + '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.22.5 chalk: registry.npmmirror.com/chalk@2.4.2 js-tokens: registry.npmmirror.com/js-tokens@4.0.0 dev: false + registry.npmmirror.com/@babel/parser@7.22.14: + resolution: {integrity: sha512-1KucTHgOvaw/LzCVrEOAyXkr9rQlp0A1HiHRYnSUE9dmb8PvPW7o5sscg+5169r54n3vGlbx6GevTE/Iw/P3AQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.22.14.tgz} + name: '@babel/parser' + version: 7.22.14 + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': registry.npmmirror.com/@babel/types@7.22.11 + dev: false + registry.npmmirror.com/@babel/parser@7.22.4: resolution: {integrity: sha512-VLLsx06XkEYqBtE5YGPwfSGwfrjnyPP5oiGty3S8pQLFDFLaS8VwWSIxkTXpcvr5zeYLE6+MBNl2npl/YnfofA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.22.4.tgz} name: '@babel/parser' @@ -419,7 +439,7 @@ packages: '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 dev: false - registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz} id: registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6 name: '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression' @@ -428,11 +448,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.3(@babel/core@7.22.11): resolution: {integrity: sha512-6r4yRwEnorYByILoDRnEqxtojYKuiIv9FojW2E8GUKo9eWBwbKcd9IiZOZpdyXc64RmyGGyPu3/uAcrz/dq2kQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.3.tgz} id: registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.22.3 name: '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining' @@ -441,13 +461,13 @@ packages: peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers@7.20.0 - '@babel/plugin-transform-optional-chaining': registry.npmmirror.com/@babel/plugin-transform-optional-chaining@7.22.3(@babel/core@7.22.1) + '@babel/plugin-transform-optional-chaining': registry.npmmirror.com/@babel/plugin-transform-optional-chaining@7.22.3(@babel/core@7.22.11) dev: false - registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.22.11): resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.11.tgz} id: registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/7.21.11 name: '@babel/plugin-proposal-private-property-in-object' @@ -456,16 +476,16 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.18.6 - '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.1(@babel/core@7.22.1) + '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.1(@babel/core@7.22.11) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 - '@babel/plugin-syntax-private-property-in-object': registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.1) + '@babel/plugin-syntax-private-property-in-object': registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.11) transitivePeerDependencies: - supports-color dev: false - registry.npmmirror.com/@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz} id: registry.npmmirror.com/@babel/plugin-proposal-unicode-property-regex/7.18.6 name: '@babel/plugin-proposal-unicode-property-regex' @@ -474,12 +494,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.1(@babel/core@7.22.1) + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.1(@babel/core@7.22.11) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.11): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz} id: registry.npmmirror.com/@babel/plugin-syntax-async-generators/7.8.4 name: '@babel/plugin-syntax-async-generators' @@ -487,11 +507,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.11): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz} id: registry.npmmirror.com/@babel/plugin-syntax-class-properties/7.12.13 name: '@babel/plugin-syntax-class-properties' @@ -499,11 +519,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.11): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz} id: registry.npmmirror.com/@babel/plugin-syntax-class-static-block/7.14.5 name: '@babel/plugin-syntax-class-static-block' @@ -512,11 +532,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.11): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz} id: registry.npmmirror.com/@babel/plugin-syntax-dynamic-import/7.8.3 name: '@babel/plugin-syntax-dynamic-import' @@ -524,11 +544,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.11): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz} id: registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from/7.8.3 name: '@babel/plugin-syntax-export-namespace-from' @@ -536,11 +556,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.22.11): resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz} id: registry.npmmirror.com/@babel/plugin-syntax-import-assertions/7.20.0 name: '@babel/plugin-syntax-import-assertions' @@ -549,11 +569,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-syntax-import-attributes@7.22.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-syntax-import-attributes@7.22.3(@babel/core@7.22.11): resolution: {integrity: sha512-i35jZJv6aO7hxEbIWQ41adVfOzjm9dcYDNeWlBMd8p0ZQRtNUCBrmGwZt+H5lb+oOC9a3svp956KP0oWGA1YsA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.3.tgz} id: registry.npmmirror.com/@babel/plugin-syntax-import-attributes/7.22.3 name: '@babel/plugin-syntax-import-attributes' @@ -562,11 +582,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.11): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz} id: registry.npmmirror.com/@babel/plugin-syntax-import-meta/7.10.4 name: '@babel/plugin-syntax-import-meta' @@ -574,11 +594,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.11): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz} id: registry.npmmirror.com/@babel/plugin-syntax-json-strings/7.8.3 name: '@babel/plugin-syntax-json-strings' @@ -586,11 +606,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.11): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz} id: registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/7.10.4 name: '@babel/plugin-syntax-logical-assignment-operators' @@ -598,11 +618,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.11): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz} id: registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3 name: '@babel/plugin-syntax-nullish-coalescing-operator' @@ -610,11 +630,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.11): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz} id: registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/7.10.4 name: '@babel/plugin-syntax-numeric-separator' @@ -622,11 +642,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.11): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz} id: registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/7.8.3 name: '@babel/plugin-syntax-object-rest-spread' @@ -634,11 +654,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.11): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz} id: registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/7.8.3 name: '@babel/plugin-syntax-optional-catch-binding' @@ -646,11 +666,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.11): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz} id: registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/7.8.3 name: '@babel/plugin-syntax-optional-chaining' @@ -658,11 +678,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.11): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz} id: registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object/7.14.5 name: '@babel/plugin-syntax-private-property-in-object' @@ -671,11 +691,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.11): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz} id: registry.npmmirror.com/@babel/plugin-syntax-top-level-await/7.14.5 name: '@babel/plugin-syntax-top-level-await' @@ -684,11 +704,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz} id: registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex/7.18.6 name: '@babel/plugin-syntax-unicode-sets-regex' @@ -697,12 +717,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.1(@babel/core@7.22.1) + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.1(@babel/core@7.22.11) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-arrow-functions@7.21.5(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-arrow-functions@7.21.5(@babel/core@7.22.11): resolution: {integrity: sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.21.5.tgz} id: registry.npmmirror.com/@babel/plugin-transform-arrow-functions/7.21.5 name: '@babel/plugin-transform-arrow-functions' @@ -711,11 +731,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-async-generator-functions@7.22.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-async-generator-functions@7.22.3(@babel/core@7.22.11): resolution: {integrity: sha512-36A4Aq48t66btydbZd5Fk0/xJqbpg/v4QWI4AH4cYHBXy9Mu42UOupZpebKFiCFNT9S9rJFcsld0gsv0ayLjtA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.3.tgz} id: registry.npmmirror.com/@babel/plugin-transform-async-generator-functions/7.22.3 name: '@babel/plugin-transform-async-generator-functions' @@ -724,16 +744,16 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 - '@babel/helper-remap-async-to-generator': registry.npmmirror.com/@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.22.1) - '@babel/plugin-syntax-async-generators': registry.npmmirror.com/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.1) + '@babel/helper-remap-async-to-generator': registry.npmmirror.com/@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.22.11) + '@babel/plugin-syntax-async-generators': registry.npmmirror.com/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.11) transitivePeerDependencies: - supports-color dev: false - registry.npmmirror.com/@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.22.11): resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz} id: registry.npmmirror.com/@babel/plugin-transform-async-to-generator/7.20.7 name: '@babel/plugin-transform-async-to-generator' @@ -742,15 +762,15 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports@7.21.4 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports@7.22.5 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 - '@babel/helper-remap-async-to-generator': registry.npmmirror.com/@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.22.1) + '@babel/helper-remap-async-to-generator': registry.npmmirror.com/@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.22.11) transitivePeerDependencies: - supports-color dev: false - registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz} id: registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/7.18.6 name: '@babel/plugin-transform-block-scoped-functions' @@ -759,11 +779,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.22.11): resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz} id: registry.npmmirror.com/@babel/plugin-transform-block-scoping/7.21.0 name: '@babel/plugin-transform-block-scoping' @@ -772,11 +792,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-class-properties@7.22.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-class-properties@7.22.3(@babel/core@7.22.11): resolution: {integrity: sha512-mASLsd6rhOrLZ5F3WbCxkzl67mmOnqik0zrg5W6D/X0QMW7HtvnoL1dRARLKIbMP3vXwkwziuLesPqWVGIl6Bw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.3.tgz} id: registry.npmmirror.com/@babel/plugin-transform-class-properties/7.22.3 name: '@babel/plugin-transform-class-properties' @@ -785,14 +805,14 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.1(@babel/core@7.22.1) + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.1(@babel/core@7.22.11) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 transitivePeerDependencies: - supports-color dev: false - registry.npmmirror.com/@babel/plugin-transform-class-static-block@7.22.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-class-static-block@7.22.3(@babel/core@7.22.11): resolution: {integrity: sha512-5BirgNWNOx7cwbTJCOmKFJ1pZjwk5MUfMIwiBBvsirCJMZeQgs5pk6i1OlkVg+1Vef5LfBahFOrdCnAWvkVKMw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.3.tgz} id: registry.npmmirror.com/@babel/plugin-transform-class-static-block/7.22.3 name: '@babel/plugin-transform-class-static-block' @@ -801,15 +821,15 @@ packages: peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.1(@babel/core@7.22.1) + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.1(@babel/core@7.22.11) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 - '@babel/plugin-syntax-class-static-block': registry.npmmirror.com/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.1) + '@babel/plugin-syntax-class-static-block': registry.npmmirror.com/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.11) transitivePeerDependencies: - supports-color dev: false - registry.npmmirror.com/@babel/plugin-transform-classes@7.21.0(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-classes@7.21.0(@babel/core@7.22.11): resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz} id: registry.npmmirror.com/@babel/plugin-transform-classes/7.21.0 name: '@babel/plugin-transform-classes' @@ -818,21 +838,21 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.18.6 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.22.1(@babel/core@7.22.1) - '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.1 - '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.21.0 + '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.22.10 + '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 + '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.22.5 '@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression@7.18.6 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 '@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers@7.22.1 - '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration@7.18.6 + '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration@7.22.6 globals: registry.npmmirror.com/globals@11.12.0 transitivePeerDependencies: - supports-color dev: false - registry.npmmirror.com/@babel/plugin-transform-computed-properties@7.21.5(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-computed-properties@7.21.5(@babel/core@7.22.11): resolution: {integrity: sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.21.5.tgz} id: registry.npmmirror.com/@babel/plugin-transform-computed-properties/7.21.5 name: '@babel/plugin-transform-computed-properties' @@ -841,12 +861,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 - '@babel/template': registry.npmmirror.com/@babel/template@7.21.9 + '@babel/template': registry.npmmirror.com/@babel/template@7.22.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.22.11): resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz} id: registry.npmmirror.com/@babel/plugin-transform-destructuring/7.21.3 name: '@babel/plugin-transform-destructuring' @@ -855,11 +875,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz} id: registry.npmmirror.com/@babel/plugin-transform-dotall-regex/7.18.6 name: '@babel/plugin-transform-dotall-regex' @@ -868,12 +888,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.1(@babel/core@7.22.1) + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.1(@babel/core@7.22.11) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.22.11): resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz} id: registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/7.18.9 name: '@babel/plugin-transform-duplicate-keys' @@ -882,11 +902,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-dynamic-import@7.22.1(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-dynamic-import@7.22.1(@babel/core@7.22.11): resolution: {integrity: sha512-rlhWtONnVBPdmt+jeewS0qSnMz/3yLFrqAP8hHC6EDcrYRSyuz9f9yQhHvVn2Ad6+yO9fHXac5piudeYrInxwQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.1.tgz} id: registry.npmmirror.com/@babel/plugin-transform-dynamic-import/7.22.1 name: '@babel/plugin-transform-dynamic-import' @@ -895,12 +915,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 - '@babel/plugin-syntax-dynamic-import': registry.npmmirror.com/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.1) + '@babel/plugin-syntax-dynamic-import': registry.npmmirror.com/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.11) dev: false - registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz} id: registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/7.18.6 name: '@babel/plugin-transform-exponentiation-operator' @@ -909,12 +929,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-builder-binary-assignment-operator-visitor': registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor@7.22.3 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-export-namespace-from@7.22.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-export-namespace-from@7.22.3(@babel/core@7.22.11): resolution: {integrity: sha512-5Ti1cHLTDnt3vX61P9KZ5IG09bFXp4cDVFJIAeCZuxu9OXXJJZp5iP0n/rzM2+iAutJY+KWEyyHcRaHlpQ/P5g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.3.tgz} id: registry.npmmirror.com/@babel/plugin-transform-export-namespace-from/7.22.3 name: '@babel/plugin-transform-export-namespace-from' @@ -923,12 +943,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 - '@babel/plugin-syntax-export-namespace-from': registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.1) + '@babel/plugin-syntax-export-namespace-from': registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.11) dev: false - registry.npmmirror.com/@babel/plugin-transform-for-of@7.21.5(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-for-of@7.21.5(@babel/core@7.22.11): resolution: {integrity: sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.5.tgz} id: registry.npmmirror.com/@babel/plugin-transform-for-of/7.21.5 name: '@babel/plugin-transform-for-of' @@ -937,11 +957,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-function-name@7.18.9(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-function-name@7.18.9(@babel/core@7.22.11): resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz} id: registry.npmmirror.com/@babel/plugin-transform-function-name/7.18.9 name: '@babel/plugin-transform-function-name' @@ -950,13 +970,13 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.22.1(@babel/core@7.22.1) - '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.21.0 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.22.10 + '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.22.5 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-json-strings@7.22.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-json-strings@7.22.3(@babel/core@7.22.11): resolution: {integrity: sha512-IuvOMdeOOY2X4hRNAT6kwbePtK21BUyrAEgLKviL8pL6AEEVUVcqtRdN/HJXBLGIbt9T3ETmXRnFedRRmQNTYw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.3.tgz} id: registry.npmmirror.com/@babel/plugin-transform-json-strings/7.22.3 name: '@babel/plugin-transform-json-strings' @@ -965,12 +985,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 - '@babel/plugin-syntax-json-strings': registry.npmmirror.com/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.1) + '@babel/plugin-syntax-json-strings': registry.npmmirror.com/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.11) dev: false - registry.npmmirror.com/@babel/plugin-transform-literals@7.18.9(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-literals@7.18.9(@babel/core@7.22.11): resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz} id: registry.npmmirror.com/@babel/plugin-transform-literals/7.18.9 name: '@babel/plugin-transform-literals' @@ -979,11 +999,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators@7.22.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators@7.22.3(@babel/core@7.22.11): resolution: {integrity: sha512-CbayIfOw4av2v/HYZEsH+Klks3NC2/MFIR3QR8gnpGNNPEaq2fdlVCRYG/paKs7/5hvBLQ+H70pGWOHtlNEWNA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.3.tgz} id: registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators/7.22.3 name: '@babel/plugin-transform-logical-assignment-operators' @@ -992,12 +1012,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 - '@babel/plugin-syntax-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.1) + '@babel/plugin-syntax-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.11) dev: false - registry.npmmirror.com/@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz} id: registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/7.18.6 name: '@babel/plugin-transform-member-expression-literals' @@ -1006,11 +1026,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.22.11): resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz} id: registry.npmmirror.com/@babel/plugin-transform-modules-amd/7.20.11 name: '@babel/plugin-transform-modules-amd' @@ -1019,14 +1039,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.22.9(@babel/core@7.22.11) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 - transitivePeerDependencies: - - supports-color dev: false - registry.npmmirror.com/@babel/plugin-transform-modules-commonjs@7.21.5(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-modules-commonjs@7.21.5(@babel/core@7.22.11): resolution: {integrity: sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.5.tgz} id: registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/7.21.5 name: '@babel/plugin-transform-modules-commonjs' @@ -1035,15 +1053,13 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.22.9(@babel/core@7.22.11) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 - '@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access@7.21.5 - transitivePeerDependencies: - - supports-color + '@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access@7.22.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-modules-systemjs@7.22.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-modules-systemjs@7.22.3(@babel/core@7.22.11): resolution: {integrity: sha512-V21W3bKLxO3ZjcBJZ8biSvo5gQ85uIXW2vJfh7JSWf/4SLUSr1tOoHX3ruN4+Oqa2m+BKfsxTR1I+PsvkIWvNw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.3.tgz} id: registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/7.22.3 name: '@babel/plugin-transform-modules-systemjs' @@ -1052,16 +1068,14 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables@7.18.6 - '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables@7.22.5 + '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.22.9(@babel/core@7.22.11) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 - '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.19.1 - transitivePeerDependencies: - - supports-color + '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.22.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz} id: registry.npmmirror.com/@babel/plugin-transform-modules-umd/7.18.6 name: '@babel/plugin-transform-modules-umd' @@ -1070,14 +1084,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.22.9(@babel/core@7.22.11) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 - transitivePeerDependencies: - - supports-color dev: false - registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex@7.22.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex@7.22.3(@babel/core@7.22.11): resolution: {integrity: sha512-c6HrD/LpUdNNJsISQZpds3TXvfYIAbo+efE9aWmY/PmSRD0agrJ9cPMt4BmArwUQ7ZymEWTFjTyp+yReLJZh0Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.3.tgz} id: registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/7.22.3 name: '@babel/plugin-transform-named-capturing-groups-regex' @@ -1086,12 +1098,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.1(@babel/core@7.22.1) + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.1(@babel/core@7.22.11) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-new-target@7.22.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-new-target@7.22.3(@babel/core@7.22.11): resolution: {integrity: sha512-5RuJdSo89wKdkRTqtM9RVVJzHum9c2s0te9rB7vZC1zKKxcioWIy+xcu4OoIAjyFZhb/bp5KkunuLin1q7Ct+w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.3.tgz} id: registry.npmmirror.com/@babel/plugin-transform-new-target/7.22.3 name: '@babel/plugin-transform-new-target' @@ -1100,11 +1112,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator@7.22.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator@7.22.3(@babel/core@7.22.11): resolution: {integrity: sha512-CpaoNp16nX7ROtLONNuCyenYdY/l7ZsR6aoVa7rW7nMWisoNoQNIH5Iay/4LDyRjKMuElMqXiBoOQCDLTMGZiw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.3.tgz} id: registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator/7.22.3 name: '@babel/plugin-transform-nullish-coalescing-operator' @@ -1113,12 +1125,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 - '@babel/plugin-syntax-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.1) + '@babel/plugin-syntax-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.11) dev: false - registry.npmmirror.com/@babel/plugin-transform-numeric-separator@7.22.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-numeric-separator@7.22.3(@babel/core@7.22.11): resolution: {integrity: sha512-+AF88fPDJrnseMh5vD9+SH6wq4ZMvpiTMHh58uLs+giMEyASFVhcT3NkoyO+NebFCNnpHJEq5AXO2txV4AGPDQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.3.tgz} id: registry.npmmirror.com/@babel/plugin-transform-numeric-separator/7.22.3 name: '@babel/plugin-transform-numeric-separator' @@ -1127,12 +1139,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 - '@babel/plugin-syntax-numeric-separator': registry.npmmirror.com/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.1) + '@babel/plugin-syntax-numeric-separator': registry.npmmirror.com/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.11) dev: false - registry.npmmirror.com/@babel/plugin-transform-object-rest-spread@7.22.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-object-rest-spread@7.22.3(@babel/core@7.22.11): resolution: {integrity: sha512-38bzTsqMMCI46/TQnJwPPpy33EjLCc1Gsm2hRTF6zTMWnKsN61vdrpuzIEGQyKEhDSYDKyZHrrd5FMj4gcUHhw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.3.tgz} id: registry.npmmirror.com/@babel/plugin-transform-object-rest-spread/7.22.3 name: '@babel/plugin-transform-object-rest-spread' @@ -1141,15 +1153,15 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': registry.npmmirror.com/@babel/compat-data@7.22.3 - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.22.1(@babel/core@7.22.1) + '@babel/compat-data': registry.npmmirror.com/@babel/compat-data@7.22.9 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 - '@babel/plugin-syntax-object-rest-spread': registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.1) - '@babel/plugin-transform-parameters': registry.npmmirror.com/@babel/plugin-transform-parameters@7.22.3(@babel/core@7.22.1) + '@babel/plugin-syntax-object-rest-spread': registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.11) + '@babel/plugin-transform-parameters': registry.npmmirror.com/@babel/plugin-transform-parameters@7.22.3(@babel/core@7.22.11) dev: false - registry.npmmirror.com/@babel/plugin-transform-object-super@7.18.6(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-object-super@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz} id: registry.npmmirror.com/@babel/plugin-transform-object-super/7.18.6 name: '@babel/plugin-transform-object-super' @@ -1158,14 +1170,14 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 '@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers@7.22.1 transitivePeerDependencies: - supports-color dev: false - registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding@7.22.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding@7.22.3(@babel/core@7.22.11): resolution: {integrity: sha512-bnDFWXFzWY0BsOyqaoSXvMQ2F35zutQipugog/rqotL2S4ciFOKlRYUu9djt4iq09oh2/34hqfRR2k1dIvuu4g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.3.tgz} id: registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding/7.22.3 name: '@babel/plugin-transform-optional-catch-binding' @@ -1174,12 +1186,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 - '@babel/plugin-syntax-optional-catch-binding': registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.1) + '@babel/plugin-syntax-optional-catch-binding': registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.11) dev: false - registry.npmmirror.com/@babel/plugin-transform-optional-chaining@7.22.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-optional-chaining@7.22.3(@babel/core@7.22.11): resolution: {integrity: sha512-63v3/UFFxhPKT8j8u1jTTGVyITxl7/7AfOqK8C5gz1rHURPUGe3y5mvIf68eYKGoBNahtJnTxBKug4BQOnzeJg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.3.tgz} id: registry.npmmirror.com/@babel/plugin-transform-optional-chaining/7.22.3 name: '@babel/plugin-transform-optional-chaining' @@ -1188,13 +1200,13 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers@7.20.0 - '@babel/plugin-syntax-optional-chaining': registry.npmmirror.com/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.1) + '@babel/plugin-syntax-optional-chaining': registry.npmmirror.com/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.11) dev: false - registry.npmmirror.com/@babel/plugin-transform-parameters@7.22.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-parameters@7.22.3(@babel/core@7.22.11): resolution: {integrity: sha512-x7QHQJHPuD9VmfpzboyGJ5aHEr9r7DsAsdxdhJiTB3J3j8dyl+NFZ+rX5Q2RWFDCs61c06qBfS4ys2QYn8UkMw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.3.tgz} id: registry.npmmirror.com/@babel/plugin-transform-parameters/7.22.3 name: '@babel/plugin-transform-parameters' @@ -1203,11 +1215,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-private-methods@7.22.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-private-methods@7.22.3(@babel/core@7.22.11): resolution: {integrity: sha512-fC7jtjBPFqhqpPAE+O4LKwnLq7gGkD3ZmC2E3i4qWH34mH3gOg2Xrq5YMHUq6DM30xhqM1DNftiRaSqVjEG+ug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.3.tgz} id: registry.npmmirror.com/@babel/plugin-transform-private-methods/7.22.3 name: '@babel/plugin-transform-private-methods' @@ -1216,14 +1228,14 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.1(@babel/core@7.22.1) + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.1(@babel/core@7.22.11) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 transitivePeerDependencies: - supports-color dev: false - registry.npmmirror.com/@babel/plugin-transform-private-property-in-object@7.22.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-private-property-in-object@7.22.3(@babel/core@7.22.11): resolution: {integrity: sha512-C7MMl4qWLpgVCbXfj3UW8rR1xeCnisQ0cU7YJHV//8oNBS0aCIVg1vFnZXxOckHhEpQyqNNkWmvSEWnMLlc+Vw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.3.tgz} id: registry.npmmirror.com/@babel/plugin-transform-private-property-in-object/7.22.3 name: '@babel/plugin-transform-private-property-in-object' @@ -1232,16 +1244,16 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.18.6 - '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.1(@babel/core@7.22.1) + '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.1(@babel/core@7.22.11) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 - '@babel/plugin-syntax-private-property-in-object': registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.1) + '@babel/plugin-syntax-private-property-in-object': registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.11) transitivePeerDependencies: - supports-color dev: false - registry.npmmirror.com/@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz} id: registry.npmmirror.com/@babel/plugin-transform-property-literals/7.18.6 name: '@babel/plugin-transform-property-literals' @@ -1250,11 +1262,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-regenerator@7.21.5(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-regenerator@7.21.5(@babel/core@7.22.11): resolution: {integrity: sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.21.5.tgz} id: registry.npmmirror.com/@babel/plugin-transform-regenerator/7.21.5 name: '@babel/plugin-transform-regenerator' @@ -1263,12 +1275,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 regenerator-transform: registry.npmmirror.com/regenerator-transform@0.15.1 dev: false - registry.npmmirror.com/@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz} id: registry.npmmirror.com/@babel/plugin-transform-reserved-words/7.18.6 name: '@babel/plugin-transform-reserved-words' @@ -1277,11 +1289,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz} id: registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/7.18.6 name: '@babel/plugin-transform-shorthand-properties' @@ -1290,11 +1302,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-spread@7.20.7(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-spread@7.20.7(@babel/core@7.22.11): resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz} id: registry.npmmirror.com/@babel/plugin-transform-spread/7.20.7 name: '@babel/plugin-transform-spread' @@ -1303,12 +1315,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers@7.20.0 dev: false - registry.npmmirror.com/@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz} id: registry.npmmirror.com/@babel/plugin-transform-sticky-regex/7.18.6 name: '@babel/plugin-transform-sticky-regex' @@ -1317,11 +1329,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.22.11): resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz} id: registry.npmmirror.com/@babel/plugin-transform-template-literals/7.18.9 name: '@babel/plugin-transform-template-literals' @@ -1330,11 +1342,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.22.11): resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz} id: registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/7.18.9 name: '@babel/plugin-transform-typeof-symbol' @@ -1343,11 +1355,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-unicode-escapes@7.21.5(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-unicode-escapes@7.21.5(@babel/core@7.22.11): resolution: {integrity: sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.21.5.tgz} id: registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/7.21.5 name: '@babel/plugin-transform-unicode-escapes' @@ -1356,11 +1368,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex@7.22.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex@7.22.3(@babel/core@7.22.11): resolution: {integrity: sha512-5ScJ+OmdX+O6HRuMGW4kv7RL9vIKdtdAj9wuWUKy1wbHY3jaM/UlyIiC1G7J6UJiiyMukjjK0QwL3P0vBd0yYg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.3.tgz} id: registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex/7.22.3 name: '@babel/plugin-transform-unicode-property-regex' @@ -1369,12 +1381,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.1(@babel/core@7.22.1) + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.1(@babel/core@7.22.11) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz} id: registry.npmmirror.com/@babel/plugin-transform-unicode-regex/7.18.6 name: '@babel/plugin-transform-unicode-regex' @@ -1383,12 +1395,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.1(@babel/core@7.22.1) + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.1(@babel/core@7.22.11) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex@7.22.3(@babel/core@7.22.1): + registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex@7.22.3(@babel/core@7.22.11): resolution: {integrity: sha512-hNufLdkF8vqywRp+P55j4FHXqAX2LRUccoZHH7AFn1pq5ZOO2ISKW9w13bFZVjBoTqeve2HOgoJCcaziJVhGNw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.3.tgz} id: registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex/7.22.3 name: '@babel/plugin-transform-unicode-sets-regex' @@ -1397,12 +1409,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.1(@babel/core@7.22.1) + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.1(@babel/core@7.22.11) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 dev: false - registry.npmmirror.com/@babel/preset-env@7.22.4(@babel/core@7.22.1): + registry.npmmirror.com/@babel/preset-env@7.22.4(@babel/core@7.22.11): resolution: {integrity: sha512-c3lHOjbwBv0TkhYCr+XCR6wKcSZ1QbQTVdSkZUaVpLv8CVWotBMArWUi5UAJrcrQaEnleVkkvaV8F/pmc/STZQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/preset-env/-/preset-env-7.22.4.tgz} id: registry.npmmirror.com/@babel/preset-env/7.22.4 name: '@babel/preset-env' @@ -1411,92 +1423,92 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': registry.npmmirror.com/@babel/compat-data@7.22.3 - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.22.1(@babel/core@7.22.1) + '@babel/compat-data': registry.npmmirror.com/@babel/compat-data@7.22.9 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 - '@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option@7.21.0 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.22.1) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.3(@babel/core@7.22.1) - '@babel/plugin-proposal-private-property-in-object': registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.22.1) - '@babel/plugin-syntax-async-generators': registry.npmmirror.com/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.1) - '@babel/plugin-syntax-class-properties': registry.npmmirror.com/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.1) - '@babel/plugin-syntax-class-static-block': registry.npmmirror.com/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.1) - '@babel/plugin-syntax-dynamic-import': registry.npmmirror.com/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.1) - '@babel/plugin-syntax-export-namespace-from': registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.1) - '@babel/plugin-syntax-import-assertions': registry.npmmirror.com/@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.22.1) - '@babel/plugin-syntax-import-attributes': registry.npmmirror.com/@babel/plugin-syntax-import-attributes@7.22.3(@babel/core@7.22.1) - '@babel/plugin-syntax-import-meta': registry.npmmirror.com/@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.1) - '@babel/plugin-syntax-json-strings': registry.npmmirror.com/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.1) - '@babel/plugin-syntax-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.1) - '@babel/plugin-syntax-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.1) - '@babel/plugin-syntax-numeric-separator': registry.npmmirror.com/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.1) - '@babel/plugin-syntax-object-rest-spread': registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.1) - '@babel/plugin-syntax-optional-catch-binding': registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.1) - '@babel/plugin-syntax-optional-chaining': registry.npmmirror.com/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.1) - '@babel/plugin-syntax-private-property-in-object': registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.1) - '@babel/plugin-syntax-top-level-await': registry.npmmirror.com/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.1) - '@babel/plugin-syntax-unicode-sets-regex': registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.1) - '@babel/plugin-transform-arrow-functions': registry.npmmirror.com/@babel/plugin-transform-arrow-functions@7.21.5(@babel/core@7.22.1) - '@babel/plugin-transform-async-generator-functions': registry.npmmirror.com/@babel/plugin-transform-async-generator-functions@7.22.3(@babel/core@7.22.1) - '@babel/plugin-transform-async-to-generator': registry.npmmirror.com/@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.22.1) - '@babel/plugin-transform-block-scoped-functions': registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.22.1) - '@babel/plugin-transform-block-scoping': registry.npmmirror.com/@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.22.1) - '@babel/plugin-transform-class-properties': registry.npmmirror.com/@babel/plugin-transform-class-properties@7.22.3(@babel/core@7.22.1) - '@babel/plugin-transform-class-static-block': registry.npmmirror.com/@babel/plugin-transform-class-static-block@7.22.3(@babel/core@7.22.1) - '@babel/plugin-transform-classes': registry.npmmirror.com/@babel/plugin-transform-classes@7.21.0(@babel/core@7.22.1) - '@babel/plugin-transform-computed-properties': registry.npmmirror.com/@babel/plugin-transform-computed-properties@7.21.5(@babel/core@7.22.1) - '@babel/plugin-transform-destructuring': registry.npmmirror.com/@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.22.1) - '@babel/plugin-transform-dotall-regex': registry.npmmirror.com/@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.22.1) - '@babel/plugin-transform-duplicate-keys': registry.npmmirror.com/@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.22.1) - '@babel/plugin-transform-dynamic-import': registry.npmmirror.com/@babel/plugin-transform-dynamic-import@7.22.1(@babel/core@7.22.1) - '@babel/plugin-transform-exponentiation-operator': registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.22.1) - '@babel/plugin-transform-export-namespace-from': registry.npmmirror.com/@babel/plugin-transform-export-namespace-from@7.22.3(@babel/core@7.22.1) - '@babel/plugin-transform-for-of': registry.npmmirror.com/@babel/plugin-transform-for-of@7.21.5(@babel/core@7.22.1) - '@babel/plugin-transform-function-name': registry.npmmirror.com/@babel/plugin-transform-function-name@7.18.9(@babel/core@7.22.1) - '@babel/plugin-transform-json-strings': registry.npmmirror.com/@babel/plugin-transform-json-strings@7.22.3(@babel/core@7.22.1) - '@babel/plugin-transform-literals': registry.npmmirror.com/@babel/plugin-transform-literals@7.18.9(@babel/core@7.22.1) - '@babel/plugin-transform-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators@7.22.3(@babel/core@7.22.1) - '@babel/plugin-transform-member-expression-literals': registry.npmmirror.com/@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.22.1) - '@babel/plugin-transform-modules-amd': registry.npmmirror.com/@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.22.1) - '@babel/plugin-transform-modules-commonjs': registry.npmmirror.com/@babel/plugin-transform-modules-commonjs@7.21.5(@babel/core@7.22.1) - '@babel/plugin-transform-modules-systemjs': registry.npmmirror.com/@babel/plugin-transform-modules-systemjs@7.22.3(@babel/core@7.22.1) - '@babel/plugin-transform-modules-umd': registry.npmmirror.com/@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.22.1) - '@babel/plugin-transform-named-capturing-groups-regex': registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex@7.22.3(@babel/core@7.22.1) - '@babel/plugin-transform-new-target': registry.npmmirror.com/@babel/plugin-transform-new-target@7.22.3(@babel/core@7.22.1) - '@babel/plugin-transform-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator@7.22.3(@babel/core@7.22.1) - '@babel/plugin-transform-numeric-separator': registry.npmmirror.com/@babel/plugin-transform-numeric-separator@7.22.3(@babel/core@7.22.1) - '@babel/plugin-transform-object-rest-spread': registry.npmmirror.com/@babel/plugin-transform-object-rest-spread@7.22.3(@babel/core@7.22.1) - '@babel/plugin-transform-object-super': registry.npmmirror.com/@babel/plugin-transform-object-super@7.18.6(@babel/core@7.22.1) - '@babel/plugin-transform-optional-catch-binding': registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding@7.22.3(@babel/core@7.22.1) - '@babel/plugin-transform-optional-chaining': registry.npmmirror.com/@babel/plugin-transform-optional-chaining@7.22.3(@babel/core@7.22.1) - '@babel/plugin-transform-parameters': registry.npmmirror.com/@babel/plugin-transform-parameters@7.22.3(@babel/core@7.22.1) - '@babel/plugin-transform-private-methods': registry.npmmirror.com/@babel/plugin-transform-private-methods@7.22.3(@babel/core@7.22.1) - '@babel/plugin-transform-private-property-in-object': registry.npmmirror.com/@babel/plugin-transform-private-property-in-object@7.22.3(@babel/core@7.22.1) - '@babel/plugin-transform-property-literals': registry.npmmirror.com/@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.22.1) - '@babel/plugin-transform-regenerator': registry.npmmirror.com/@babel/plugin-transform-regenerator@7.21.5(@babel/core@7.22.1) - '@babel/plugin-transform-reserved-words': registry.npmmirror.com/@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.22.1) - '@babel/plugin-transform-shorthand-properties': registry.npmmirror.com/@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.22.1) - '@babel/plugin-transform-spread': registry.npmmirror.com/@babel/plugin-transform-spread@7.20.7(@babel/core@7.22.1) - '@babel/plugin-transform-sticky-regex': registry.npmmirror.com/@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.22.1) - '@babel/plugin-transform-template-literals': registry.npmmirror.com/@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.22.1) - '@babel/plugin-transform-typeof-symbol': registry.npmmirror.com/@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.22.1) - '@babel/plugin-transform-unicode-escapes': registry.npmmirror.com/@babel/plugin-transform-unicode-escapes@7.21.5(@babel/core@7.22.1) - '@babel/plugin-transform-unicode-property-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex@7.22.3(@babel/core@7.22.1) - '@babel/plugin-transform-unicode-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.22.1) - '@babel/plugin-transform-unicode-sets-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex@7.22.3(@babel/core@7.22.1) - '@babel/preset-modules': registry.npmmirror.com/@babel/preset-modules@0.1.5(@babel/core@7.22.1) - '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 - babel-plugin-polyfill-corejs2: registry.npmmirror.com/babel-plugin-polyfill-corejs2@0.4.3(@babel/core@7.22.1) - babel-plugin-polyfill-corejs3: registry.npmmirror.com/babel-plugin-polyfill-corejs3@0.8.1(@babel/core@7.22.1) - babel-plugin-polyfill-regenerator: registry.npmmirror.com/babel-plugin-polyfill-regenerator@0.5.0(@babel/core@7.22.1) + '@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option@7.22.5 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.22.11) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.3(@babel/core@7.22.11) + '@babel/plugin-proposal-private-property-in-object': registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.22.11) + '@babel/plugin-syntax-async-generators': registry.npmmirror.com/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.11) + '@babel/plugin-syntax-class-properties': registry.npmmirror.com/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.11) + '@babel/plugin-syntax-class-static-block': registry.npmmirror.com/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.11) + '@babel/plugin-syntax-dynamic-import': registry.npmmirror.com/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-export-namespace-from': registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-import-assertions': registry.npmmirror.com/@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.22.11) + '@babel/plugin-syntax-import-attributes': registry.npmmirror.com/@babel/plugin-syntax-import-attributes@7.22.3(@babel/core@7.22.11) + '@babel/plugin-syntax-import-meta': registry.npmmirror.com/@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.11) + '@babel/plugin-syntax-json-strings': registry.npmmirror.com/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.11) + '@babel/plugin-syntax-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-numeric-separator': registry.npmmirror.com/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.11) + '@babel/plugin-syntax-object-rest-spread': registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-optional-catch-binding': registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-optional-chaining': registry.npmmirror.com/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-private-property-in-object': registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.11) + '@babel/plugin-syntax-top-level-await': registry.npmmirror.com/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.11) + '@babel/plugin-syntax-unicode-sets-regex': registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-arrow-functions': registry.npmmirror.com/@babel/plugin-transform-arrow-functions@7.21.5(@babel/core@7.22.11) + '@babel/plugin-transform-async-generator-functions': registry.npmmirror.com/@babel/plugin-transform-async-generator-functions@7.22.3(@babel/core@7.22.11) + '@babel/plugin-transform-async-to-generator': registry.npmmirror.com/@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.22.11) + '@babel/plugin-transform-block-scoped-functions': registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-block-scoping': registry.npmmirror.com/@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.22.11) + '@babel/plugin-transform-class-properties': registry.npmmirror.com/@babel/plugin-transform-class-properties@7.22.3(@babel/core@7.22.11) + '@babel/plugin-transform-class-static-block': registry.npmmirror.com/@babel/plugin-transform-class-static-block@7.22.3(@babel/core@7.22.11) + '@babel/plugin-transform-classes': registry.npmmirror.com/@babel/plugin-transform-classes@7.21.0(@babel/core@7.22.11) + '@babel/plugin-transform-computed-properties': registry.npmmirror.com/@babel/plugin-transform-computed-properties@7.21.5(@babel/core@7.22.11) + '@babel/plugin-transform-destructuring': registry.npmmirror.com/@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.22.11) + '@babel/plugin-transform-dotall-regex': registry.npmmirror.com/@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-duplicate-keys': registry.npmmirror.com/@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.22.11) + '@babel/plugin-transform-dynamic-import': registry.npmmirror.com/@babel/plugin-transform-dynamic-import@7.22.1(@babel/core@7.22.11) + '@babel/plugin-transform-exponentiation-operator': registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-export-namespace-from': registry.npmmirror.com/@babel/plugin-transform-export-namespace-from@7.22.3(@babel/core@7.22.11) + '@babel/plugin-transform-for-of': registry.npmmirror.com/@babel/plugin-transform-for-of@7.21.5(@babel/core@7.22.11) + '@babel/plugin-transform-function-name': registry.npmmirror.com/@babel/plugin-transform-function-name@7.18.9(@babel/core@7.22.11) + '@babel/plugin-transform-json-strings': registry.npmmirror.com/@babel/plugin-transform-json-strings@7.22.3(@babel/core@7.22.11) + '@babel/plugin-transform-literals': registry.npmmirror.com/@babel/plugin-transform-literals@7.18.9(@babel/core@7.22.11) + '@babel/plugin-transform-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators@7.22.3(@babel/core@7.22.11) + '@babel/plugin-transform-member-expression-literals': registry.npmmirror.com/@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-modules-amd': registry.npmmirror.com/@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.22.11) + '@babel/plugin-transform-modules-commonjs': registry.npmmirror.com/@babel/plugin-transform-modules-commonjs@7.21.5(@babel/core@7.22.11) + '@babel/plugin-transform-modules-systemjs': registry.npmmirror.com/@babel/plugin-transform-modules-systemjs@7.22.3(@babel/core@7.22.11) + '@babel/plugin-transform-modules-umd': registry.npmmirror.com/@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-named-capturing-groups-regex': registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex@7.22.3(@babel/core@7.22.11) + '@babel/plugin-transform-new-target': registry.npmmirror.com/@babel/plugin-transform-new-target@7.22.3(@babel/core@7.22.11) + '@babel/plugin-transform-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator@7.22.3(@babel/core@7.22.11) + '@babel/plugin-transform-numeric-separator': registry.npmmirror.com/@babel/plugin-transform-numeric-separator@7.22.3(@babel/core@7.22.11) + '@babel/plugin-transform-object-rest-spread': registry.npmmirror.com/@babel/plugin-transform-object-rest-spread@7.22.3(@babel/core@7.22.11) + '@babel/plugin-transform-object-super': registry.npmmirror.com/@babel/plugin-transform-object-super@7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-optional-catch-binding': registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding@7.22.3(@babel/core@7.22.11) + '@babel/plugin-transform-optional-chaining': registry.npmmirror.com/@babel/plugin-transform-optional-chaining@7.22.3(@babel/core@7.22.11) + '@babel/plugin-transform-parameters': registry.npmmirror.com/@babel/plugin-transform-parameters@7.22.3(@babel/core@7.22.11) + '@babel/plugin-transform-private-methods': registry.npmmirror.com/@babel/plugin-transform-private-methods@7.22.3(@babel/core@7.22.11) + '@babel/plugin-transform-private-property-in-object': registry.npmmirror.com/@babel/plugin-transform-private-property-in-object@7.22.3(@babel/core@7.22.11) + '@babel/plugin-transform-property-literals': registry.npmmirror.com/@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-regenerator': registry.npmmirror.com/@babel/plugin-transform-regenerator@7.21.5(@babel/core@7.22.11) + '@babel/plugin-transform-reserved-words': registry.npmmirror.com/@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-shorthand-properties': registry.npmmirror.com/@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-spread': registry.npmmirror.com/@babel/plugin-transform-spread@7.20.7(@babel/core@7.22.11) + '@babel/plugin-transform-sticky-regex': registry.npmmirror.com/@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-template-literals': registry.npmmirror.com/@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.22.11) + '@babel/plugin-transform-typeof-symbol': registry.npmmirror.com/@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.22.11) + '@babel/plugin-transform-unicode-escapes': registry.npmmirror.com/@babel/plugin-transform-unicode-escapes@7.21.5(@babel/core@7.22.11) + '@babel/plugin-transform-unicode-property-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex@7.22.3(@babel/core@7.22.11) + '@babel/plugin-transform-unicode-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-unicode-sets-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex@7.22.3(@babel/core@7.22.11) + '@babel/preset-modules': registry.npmmirror.com/@babel/preset-modules@0.1.5(@babel/core@7.22.11) + '@babel/types': registry.npmmirror.com/@babel/types@7.22.11 + babel-plugin-polyfill-corejs2: registry.npmmirror.com/babel-plugin-polyfill-corejs2@0.4.3(@babel/core@7.22.11) + babel-plugin-polyfill-corejs3: registry.npmmirror.com/babel-plugin-polyfill-corejs3@0.8.1(@babel/core@7.22.11) + babel-plugin-polyfill-regenerator: registry.npmmirror.com/babel-plugin-polyfill-regenerator@0.5.0(@babel/core@7.22.11) core-js-compat: registry.npmmirror.com/core-js-compat@3.30.2 - semver: registry.npmmirror.com/semver@6.3.0 + semver: registry.npmmirror.com/semver@6.3.1 transitivePeerDependencies: - supports-color dev: false - registry.npmmirror.com/@babel/preset-modules@0.1.5(@babel/core@7.22.1): + registry.npmmirror.com/@babel/preset-modules@0.1.5(@babel/core@7.22.11): resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz} id: registry.npmmirror.com/@babel/preset-modules/0.1.5 name: '@babel/preset-modules' @@ -1504,11 +1516,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.21.5 - '@babel/plugin-proposal-unicode-property-regex': registry.npmmirror.com/@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.1) - '@babel/plugin-transform-dotall-regex': registry.npmmirror.com/@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.22.1) - '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 + '@babel/plugin-proposal-unicode-property-regex': registry.npmmirror.com/@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-dotall-regex': registry.npmmirror.com/@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.22.11) + '@babel/types': registry.npmmirror.com/@babel/types@7.22.11 esutils: registry.npmmirror.com/esutils@2.0.3 dev: false @@ -1527,37 +1539,48 @@ packages: regenerator-runtime: registry.npmmirror.com/regenerator-runtime@0.13.11 dev: false - registry.npmmirror.com/@babel/template@7.21.9: - resolution: {integrity: sha512-MK0X5k8NKOuWRamiEfc3KEJiHMTkGZNUjzMipqCGDDc6ijRl/B7RGSKVGncu4Ro/HdyzzY6cmoXuKI2Gffk7vQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/template/-/template-7.21.9.tgz} + registry.npmmirror.com/@babel/template@7.22.5: + resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/template/-/template-7.22.5.tgz} name: '@babel/template' - version: 7.21.9 + version: 7.22.5 engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.21.4 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.4 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 + '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.22.13 + '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.14 + '@babel/types': registry.npmmirror.com/@babel/types@7.22.11 dev: false - registry.npmmirror.com/@babel/traverse@7.22.4: - resolution: {integrity: sha512-Tn1pDsjIcI+JcLKq1AVlZEr4226gpuAQTsLMorsYg9tuS/kG7nuwwJ4AB8jfQuEgb/COBwR/DqJxmoiYFu5/rQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/traverse/-/traverse-7.22.4.tgz} + registry.npmmirror.com/@babel/traverse@7.22.11: + resolution: {integrity: sha512-mzAenteTfomcB7mfPtyi+4oe5BZ6MXxWcn4CX+h4IRJ+OOGXBrWU6jDQavkQI9Vuc5P+donFabBfFCcmWka9lQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/traverse/-/traverse-7.22.11.tgz} name: '@babel/traverse' - version: 7.22.4 + version: 7.22.11 engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.21.4 - '@babel/generator': registry.npmmirror.com/@babel/generator@7.22.3 - '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.1 - '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.21.0 - '@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables@7.18.6 - '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration@7.18.6 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.4 - '@babel/types': registry.npmmirror.com/@babel/types@7.22.4 + '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.22.13 + '@babel/generator': registry.npmmirror.com/@babel/generator@7.22.10 + '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 + '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.22.5 + '@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables@7.22.5 + '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration@7.22.6 + '@babel/parser': registry.npmmirror.com/@babel/parser@7.22.14 + '@babel/types': registry.npmmirror.com/@babel/types@7.22.11 debug: registry.npmmirror.com/debug@4.3.4 globals: registry.npmmirror.com/globals@11.12.0 transitivePeerDependencies: - supports-color dev: false + registry.npmmirror.com/@babel/types@7.22.11: + resolution: {integrity: sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.22.11.tgz} + name: '@babel/types' + version: 7.22.11 + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': registry.npmmirror.com/@babel/helper-string-parser@7.22.5 + '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.22.5 + to-fast-properties: registry.npmmirror.com/to-fast-properties@2.0.0 + dev: false + registry.npmmirror.com/@babel/types@7.22.4: resolution: {integrity: sha512-Tx9x3UBHTTsMSW85WB2kphxYQVvrZ/t1FxD88IpSgIjiUJlCm9z+xWIDwyo1vffTwSqteqyznB8ZE9vYYk16zA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.22.4.tgz} name: '@babel/types' @@ -1575,10 +1598,10 @@ packages: version: 6.0.2 dev: false - registry.npmmirror.com/@esbuild/android-arm64@0.17.19: - resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz} + registry.npmmirror.com/@esbuild/android-arm64@0.18.20: + resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz} name: '@esbuild/android-arm64' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [arm64] os: [android] @@ -1586,10 +1609,10 @@ packages: dev: false optional: true - registry.npmmirror.com/@esbuild/android-arm@0.17.19: - resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.17.19.tgz} + registry.npmmirror.com/@esbuild/android-arm@0.18.20: + resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.18.20.tgz} name: '@esbuild/android-arm' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [arm] os: [android] @@ -1597,10 +1620,10 @@ packages: dev: false optional: true - registry.npmmirror.com/@esbuild/android-x64@0.17.19: - resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.17.19.tgz} + registry.npmmirror.com/@esbuild/android-x64@0.18.20: + resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.18.20.tgz} name: '@esbuild/android-x64' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [x64] os: [android] @@ -1608,10 +1631,10 @@ packages: dev: false optional: true - registry.npmmirror.com/@esbuild/darwin-arm64@0.17.19: - resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz} + registry.npmmirror.com/@esbuild/darwin-arm64@0.18.20: + resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz} name: '@esbuild/darwin-arm64' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [arm64] os: [darwin] @@ -1619,10 +1642,10 @@ packages: dev: false optional: true - registry.npmmirror.com/@esbuild/darwin-x64@0.17.19: - resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz} + registry.npmmirror.com/@esbuild/darwin-x64@0.18.20: + resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz} name: '@esbuild/darwin-x64' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [x64] os: [darwin] @@ -1630,10 +1653,10 @@ packages: dev: false optional: true - registry.npmmirror.com/@esbuild/freebsd-arm64@0.17.19: - resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz} + registry.npmmirror.com/@esbuild/freebsd-arm64@0.18.20: + resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz} name: '@esbuild/freebsd-arm64' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [arm64] os: [freebsd] @@ -1641,10 +1664,10 @@ packages: dev: false optional: true - registry.npmmirror.com/@esbuild/freebsd-x64@0.17.19: - resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz} + registry.npmmirror.com/@esbuild/freebsd-x64@0.18.20: + resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz} name: '@esbuild/freebsd-x64' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [x64] os: [freebsd] @@ -1652,10 +1675,10 @@ packages: dev: false optional: true - registry.npmmirror.com/@esbuild/linux-arm64@0.17.19: - resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz} + registry.npmmirror.com/@esbuild/linux-arm64@0.18.20: + resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz} name: '@esbuild/linux-arm64' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [arm64] os: [linux] @@ -1663,10 +1686,10 @@ packages: dev: false optional: true - registry.npmmirror.com/@esbuild/linux-arm@0.17.19: - resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz} + registry.npmmirror.com/@esbuild/linux-arm@0.18.20: + resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz} name: '@esbuild/linux-arm' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [arm] os: [linux] @@ -1674,10 +1697,10 @@ packages: dev: false optional: true - registry.npmmirror.com/@esbuild/linux-ia32@0.17.19: - resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz} + registry.npmmirror.com/@esbuild/linux-ia32@0.18.20: + resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz} name: '@esbuild/linux-ia32' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [ia32] os: [linux] @@ -1685,10 +1708,10 @@ packages: dev: false optional: true - registry.npmmirror.com/@esbuild/linux-loong64@0.17.19: - resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz} + registry.npmmirror.com/@esbuild/linux-loong64@0.18.20: + resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz} name: '@esbuild/linux-loong64' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [loong64] os: [linux] @@ -1696,10 +1719,10 @@ packages: dev: false optional: true - registry.npmmirror.com/@esbuild/linux-mips64el@0.17.19: - resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz} + registry.npmmirror.com/@esbuild/linux-mips64el@0.18.20: + resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz} name: '@esbuild/linux-mips64el' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [mips64el] os: [linux] @@ -1707,10 +1730,10 @@ packages: dev: false optional: true - registry.npmmirror.com/@esbuild/linux-ppc64@0.17.19: - resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz} + registry.npmmirror.com/@esbuild/linux-ppc64@0.18.20: + resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz} name: '@esbuild/linux-ppc64' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [ppc64] os: [linux] @@ -1718,10 +1741,10 @@ packages: dev: false optional: true - registry.npmmirror.com/@esbuild/linux-riscv64@0.17.19: - resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz} + registry.npmmirror.com/@esbuild/linux-riscv64@0.18.20: + resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz} name: '@esbuild/linux-riscv64' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [riscv64] os: [linux] @@ -1729,10 +1752,10 @@ packages: dev: false optional: true - registry.npmmirror.com/@esbuild/linux-s390x@0.17.19: - resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz} + registry.npmmirror.com/@esbuild/linux-s390x@0.18.20: + resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz} name: '@esbuild/linux-s390x' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [s390x] os: [linux] @@ -1740,10 +1763,10 @@ packages: dev: false optional: true - registry.npmmirror.com/@esbuild/linux-x64@0.17.19: - resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz} + registry.npmmirror.com/@esbuild/linux-x64@0.18.20: + resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz} name: '@esbuild/linux-x64' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [x64] os: [linux] @@ -1751,10 +1774,10 @@ packages: dev: false optional: true - registry.npmmirror.com/@esbuild/netbsd-x64@0.17.19: - resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz} + registry.npmmirror.com/@esbuild/netbsd-x64@0.18.20: + resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz} name: '@esbuild/netbsd-x64' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [x64] os: [netbsd] @@ -1762,10 +1785,10 @@ packages: dev: false optional: true - registry.npmmirror.com/@esbuild/openbsd-x64@0.17.19: - resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz} + registry.npmmirror.com/@esbuild/openbsd-x64@0.18.20: + resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz} name: '@esbuild/openbsd-x64' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [x64] os: [openbsd] @@ -1773,10 +1796,10 @@ packages: dev: false optional: true - registry.npmmirror.com/@esbuild/sunos-x64@0.17.19: - resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz} + registry.npmmirror.com/@esbuild/sunos-x64@0.18.20: + resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz} name: '@esbuild/sunos-x64' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [x64] os: [sunos] @@ -1784,10 +1807,10 @@ packages: dev: false optional: true - registry.npmmirror.com/@esbuild/win32-arm64@0.17.19: - resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz} + registry.npmmirror.com/@esbuild/win32-arm64@0.18.20: + resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz} name: '@esbuild/win32-arm64' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [arm64] os: [win32] @@ -1795,10 +1818,10 @@ packages: dev: false optional: true - registry.npmmirror.com/@esbuild/win32-ia32@0.17.19: - resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz} + registry.npmmirror.com/@esbuild/win32-ia32@0.18.20: + resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz} name: '@esbuild/win32-ia32' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [ia32] os: [win32] @@ -1806,10 +1829,10 @@ packages: dev: false optional: true - registry.npmmirror.com/@esbuild/win32-x64@0.17.19: - resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz} + registry.npmmirror.com/@esbuild/win32-x64@0.18.20: + resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz} name: '@esbuild/win32-x64' - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} cpu: [x64] os: [win32] @@ -1932,76 +1955,82 @@ packages: - supports-color dev: false - registry.npmmirror.com/@mdit-vue/plugin-component@0.12.0: - resolution: {integrity: sha512-LrwV3f0Y6H7b7m/w1Y3bkGuR3HOiBK4QiHHW3HuRMza6MZodDQbj8Baik5/V5GiSg1/ltijS1CymVcycd1EfTw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit-vue/plugin-component/-/plugin-component-0.12.0.tgz} + registry.npmmirror.com/@maverick-js/signals@5.11.2: + resolution: {integrity: sha512-jKAyNE2O7H+xrigPoqdV0Iq2AeQ6cysfBf/b2jasJ4FfCUKjGyazgtp+pIspTW6skFvpPrvq40Qft+7HuR+Tlg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@maverick-js/signals/-/signals-5.11.2.tgz} + name: '@maverick-js/signals' + version: 5.11.2 + dev: false + + registry.npmmirror.com/@mdit-vue/plugin-component@0.12.1: + resolution: {integrity: sha512-L3elbvuKUufXwPLHrmJGd/ijd/QKxfcHXy3kRy4O+P7UIV7HSWePpfB0k+wWee+by3MviYYxjVAi392z+DGy3Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit-vue/plugin-component/-/plugin-component-0.12.1.tgz} name: '@mdit-vue/plugin-component' - version: 0.12.0 + version: 0.12.1 dependencies: - '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 + '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@13.0.1 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit-vue/plugin-frontmatter@0.12.0: - resolution: {integrity: sha512-26Y3JktjGgNoCVH7NLqi5RcdAauAqxepTt2qXueRcRHtGpiRQV2/M1FveIhCOTCtHSuG5bBOHUxGaV6vRK3Vbw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit-vue/plugin-frontmatter/-/plugin-frontmatter-0.12.0.tgz} + registry.npmmirror.com/@mdit-vue/plugin-frontmatter@0.12.1: + resolution: {integrity: sha512-C6ycNjrJ+T4JgbVxwo9cUkfLacOO841Yl8ogqd5PJmAVpc5cM2OLBkqqkZxNRXos3g9xM1VvIQ7gK/047UNADg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit-vue/plugin-frontmatter/-/plugin-frontmatter-0.12.1.tgz} name: '@mdit-vue/plugin-frontmatter' - version: 0.12.0 + version: 0.12.1 dependencies: '@mdit-vue/types': registry.npmmirror.com/@mdit-vue/types@0.12.0 - '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 + '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@13.0.1 gray-matter: registry.npmmirror.com/gray-matter@4.0.3 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit-vue/plugin-headers@0.12.0: - resolution: {integrity: sha512-7qR63J2uc/rXbjHT77WoYBm9imwzx1tVESmRK+Uth6kqFvSWAXAFPcm4PBatGEE8TgzhklPs5BTcQtQhmmsyaw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit-vue/plugin-headers/-/plugin-headers-0.12.0.tgz} + registry.npmmirror.com/@mdit-vue/plugin-headers@0.12.1: + resolution: {integrity: sha512-DXAw/iWW8f3qUYMDHgQmamL+XGjnaoeRzdvDseLRyr7gXX4xpYO9OIhe/pv9LzSvUoY7UGYmn4kFeI+0qpWJ+g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit-vue/plugin-headers/-/plugin-headers-0.12.1.tgz} name: '@mdit-vue/plugin-headers' - version: 0.12.0 + version: 0.12.1 dependencies: - '@mdit-vue/shared': registry.npmmirror.com/@mdit-vue/shared@0.12.0 + '@mdit-vue/shared': registry.npmmirror.com/@mdit-vue/shared@0.12.1 '@mdit-vue/types': registry.npmmirror.com/@mdit-vue/types@0.12.0 - '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 + '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@13.0.1 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit-vue/plugin-sfc@0.12.0: - resolution: {integrity: sha512-mH+rHsERzDxGucAQJILspRiD723AIWMmtMhp7lDKdkCIbIhYfupFv/CkSeX+LAx5UY5greWvUTPGYVKn4gw/5Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit-vue/plugin-sfc/-/plugin-sfc-0.12.0.tgz} + registry.npmmirror.com/@mdit-vue/plugin-sfc@0.12.1: + resolution: {integrity: sha512-6j332CsSqumy1+StIM3XphdXG1zj9NXuWestDJrKgS3OLy5P0EAioXScUYiZYysw61ZG+2pP37MW7Hg+eHbyIg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit-vue/plugin-sfc/-/plugin-sfc-0.12.1.tgz} name: '@mdit-vue/plugin-sfc' - version: 0.12.0 + version: 0.12.1 dependencies: '@mdit-vue/types': registry.npmmirror.com/@mdit-vue/types@0.12.0 - '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 + '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@13.0.1 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit-vue/plugin-title@0.12.0: - resolution: {integrity: sha512-XrQcior1EmPgsDG88KsoF4LUSQw/RS1Nyfn5xNWGiurO70a2hml4kCe0XzT4sLKUAPG0HNbIY6b92ezNezqWTg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit-vue/plugin-title/-/plugin-title-0.12.0.tgz} + registry.npmmirror.com/@mdit-vue/plugin-title@0.12.1: + resolution: {integrity: sha512-JOsiDj+CryGbrTDWUnDAwB9kSkN6o9GDo3udR6BPDgBNVb3zAnx9ZNaRpEhDW1LnQhf9/LYicWJ2eTNRKPcJNQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit-vue/plugin-title/-/plugin-title-0.12.1.tgz} name: '@mdit-vue/plugin-title' - version: 0.12.0 + version: 0.12.1 dependencies: - '@mdit-vue/shared': registry.npmmirror.com/@mdit-vue/shared@0.12.0 + '@mdit-vue/shared': registry.npmmirror.com/@mdit-vue/shared@0.12.1 '@mdit-vue/types': registry.npmmirror.com/@mdit-vue/types@0.12.0 - '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 + '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@13.0.1 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit-vue/plugin-toc@0.12.0: - resolution: {integrity: sha512-tT985CqvLp17DFWHrSvmmJbh7qcy0Rl0dBbYN//Fn952a04dbr1mb2LqW0B1oStSAQj2q24HpK4ZPgYOt7Z1Jg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit-vue/plugin-toc/-/plugin-toc-0.12.0.tgz} + registry.npmmirror.com/@mdit-vue/plugin-toc@0.12.1: + resolution: {integrity: sha512-nFGwTwVa8GLCKJMV7cGST7lYuljSjEiCTPgKIpQ/WifwouHsQaL/rnBDr22kpzY2hRTAhM3+TT5GDwLyxa/e6A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit-vue/plugin-toc/-/plugin-toc-0.12.1.tgz} name: '@mdit-vue/plugin-toc' - version: 0.12.0 + version: 0.12.1 dependencies: - '@mdit-vue/shared': registry.npmmirror.com/@mdit-vue/shared@0.12.0 + '@mdit-vue/shared': registry.npmmirror.com/@mdit-vue/shared@0.12.1 '@mdit-vue/types': registry.npmmirror.com/@mdit-vue/types@0.12.0 - '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 + '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@13.0.1 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit-vue/shared@0.12.0: - resolution: {integrity: sha512-E+sGSubhvnp+Gmb2hJXFDxdLwwQD1H52EVbA4yrxxI5q/cwtnPIN2eJU3zlZB9KcvzXYDFFwt/x2mfhK8RZKBg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit-vue/shared/-/shared-0.12.0.tgz} + registry.npmmirror.com/@mdit-vue/shared@0.12.1: + resolution: {integrity: sha512-bXgd0KThe4jC2leCFDFsyrudXIckvTwV4WnQK/rRMrXq0/BAuVdSNdIv1LGCWZxD5+oDyPyEPd0lalTIFwqsmg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit-vue/shared/-/shared-0.12.1.tgz} name: '@mdit-vue/shared' - version: 0.12.0 + version: 0.12.1 dependencies: '@mdit-vue/types': registry.npmmirror.com/@mdit-vue/types@0.12.0 - '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 + '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@13.0.1 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false @@ -2011,196 +2040,196 @@ packages: version: 0.12.0 dev: false - registry.npmmirror.com/@mdit/plugin-align@0.4.7: - resolution: {integrity: sha512-0mG/zD0j0UYGA3zNYVGgXW9pAhdbteiy90kMOcw1na3GN3o9DKzFdt24ss3m0IfUEY0i9NziXn+7mf6jdCDqmw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-align/-/plugin-align-0.4.7.tgz} + registry.npmmirror.com/@mdit/plugin-align@0.4.8: + resolution: {integrity: sha512-n6dNMqXb2wZmQ2dod8fq18ehEq+KtMNFoDpC6H3oCaAv/kXT7fYSry0fqrFBP5I3l8yevrgAwo+zZC+c3cyZig==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-align/-/plugin-align-0.4.8.tgz} name: '@mdit/plugin-align' - version: 0.4.7 + version: 0.4.8 engines: {node: '>= 14'} dependencies: - '@mdit/plugin-container': registry.npmmirror.com/@mdit/plugin-container@0.4.7 + '@mdit/plugin-container': registry.npmmirror.com/@mdit/plugin-container@0.4.8 '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit/plugin-attrs@0.4.7: - resolution: {integrity: sha512-elvu36+fNt0hE7uX3QXDCIhsX3TRrATwupN6JnY2x6xjZ6eCzCLQaSDyiusppvSLErX4MOoNBh6cv+StrPKt6A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-attrs/-/plugin-attrs-0.4.7.tgz} + registry.npmmirror.com/@mdit/plugin-attrs@0.4.8: + resolution: {integrity: sha512-SB2yTHRNG8j5shh1TtJAPuPFWaMeQp6P/9ieLVPFdXLU6RPobEwf1GAX39YDaIKaWXEmkEJJdKFClOKmyWd9BQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-attrs/-/plugin-attrs-0.4.8.tgz} name: '@mdit/plugin-attrs' - version: 0.4.7 + version: 0.4.8 engines: {node: '>= 14'} dependencies: '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit/plugin-container@0.4.7: - resolution: {integrity: sha512-ZBpaiBbddMz/KbOtFF1mZ5AisYs9W9Wq2ltPcPVg2qJsyZ/Sx6nTm49UxpT4gwIVgI/CMTDSt0GXW8ZEXn+9sA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-container/-/plugin-container-0.4.7.tgz} + registry.npmmirror.com/@mdit/plugin-container@0.4.8: + resolution: {integrity: sha512-ruiP9XrJ6Uaru/9ZO7iBGm96Fiqr/4Ecn6zHER3/GzWpRJ9oPjrDBWoQ9eFrmINoq1C89puZG0lmAJJ9KCTeAw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-container/-/plugin-container-0.4.8.tgz} name: '@mdit/plugin-container' - version: 0.4.7 + version: 0.4.8 engines: {node: '>= 14'} dependencies: '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit/plugin-figure@0.4.7: - resolution: {integrity: sha512-931pCAAqmBPTNBM714cE9krEWbRq2pUVLqTl/xW5/7mWrXUXK0Z/P2HbbQPLe0MZ8BtWDprE4CiOMm2NlTb73A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-figure/-/plugin-figure-0.4.7.tgz} + registry.npmmirror.com/@mdit/plugin-figure@0.4.8: + resolution: {integrity: sha512-fzFwKlE34pnenqAshqHtCrgv5Ro9QE0Cjd0BR/wxkFCy4ZyyVHZUNA007HOz/j9t5ryVimdZQPcqfcQEcBk8sA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-figure/-/plugin-figure-0.4.8.tgz} name: '@mdit/plugin-figure' - version: 0.4.7 + version: 0.4.8 engines: {node: '>= 14'} dependencies: '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit/plugin-footnote@0.4.7: - resolution: {integrity: sha512-lDeqvdRevvzlPjGomDGoiHQNI9w1um7BibE6dWC29h2AGUNK1BcKVWZlzwou1o8QYb3M94BfcpApi2O2HjsQqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-footnote/-/plugin-footnote-0.4.7.tgz} + registry.npmmirror.com/@mdit/plugin-footnote@0.4.8: + resolution: {integrity: sha512-D2OOOoiMEdgI4p5NAtAK8wjOK3th4qIB6ZkOZ38USN+nzTwNy51Prq/elKiqhEd95q0BtWobrPsrY7qO1BW7kA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-footnote/-/plugin-footnote-0.4.8.tgz} name: '@mdit/plugin-footnote' - version: 0.4.7 + version: 0.4.8 engines: {node: '>= 14'} dependencies: '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit/plugin-img-lazyload@0.4.7: - resolution: {integrity: sha512-AewC683R/8OhROw6xWD8tJwltI1S4xNkCr6+aD5m4ZJyRLa4OIAI2JD3+/fjzi76JFM/jRGpEhl7VpC45uaguA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-img-lazyload/-/plugin-img-lazyload-0.4.7.tgz} + registry.npmmirror.com/@mdit/plugin-img-lazyload@0.4.8: + resolution: {integrity: sha512-GGppqJQhl5pZ2CftLxstxMVSZQCdOiJB/1aKEMjpi+EehYV1MlKPzaQp+XTyVDJAkv/k6pe+91ZnsSZgHnIUcA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-img-lazyload/-/plugin-img-lazyload-0.4.8.tgz} name: '@mdit/plugin-img-lazyload' - version: 0.4.7 + version: 0.4.8 engines: {node: '>= 14'} dependencies: '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit/plugin-img-mark@0.4.7: - resolution: {integrity: sha512-l1cxLdT4RQtVRU13HLk+d6Iu1CR96aqF9sG70IoxG/E+m3TJV+OK8KZI8SQGCzIDyneAFWJ314yXgVAsSo/vQg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-img-mark/-/plugin-img-mark-0.4.7.tgz} + registry.npmmirror.com/@mdit/plugin-img-mark@0.4.8: + resolution: {integrity: sha512-00zkJ3cIW1R5O+lk/WHuhOrHFdO17TVVxfBN8mhzH6S17W+2KqBMcBv5fpxi7g3R95rZ1fAZ6T1I5lg069RBkA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-img-mark/-/plugin-img-mark-0.4.8.tgz} name: '@mdit/plugin-img-mark' - version: 0.4.7 + version: 0.4.8 engines: {node: '>= 14'} dependencies: '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit/plugin-img-size@0.4.7: - resolution: {integrity: sha512-EF9HRgmv/sFvZyXMnaW03eAFocFVI1aER1n99aeMJph//tlaRGlLAnGpTc4bejI6hfP1Akkpuoqv0SUommmodg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-img-size/-/plugin-img-size-0.4.7.tgz} + registry.npmmirror.com/@mdit/plugin-img-size@0.4.8: + resolution: {integrity: sha512-+fkNRrhkwZgIRJi6ucginEzy95pmhekOer23gBbOOezZev9D4XpA1tFhLAu1srvUVAKh+JmRXiVJUT71Xw9LTg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-img-size/-/plugin-img-size-0.4.8.tgz} name: '@mdit/plugin-img-size' - version: 0.4.7 + version: 0.4.8 engines: {node: '>= 14'} dependencies: '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit/plugin-include@0.4.7: - resolution: {integrity: sha512-8CZLInswlK1KJfKsmmDzrs3zZpkFZ2Jnvq0hGem9f3HRcXufNPM88Ss1e6uTiDoa6bhCn6QLBN6RMwewWOZEVQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-include/-/plugin-include-0.4.7.tgz} + registry.npmmirror.com/@mdit/plugin-include@0.4.8: + resolution: {integrity: sha512-Hd+ZjisjjUS6ZRtjXUkfbYx3HpGKAY4XVpzmvhinK4+EPqiW4SrQor4G03ckpYu2fFjBF6u6+NbMtkHD8dcMZQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-include/-/plugin-include-0.4.8.tgz} name: '@mdit/plugin-include' - version: 0.4.7 + version: 0.4.8 dependencies: '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 upath: registry.npmmirror.com/upath@2.0.1 dev: false - registry.npmmirror.com/@mdit/plugin-katex@0.4.7: - resolution: {integrity: sha512-6heca71GgZOfGEPsO6G2dXkYUt3MkQ3YwhecxZMdb9i187sHEFjOVWlwryuw6w/9B9Y/DKjm2BOjRM7rdutbHw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-katex/-/plugin-katex-0.4.7.tgz} + registry.npmmirror.com/@mdit/plugin-katex@0.4.8: + resolution: {integrity: sha512-IQUfqpRp+/0gq0VDUOLI0xVvAaiHQv91f6PFBuRG2mvxSsJBECCWZTiJpCgriL7XHSVeSI8zHEYsha9UR674nw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-katex/-/plugin-katex-0.4.8.tgz} name: '@mdit/plugin-katex' - version: 0.4.7 + version: 0.4.8 engines: {node: '>= 14'} dependencies: - '@mdit/plugin-tex': registry.npmmirror.com/@mdit/plugin-tex@0.4.7 + '@mdit/plugin-tex': registry.npmmirror.com/@mdit/plugin-tex@0.4.8 '@types/katex': registry.npmmirror.com/@types/katex@0.16.0 '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 - katex: registry.npmmirror.com/katex@0.16.7 + katex: registry.npmmirror.com/katex@0.16.8 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit/plugin-mark@0.4.7: - resolution: {integrity: sha512-g08r+Zg+sTfTKMv01UZ9e9hTtUApkqgPb/InAL+qArcqv6d9PAMG9j/M3hyLLc3uwXB3ofKB6vNoLBan/jOiIQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-mark/-/plugin-mark-0.4.7.tgz} + registry.npmmirror.com/@mdit/plugin-mark@0.4.8: + resolution: {integrity: sha512-51sV7MsPPoW+oa47mwUoD44a3N6XcnYBCOixuDtPzpmKH7ueUJ/ULOGJoBsbveo/ZqTCivJ+3cwoTujaGua8mQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-mark/-/plugin-mark-0.4.8.tgz} name: '@mdit/plugin-mark' - version: 0.4.7 + version: 0.4.8 engines: {node: '>= 14'} dependencies: '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit/plugin-mathjax@0.4.7: - resolution: {integrity: sha512-wlMkU9zImIIvOcbrqa7A0kS/6qvAjqh2a8vxc6R7ddrGgs1nZA2N4D+noz3wnBBxFaeHokqKEF0lL6LNUmqndg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-mathjax/-/plugin-mathjax-0.4.7.tgz} + registry.npmmirror.com/@mdit/plugin-mathjax@0.4.8: + resolution: {integrity: sha512-eFFYR6Qo9eZnS+3vUVIHd1lLasx6Upybu3tvdNJ119CUkVd3edtvDqI286RJuApfyDM0uAzkqEgmSKCr4pT8NA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-mathjax/-/plugin-mathjax-0.4.8.tgz} name: '@mdit/plugin-mathjax' - version: 0.4.7 + version: 0.4.8 engines: {node: '>= 14'} dependencies: - '@mdit/plugin-tex': registry.npmmirror.com/@mdit/plugin-tex@0.4.7 + '@mdit/plugin-tex': registry.npmmirror.com/@mdit/plugin-tex@0.4.8 '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 mathjax-full: registry.npmmirror.com/mathjax-full@3.2.2 upath: registry.npmmirror.com/upath@2.0.1 dev: false - registry.npmmirror.com/@mdit/plugin-stylize@0.4.7: - resolution: {integrity: sha512-SG9QDgZq3vCWnNxrefBEIS6HRlkEt2bT6BCJ4t/lG4L4LhWtkbT/xXkYY0fYFub9YuOOfSBWEKza+k52L+bH3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-stylize/-/plugin-stylize-0.4.7.tgz} + registry.npmmirror.com/@mdit/plugin-stylize@0.4.8: + resolution: {integrity: sha512-Wjo3hEHGybu+2ubLaUY52g5SCk6ThFwHYQAYScB7NX39lbr1xefVKs5RYeyH3xCRMdK3S5+b1mlklrdSARQ1fg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-stylize/-/plugin-stylize-0.4.8.tgz} name: '@mdit/plugin-stylize' - version: 0.4.7 + version: 0.4.8 engines: {node: '>= 14'} dependencies: '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit/plugin-sub@0.4.7: - resolution: {integrity: sha512-L9k2D5PA5oyCT7YNoqjrqsRglp4jO5rYXvgI2dsQsU0GnA9OhIAiNqBVmDr1KoPwyBpjpJET/cLRqFaUNZqkLw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-sub/-/plugin-sub-0.4.7.tgz} + registry.npmmirror.com/@mdit/plugin-sub@0.4.8: + resolution: {integrity: sha512-U/6FtGgakdk/JhybHGHykBampF5YMZFkS1DB9uht/3uycWT4ejGefZ1XT9r59liQ3Bh/9CTy0niRNvMwdolPOA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-sub/-/plugin-sub-0.4.8.tgz} name: '@mdit/plugin-sub' - version: 0.4.7 + version: 0.4.8 engines: {node: '>= 14'} dependencies: '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit/plugin-sup@0.4.7: - resolution: {integrity: sha512-QOMk1n3Ja7axN/u7dPQozxOA3wI6P4PFwVGbAP6IjBDx2RdR0WoD+TrnA3uLwVYS2z8MH1BN9+1XhwZWep+18g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-sup/-/plugin-sup-0.4.7.tgz} + registry.npmmirror.com/@mdit/plugin-sup@0.4.8: + resolution: {integrity: sha512-wv4n9PKoiXI2RFqUrqOSxcKl71mTNCzlNJNlb4WfF9OTIn1CXR298EeL6XnbgS6snLuraur15PgGqwWw6wP7AQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-sup/-/plugin-sup-0.4.8.tgz} name: '@mdit/plugin-sup' - version: 0.4.7 + version: 0.4.8 engines: {node: '>= 14'} dependencies: '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit/plugin-tab@0.4.7: - resolution: {integrity: sha512-dKh+evy1DpoKbcA2EchskJ3nTxWoGua1YseOpMr8g1sx4CeoKncCen4sWPO0Frpzf7NJRJ5gGFT6L7Rjfk9/jA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-tab/-/plugin-tab-0.4.7.tgz} + registry.npmmirror.com/@mdit/plugin-tab@0.4.8: + resolution: {integrity: sha512-/YUI4KQAtHUE6AkJUfIEIKjnK8LEAkcBMe2z8SYmzeEs9U0vHvQNawUd6ANHOXrpeqyPrgQnhWqGkF4yMqfAjg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-tab/-/plugin-tab-0.4.8.tgz} name: '@mdit/plugin-tab' - version: 0.4.7 + version: 0.4.8 dependencies: '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit/plugin-tasklist@0.4.7: - resolution: {integrity: sha512-MuUPXBQb88uqS6TBA0C9tvMYM7/nu5oVv2hj/PyBWc6Q3ESJgf78ZixboXaeESVplIUEzbvBfmzGqvbyrFFreA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-tasklist/-/plugin-tasklist-0.4.7.tgz} + registry.npmmirror.com/@mdit/plugin-tasklist@0.4.8: + resolution: {integrity: sha512-VAnCR4dnfqOpW1hPEAunJFVvV31eARnD23XPSK3JAQADUFtnileoR0OdXZATC4gTsuVnYh8V8d7rujjL1QvxQw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-tasklist/-/plugin-tasklist-0.4.8.tgz} name: '@mdit/plugin-tasklist' - version: 0.4.7 + version: 0.4.8 engines: {node: '>= 14'} dependencies: '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit/plugin-tex@0.4.7: - resolution: {integrity: sha512-gDWFqO8U5AoWeevXiTaK+ge2PqFDVl7LYgVwSOVLo1Zwt6Om9AkviadNcLrNRZojkyys8rOgJb/fbXfuBI5TXg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-tex/-/plugin-tex-0.4.7.tgz} + registry.npmmirror.com/@mdit/plugin-tex@0.4.8: + resolution: {integrity: sha512-HgWb8l0Can+NsxFfLu358Xwj1plxXHXf2YkjxM316pUeVZhNhjPjoqIpR46ebCwWbWW+GmwT0YdeUvQrDgM3ig==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-tex/-/plugin-tex-0.4.8.tgz} name: '@mdit/plugin-tex' - version: 0.4.7 + version: 0.4.8 engines: {node: '>= 14'} dependencies: '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false - registry.npmmirror.com/@mdit/plugin-uml@0.4.7: - resolution: {integrity: sha512-qFeDKT/L2Aprg8FXMgbb1cgheTfj36NiZVNZ9DNDNh/HLI7NPCMmcel28iCJrBkmN7Ya4Tn3NKL1FQoW9Qr+Rw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-uml/-/plugin-uml-0.4.7.tgz} + registry.npmmirror.com/@mdit/plugin-uml@0.4.8: + resolution: {integrity: sha512-X414T54zh0i+n5MbPL0kzGwRzcCU0hlpe4wp74cr44RWrsvJ8+78ioOx7WJOM8rgGHRWIoEEp6BjB1WfI734Iw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdit/plugin-uml/-/plugin-uml-0.4.8.tgz} name: '@mdit/plugin-uml' - version: 0.4.7 + version: 0.4.8 engines: {node: '>= 14'} dependencies: '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 @@ -2264,7 +2293,7 @@ packages: dev: false optional: true - registry.npmmirror.com/@rollup/plugin-babel@5.3.1(@babel/core@7.22.1)(rollup@2.79.1): + registry.npmmirror.com/@rollup/plugin-babel@5.3.1(@babel/core@7.22.11)(rollup@2.79.1): resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz} id: registry.npmmirror.com/@rollup/plugin-babel/5.3.1 name: '@rollup/plugin-babel' @@ -2278,8 +2307,8 @@ packages: '@types/babel__core': optional: true dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports@7.21.4 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports@7.22.5 '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils@3.1.0(rollup@2.79.1) rollup: registry.npmmirror.com/rollup@2.79.1 dev: false @@ -2354,6 +2383,26 @@ packages: engines: {node: '>= 10'} dev: false + registry.npmmirror.com/@types/d3-scale-chromatic@3.0.0: + resolution: {integrity: sha512-dsoJGEIShosKVRBZB0Vo3C8nqSDqVGujJU6tPznsBJxNJNwMF8utmS83nvCBKQYPpjCzaaHcrf66iTRpZosLPw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz} + name: '@types/d3-scale-chromatic' + version: 3.0.0 + dev: false + + registry.npmmirror.com/@types/d3-scale@4.0.4: + resolution: {integrity: sha512-eq1ZeTj0yr72L8MQk6N6heP603ubnywSDRfNpi5enouR112HzGLS6RIvExCzZTraFF4HdzNpJMwA/zGiMoHUUw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/d3-scale/-/d3-scale-4.0.4.tgz} + name: '@types/d3-scale' + version: 4.0.4 + dependencies: + '@types/d3-time': registry.npmmirror.com/@types/d3-time@3.0.0 + dev: false + + registry.npmmirror.com/@types/d3-time@3.0.0: + resolution: {integrity: sha512-sZLCdHvBUcNby1cB6Fd3ZBrABbjz3v1Vm90nysCQ6Vt7vd6e/h9Lt7SiJUoEX0l4Dzc7P5llKyhqSi1ycSf1Hg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/d3-time/-/d3-time-3.0.0.tgz} + name: '@types/d3-time' + version: 3.0.0 + dev: false + registry.npmmirror.com/@types/debug@4.1.8: resolution: {integrity: sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/debug/-/debug-4.1.8.tgz} name: '@types/debug' @@ -2426,6 +2475,15 @@ packages: '@types/mdurl': registry.npmmirror.com/@types/mdurl@1.0.2 dev: false + registry.npmmirror.com/@types/markdown-it@13.0.1: + resolution: {integrity: sha512-SUEb8Frsxs3D5Gg9xek6i6EG6XQ5s+O+ZdQzIPESZVZw3Pv3CPQfjCJBI+RgqZd1IBeu18S0Rn600qpPnEK37w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/markdown-it/-/markdown-it-13.0.1.tgz} + name: '@types/markdown-it' + version: 13.0.1 + dependencies: + '@types/linkify-it': registry.npmmirror.com/@types/linkify-it@3.0.2 + '@types/mdurl': registry.npmmirror.com/@types/mdurl@1.0.2 + dev: false + registry.npmmirror.com/@types/mdast@3.0.11: resolution: {integrity: sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/mdast/-/mdast-3.0.11.tgz} name: '@types/mdast' @@ -2477,7 +2535,7 @@ packages: name: '@types/sax' version: 1.2.4 dependencies: - '@types/node': registry.npmmirror.com/@types/node@17.0.45 + '@types/node': registry.npmmirror.com/@types/node@20.2.5 dev: false registry.npmmirror.com/@types/trusted-types@2.0.3: @@ -2498,17 +2556,17 @@ packages: version: 0.0.17 dev: false - registry.npmmirror.com/@vitejs/plugin-vue@4.2.3(vite@4.3.9)(vue@3.3.4): - resolution: {integrity: sha512-R6JDUfiZbJA9cMiguQ7jxALsgiprjBeHL5ikpXfJCH62pPHtI+JdJ5xWj6Ev73yXSlYl86+blXn1kZHQ7uElxw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-4.2.3.tgz} - id: registry.npmmirror.com/@vitejs/plugin-vue/4.2.3 + registry.npmmirror.com/@vitejs/plugin-vue@4.3.4(vite@4.4.9)(vue@3.3.4): + resolution: {integrity: sha512-ciXNIHKPriERBisHFBvnTbfKa6r9SAesOYXeGDzgegcvy9Q4xdScSHAmKbNT0M3O0S9LKhIf5/G+UYG4NnnzYw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-4.3.4.tgz} + id: registry.npmmirror.com/@vitejs/plugin-vue/4.3.4 name: '@vitejs/plugin-vue' - version: 4.2.3 + version: 4.3.4 engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^4.0.0 vue: ^3.2.25 dependencies: - vite: registry.npmmirror.com/vite@4.3.9 + vite: registry.npmmirror.com/vite@4.4.9 vue: registry.npmmirror.com/vue@3.3.4 dev: false @@ -2584,15 +2642,10 @@ packages: '@vue/shared': registry.npmmirror.com/@vue/shared@3.3.4 dev: false - registry.npmmirror.com/@vue/repl@1.4.1(vue@3.3.4): - resolution: {integrity: sha512-7ONz/o1OtS611jW6SdAOZXn4HdN8gfyatcOzcEu+3bDMvgbyr7ZUcbRV6Y4xdkxDARKDBzs+sb3/oz1Na5hAeQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/repl/-/repl-1.4.1.tgz} - id: registry.npmmirror.com/@vue/repl/1.4.1 + registry.npmmirror.com/@vue/repl@2.5.8: + resolution: {integrity: sha512-IvOlNhka4VKDQZS9FIceFFWyPibzqAUHyjHOoe8cMZmeP7H3H7mfMqvzQ0l1wjMAqqeEcgpFhSzMWsTEL4XZeA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/repl/-/repl-2.5.8.tgz} name: '@vue/repl' - version: 1.4.1 - peerDependencies: - vue: ^3.2.13 - dependencies: - vue: registry.npmmirror.com/vue@3.3.4 + version: 2.5.8 dev: false registry.npmmirror.com/@vue/runtime-core@3.3.4: @@ -2633,27 +2686,29 @@ packages: version: 3.3.4 dev: false - registry.npmmirror.com/@vuepress/bundler-vite@2.0.0-beta.62: - resolution: {integrity: sha512-Dpb4rJycssM1gs3MlQ5z0cwQ0KCx9Iliojt+qs5lVIUHP9vfw6ANYx51R3ojctt3dCoWfC4bAL4NhGQndGKvrQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/bundler-vite/-/bundler-vite-2.0.0-beta.62.tgz} + registry.npmmirror.com/@vuepress/bundler-vite@2.0.0-beta.67: + resolution: {integrity: sha512-W6YXixxu2G+xPECPFvx4Tzv5fmpBYvApEYVw7qfSNf/5YZ6aeIfV0AMGJZvhk7R/KniofvBTGCjAMSK4fqKp8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/bundler-vite/-/bundler-vite-2.0.0-beta.67.tgz} name: '@vuepress/bundler-vite' - version: 2.0.0-beta.62 + version: 2.0.0-beta.67 dependencies: - '@vitejs/plugin-vue': registry.npmmirror.com/@vitejs/plugin-vue@4.2.3(vite@4.3.9)(vue@3.3.4) - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.62 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 - autoprefixer: registry.npmmirror.com/autoprefixer@10.4.14(postcss@8.4.24) + '@vitejs/plugin-vue': registry.npmmirror.com/@vitejs/plugin-vue@4.3.4(vite@4.4.9)(vue@3.3.4) + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.67 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 + autoprefixer: registry.npmmirror.com/autoprefixer@10.4.15(postcss@8.4.29) connect-history-api-fallback: registry.npmmirror.com/connect-history-api-fallback@2.0.0 - postcss: registry.npmmirror.com/postcss@8.4.24 - postcss-load-config: registry.npmmirror.com/postcss-load-config@4.0.1(postcss@8.4.24) - rollup: registry.npmmirror.com/rollup@3.23.1 - vite: registry.npmmirror.com/vite@4.3.9 + postcss: registry.npmmirror.com/postcss@8.4.29 + postcss-load-config: registry.npmmirror.com/postcss-load-config@4.0.1(postcss@8.4.29) + rollup: registry.npmmirror.com/rollup@3.28.1 + vite: registry.npmmirror.com/vite@4.4.9 vue: registry.npmmirror.com/vue@3.3.4 - vue-router: registry.npmmirror.com/vue-router@4.2.2(vue@3.3.4) + vue-router: registry.npmmirror.com/vue-router@4.2.4(vue@3.3.4) transitivePeerDependencies: - '@types/node' + - '@vue/composition-api' - less + - lightningcss - sass - stylus - sugarss @@ -2662,315 +2717,331 @@ packages: - ts-node dev: false - registry.npmmirror.com/@vuepress/cli@2.0.0-beta.62: - resolution: {integrity: sha512-z5mpxORVSZUWsSGtA0bqvsd4vhMDWXAGnQfHjYZ5ylUgnYMxBZMRWrQcpz9doMCk5Qkn56B2s2jKZEvhyFvdAg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/cli/-/cli-2.0.0-beta.62.tgz} + registry.npmmirror.com/@vuepress/cli@2.0.0-beta.67: + resolution: {integrity: sha512-OWd5JMq9pEHrz2MTTQV91EoG+7o18s1JWKP7GBfYQ2DRAu/Hf4rZPmluuibhFolTvnTDuTtXrfb6Wbx4iZ+M9Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/cli/-/cli-2.0.0-beta.67.tgz} name: '@vuepress/cli' - version: 2.0.0-beta.62 + version: 2.0.0-beta.67 hasBin: true dependencies: - '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.62 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 + '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.67 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 cac: registry.npmmirror.com/cac@6.7.14 chokidar: registry.npmmirror.com/chokidar@3.5.3 - envinfo: registry.npmmirror.com/envinfo@7.8.1 - esbuild: registry.npmmirror.com/esbuild@0.17.19 + envinfo: registry.npmmirror.com/envinfo@7.10.0 + esbuild: registry.npmmirror.com/esbuild@0.18.20 transitivePeerDependencies: + - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/@vuepress/client@2.0.0-beta.62: - resolution: {integrity: sha512-5JT0H6EibhZMVmg1fel2BWFFaAEv5zOoD397LOiMQmcEuUneeKNSwGcLrJDyvv8AOXz4wsXwET/to3TsOFoHDQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/client/-/client-2.0.0-beta.62.tgz} + registry.npmmirror.com/@vuepress/client@2.0.0-beta.67: + resolution: {integrity: sha512-xfXZXmZmMbCvQxUhNltuAZzpoiwM0x9ke+DdPPDBF0oGMNDlmtOlsD7NcH322vQE3ehYy5mXJttXuEmfoNOG6A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/client/-/client-2.0.0-beta.67.tgz} name: '@vuepress/client' - version: 2.0.0-beta.62 + version: 2.0.0-beta.67 dependencies: '@vue/devtools-api': registry.npmmirror.com/@vue/devtools-api@6.5.0 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vueuse/core': registry.npmmirror.com/@vueuse/core@10.4.1(vue@3.3.4) vue: registry.npmmirror.com/vue@3.3.4 - vue-router: registry.npmmirror.com/vue-router@4.2.2(vue@3.3.4) + vue-router: registry.npmmirror.com/vue-router@4.2.4(vue@3.3.4) + transitivePeerDependencies: + - '@vue/composition-api' dev: false - registry.npmmirror.com/@vuepress/core@2.0.0-beta.62: - resolution: {integrity: sha512-IyL1lxkRg2PO6oFDcioa5YKckKO8jEIwPaNG4mwv7bIEwaN5kpsROVtBeYHKkcnncWQMrbBG/z8aHDvjO/vFJA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/core/-/core-2.0.0-beta.62.tgz} + registry.npmmirror.com/@vuepress/core@2.0.0-beta.67: + resolution: {integrity: sha512-pbCm1x+zFKZqpJjS68sv3ziEQLMn0KM04Q6W249stcTUUBrKox2OPx+OcX/BrN6yH60OviXN8hD6MgCnFSWdZA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/core/-/core-2.0.0-beta.67.tgz} name: '@vuepress/core' - version: 2.0.0-beta.62 + version: 2.0.0-beta.67 dependencies: - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/markdown': registry.npmmirror.com/@vuepress/markdown@2.0.0-beta.62 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/markdown': registry.npmmirror.com/@vuepress/markdown@2.0.0-beta.67 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 vue: registry.npmmirror.com/vue@3.3.4 transitivePeerDependencies: + - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/@vuepress/markdown@2.0.0-beta.62: - resolution: {integrity: sha512-OTGSHDALEE1zgAJgx9Py1AKR1JA/eLTjw63ul77ymt/5eNlU8/EVJg8Pj2nwL3cpvCpzB6sQ1Xkj4TF7D0aD1Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/markdown/-/markdown-2.0.0-beta.62.tgz} + registry.npmmirror.com/@vuepress/markdown@2.0.0-beta.67: + resolution: {integrity: sha512-dwciE7dbfDruLan+w9x/LUl5dLdBWB39QXznX/Hhv4oPp+Mm4as53J58gqjuRPi6N25DfRi3ODrzjG5Lduwnfw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/markdown/-/markdown-2.0.0-beta.67.tgz} name: '@vuepress/markdown' - version: 2.0.0-beta.62 + version: 2.0.0-beta.67 dependencies: - '@mdit-vue/plugin-component': registry.npmmirror.com/@mdit-vue/plugin-component@0.12.0 - '@mdit-vue/plugin-frontmatter': registry.npmmirror.com/@mdit-vue/plugin-frontmatter@0.12.0 - '@mdit-vue/plugin-headers': registry.npmmirror.com/@mdit-vue/plugin-headers@0.12.0 - '@mdit-vue/plugin-sfc': registry.npmmirror.com/@mdit-vue/plugin-sfc@0.12.0 - '@mdit-vue/plugin-title': registry.npmmirror.com/@mdit-vue/plugin-title@0.12.0 - '@mdit-vue/plugin-toc': registry.npmmirror.com/@mdit-vue/plugin-toc@0.12.0 - '@mdit-vue/shared': registry.npmmirror.com/@mdit-vue/shared@0.12.0 + '@mdit-vue/plugin-component': registry.npmmirror.com/@mdit-vue/plugin-component@0.12.1 + '@mdit-vue/plugin-frontmatter': registry.npmmirror.com/@mdit-vue/plugin-frontmatter@0.12.1 + '@mdit-vue/plugin-headers': registry.npmmirror.com/@mdit-vue/plugin-headers@0.12.1 + '@mdit-vue/plugin-sfc': registry.npmmirror.com/@mdit-vue/plugin-sfc@0.12.1 + '@mdit-vue/plugin-title': registry.npmmirror.com/@mdit-vue/plugin-title@0.12.1 + '@mdit-vue/plugin-toc': registry.npmmirror.com/@mdit-vue/plugin-toc@0.12.1 + '@mdit-vue/shared': registry.npmmirror.com/@mdit-vue/shared@0.12.1 '@mdit-vue/types': registry.npmmirror.com/@mdit-vue/types@0.12.0 - '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 + '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@13.0.1 '@types/markdown-it-emoji': registry.npmmirror.com/@types/markdown-it-emoji@2.0.2 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 - markdown-it-anchor: registry.npmmirror.com/markdown-it-anchor@8.6.7(@types/markdown-it@12.2.3)(markdown-it@13.0.1) + markdown-it-anchor: registry.npmmirror.com/markdown-it-anchor@8.6.7(@types/markdown-it@13.0.1)(markdown-it@13.0.1) markdown-it-emoji: registry.npmmirror.com/markdown-it-emoji@2.0.2 mdurl: registry.npmmirror.com/mdurl@1.0.1 transitivePeerDependencies: - supports-color dev: false - registry.npmmirror.com/@vuepress/plugin-active-header-links@2.0.0-beta.62: - resolution: {integrity: sha512-NUoa0JP2npSydJQvM1oOPEtPCKRmtqpkPLxTeBCP6ucR/eHpCbBMrgYt3w6kdmMJykc/AWFd4oZA1QS/MAoEtw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-active-header-links/-/plugin-active-header-links-2.0.0-beta.62.tgz} + registry.npmmirror.com/@vuepress/plugin-active-header-links@2.0.0-beta.67: + resolution: {integrity: sha512-2AxtFnnvHn750x+dCFbCWgqxpS+zsNucw8vuATmyRiBAleEqfM1Wz+RuMSKBM38GxsI/7mnQgWOgqj4S90G+ZA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-active-header-links/-/plugin-active-header-links-2.0.0-beta.67.tgz} name: '@vuepress/plugin-active-header-links' - version: 2.0.0-beta.62 + version: 2.0.0-beta.67 dependencies: - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 ts-debounce: registry.npmmirror.com/ts-debounce@4.0.0 vue: registry.npmmirror.com/vue@3.3.4 - vue-router: registry.npmmirror.com/vue-router@4.2.2(vue@3.3.4) + vue-router: registry.npmmirror.com/vue-router@4.2.4(vue@3.3.4) transitivePeerDependencies: + - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/@vuepress/plugin-back-to-top@2.0.0-beta.62: - resolution: {integrity: sha512-ndStdKobpq7/YxhtUg2YrSkd8FNoE0v4pPVdTBND6jlkPns4CCcyu+w6BZ8mkiiB2dzS27JrhKcXHz1Tsb0nUA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-back-to-top/-/plugin-back-to-top-2.0.0-beta.62.tgz} + registry.npmmirror.com/@vuepress/plugin-back-to-top@2.0.0-beta.67: + resolution: {integrity: sha512-ystolf429cvAfX4qw1o9sHfkB8+KdQ4rV8P4ILR5LERgTZprL+1FbQfcHgVjEF2p0UKu2QXJQNGx2LfWWVuYdw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-back-to-top/-/plugin-back-to-top-2.0.0-beta.67.tgz} name: '@vuepress/plugin-back-to-top' - version: 2.0.0-beta.62 + version: 2.0.0-beta.67 dependencies: - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 ts-debounce: registry.npmmirror.com/ts-debounce@4.0.0 vue: registry.npmmirror.com/vue@3.3.4 transitivePeerDependencies: + - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/@vuepress/plugin-container@2.0.0-beta.62: - resolution: {integrity: sha512-ibo0J8ye5KA6zkwIttkVqleSLy4Sq0rcSW+X8cTzyFfoKKs0Y+ECjmf4wRrDl79m+lgpA43mlFpCcbgtmV9aqw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-container/-/plugin-container-2.0.0-beta.62.tgz} + registry.npmmirror.com/@vuepress/plugin-container@2.0.0-beta.67: + resolution: {integrity: sha512-NuxjNkyJ2bYsRpw3iAiok2aeKYzZQsEZ8A/i+4LYwrDXbj3HfjlDhfPYhN+BMQfbxE9LpXOG0APNcXVCNMu0hw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-container/-/plugin-container-2.0.0-beta.67.tgz} name: '@vuepress/plugin-container' - version: 2.0.0-beta.62 + version: 2.0.0-beta.67 dependencies: - '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 - '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.62 - '@vuepress/markdown': registry.npmmirror.com/@vuepress/markdown@2.0.0-beta.62 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 + '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@13.0.1 + '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.67 + '@vuepress/markdown': registry.npmmirror.com/@vuepress/markdown@2.0.0-beta.67 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 markdown-it-container: registry.npmmirror.com/markdown-it-container@3.0.0 transitivePeerDependencies: + - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/@vuepress/plugin-external-link-icon@2.0.0-beta.62: - resolution: {integrity: sha512-mQ7gj6pMHYCp7zk6N92omxUz9CjKYZtvZXkNmsloZsz0hiGS1SdG29vLo8yKm/qVzyu9F45WgVNcdQD5mkzx3Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-external-link-icon/-/plugin-external-link-icon-2.0.0-beta.62.tgz} + registry.npmmirror.com/@vuepress/plugin-external-link-icon@2.0.0-beta.67: + resolution: {integrity: sha512-JD0/Uvt1WQXiGoAA0pjpqQ7OINDUm1TSgWeIpfPq9tZJNfgjmqUoartMFUuqcvl4eMi4Alfx0dWkzSF9qHL7Pg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-external-link-icon/-/plugin-external-link-icon-2.0.0-beta.67.tgz} name: '@vuepress/plugin-external-link-icon' - version: 2.0.0-beta.62 + version: 2.0.0-beta.67 dependencies: - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.62 - '@vuepress/markdown': registry.npmmirror.com/@vuepress/markdown@2.0.0-beta.62 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.67 + '@vuepress/markdown': registry.npmmirror.com/@vuepress/markdown@2.0.0-beta.67 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 vue: registry.npmmirror.com/vue@3.3.4 transitivePeerDependencies: + - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/@vuepress/plugin-git@2.0.0-beta.62: - resolution: {integrity: sha512-vTYUguI+X5G7JPTySDnZ6lcAGXBWlD1Nsw9IV42Hh4fvevWzZ3WIjkAhjZpdURIz+xQPEZBbgqnOKjBpbPx0jA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-git/-/plugin-git-2.0.0-beta.62.tgz} + registry.npmmirror.com/@vuepress/plugin-git@2.0.0-beta.67: + resolution: {integrity: sha512-9JSGmEtDqBWEmszqEE7spBjWdbeZo0jeMi2ZQLT4KgQrYh5fU/DO8MgeJxGXXd9xvpz4aVAzQR+gqYpL6kO5Jw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-git/-/plugin-git-2.0.0-beta.67.tgz} name: '@vuepress/plugin-git' - version: 2.0.0-beta.62 + version: 2.0.0-beta.67 dependencies: - '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 - execa: registry.npmmirror.com/execa@7.1.1 + '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 + execa: registry.npmmirror.com/execa@8.0.1 transitivePeerDependencies: + - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/@vuepress/plugin-medium-zoom@2.0.0-beta.62: - resolution: {integrity: sha512-1BolO1OE9Dxf4xLpEDEYjWTmx+luD6RSwjM+Wbgp7gBMK98yY8N9rHxWCzhLWbTffVezmAO0ze37l7hVd4ypTA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-medium-zoom/-/plugin-medium-zoom-2.0.0-beta.62.tgz} + registry.npmmirror.com/@vuepress/plugin-medium-zoom@2.0.0-beta.67: + resolution: {integrity: sha512-KLXfzKKbAhLSaRdbkHlvpbpYtaqINYBJ9gB4Q7CQ5AUaA8uStLG6rX0RjyhKAONfIJWuFiVYCp38QSI++fa/tA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-medium-zoom/-/plugin-medium-zoom-2.0.0-beta.67.tgz} name: '@vuepress/plugin-medium-zoom' - version: 2.0.0-beta.62 + version: 2.0.0-beta.67 dependencies: - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 medium-zoom: registry.npmmirror.com/medium-zoom@1.0.8 vue: registry.npmmirror.com/vue@3.3.4 transitivePeerDependencies: + - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/@vuepress/plugin-nprogress@2.0.0-beta.62: - resolution: {integrity: sha512-w1Qqw1pP7+fXN+Aznmbfdp62XnQJ2s/FJyoGfV7LjVfV+gWFtqymiJiahvd2aQpBi4/qZNvtFJ1SOQf5tn1CxA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-nprogress/-/plugin-nprogress-2.0.0-beta.62.tgz} + registry.npmmirror.com/@vuepress/plugin-nprogress@2.0.0-beta.67: + resolution: {integrity: sha512-BlqALWsNCllrqhMgRGz+50ah984XCwp1wejNYGP0ENEGSo1SY2dUI4AatIWep4Zj+0s7gbBR0swZc49hkLpENg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-nprogress/-/plugin-nprogress-2.0.0-beta.67.tgz} name: '@vuepress/plugin-nprogress' - version: 2.0.0-beta.62 + version: 2.0.0-beta.67 dependencies: - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 vue: registry.npmmirror.com/vue@3.3.4 - vue-router: registry.npmmirror.com/vue-router@4.2.2(vue@3.3.4) + vue-router: registry.npmmirror.com/vue-router@4.2.4(vue@3.3.4) transitivePeerDependencies: + - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/@vuepress/plugin-palette@2.0.0-beta.62: - resolution: {integrity: sha512-Tw+KFxC8c3KIGeXANqMXFLoQ96ZQ/hJaKC0qm6iN04Wk9hKYazkxhPZTAZkOG3SrxaxvOrgnzvicpci6FJgnGA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-palette/-/plugin-palette-2.0.0-beta.62.tgz} + registry.npmmirror.com/@vuepress/plugin-palette@2.0.0-beta.67: + resolution: {integrity: sha512-Ea2nLx9yH4c70MUQpFXuRAD6OZNVdyVGppvNwyGswutqPkRu7km18ml4Jk767iGMAVfzmrlphd6VIUJBUJ81JQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-palette/-/plugin-palette-2.0.0-beta.67.tgz} name: '@vuepress/plugin-palette' - version: 2.0.0-beta.62 + version: 2.0.0-beta.67 dependencies: - '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 + '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 chokidar: registry.npmmirror.com/chokidar@3.5.3 transitivePeerDependencies: + - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/@vuepress/plugin-prismjs@2.0.0-beta.62: - resolution: {integrity: sha512-kPrlh+I4w+YyU6joahjvuMo2zMwbpB36drZYfjXtYFFIxpBQ5Xdse4xx89vYOX0KqckOQrNa/tnYnfBuHBkgAQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-prismjs/-/plugin-prismjs-2.0.0-beta.62.tgz} + registry.npmmirror.com/@vuepress/plugin-prismjs@2.0.0-beta.67: + resolution: {integrity: sha512-IaTc/BHwdO/ydfcoGmqUsDI5G2rPsgffxDtHx4pogaBCF2A6X9O++hrR/YExOHwwyhaE/6c6kflJAefaHb+Arg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-prismjs/-/plugin-prismjs-2.0.0-beta.67.tgz} name: '@vuepress/plugin-prismjs' - version: 2.0.0-beta.62 + version: 2.0.0-beta.67 dependencies: - '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.62 + '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.67 prismjs: registry.npmmirror.com/prismjs@1.29.0 transitivePeerDependencies: + - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/@vuepress/plugin-search@2.0.0-beta.62: - resolution: {integrity: sha512-TKm4E+qNX+nHMmVE9hIV5kwC/5rT2b0REVKgTW25vRxCNVLp+VHZOAhszicNY0pYWYySaMJ+mne+tNLDRahRjw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-search/-/plugin-search-2.0.0-beta.62.tgz} + registry.npmmirror.com/@vuepress/plugin-search@2.0.0-beta.67: + resolution: {integrity: sha512-oju9DK2zQE7PqP7EXm/c0ekoG0clLSn4h6Y7DvgbXJRmonM42oHHj3DdC/eGtyLhTUGuD7mw93Svj2uaC556Nw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-search/-/plugin-search-2.0.0-beta.67.tgz} name: '@vuepress/plugin-search' - version: 2.0.0-beta.62 + version: 2.0.0-beta.67 dependencies: - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.62 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.67 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 chokidar: registry.npmmirror.com/chokidar@3.5.3 vue: registry.npmmirror.com/vue@3.3.4 - vue-router: registry.npmmirror.com/vue-router@4.2.2(vue@3.3.4) + vue-router: registry.npmmirror.com/vue-router@4.2.4(vue@3.3.4) transitivePeerDependencies: + - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/@vuepress/plugin-theme-data@2.0.0-beta.62: - resolution: {integrity: sha512-q6XHIDnZcJ5W55TlynKrwHtHormZedEY5man9zT4hlZywr3vVBgToHztObNTqgn6CssFaW2BFXDlW17iyS2D2A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-theme-data/-/plugin-theme-data-2.0.0-beta.62.tgz} + registry.npmmirror.com/@vuepress/plugin-theme-data@2.0.0-beta.67: + resolution: {integrity: sha512-emTj1fvYXM/+WWObmgR0STRwkcDEM9QLD9ZP/JK5hEdt9KQnl8qO9NIzVfP/acgqbxFJQVvsmMSruXXknN68FQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/plugin-theme-data/-/plugin-theme-data-2.0.0-beta.67.tgz} name: '@vuepress/plugin-theme-data' - version: 2.0.0-beta.62 + version: 2.0.0-beta.67 dependencies: '@vue/devtools-api': registry.npmmirror.com/@vue/devtools-api@6.5.0 - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.62 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.67 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 vue: registry.npmmirror.com/vue@3.3.4 transitivePeerDependencies: + - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62: - resolution: {integrity: sha512-+OH8WzFz7+IUv+WbcBbCiy3ZTWZ4a2uVRd4GYHWkTE4Ux5V2Sx3KwY17POIGpn/PfMqNHHtjpDH6rO7qmaD+pg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/shared/-/shared-2.0.0-beta.62.tgz} + registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67: + resolution: {integrity: sha512-gm8/6oAnd0Jh8g9xB89S+g8XJxt30QmeXK79J2Nwcbgy88CZnYbZssU1noyxFt4cHDX8wpUf8V5I388/dfHfoQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/shared/-/shared-2.0.0-beta.67.tgz} name: '@vuepress/shared' - version: 2.0.0-beta.62 + version: 2.0.0-beta.67 dependencies: '@mdit-vue/types': registry.npmmirror.com/@mdit-vue/types@0.12.0 '@vue/shared': registry.npmmirror.com/@vue/shared@3.3.4 dev: false - registry.npmmirror.com/@vuepress/theme-default@2.0.0-beta.62: - resolution: {integrity: sha512-J6wLH4tevMnn/2y+MrTpZEVDWf5yvikx0S9TIfpcxjR/nN4XD9eSZrMB3Lt8JqTW/lwFze5MVBdTtVafZs4b3g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/theme-default/-/theme-default-2.0.0-beta.62.tgz} + registry.npmmirror.com/@vuepress/theme-default@2.0.0-beta.67: + resolution: {integrity: sha512-t8wfKaf/WUAifcKTYfnpsUxTVF5C4LUSiX2DH+JTt0lB/bv4SKQstuZtLvLiV9C4q2ekjGpitaW85T4KDnshug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/theme-default/-/theme-default-2.0.0-beta.67.tgz} name: '@vuepress/theme-default' - version: 2.0.0-beta.62 + version: 2.0.0-beta.67 peerDependencies: sass-loader: ^13.2.1 peerDependenciesMeta: sass-loader: optional: true dependencies: - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.62 - '@vuepress/plugin-active-header-links': registry.npmmirror.com/@vuepress/plugin-active-header-links@2.0.0-beta.62 - '@vuepress/plugin-back-to-top': registry.npmmirror.com/@vuepress/plugin-back-to-top@2.0.0-beta.62 - '@vuepress/plugin-container': registry.npmmirror.com/@vuepress/plugin-container@2.0.0-beta.62 - '@vuepress/plugin-external-link-icon': registry.npmmirror.com/@vuepress/plugin-external-link-icon@2.0.0-beta.62 - '@vuepress/plugin-git': registry.npmmirror.com/@vuepress/plugin-git@2.0.0-beta.62 - '@vuepress/plugin-medium-zoom': registry.npmmirror.com/@vuepress/plugin-medium-zoom@2.0.0-beta.62 - '@vuepress/plugin-nprogress': registry.npmmirror.com/@vuepress/plugin-nprogress@2.0.0-beta.62 - '@vuepress/plugin-palette': registry.npmmirror.com/@vuepress/plugin-palette@2.0.0-beta.62 - '@vuepress/plugin-prismjs': registry.npmmirror.com/@vuepress/plugin-prismjs@2.0.0-beta.62 - '@vuepress/plugin-theme-data': registry.npmmirror.com/@vuepress/plugin-theme-data@2.0.0-beta.62 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 - '@vueuse/core': registry.npmmirror.com/@vueuse/core@10.1.2(vue@3.3.4) - sass: registry.npmmirror.com/sass@1.62.1 + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.67 + '@vuepress/plugin-active-header-links': registry.npmmirror.com/@vuepress/plugin-active-header-links@2.0.0-beta.67 + '@vuepress/plugin-back-to-top': registry.npmmirror.com/@vuepress/plugin-back-to-top@2.0.0-beta.67 + '@vuepress/plugin-container': registry.npmmirror.com/@vuepress/plugin-container@2.0.0-beta.67 + '@vuepress/plugin-external-link-icon': registry.npmmirror.com/@vuepress/plugin-external-link-icon@2.0.0-beta.67 + '@vuepress/plugin-git': registry.npmmirror.com/@vuepress/plugin-git@2.0.0-beta.67 + '@vuepress/plugin-medium-zoom': registry.npmmirror.com/@vuepress/plugin-medium-zoom@2.0.0-beta.67 + '@vuepress/plugin-nprogress': registry.npmmirror.com/@vuepress/plugin-nprogress@2.0.0-beta.67 + '@vuepress/plugin-palette': registry.npmmirror.com/@vuepress/plugin-palette@2.0.0-beta.67 + '@vuepress/plugin-prismjs': registry.npmmirror.com/@vuepress/plugin-prismjs@2.0.0-beta.67 + '@vuepress/plugin-theme-data': registry.npmmirror.com/@vuepress/plugin-theme-data@2.0.0-beta.67 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 + '@vueuse/core': registry.npmmirror.com/@vueuse/core@10.4.1(vue@3.3.4) + sass: registry.npmmirror.com/sass@1.66.1 vue: registry.npmmirror.com/vue@3.3.4 - vue-router: registry.npmmirror.com/vue-router@4.2.2(vue@3.3.4) + vue-router: registry.npmmirror.com/vue-router@4.2.4(vue@3.3.4) transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62: - resolution: {integrity: sha512-2hyGGrN1XCUapsSlckHc7FWkklSPZfqcM5eDYjxyIT9XpQrXKYn8r0CUVcveyFdHF76Tw0KyP57JCxUDTxHxVg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/utils/-/utils-2.0.0-beta.62.tgz} + registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67: + resolution: {integrity: sha512-wCK0uggm4gXroy7UkS1u8wDQmD4b0L6Gjqd/1PZTDhNlMLsrjBx7lqqoIKqarMdB2wmDLroPJcC9otvCz2oQug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vuepress/utils/-/utils-2.0.0-beta.67.tgz} name: '@vuepress/utils' - version: 2.0.0-beta.62 + version: 2.0.0-beta.67 dependencies: '@types/debug': registry.npmmirror.com/@types/debug@4.1.8 '@types/fs-extra': registry.npmmirror.com/@types/fs-extra@11.0.1 '@types/hash-sum': registry.npmmirror.com/@types/hash-sum@1.0.0 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 debug: registry.npmmirror.com/debug@4.3.4 fs-extra: registry.npmmirror.com/fs-extra@11.1.1 - globby: registry.npmmirror.com/globby@13.1.4 + globby: registry.npmmirror.com/globby@13.2.2 hash-sum: registry.npmmirror.com/hash-sum@2.0.0 - ora: registry.npmmirror.com/ora@6.3.1 + ora: registry.npmmirror.com/ora@7.0.1 picocolors: registry.npmmirror.com/picocolors@1.0.0 upath: registry.npmmirror.com/upath@2.0.1 transitivePeerDependencies: - supports-color dev: false - registry.npmmirror.com/@vueuse/core@10.1.2(vue@3.3.4): - resolution: {integrity: sha512-roNn8WuerI56A5uiTyF/TEYX0Y+VKlhZAF94unUfdhbDUI+NfwQMn4FUnUscIRUhv3344qvAghopU4bzLPNFlA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/core/-/core-10.1.2.tgz} - id: registry.npmmirror.com/@vueuse/core/10.1.2 + registry.npmmirror.com/@vueuse/core@10.4.1(vue@3.3.4): + resolution: {integrity: sha512-DkHIfMIoSIBjMgRRvdIvxsyboRZQmImofLyOHADqiVbQVilP8VVHDhBX2ZqoItOgu7dWa8oXiNnScOdPLhdEXg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/core/-/core-10.4.1.tgz} + id: registry.npmmirror.com/@vueuse/core/10.4.1 name: '@vueuse/core' - version: 10.1.2 + version: 10.4.1 dependencies: '@types/web-bluetooth': registry.npmmirror.com/@types/web-bluetooth@0.0.17 - '@vueuse/metadata': registry.npmmirror.com/@vueuse/metadata@10.1.2 - '@vueuse/shared': registry.npmmirror.com/@vueuse/shared@10.1.2(vue@3.3.4) + '@vueuse/metadata': registry.npmmirror.com/@vueuse/metadata@10.4.1 + '@vueuse/shared': registry.npmmirror.com/@vueuse/shared@10.4.1(vue@3.3.4) vue-demi: registry.npmmirror.com/vue-demi@0.14.5(vue@3.3.4) transitivePeerDependencies: - '@vue/composition-api' - vue dev: false - registry.npmmirror.com/@vueuse/metadata@10.1.2: - resolution: {integrity: sha512-3mc5BqN9aU2SqBeBuWE7ne4OtXHoHKggNgxZR2K+zIW4YLsy6xoZ4/9vErQs6tvoKDX6QAqm3lvsrv0mczAwIQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/metadata/-/metadata-10.1.2.tgz} + registry.npmmirror.com/@vueuse/metadata@10.4.1: + resolution: {integrity: sha512-2Sc8X+iVzeuMGHr6O2j4gv/zxvQGGOYETYXEc41h0iZXIRnRbJZGmY/QP8dvzqUelf8vg0p/yEA5VpCEu+WpZg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/metadata/-/metadata-10.4.1.tgz} name: '@vueuse/metadata' - version: 10.1.2 + version: 10.4.1 dev: false - registry.npmmirror.com/@vueuse/shared@10.1.2(vue@3.3.4): - resolution: {integrity: sha512-1uoUTPBlgyscK9v6ScGeVYDDzlPSFXBlxuK7SfrDGyUTBiznb3mNceqhwvZHjtDRELZEN79V5uWPTF1VDV8svA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/shared/-/shared-10.1.2.tgz} - id: registry.npmmirror.com/@vueuse/shared/10.1.2 + registry.npmmirror.com/@vueuse/shared@10.4.1(vue@3.3.4): + resolution: {integrity: sha512-vz5hbAM4qA0lDKmcr2y3pPdU+2EVw/yzfRsBdu+6+USGa4PxqSQRYIUC9/NcT06y+ZgaTsyURw2I9qOFaaXHAg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/shared/-/shared-10.4.1.tgz} + id: registry.npmmirror.com/@vueuse/shared/10.4.1 name: '@vueuse/shared' - version: 10.1.2 + version: 10.4.1 dependencies: vue-demi: registry.npmmirror.com/vue-demi@0.14.5(vue@3.3.4) transitivePeerDependencies: @@ -2978,13 +3049,13 @@ packages: - vue dev: false - registry.npmmirror.com/@waline/client@2.15.5: - resolution: {integrity: sha512-gLVeojWXRIRvXzVJwz9hfBokfde6KqZs+Adf7Z1SsEC3jAfyiqjOkdYkH93DhgMWyI0ck6nDlsBDLuePsFVifQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@waline/client/-/client-2.15.5.tgz} + registry.npmmirror.com/@waline/client@2.15.7: + resolution: {integrity: sha512-dQU0MZ+cMTBV0eIwIXCCptDZISEXaY61iRm+EAeQlZ6HpGLeZLaMf9N3EGz6qDNHQ/SNnWZ8MFB14/+2m0RZ7Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@waline/client/-/client-2.15.7.tgz} name: '@waline/client' - version: 2.15.5 + version: 2.15.7 engines: {node: '>=14'} dependencies: - '@vueuse/core': registry.npmmirror.com/@vueuse/core@10.1.2(vue@3.3.4) + '@vueuse/core': registry.npmmirror.com/@vueuse/core@10.4.1(vue@3.3.4) autosize: registry.npmmirror.com/autosize@6.0.1 marked: registry.npmmirror.com/marked@4.3.0 vue: registry.npmmirror.com/vue@3.3.4 @@ -3199,22 +3270,22 @@ packages: engines: {node: '>= 4.0.0'} dev: false - registry.npmmirror.com/autoprefixer@10.4.14(postcss@8.4.24): - resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/autoprefixer/-/autoprefixer-10.4.14.tgz} - id: registry.npmmirror.com/autoprefixer/10.4.14 + registry.npmmirror.com/autoprefixer@10.4.15(postcss@8.4.29): + resolution: {integrity: sha512-KCuPB8ZCIqFdA4HwKXsvz7j6gvSDNhDP7WnUjBleRkKjPdvCmHFuQ77ocavI8FT6NdvlBnE2UFr2H4Mycn8Vew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/autoprefixer/-/autoprefixer-10.4.15.tgz} + id: registry.npmmirror.com/autoprefixer/10.4.15 name: autoprefixer - version: 10.4.14 + version: 10.4.15 engines: {node: ^10 || ^12 || >=14} hasBin: true peerDependencies: postcss: ^8.1.0 dependencies: - browserslist: registry.npmmirror.com/browserslist@4.21.7 - caniuse-lite: registry.npmmirror.com/caniuse-lite@1.0.30001495 + browserslist: registry.npmmirror.com/browserslist@4.21.10 + caniuse-lite: registry.npmmirror.com/caniuse-lite@1.0.30001525 fraction.js: registry.npmmirror.com/fraction.js@4.2.0 normalize-range: registry.npmmirror.com/normalize-range@0.1.2 picocolors: registry.npmmirror.com/picocolors@1.0.0 - postcss: registry.npmmirror.com/postcss@8.4.24 + postcss: registry.npmmirror.com/postcss@8.4.29 postcss-value-parser: registry.npmmirror.com/postcss-value-parser@4.2.0 dev: false @@ -3231,7 +3302,7 @@ packages: engines: {node: '>= 0.4'} dev: false - registry.npmmirror.com/babel-plugin-polyfill-corejs2@0.4.3(@babel/core@7.22.1): + registry.npmmirror.com/babel-plugin-polyfill-corejs2@0.4.3(@babel/core@7.22.11): resolution: {integrity: sha512-bM3gHc337Dta490gg+/AseNB9L4YLHxq1nGKZZSHbhXv4aTYU2MD2cjza1Ru4S6975YLTaL1K8uJf6ukJhhmtw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.3.tgz} id: registry.npmmirror.com/babel-plugin-polyfill-corejs2/0.4.3 name: babel-plugin-polyfill-corejs2 @@ -3239,15 +3310,15 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': registry.npmmirror.com/@babel/compat-data@7.22.3 - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-define-polyfill-provider': registry.npmmirror.com/@babel/helper-define-polyfill-provider@0.4.0(@babel/core@7.22.1) - semver: registry.npmmirror.com/semver@6.3.0 + '@babel/compat-data': registry.npmmirror.com/@babel/compat-data@7.22.9 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-define-polyfill-provider': registry.npmmirror.com/@babel/helper-define-polyfill-provider@0.4.0(@babel/core@7.22.11) + semver: registry.npmmirror.com/semver@6.3.1 transitivePeerDependencies: - supports-color dev: false - registry.npmmirror.com/babel-plugin-polyfill-corejs3@0.8.1(@babel/core@7.22.1): + registry.npmmirror.com/babel-plugin-polyfill-corejs3@0.8.1(@babel/core@7.22.11): resolution: {integrity: sha512-ikFrZITKg1xH6pLND8zT14UPgjKHiGLqex7rGEZCH2EvhsneJaJPemmpQaIZV5AL03II+lXylw3UmddDK8RU5Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.1.tgz} id: registry.npmmirror.com/babel-plugin-polyfill-corejs3/0.8.1 name: babel-plugin-polyfill-corejs3 @@ -3255,14 +3326,14 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-define-polyfill-provider': registry.npmmirror.com/@babel/helper-define-polyfill-provider@0.4.0(@babel/core@7.22.1) + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-define-polyfill-provider': registry.npmmirror.com/@babel/helper-define-polyfill-provider@0.4.0(@babel/core@7.22.11) core-js-compat: registry.npmmirror.com/core-js-compat@3.30.2 transitivePeerDependencies: - supports-color dev: false - registry.npmmirror.com/babel-plugin-polyfill-regenerator@0.5.0(@babel/core@7.22.1): + registry.npmmirror.com/babel-plugin-polyfill-regenerator@0.5.0(@babel/core@7.22.11): resolution: {integrity: sha512-hDJtKjMLVa7Z+LwnTCxoDLQj6wdc+B8dun7ayF2fYieI6OzfuvcLMB32ihJZ4UhCBwNYGl5bg/x/P9cMdnkc2g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.0.tgz} id: registry.npmmirror.com/babel-plugin-polyfill-regenerator/0.5.0 name: babel-plugin-polyfill-regenerator @@ -3270,8 +3341,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/helper-define-polyfill-provider': registry.npmmirror.com/@babel/helper-define-polyfill-provider@0.4.0(@babel/core@7.22.1) + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/helper-define-polyfill-provider': registry.npmmirror.com/@babel/helper-define-polyfill-provider@0.4.0(@babel/core@7.22.11) transitivePeerDependencies: - supports-color dev: false @@ -3319,10 +3390,10 @@ packages: is-decimal: registry.npmmirror.com/is-decimal@1.0.4 dev: false - registry.npmmirror.com/bcrypt-ts@3.0.1: - resolution: {integrity: sha512-rRvmZZ+wAhsV8PA8bW+BQq5kWZzqmh20VdwqI19D2WdB7TLwNnYUB0wzFkp83WLvgpSqOF4L0w/uPr90Rao66g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/bcrypt-ts/-/bcrypt-ts-3.0.1.tgz} + registry.npmmirror.com/bcrypt-ts@4.0.0: + resolution: {integrity: sha512-EsO/XpRoEr+3d63rEwytqYUs2yeQcTdQ5qonRHgcRBUSY5yZXCSbgL1seMUt61Gx9JuYZaPIccWuAWqqmGU/TQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/bcrypt-ts/-/bcrypt-ts-4.0.0.tgz} name: bcrypt-ts - version: 3.0.1 + version: 4.0.0 dev: false registry.npmmirror.com/binary-extensions@2.2.0: @@ -3374,17 +3445,17 @@ packages: fill-range: registry.npmmirror.com/fill-range@7.0.1 dev: false - registry.npmmirror.com/browserslist@4.21.7: - resolution: {integrity: sha512-BauCXrQ7I2ftSqd2mvKHGo85XR0u7Ru3C/Hxsy/0TkfCtjrmAbPdzLGasmoiBxplpDXlPvdjX9u7srIMfgasNA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/browserslist/-/browserslist-4.21.7.tgz} + registry.npmmirror.com/browserslist@4.21.10: + resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/browserslist/-/browserslist-4.21.10.tgz} name: browserslist - version: 4.21.7 + version: 4.21.10 engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: registry.npmmirror.com/caniuse-lite@1.0.30001495 - electron-to-chromium: registry.npmmirror.com/electron-to-chromium@1.4.423 - node-releases: registry.npmmirror.com/node-releases@2.0.12 - update-browserslist-db: registry.npmmirror.com/update-browserslist-db@1.0.11(browserslist@4.21.7) + caniuse-lite: registry.npmmirror.com/caniuse-lite@1.0.30001525 + electron-to-chromium: registry.npmmirror.com/electron-to-chromium@1.4.508 + node-releases: registry.npmmirror.com/node-releases@2.0.13 + update-browserslist-db: registry.npmmirror.com/update-browserslist-db@1.0.11(browserslist@4.21.10) dev: false registry.npmmirror.com/buffer-from@1.1.2: @@ -3460,10 +3531,10 @@ packages: engines: {node: '>=6'} dev: false - registry.npmmirror.com/caniuse-lite@1.0.30001495: - resolution: {integrity: sha512-F6x5IEuigtUfU5ZMQK2jsy5JqUUlEFRVZq8bO2a+ysq5K7jD6PPc9YXZj78xDNS3uNchesp1Jw47YXEqr+Viyg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001495.tgz} + registry.npmmirror.com/caniuse-lite@1.0.30001525: + resolution: {integrity: sha512-/3z+wB4icFt3r0USMwxujAqRvaD/B7rvGTsKhbhSQErVrJvkZCLhgNLJxU8MevahQVH6hCU9FsHdNUFbiwmE7Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001525.tgz} name: caniuse-lite - version: 1.0.30001495 + version: 1.0.30001525 dev: false registry.npmmirror.com/chalk@2.4.2: @@ -3494,16 +3565,23 @@ packages: engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} dev: false + registry.npmmirror.com/chalk@5.3.0: + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chalk/-/chalk-5.3.0.tgz} + name: chalk + version: 5.3.0 + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + dev: false + registry.npmmirror.com/character-entities@2.0.2: resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/character-entities/-/character-entities-2.0.2.tgz} name: character-entities version: 2.0.2 dev: false - registry.npmmirror.com/chart.js@4.3.0: - resolution: {integrity: sha512-ynG0E79xGfMaV2xAHdbhwiPLczxnNNnasrmPEXriXsPJGjmhOBYzFVEsB65w2qMDz+CaBJJuJD0inE/ab/h36g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chart.js/-/chart.js-4.3.0.tgz} + registry.npmmirror.com/chart.js@4.4.0: + resolution: {integrity: sha512-vQEj6d+z0dcsKLlQvbKIMYFHd3t8W/7L2vfJIbYcfyPcRx92CsHqECpueN8qVGNlKyDcr5wBrYAYKnfu/9Q1hQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chart.js/-/chart.js-4.4.0.tgz} name: chart.js - version: 4.3.0 + version: 4.4.0 engines: {pnpm: '>=7'} dependencies: '@kurkle/color': registry.npmmirror.com/@kurkle/color@0.3.2 @@ -3594,13 +3672,6 @@ packages: wrap-ansi: registry.npmmirror.com/wrap-ansi@6.2.0 dev: false - registry.npmmirror.com/clone@1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/clone/-/clone-1.0.4.tgz} - name: clone - version: 1.0.4 - engines: {node: '>=0.8'} - dev: false - registry.npmmirror.com/codem-isoboxer@0.3.9: resolution: {integrity: sha512-4XOTqEzBWrGOZaMd+sTED2hLpzfBbiQCf1W6OBGkIHqk1D8uwy8WFLazVbdQwfDpQ+vf39lqTGPa9IhWW0roTA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/codem-isoboxer/-/codem-isoboxer-0.3.9.tgz} name: codem-isoboxer @@ -3721,7 +3792,7 @@ packages: name: core-js-compat version: 3.30.2 dependencies: - browserslist: registry.npmmirror.com/browserslist@4.21.7 + browserslist: registry.npmmirror.com/browserslist@4.21.10 dev: false registry.npmmirror.com/core-js@3.30.2: @@ -3836,6 +3907,14 @@ packages: lodash: registry.npmmirror.com/lodash@4.17.21 dev: false + registry.npmmirror.com/d3-array@2.12.1: + resolution: {integrity: sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-array/-/d3-array-2.12.1.tgz} + name: d3-array + version: 2.12.1 + dependencies: + internmap: registry.npmmirror.com/internmap@1.0.1 + dev: false + registry.npmmirror.com/d3-array@3.2.4: resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-array/-/d3-array-3.2.4.tgz} name: d3-array @@ -3987,6 +4066,12 @@ packages: d3-color: registry.npmmirror.com/d3-color@3.1.0 dev: false + registry.npmmirror.com/d3-path@1.0.9: + resolution: {integrity: sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-path/-/d3-path-1.0.9.tgz} + name: d3-path + version: 1.0.9 + dev: false + registry.npmmirror.com/d3-path@3.1.0: resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-path/-/d3-path-3.1.0.tgz} name: d3-path @@ -4015,6 +4100,15 @@ packages: engines: {node: '>=12'} dev: false + registry.npmmirror.com/d3-sankey@0.12.3: + resolution: {integrity: sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-sankey/-/d3-sankey-0.12.3.tgz} + name: d3-sankey + version: 0.12.3 + dependencies: + d3-array: registry.npmmirror.com/d3-array@2.12.1 + d3-shape: registry.npmmirror.com/d3-shape@1.3.7 + dev: false + registry.npmmirror.com/d3-scale-chromatic@3.0.0: resolution: {integrity: sha512-Lx9thtxAKrO2Pq6OO2Ua474opeziKr279P/TKZsMAhYyNDD3EnCffdbgeSYN5O7m2ByQsxtuP2CSDczNUIZ22g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz} name: d3-scale-chromatic @@ -4045,6 +4139,14 @@ packages: engines: {node: '>=12'} dev: false + registry.npmmirror.com/d3-shape@1.3.7: + resolution: {integrity: sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-shape/-/d3-shape-1.3.7.tgz} + name: d3-shape + version: 1.3.7 + dependencies: + d3-path: registry.npmmirror.com/d3-path@1.0.9 + dev: false + registry.npmmirror.com/d3-shape@3.2.0: resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-shape/-/d3-shape-3.2.0.tgz} name: d3-shape @@ -4156,10 +4258,10 @@ packages: lodash-es: registry.npmmirror.com/lodash-es@4.17.21 dev: false - registry.npmmirror.com/dashjs@4.7.0: - resolution: {integrity: sha512-+Sx5TJiT9eDOqODi3anXXBIx2oBM6ANMV5dzvCeSvYKwJ72SzX1bcJSPFLm7g7HTsRCh6pM1VL0XWfrzTlz9xw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/dashjs/-/dashjs-4.7.0.tgz} + registry.npmmirror.com/dashjs@4.7.1: + resolution: {integrity: sha512-RPUqJGjR4lXrApHfNOd9G6885q8GpQ4rWecYBMdJjXCtnM8sNg9bhqic3Jl0bTgR0Xzl7Jd86qRc1YZbq1wjPw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/dashjs/-/dashjs-4.7.1.tgz} name: dashjs - version: 4.7.0 + version: 4.7.1 dependencies: bcp-47-match: registry.npmmirror.com/bcp-47-match@1.0.3 bcp-47-normalize: registry.npmmirror.com/bcp-47-normalize@1.1.1 @@ -4173,10 +4275,10 @@ packages: ua-parser-js: registry.npmmirror.com/ua-parser-js@1.0.35 dev: false - registry.npmmirror.com/dayjs@1.11.8: - resolution: {integrity: sha512-LcgxzFoWMEPO7ggRv1Y2N31hUf2R0Vj7fuy/m+Bg1K8rr+KAs1AEy4y9jd5DXe8pbHgX+srkHNS7TH6Q6ZhYeQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/dayjs/-/dayjs-1.11.8.tgz} + registry.npmmirror.com/dayjs@1.11.9: + resolution: {integrity: sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/dayjs/-/dayjs-1.11.9.tgz} name: dayjs - version: 1.11.8 + version: 1.11.9 dev: false registry.npmmirror.com/debug@4.3.4: @@ -4222,14 +4324,6 @@ packages: engines: {node: '>=0.10.0'} dev: false - registry.npmmirror.com/defaults@1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/defaults/-/defaults-1.0.4.tgz} - name: defaults - version: 1.0.4 - dependencies: - clone: registry.npmmirror.com/clone@1.0.4 - dev: false - registry.npmmirror.com/define-properties@1.2.0: resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/define-properties/-/define-properties-1.2.0.tgz} name: define-properties @@ -4322,10 +4416,10 @@ packages: domelementtype: registry.npmmirror.com/domelementtype@2.3.0 dev: false - registry.npmmirror.com/dompurify@3.0.3: - resolution: {integrity: sha512-axQ9zieHLnAnHh0sfAamKYiqXMJAVwu+LM/alQ7WDagoWessyWvMSFyW65CqF3owufNu8HBcE4cM2Vflu7YWcQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/dompurify/-/dompurify-3.0.3.tgz} + registry.npmmirror.com/dompurify@3.0.5: + resolution: {integrity: sha512-F9e6wPGtY+8KNMRAVfxeCOHU0/NPWMSENNq4pQctuXRqqdEPW7q3CrLbR5Nse044WwacyjHGOMlvNsBe1y6z9A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/dompurify/-/dompurify-3.0.5.tgz} name: dompurify - version: 3.0.3 + version: 3.0.5 dev: false registry.npmmirror.com/domutils@3.1.0: @@ -4344,13 +4438,13 @@ packages: version: 0.2.0 dev: false - registry.npmmirror.com/echarts@5.4.2: - resolution: {integrity: sha512-2W3vw3oI2tWJdyAz+b8DuWS0nfXtSDqlDmqgin/lfzbkB01cuMEN66KWBlmur3YMp5nEDEEt5s23pllnAzB4EA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/echarts/-/echarts-5.4.2.tgz} + registry.npmmirror.com/echarts@5.4.3: + resolution: {integrity: sha512-mYKxLxhzy6zyTi/FaEbJMOZU1ULGEQHaeIeuMR5L+JnJTpz+YR03mnnpBhbR4+UYJAgiXgpyTVLffPAjOTLkZA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/echarts/-/echarts-5.4.3.tgz} name: echarts - version: 5.4.2 + version: 5.4.3 dependencies: tslib: registry.npmmirror.com/tslib@2.3.0 - zrender: registry.npmmirror.com/zrender@5.4.3 + zrender: registry.npmmirror.com/zrender@5.4.4 dev: false registry.npmmirror.com/ejs@3.1.9: @@ -4363,10 +4457,10 @@ packages: jake: registry.npmmirror.com/jake@10.8.7 dev: false - registry.npmmirror.com/electron-to-chromium@1.4.423: - resolution: {integrity: sha512-y4A7YfQcDGPAeSWM1IuoWzXpg9RY1nwHzHSwRtCSQFp9FgAVDgdWlFf0RbdWfLWQ2WUI+bddUgk5RgTjqRE6FQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.423.tgz} + registry.npmmirror.com/electron-to-chromium@1.4.508: + resolution: {integrity: sha512-FFa8QKjQK/A5QuFr2167myhMesGrhlOBD+3cYNxO9/S4XzHEXesyTD/1/xF644gC8buFPz3ca6G1LOQD0tZrrg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.508.tgz} name: electron-to-chromium - version: 1.4.423 + version: 1.4.508 dev: false registry.npmmirror.com/elkjs@0.8.2: @@ -4375,6 +4469,12 @@ packages: version: 0.8.2 dev: false + registry.npmmirror.com/emoji-regex@10.2.1: + resolution: {integrity: sha512-97g6QgOk8zlDRdgq1WxwgTMgEWGVAQvB5Fdpgc1MkNy56la5SKP9GsMXKDOdqwn90/41a8yPwIGk1Y6WVbeMQA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/emoji-regex/-/emoji-regex-10.2.1.tgz} + name: emoji-regex + version: 10.2.1 + dev: false + registry.npmmirror.com/emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz} name: emoji-regex @@ -4424,10 +4524,10 @@ packages: engines: {node: '>=6'} dev: false - registry.npmmirror.com/envinfo@7.8.1: - resolution: {integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/envinfo/-/envinfo-7.8.1.tgz} + registry.npmmirror.com/envinfo@7.10.0: + resolution: {integrity: sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/envinfo/-/envinfo-7.10.0.tgz} name: envinfo - version: 7.8.1 + version: 7.10.0 engines: {node: '>=4'} hasBin: true dev: false @@ -4508,36 +4608,36 @@ packages: version: 4.2.8 dev: false - registry.npmmirror.com/esbuild@0.17.19: - resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild/-/esbuild-0.17.19.tgz} + registry.npmmirror.com/esbuild@0.18.20: + resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild/-/esbuild-0.18.20.tgz} name: esbuild - version: 0.17.19 + version: 0.18.20 engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/android-arm': registry.npmmirror.com/@esbuild/android-arm@0.17.19 - '@esbuild/android-arm64': registry.npmmirror.com/@esbuild/android-arm64@0.17.19 - '@esbuild/android-x64': registry.npmmirror.com/@esbuild/android-x64@0.17.19 - '@esbuild/darwin-arm64': registry.npmmirror.com/@esbuild/darwin-arm64@0.17.19 - '@esbuild/darwin-x64': registry.npmmirror.com/@esbuild/darwin-x64@0.17.19 - '@esbuild/freebsd-arm64': registry.npmmirror.com/@esbuild/freebsd-arm64@0.17.19 - '@esbuild/freebsd-x64': registry.npmmirror.com/@esbuild/freebsd-x64@0.17.19 - '@esbuild/linux-arm': registry.npmmirror.com/@esbuild/linux-arm@0.17.19 - '@esbuild/linux-arm64': registry.npmmirror.com/@esbuild/linux-arm64@0.17.19 - '@esbuild/linux-ia32': registry.npmmirror.com/@esbuild/linux-ia32@0.17.19 - '@esbuild/linux-loong64': registry.npmmirror.com/@esbuild/linux-loong64@0.17.19 - '@esbuild/linux-mips64el': registry.npmmirror.com/@esbuild/linux-mips64el@0.17.19 - '@esbuild/linux-ppc64': registry.npmmirror.com/@esbuild/linux-ppc64@0.17.19 - '@esbuild/linux-riscv64': registry.npmmirror.com/@esbuild/linux-riscv64@0.17.19 - '@esbuild/linux-s390x': registry.npmmirror.com/@esbuild/linux-s390x@0.17.19 - '@esbuild/linux-x64': registry.npmmirror.com/@esbuild/linux-x64@0.17.19 - '@esbuild/netbsd-x64': registry.npmmirror.com/@esbuild/netbsd-x64@0.17.19 - '@esbuild/openbsd-x64': registry.npmmirror.com/@esbuild/openbsd-x64@0.17.19 - '@esbuild/sunos-x64': registry.npmmirror.com/@esbuild/sunos-x64@0.17.19 - '@esbuild/win32-arm64': registry.npmmirror.com/@esbuild/win32-arm64@0.17.19 - '@esbuild/win32-ia32': registry.npmmirror.com/@esbuild/win32-ia32@0.17.19 - '@esbuild/win32-x64': registry.npmmirror.com/@esbuild/win32-x64@0.17.19 + '@esbuild/android-arm': registry.npmmirror.com/@esbuild/android-arm@0.18.20 + '@esbuild/android-arm64': registry.npmmirror.com/@esbuild/android-arm64@0.18.20 + '@esbuild/android-x64': registry.npmmirror.com/@esbuild/android-x64@0.18.20 + '@esbuild/darwin-arm64': registry.npmmirror.com/@esbuild/darwin-arm64@0.18.20 + '@esbuild/darwin-x64': registry.npmmirror.com/@esbuild/darwin-x64@0.18.20 + '@esbuild/freebsd-arm64': registry.npmmirror.com/@esbuild/freebsd-arm64@0.18.20 + '@esbuild/freebsd-x64': registry.npmmirror.com/@esbuild/freebsd-x64@0.18.20 + '@esbuild/linux-arm': registry.npmmirror.com/@esbuild/linux-arm@0.18.20 + '@esbuild/linux-arm64': registry.npmmirror.com/@esbuild/linux-arm64@0.18.20 + '@esbuild/linux-ia32': registry.npmmirror.com/@esbuild/linux-ia32@0.18.20 + '@esbuild/linux-loong64': registry.npmmirror.com/@esbuild/linux-loong64@0.18.20 + '@esbuild/linux-mips64el': registry.npmmirror.com/@esbuild/linux-mips64el@0.18.20 + '@esbuild/linux-ppc64': registry.npmmirror.com/@esbuild/linux-ppc64@0.18.20 + '@esbuild/linux-riscv64': registry.npmmirror.com/@esbuild/linux-riscv64@0.18.20 + '@esbuild/linux-s390x': registry.npmmirror.com/@esbuild/linux-s390x@0.18.20 + '@esbuild/linux-x64': registry.npmmirror.com/@esbuild/linux-x64@0.18.20 + '@esbuild/netbsd-x64': registry.npmmirror.com/@esbuild/netbsd-x64@0.18.20 + '@esbuild/openbsd-x64': registry.npmmirror.com/@esbuild/openbsd-x64@0.18.20 + '@esbuild/sunos-x64': registry.npmmirror.com/@esbuild/sunos-x64@0.18.20 + '@esbuild/win32-arm64': registry.npmmirror.com/@esbuild/win32-arm64@0.18.20 + '@esbuild/win32-ia32': registry.npmmirror.com/@esbuild/win32-ia32@0.18.20 + '@esbuild/win32-x64': registry.npmmirror.com/@esbuild/win32-x64@0.18.20 dev: false registry.npmmirror.com/escalade@3.1.1: @@ -4594,20 +4694,20 @@ packages: version: 0.5.0 dev: false - registry.npmmirror.com/execa@7.1.1: - resolution: {integrity: sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/execa/-/execa-7.1.1.tgz} + registry.npmmirror.com/execa@8.0.1: + resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/execa/-/execa-8.0.1.tgz} name: execa - version: 7.1.1 - engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} + version: 8.0.1 + engines: {node: '>=16.17'} dependencies: cross-spawn: registry.npmmirror.com/cross-spawn@7.0.3 - get-stream: registry.npmmirror.com/get-stream@6.0.1 - human-signals: registry.npmmirror.com/human-signals@4.3.1 + get-stream: registry.npmmirror.com/get-stream@8.0.1 + human-signals: registry.npmmirror.com/human-signals@5.0.0 is-stream: registry.npmmirror.com/is-stream@3.0.0 merge-stream: registry.npmmirror.com/merge-stream@2.0.0 npm-run-path: registry.npmmirror.com/npm-run-path@5.1.0 onetime: registry.npmmirror.com/onetime@6.0.0 - signal-exit: registry.npmmirror.com/signal-exit@3.0.7 + signal-exit: registry.npmmirror.com/signal-exit@4.1.0 strip-final-newline: registry.npmmirror.com/strip-final-newline@3.0.0 dev: false @@ -4632,10 +4732,10 @@ packages: version: 3.1.3 dev: false - registry.npmmirror.com/fast-glob@3.2.12: - resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fast-glob/-/fast-glob-3.2.12.tgz} + registry.npmmirror.com/fast-glob@3.3.1: + resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.1.tgz} name: fast-glob - version: 3.2.12 + version: 3.3.1 engines: {node: '>=8.6.0'} dependencies: '@nodelib/fs.stat': registry.npmmirror.com/@nodelib/fs.stat@2.0.5 @@ -4869,11 +4969,11 @@ packages: engines: {node: '>=12'} dev: false - registry.npmmirror.com/get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/get-stream/-/get-stream-6.0.1.tgz} + registry.npmmirror.com/get-stream@8.0.1: + resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/get-stream/-/get-stream-8.0.1.tgz} name: get-stream - version: 6.0.1 - engines: {node: '>=10'} + version: 8.0.1 + engines: {node: '>=16'} dev: false registry.npmmirror.com/get-symbol-description@1.0.0: @@ -4886,10 +4986,10 @@ packages: get-intrinsic: registry.npmmirror.com/get-intrinsic@1.2.1 dev: false - registry.npmmirror.com/giscus@1.2.8: - resolution: {integrity: sha512-pufrgQYt1W+4ztiWp/PilLPN8NdyKvpbQ8jNqbAa1g84t6qqyevXHfkOYCi4x4d+y191vJAUc6seL1Dq74yUeA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/giscus/-/giscus-1.2.8.tgz} + registry.npmmirror.com/giscus@1.3.0: + resolution: {integrity: sha512-A3tVLgSmpnh2sX9uGjo9MbzmTTEJirSyFUPRvkipvy37y9rhxUYDoh9kO37QVrP7Sc7QuJ+gihB6apkO0yDyTw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/giscus/-/giscus-1.3.0.tgz} name: giscus - version: 1.2.8 + version: 1.3.0 dependencies: lit: registry.npmmirror.com/lit@2.7.5 dev: false @@ -4959,14 +5059,14 @@ packages: define-properties: registry.npmmirror.com/define-properties@1.2.0 dev: false - registry.npmmirror.com/globby@13.1.4: - resolution: {integrity: sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/globby/-/globby-13.1.4.tgz} + registry.npmmirror.com/globby@13.2.2: + resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/globby/-/globby-13.2.2.tgz} name: globby - version: 13.1.4 + version: 13.2.2 engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: dir-glob: registry.npmmirror.com/dir-glob@3.0.1 - fast-glob: registry.npmmirror.com/fast-glob@3.2.12 + fast-glob: registry.npmmirror.com/fast-glob@3.3.1 ignore: registry.npmmirror.com/ignore@5.2.4 merge2: registry.npmmirror.com/merge2@1.4.1 slash: registry.npmmirror.com/slash@4.0.0 @@ -5091,10 +5191,10 @@ packages: version: 0.2.7 dev: false - registry.npmmirror.com/hls.js@1.4.5: - resolution: {integrity: sha512-xb7IiSM9apU3tJWb5rdSStobXPNJJykHTwSy7JnLF5y/kLJXWjoR/fEpNBlwYxkKcDiiSfO9SQI8yFravZJxIg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/hls.js/-/hls.js-1.4.5.tgz} + registry.npmmirror.com/hls.js@1.4.12: + resolution: {integrity: sha512-1RBpx2VihibzE3WE9kGoVCtrhhDWTzydzElk/kyRbEOLnb1WIE+3ZabM/L8BqKFTCL3pUy4QzhXgD1Q6Igr1JA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/hls.js/-/hls.js-1.4.12.tgz} name: hls.js - version: 1.4.5 + version: 1.4.12 dev: false registry.npmmirror.com/html-entities@1.4.0: @@ -5145,11 +5245,11 @@ packages: - supports-color dev: false - registry.npmmirror.com/human-signals@4.3.1: - resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/human-signals/-/human-signals-4.3.1.tgz} + registry.npmmirror.com/human-signals@5.0.0: + resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/human-signals/-/human-signals-5.0.0.tgz} name: human-signals - version: 4.3.1 - engines: {node: '>=14.18.0'} + version: 5.0.0 + engines: {node: '>=16.17.0'} dev: false registry.npmmirror.com/humanize-ms@1.2.1: @@ -5278,6 +5378,12 @@ packages: side-channel: registry.npmmirror.com/side-channel@1.0.4 dev: false + registry.npmmirror.com/internmap@1.0.1: + resolution: {integrity: sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/internmap/-/internmap-1.0.1.tgz} + name: internmap + version: 1.0.1 + dev: false + registry.npmmirror.com/internmap@2.0.3: resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/internmap/-/internmap-2.0.3.tgz} name: internmap @@ -5661,10 +5767,10 @@ packages: engines: {node: '>=0.10.0'} dev: false - registry.npmmirror.com/katex@0.16.7: - resolution: {integrity: sha512-Xk9C6oGKRwJTfqfIbtr0Kes9OSv6IFsuhFGc7tW4urlpMJtuh+7YhzU6YEG9n8gmWKcMAFzkp7nr+r69kV0zrA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/katex/-/katex-0.16.7.tgz} + registry.npmmirror.com/katex@0.16.8: + resolution: {integrity: sha512-ftuDnJbcbOckGY11OO+zg3OofESlbR5DRl2cmN8HeWeeFIV7wTXvAOx8kEjZjobhA+9wh2fbKeO6cdcA9Mnovg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/katex/-/katex-0.16.8.tgz} name: katex - version: 0.16.7 + version: 0.16.8 hasBin: true dependencies: commander: registry.npmmirror.com/commander@8.3.0 @@ -5901,7 +6007,7 @@ packages: - supports-color dev: false - registry.npmmirror.com/markdown-it-anchor@8.6.7(@types/markdown-it@12.2.3)(markdown-it@13.0.1): + registry.npmmirror.com/markdown-it-anchor@8.6.7(@types/markdown-it@13.0.1)(markdown-it@13.0.1): resolution: {integrity: sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/markdown-it-anchor/-/markdown-it-anchor-8.6.7.tgz} id: registry.npmmirror.com/markdown-it-anchor/8.6.7 name: markdown-it-anchor @@ -5910,7 +6016,7 @@ packages: '@types/markdown-it': '*' markdown-it: '*' dependencies: - '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 + '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@13.0.1 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 dev: false @@ -6001,6 +6107,16 @@ packages: speech-rule-engine: registry.npmmirror.com/speech-rule-engine@4.0.7 dev: false + registry.npmmirror.com/maverick.js@0.37.0: + resolution: {integrity: sha512-1Dk/9rienLiihlktVvH04ADC2UJTMflC1fOMVQCCaQAaz7hgzDI5i0p/arFbDM52hFFiIcq4RdXtYz47SgsLgw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/maverick.js/-/maverick.js-0.37.0.tgz} + name: maverick.js + version: 0.37.0 + engines: {node: '>=16'} + dependencies: + '@maverick-js/signals': registry.npmmirror.com/@maverick-js/signals@5.11.2 + type-fest: registry.npmmirror.com/type-fest@3.13.1 + dev: false + registry.npmmirror.com/mdast-util-from-markdown@1.3.1: resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz} name: mdast-util-from-markdown @@ -6036,6 +6152,13 @@ packages: version: 1.0.1 dev: false + registry.npmmirror.com/media-captions@0.0.18: + resolution: {integrity: sha512-JW18P6FuHdyLSGwC4TQ0kF3WdNj/+wMw2cKOb8BnmY6vSJGtnwJ+vkYj+IjHOV34j3XMc70HDeB/QYKR7E7fuQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/media-captions/-/media-captions-0.0.18.tgz} + name: media-captions + version: 0.0.18 + engines: {node: '>=16'} + dev: false + registry.npmmirror.com/medium-zoom@1.0.8: resolution: {integrity: sha512-CjFVuFq/IfrdqesAXfg+hzlDKu6A2n80ZIq0Kl9kWjoHh9j1N9Uvk5X0/MmN0hOfm5F9YBswlClhcwnmtwz7gA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/medium-zoom/-/medium-zoom-1.0.8.tgz} name: medium-zoom @@ -6055,19 +6178,22 @@ packages: engines: {node: '>= 8'} dev: false - registry.npmmirror.com/mermaid@10.2.2: - resolution: {integrity: sha512-ifYKlCcZKYq48hxC1poJXnvk/PbCdgqqbg5B4qsybb8nIItPM1ATKqVEDkyde6BBJxVFhVJr9hoUjipzniQJZg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mermaid/-/mermaid-10.2.2.tgz} + registry.npmmirror.com/mermaid@10.4.0: + resolution: {integrity: sha512-4QCQLp79lvz7UZxow5HUX7uWTPJOaQBVExduo91tliXC7v78i6kssZOPHxLL+Xs30KU72cpPn3g3imw/xm/gaw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mermaid/-/mermaid-10.4.0.tgz} name: mermaid - version: 10.2.2 + version: 10.4.0 dependencies: '@braintree/sanitize-url': registry.npmmirror.com/@braintree/sanitize-url@6.0.2 + '@types/d3-scale': registry.npmmirror.com/@types/d3-scale@4.0.4 + '@types/d3-scale-chromatic': registry.npmmirror.com/@types/d3-scale-chromatic@3.0.0 cytoscape: registry.npmmirror.com/cytoscape@3.25.0 cytoscape-cose-bilkent: registry.npmmirror.com/cytoscape-cose-bilkent@4.1.0(cytoscape@3.25.0) cytoscape-fcose: registry.npmmirror.com/cytoscape-fcose@2.2.0(cytoscape@3.25.0) d3: registry.npmmirror.com/d3@7.8.5 + d3-sankey: registry.npmmirror.com/d3-sankey@0.12.3 dagre-d3-es: registry.npmmirror.com/dagre-d3-es@7.0.10 - dayjs: registry.npmmirror.com/dayjs@1.11.8 - dompurify: registry.npmmirror.com/dompurify@3.0.3 + dayjs: registry.npmmirror.com/dayjs@1.11.9 + dompurify: registry.npmmirror.com/dompurify@3.0.5 elkjs: registry.npmmirror.com/elkjs@0.8.2 khroma: registry.npmmirror.com/khroma@2.0.0 lodash-es: registry.npmmirror.com/lodash-es@4.17.21 @@ -6442,10 +6568,10 @@ packages: yallist: registry.npmmirror.com/yallist@4.0.0 dev: false - registry.npmmirror.com/mitt@3.0.0: - resolution: {integrity: sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mitt/-/mitt-3.0.0.tgz} + registry.npmmirror.com/mitt@3.0.1: + resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mitt/-/mitt-3.0.1.tgz} name: mitt - version: 3.0.0 + version: 3.0.1 dev: false registry.npmmirror.com/mj-context-menu@0.6.1: @@ -6557,10 +6683,10 @@ packages: - supports-color dev: false - registry.npmmirror.com/node-releases@2.0.12: - resolution: {integrity: sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-releases/-/node-releases-2.0.12.tgz} + registry.npmmirror.com/node-releases@2.0.13: + resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-releases/-/node-releases-2.0.13.tgz} name: node-releases - version: 2.0.12 + version: 2.0.13 dev: false registry.npmmirror.com/nodejs-jieba@0.0.2: @@ -6725,21 +6851,21 @@ packages: kind-of: registry.npmmirror.com/kind-of@6.0.3 dev: false - registry.npmmirror.com/ora@6.3.1: - resolution: {integrity: sha512-ERAyNnZOfqM+Ao3RAvIXkYh5joP220yf59gVe2X/cI6SiCxIdi4c9HZKZD8R6q/RDXEje1THBju6iExiSsgJaQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ora/-/ora-6.3.1.tgz} + registry.npmmirror.com/ora@7.0.1: + resolution: {integrity: sha512-0TUxTiFJWv+JnjWm4o9yvuskpEJLXTcng8MJuKd+SzAzp2o+OP3HWqNhB4OdJRt1Vsd9/mR0oyaEYlOnL7XIRw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ora/-/ora-7.0.1.tgz} name: ora - version: 6.3.1 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + version: 7.0.1 + engines: {node: '>=16'} dependencies: - chalk: registry.npmmirror.com/chalk@5.2.0 + chalk: registry.npmmirror.com/chalk@5.3.0 cli-cursor: registry.npmmirror.com/cli-cursor@4.0.0 cli-spinners: registry.npmmirror.com/cli-spinners@2.9.0 is-interactive: registry.npmmirror.com/is-interactive@2.0.0 is-unicode-supported: registry.npmmirror.com/is-unicode-supported@1.3.0 log-symbols: registry.npmmirror.com/log-symbols@5.1.0 stdin-discarder: registry.npmmirror.com/stdin-discarder@0.1.0 + string-width: registry.npmmirror.com/string-width@6.1.0 strip-ansi: registry.npmmirror.com/strip-ansi@7.1.0 - wcwidth: registry.npmmirror.com/wcwidth@1.0.1 dev: false registry.npmmirror.com/p-limit@2.3.0: @@ -6850,10 +6976,10 @@ packages: engines: {node: '>=8'} dev: false - registry.npmmirror.com/photoswipe@5.3.7: - resolution: {integrity: sha512-zsyLsTTLFrj0XR1m4/hO7qNooboFKUrDy+Zt5i2d6qjFPAtBjzaj/Xtydso4uxzcXpcqbTmyxDibb3BcSISseg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/photoswipe/-/photoswipe-5.3.7.tgz} + registry.npmmirror.com/photoswipe@5.3.9: + resolution: {integrity: sha512-z9ACLW9472gAawrIXXiliuz9xNZ3xEl7cIPHqY/lAeFQT9X+N9sgCwa86WK9wnK8cuk/F3QEO45n+QSiZnKd2A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/photoswipe/-/photoswipe-5.3.9.tgz} name: photoswipe - version: 5.3.7 + version: 5.3.9 engines: {node: '>= 0.12.0'} dev: false @@ -6889,7 +7015,7 @@ packages: engines: {node: '>=10.13.0'} dev: false - registry.npmmirror.com/postcss-load-config@4.0.1(postcss@8.4.24): + registry.npmmirror.com/postcss-load-config@4.0.1(postcss@8.4.29): resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-load-config/-/postcss-load-config-4.0.1.tgz} id: registry.npmmirror.com/postcss-load-config/4.0.1 name: postcss-load-config @@ -6905,7 +7031,7 @@ packages: optional: true dependencies: lilconfig: registry.npmmirror.com/lilconfig@2.1.0 - postcss: registry.npmmirror.com/postcss@8.4.24 + postcss: registry.npmmirror.com/postcss@8.4.29 yaml: registry.npmmirror.com/yaml@2.3.1 dev: false @@ -6926,6 +7052,17 @@ packages: source-map-js: registry.npmmirror.com/source-map-js@1.0.2 dev: false + registry.npmmirror.com/postcss@8.4.29: + resolution: {integrity: sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss/-/postcss-8.4.29.tgz} + name: postcss + version: 8.4.29 + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: registry.npmmirror.com/nanoid@3.3.6 + picocolors: registry.npmmirror.com/picocolors@1.0.0 + source-map-js: registry.npmmirror.com/source-map-js@1.0.2 + dev: false + registry.npmmirror.com/prettier@2.8.8: resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/prettier/-/prettier-2.8.8.tgz} name: prettier @@ -7192,7 +7329,7 @@ packages: peerDependencies: rollup: ^2.0.0 dependencies: - '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.21.4 + '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.22.13 jest-worker: registry.npmmirror.com/jest-worker@26.6.2 rollup: registry.npmmirror.com/rollup@2.79.1 serialize-javascript: registry.npmmirror.com/serialize-javascript@4.0.0 @@ -7209,10 +7346,10 @@ packages: fsevents: registry.npmmirror.com/fsevents@2.3.2 dev: false - registry.npmmirror.com/rollup@3.23.1: - resolution: {integrity: sha512-ybRdFVHOoljGEFILHLd2g/qateqUdjE6YS41WXq4p3C/WwD3xtWxV4FYWETA1u9TeXQc5K8L8zHE5d/scOvrOQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rollup/-/rollup-3.23.1.tgz} + registry.npmmirror.com/rollup@3.28.1: + resolution: {integrity: sha512-R9OMQmIHJm9znrU3m3cpE8uhN0fGdXiawME7aZIpQqvpS/85+Vt1Hq1/yVIcYfOmaQiHjvXkQAoJukvLpau6Yw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rollup/-/rollup-3.28.1.tgz} name: rollup - version: 3.23.1 + version: 3.28.1 engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: @@ -7276,10 +7413,10 @@ packages: version: 2.1.2 dev: false - registry.npmmirror.com/sass@1.62.1: - resolution: {integrity: sha512-NHpxIzN29MXvWiuswfc1W3I0N8SXBd8UR26WntmDlRYf0bSADnwnOjsyMZ3lMezSlArD33Vs3YFhp7dWvL770A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sass/-/sass-1.62.1.tgz} + registry.npmmirror.com/sass@1.66.1: + resolution: {integrity: sha512-50c+zTsZOJVgFfTgwwEzkjA3/QACgdNsKueWPyAR0mRINIvLAStVQBbPg14iuqEQ74NPDbXzJARJ/O4SI1zftA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sass/-/sass-1.66.1.tgz} name: sass - version: 1.62.1 + version: 1.66.1 engines: {node: '>=14.0.0'} hasBin: true dependencies: @@ -7317,6 +7454,13 @@ packages: hasBin: true dev: false + registry.npmmirror.com/semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz} + name: semver + version: 6.3.1 + hasBin: true + dev: false + registry.npmmirror.com/semver@7.5.1: resolution: {integrity: sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/semver/-/semver-7.5.1.tgz} name: semver @@ -7327,6 +7471,16 @@ packages: lru-cache: registry.npmmirror.com/lru-cache@6.0.0 dev: false + registry.npmmirror.com/semver@7.5.4: + resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz} + name: semver + version: 7.5.4 + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: registry.npmmirror.com/lru-cache@6.0.0 + dev: false + registry.npmmirror.com/serialize-javascript@4.0.0: resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz} name: serialize-javascript @@ -7380,6 +7534,13 @@ packages: engines: {node: '>=14'} dev: false + registry.npmmirror.com/signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/signal-exit/-/signal-exit-4.1.0.tgz} + name: signal-exit + version: 4.1.0 + engines: {node: '>=14'} + dev: false + registry.npmmirror.com/sitemap@7.1.1: resolution: {integrity: sha512-mK3aFtjz4VdJN0igpIJrinf3EO8U8mxOPsTBzSsy06UtjZQJ3YY3o3Xa7zSc5nMqcMrRwlChHZ18Kxg0caiPBg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sitemap/-/sitemap-7.1.1.tgz} name: sitemap @@ -7526,6 +7687,17 @@ packages: strip-ansi: registry.npmmirror.com/strip-ansi@7.1.0 dev: false + registry.npmmirror.com/string-width@6.1.0: + resolution: {integrity: sha512-k01swCJAgQmuADB0YIc+7TuatfNvTBVOoaUWJjTB9R4VJzR5vNWzf5t42ESVZFPS8xTySF7CAdV4t/aaIm3UnQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string-width/-/string-width-6.1.0.tgz} + name: string-width + version: 6.1.0 + engines: {node: '>=16'} + dependencies: + eastasianwidth: registry.npmmirror.com/eastasianwidth@0.2.0 + emoji-regex: registry.npmmirror.com/emoji-regex@10.2.1 + strip-ansi: registry.npmmirror.com/strip-ansi@7.1.0 + dev: false + registry.npmmirror.com/string.prototype.matchall@4.0.8: resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz} name: string.prototype.matchall @@ -7775,10 +7947,10 @@ packages: version: 2.5.3 dev: false - registry.npmmirror.com/twikoo@1.6.16: - resolution: {integrity: sha512-U+yaZsM2h0WBoju5TKrm1sq+pb0WEzIynS8B/x4g7UMS30YlUbKePYU7nKU2bf00xubZvkbmICKRNy07naZhhQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/twikoo/-/twikoo-1.6.16.tgz} + registry.npmmirror.com/twikoo@1.6.18: + resolution: {integrity: sha512-BP5s05r323Z7uh2NphqNeATk4G5O9PU+ds/d6KuSnict6cUurcFoO7844zSlf5bruHwZoUsLSqWlgTZtvcD/rQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/twikoo/-/twikoo-1.6.18.tgz} name: twikoo - version: 1.6.16 + version: 1.6.18 dev: false registry.npmmirror.com/type-fest@0.16.0: @@ -7788,6 +7960,13 @@ packages: engines: {node: '>=10'} dev: false + registry.npmmirror.com/type-fest@3.13.1: + resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/type-fest/-/type-fest-3.13.1.tgz} + name: type-fest + version: 3.13.1 + engines: {node: '>=14.16'} + dev: false + registry.npmmirror.com/typed-array-length@1.0.4: resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/typed-array-length/-/typed-array-length-1.0.4.tgz} name: typed-array-length @@ -7908,7 +8087,7 @@ packages: engines: {node: '>=4'} dev: false - registry.npmmirror.com/update-browserslist-db@1.0.11(browserslist@4.21.7): + registry.npmmirror.com/update-browserslist-db@1.0.11(browserslist@4.21.10): resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz} id: registry.npmmirror.com/update-browserslist-db/1.0.11 name: update-browserslist-db @@ -7917,7 +8096,7 @@ packages: peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: registry.npmmirror.com/browserslist@4.21.7 + browserslist: registry.npmmirror.com/browserslist@4.21.10 escalade: registry.npmmirror.com/escalade@3.1.1 picocolors: registry.npmmirror.com/picocolors@1.0.0 dev: false @@ -7962,15 +8141,27 @@ packages: sade: registry.npmmirror.com/sade@1.8.1 dev: false - registry.npmmirror.com/vite@4.3.9: - resolution: {integrity: sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vite/-/vite-4.3.9.tgz} + registry.npmmirror.com/vidstack@0.6.13: + resolution: {integrity: sha512-g5wH6Hfc4EQqOI0Mm7qW4D1DWPZfQnlATLZuqpuVAKI8HOz4UGfd1v48MLK9cR+ZfPjVL4/iZLu7YOIdSX3L2g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vidstack/-/vidstack-0.6.13.tgz} + name: vidstack + version: 0.6.13 + engines: {node: '>=16'} + dependencies: + maverick.js: registry.npmmirror.com/maverick.js@0.37.0 + media-captions: registry.npmmirror.com/media-captions@0.0.18 + type-fest: registry.npmmirror.com/type-fest@3.13.1 + dev: false + + registry.npmmirror.com/vite@4.4.9: + resolution: {integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vite/-/vite-4.4.9.tgz} name: vite - version: 4.3.9 + version: 4.4.9 engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: '@types/node': '>= 14' less: '*' + lightningcss: ^1.21.0 sass: '*' stylus: '*' sugarss: '*' @@ -7980,6 +8171,8 @@ packages: optional: true less: optional: true + lightningcss: + optional: true sass: optional: true stylus: @@ -7989,9 +8182,9 @@ packages: terser: optional: true dependencies: - esbuild: registry.npmmirror.com/esbuild@0.17.19 - postcss: registry.npmmirror.com/postcss@8.4.24 - rollup: registry.npmmirror.com/rollup@3.23.1 + esbuild: registry.npmmirror.com/esbuild@0.18.20 + postcss: registry.npmmirror.com/postcss@8.4.29 + rollup: registry.npmmirror.com/rollup@3.28.1 optionalDependencies: fsevents: registry.npmmirror.com/fsevents@2.3.2 dev: false @@ -8014,11 +8207,11 @@ packages: vue: registry.npmmirror.com/vue@3.3.4 dev: false - registry.npmmirror.com/vue-router@4.2.2(vue@3.3.4): - resolution: {integrity: sha512-cChBPPmAflgBGmy3tBsjeoe3f3VOSG6naKyY5pjtrqLGbNEXdzCigFUHgBvp9e3ysAtFtEx7OLqcSDh/1Cq2TQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-router/-/vue-router-4.2.2.tgz} - id: registry.npmmirror.com/vue-router/4.2.2 + registry.npmmirror.com/vue-router@4.2.4(vue@3.3.4): + resolution: {integrity: sha512-9PISkmaCO02OzPVOMq2w82ilty6+xJmQrarYZDkjZBfl4RvYAlt4PKnEX21oW4KTtWfa9OuO/b3qk1Od3AEdCQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-router/-/vue-router-4.2.4.tgz} + id: registry.npmmirror.com/vue-router/4.2.4 name: vue-router - version: 4.2.2 + version: 4.2.4 peerDependencies: vue: ^3.2.0 dependencies: @@ -8038,17 +8231,17 @@ packages: '@vue/shared': registry.npmmirror.com/@vue/shared@3.3.4 dev: false - registry.npmmirror.com/vuepress-plugin-auto-catalog@2.0.0-beta.221(vuepress@2.0.0-beta.62): - resolution: {integrity: sha512-C7HzKOH97IiTc7dNbe5oJriTCftAmulaRpDcFDfQAKhAIyeb3ivgvR27QCtnrQ5ABGzP+8l9uZ5ZwAe8+cjHPA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-auto-catalog/-/vuepress-plugin-auto-catalog-2.0.0-beta.221.tgz} - id: registry.npmmirror.com/vuepress-plugin-auto-catalog/2.0.0-beta.221 + registry.npmmirror.com/vuepress-plugin-auto-catalog@2.0.0-beta.236(vuepress@2.0.0-beta.67): + resolution: {integrity: sha512-mq2HgUyy778AvCEHrSn1XDIRtL8T+k96c5XJlQ3zsCIwnJFwitaHkX8FQySS/Rbzs3GFHeZhssjqovqfPtN/3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-auto-catalog/-/vuepress-plugin-auto-catalog-2.0.0-beta.236.tgz} + id: registry.npmmirror.com/vuepress-plugin-auto-catalog/2.0.0-beta.236 name: vuepress-plugin-auto-catalog - version: 2.0.0-beta.221 - engines: {node: '>=16.0.0', npm: '>=8', pnpm: '>=7'} + version: 2.0.0-beta.236 + engines: {node: '>=16.19.0', npm: '>=8', pnpm: '>=7'} peerDependencies: - sass-loader: ^13.3.1 - vuepress: 2.0.0-beta.62 - vuepress-vite: 2.0.0-beta.62 - vuepress-webpack: 2.0.0-beta.62 + sass-loader: ^13.3.2 + vuepress: 2.0.0-beta.67 + vuepress-vite: 2.0.0-beta.67 + vuepress-webpack: 2.0.0-beta.67 peerDependenciesMeta: sass-loader: optional: true @@ -8059,31 +8252,31 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.62 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.67 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 vue: registry.npmmirror.com/vue@3.3.4 - vue-router: registry.npmmirror.com/vue-router@4.2.2(vue@3.3.4) - vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.62(@vuepress/client@2.0.0-beta.62)(vue@3.3.4) - vuepress-plugin-components: registry.npmmirror.com/vuepress-plugin-components@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-plugin-sass-palette: registry.npmmirror.com/vuepress-plugin-sass-palette@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.221(vuepress@2.0.0-beta.62) + vue-router: registry.npmmirror.com/vue-router@4.2.4(vue@3.3.4) + vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.67(@vuepress/client@2.0.0-beta.67)(vue@3.3.4) + vuepress-plugin-components: registry.npmmirror.com/vuepress-plugin-components@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-plugin-sass-palette: registry.npmmirror.com/vuepress-plugin-sass-palette@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.236(vuepress@2.0.0-beta.67) transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/vuepress-plugin-blog2@2.0.0-beta.221(vuepress@2.0.0-beta.62): - resolution: {integrity: sha512-NFBunR0Io8uZEQ10fRTdYcSzIZ0RoNhFQBMOX6bV81h1VEM9/h7aLsaQ5WKzvShYQvrrc9vT7J9Ql6SUC+D4gQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-blog2/-/vuepress-plugin-blog2-2.0.0-beta.221.tgz} - id: registry.npmmirror.com/vuepress-plugin-blog2/2.0.0-beta.221 + registry.npmmirror.com/vuepress-plugin-blog2@2.0.0-beta.236(vuepress@2.0.0-beta.67): + resolution: {integrity: sha512-ISFBq0j1MmJwj0bLsCoDamlewCzGrnlWID9pqFeKTmb0XSK/Lv5cjC5rY1qxE9UebEB4ymVochCWMnQfIAkYzg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-blog2/-/vuepress-plugin-blog2-2.0.0-beta.236.tgz} + id: registry.npmmirror.com/vuepress-plugin-blog2/2.0.0-beta.236 name: vuepress-plugin-blog2 - version: 2.0.0-beta.221 - engines: {node: '>=16.0.0', npm: '>=8', pnpm: '>=7'} + version: 2.0.0-beta.236 + engines: {node: '>=16.19.0', npm: '>=8', pnpm: '>=7'} peerDependencies: - vuepress: 2.0.0-beta.62 - vuepress-vite: 2.0.0-beta.62 - vuepress-webpack: 2.0.0-beta.62 + vuepress: 2.0.0-beta.67 + vuepress-vite: 2.0.0-beta.67 + vuepress-webpack: 2.0.0-beta.67 peerDependenciesMeta: vuepress: optional: true @@ -8092,31 +8285,31 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.62 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.67 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 chokidar: registry.npmmirror.com/chokidar@3.5.3 vue: registry.npmmirror.com/vue@3.3.4 - vue-router: registry.npmmirror.com/vue-router@4.2.2(vue@3.3.4) - vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.62(@vuepress/client@2.0.0-beta.62)(vue@3.3.4) - vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.221(vuepress@2.0.0-beta.62) + vue-router: registry.npmmirror.com/vue-router@4.2.4(vue@3.3.4) + vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.67(@vuepress/client@2.0.0-beta.67)(vue@3.3.4) + vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.236(vuepress@2.0.0-beta.67) transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/vuepress-plugin-comment2@2.0.0-beta.221(vuepress@2.0.0-beta.62): - resolution: {integrity: sha512-z1R7CUkqB96omzJY1ha4UpnqRw3fe5DnQFaXY3y8eYNs9T60LxT4vNgbdw8SjMKtMvwJ1fWDQIuXL0IFDCRCZA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-comment2/-/vuepress-plugin-comment2-2.0.0-beta.221.tgz} - id: registry.npmmirror.com/vuepress-plugin-comment2/2.0.0-beta.221 + registry.npmmirror.com/vuepress-plugin-comment2@2.0.0-beta.236(vuepress@2.0.0-beta.67): + resolution: {integrity: sha512-EDeTdF81zM8Y7wN4LK1e4mPAEKAsicb4nytb0CGCSZfoFxAe0aPgpitYvJww2HyvLV3Zew5Ob0U83QzLSjWx+w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-comment2/-/vuepress-plugin-comment2-2.0.0-beta.236.tgz} + id: registry.npmmirror.com/vuepress-plugin-comment2/2.0.0-beta.236 name: vuepress-plugin-comment2 - version: 2.0.0-beta.221 - engines: {node: '>=16.0.0', npm: '>=8', pnpm: '>=7'} + version: 2.0.0-beta.236 + engines: {node: '>=16.19.0', npm: '>=8', pnpm: '>=7'} peerDependencies: - sass-loader: ^13.3.1 - vuepress: 2.0.0-beta.62 - vuepress-vite: 2.0.0-beta.62 - vuepress-webpack: 2.0.0-beta.62 + sass-loader: ^13.3.2 + vuepress: 2.0.0-beta.67 + vuepress-vite: 2.0.0-beta.67 + vuepress-webpack: 2.0.0-beta.67 peerDependenciesMeta: sass-loader: optional: true @@ -8127,34 +8320,34 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 - '@waline/client': registry.npmmirror.com/@waline/client@2.15.5 + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 + '@waline/client': registry.npmmirror.com/@waline/client@2.15.7 artalk: registry.npmmirror.com/artalk@2.5.5 - giscus: registry.npmmirror.com/giscus@1.2.8 - twikoo: registry.npmmirror.com/twikoo@1.6.16 + giscus: registry.npmmirror.com/giscus@1.3.0 + twikoo: registry.npmmirror.com/twikoo@1.6.18 vue: registry.npmmirror.com/vue@3.3.4 - vue-router: registry.npmmirror.com/vue-router@4.2.2(vue@3.3.4) - vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.62(@vuepress/client@2.0.0-beta.62)(vue@3.3.4) - vuepress-plugin-sass-palette: registry.npmmirror.com/vuepress-plugin-sass-palette@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.221(vuepress@2.0.0-beta.62) + vue-router: registry.npmmirror.com/vue-router@4.2.4(vue@3.3.4) + vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.67(@vuepress/client@2.0.0-beta.67)(vue@3.3.4) + vuepress-plugin-sass-palette: registry.npmmirror.com/vuepress-plugin-sass-palette@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.236(vuepress@2.0.0-beta.67) transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/vuepress-plugin-components@2.0.0-beta.221(vuepress@2.0.0-beta.62): - resolution: {integrity: sha512-o390FDMM2kQkML4hmHA2TUcKxj9oqK+yVfJzkRpPh6aavqXeoAwQTm2Itd6FRszostDvUN45cgZPFU2gEdW/6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-components/-/vuepress-plugin-components-2.0.0-beta.221.tgz} - id: registry.npmmirror.com/vuepress-plugin-components/2.0.0-beta.221 + registry.npmmirror.com/vuepress-plugin-components@2.0.0-beta.236(vuepress@2.0.0-beta.67): + resolution: {integrity: sha512-iVIj7MQpS7+eg6+c8r+nQ4AaoIZHK3fzWJ9S1w0SIwbuahQ6pvpzlouHhG+ig2kJ1Nd+Z/RFVizT4cEqYEGrWA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-components/-/vuepress-plugin-components-2.0.0-beta.236.tgz} + id: registry.npmmirror.com/vuepress-plugin-components/2.0.0-beta.236 name: vuepress-plugin-components - version: 2.0.0-beta.221 - engines: {node: '>=16.0.0', npm: '>=8', pnpm: '>=7'} + version: 2.0.0-beta.236 + engines: {node: '>=16.19.0', npm: '>=8', pnpm: '>=7'} peerDependencies: - sass-loader: ^13.3.1 - vuepress: 2.0.0-beta.62 - vuepress-vite: 2.0.0-beta.62 - vuepress-webpack: 2.0.0-beta.62 + sass-loader: ^13.3.2 + vuepress: 2.0.0-beta.67 + vuepress-vite: 2.0.0-beta.67 + vuepress-webpack: 2.0.0-beta.67 peerDependenciesMeta: sass-loader: optional: true @@ -8166,40 +8359,41 @@ packages: optional: true dependencies: '@stackblitz/sdk': registry.npmmirror.com/@stackblitz/sdk@1.9.0 - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 - '@vueuse/core': registry.npmmirror.com/@vueuse/core@10.1.2(vue@3.3.4) + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 + '@vueuse/core': registry.npmmirror.com/@vueuse/core@10.4.1(vue@3.3.4) artplayer: registry.npmmirror.com/artplayer@5.0.9 balloon-css: registry.npmmirror.com/balloon-css@1.2.0 create-codepen: registry.npmmirror.com/create-codepen@0.0.3 - dashjs: registry.npmmirror.com/dashjs@4.7.0 - hls.js: registry.npmmirror.com/hls.js@1.4.5 + dashjs: registry.npmmirror.com/dashjs@4.7.1 + hls.js: registry.npmmirror.com/hls.js@1.4.12 mpegts.js: registry.npmmirror.com/mpegts.js@1.7.3 plyr: registry.npmmirror.com/plyr@3.7.8 qrcode: registry.npmmirror.com/qrcode@1.5.3 + vidstack: registry.npmmirror.com/vidstack@0.6.13 vue: registry.npmmirror.com/vue@3.3.4 - vue-router: registry.npmmirror.com/vue-router@4.2.2(vue@3.3.4) - vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.62(@vuepress/client@2.0.0-beta.62)(vue@3.3.4) - vuepress-plugin-reading-time2: registry.npmmirror.com/vuepress-plugin-reading-time2@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-plugin-sass-palette: registry.npmmirror.com/vuepress-plugin-sass-palette@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.221(vuepress@2.0.0-beta.62) + vue-router: registry.npmmirror.com/vue-router@4.2.4(vue@3.3.4) + vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.67(@vuepress/client@2.0.0-beta.67)(vue@3.3.4) + vuepress-plugin-reading-time2: registry.npmmirror.com/vuepress-plugin-reading-time2@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-plugin-sass-palette: registry.npmmirror.com/vuepress-plugin-sass-palette@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.236(vuepress@2.0.0-beta.67) transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/vuepress-plugin-copy-code2@2.0.0-beta.221(vuepress@2.0.0-beta.62): - resolution: {integrity: sha512-eeSTrGK4esbQiRMhm9RfDdM4lhXWBiYHyeIghqaufjS0Exup/PpXgq40VpeRyJWfRNpGk5ebmbXBNKfsZ5HPvw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-copy-code2/-/vuepress-plugin-copy-code2-2.0.0-beta.221.tgz} - id: registry.npmmirror.com/vuepress-plugin-copy-code2/2.0.0-beta.221 + registry.npmmirror.com/vuepress-plugin-copy-code2@2.0.0-beta.236(vuepress@2.0.0-beta.67): + resolution: {integrity: sha512-mrtqtDDSDtAGSiqYlgwrovX1beIQfCFR3LVH6VT8JX032Sc1OA7az3+rjYLWfqgq8sbhF2r3pQdXdUGDhDcOJg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-copy-code2/-/vuepress-plugin-copy-code2-2.0.0-beta.236.tgz} + id: registry.npmmirror.com/vuepress-plugin-copy-code2/2.0.0-beta.236 name: vuepress-plugin-copy-code2 - version: 2.0.0-beta.221 - engines: {node: '>=16.0.0', npm: '>=8', pnpm: '>=7'} + version: 2.0.0-beta.236 + engines: {node: '>=16.19.0', npm: '>=8', pnpm: '>=7'} peerDependencies: - sass-loader: ^13.3.1 - vuepress: 2.0.0-beta.62 - vuepress-vite: 2.0.0-beta.62 - vuepress-webpack: 2.0.0-beta.62 + sass-loader: ^13.3.2 + vuepress: 2.0.0-beta.67 + vuepress-vite: 2.0.0-beta.67 + vuepress-webpack: 2.0.0-beta.67 peerDependenciesMeta: sass-loader: optional: true @@ -8210,31 +8404,31 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 - '@vueuse/core': registry.npmmirror.com/@vueuse/core@10.1.2(vue@3.3.4) + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 + '@vueuse/core': registry.npmmirror.com/@vueuse/core@10.4.1(vue@3.3.4) balloon-css: registry.npmmirror.com/balloon-css@1.2.0 vue: registry.npmmirror.com/vue@3.3.4 - vue-router: registry.npmmirror.com/vue-router@4.2.2(vue@3.3.4) - vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.62(@vuepress/client@2.0.0-beta.62)(vue@3.3.4) - vuepress-plugin-sass-palette: registry.npmmirror.com/vuepress-plugin-sass-palette@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.221(vuepress@2.0.0-beta.62) + vue-router: registry.npmmirror.com/vue-router@4.2.4(vue@3.3.4) + vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.67(@vuepress/client@2.0.0-beta.67)(vue@3.3.4) + vuepress-plugin-sass-palette: registry.npmmirror.com/vuepress-plugin-sass-palette@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.236(vuepress@2.0.0-beta.67) transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/vuepress-plugin-copyright2@2.0.0-beta.221(vuepress@2.0.0-beta.62): - resolution: {integrity: sha512-BKm9szebMJEchOIYks9AzZQMGyaXvWmy/ZL9l8Nx1osRsRoGgxcu/KrcGfCqR258ptMaTPs+5D2aXjmEy/vtdA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-copyright2/-/vuepress-plugin-copyright2-2.0.0-beta.221.tgz} - id: registry.npmmirror.com/vuepress-plugin-copyright2/2.0.0-beta.221 + registry.npmmirror.com/vuepress-plugin-copyright2@2.0.0-beta.236(vuepress@2.0.0-beta.67): + resolution: {integrity: sha512-u6aMZYhwhRAi13ke7UtpYKfvFIL1n1ZuHR9/CvbynjWaIuZdKjlPOWOFyuG2ZPym5GQYhck15skU2D2DsVgsGQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-copyright2/-/vuepress-plugin-copyright2-2.0.0-beta.236.tgz} + id: registry.npmmirror.com/vuepress-plugin-copyright2/2.0.0-beta.236 name: vuepress-plugin-copyright2 - version: 2.0.0-beta.221 - engines: {node: '>=16.0.0', npm: '>=8', pnpm: '>=7'} + version: 2.0.0-beta.236 + engines: {node: '>=16.19.0', npm: '>=8', pnpm: '>=7'} peerDependencies: - vuepress: 2.0.0-beta.62 - vuepress-vite: 2.0.0-beta.62 - vuepress-webpack: 2.0.0-beta.62 + vuepress: 2.0.0-beta.67 + vuepress-vite: 2.0.0-beta.67 + vuepress-webpack: 2.0.0-beta.67 peerDependenciesMeta: vuepress: optional: true @@ -8243,29 +8437,29 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 - '@vueuse/core': registry.npmmirror.com/@vueuse/core@10.1.2(vue@3.3.4) + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 + '@vueuse/core': registry.npmmirror.com/@vueuse/core@10.4.1(vue@3.3.4) vue: registry.npmmirror.com/vue@3.3.4 - vue-router: registry.npmmirror.com/vue-router@4.2.2(vue@3.3.4) - vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.62(@vuepress/client@2.0.0-beta.62)(vue@3.3.4) - vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.221(vuepress@2.0.0-beta.62) + vue-router: registry.npmmirror.com/vue-router@4.2.4(vue@3.3.4) + vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.67(@vuepress/client@2.0.0-beta.67)(vue@3.3.4) + vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.236(vuepress@2.0.0-beta.67) transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/vuepress-plugin-feed2@2.0.0-beta.221(vuepress@2.0.0-beta.62): - resolution: {integrity: sha512-0MngB3o1azgJiMKqfuAylICCc6VXXBvXvjnnNb3rDV3Dwft0ZEYj4G0vcB0N8CxevzchpPwS9ejv4LFCIU47JQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-feed2/-/vuepress-plugin-feed2-2.0.0-beta.221.tgz} - id: registry.npmmirror.com/vuepress-plugin-feed2/2.0.0-beta.221 + registry.npmmirror.com/vuepress-plugin-feed2@2.0.0-beta.236(vuepress@2.0.0-beta.67): + resolution: {integrity: sha512-WzpiPBLUSzV5qmBj4ue+3Sr0YVwieOblnI4MTxpVkEYY14Ed5gTkbimOOawShpP/LGTDbLIiWO2RGG+/daoD3A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-feed2/-/vuepress-plugin-feed2-2.0.0-beta.236.tgz} + id: registry.npmmirror.com/vuepress-plugin-feed2/2.0.0-beta.236 name: vuepress-plugin-feed2 - version: 2.0.0-beta.221 - engines: {node: '>=16.0.0', npm: '>=8', pnpm: '>=7'} + version: 2.0.0-beta.236 + engines: {node: '>=16.19.0', npm: '>=8', pnpm: '>=7'} peerDependencies: - vuepress: 2.0.0-beta.62 - vuepress-vite: 2.0.0-beta.62 - vuepress-webpack: 2.0.0-beta.62 + vuepress: 2.0.0-beta.67 + vuepress-vite: 2.0.0-beta.67 + vuepress-webpack: 2.0.0-beta.67 peerDependenciesMeta: vuepress: optional: true @@ -8274,28 +8468,28 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 cheerio: registry.npmmirror.com/cheerio@1.0.0-rc.12 - vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.62(@vuepress/client@2.0.0-beta.62)(vue@3.3.4) - vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.221(vuepress@2.0.0-beta.62) + vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.67(@vuepress/client@2.0.0-beta.67)(vue@3.3.4) + vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.236(vuepress@2.0.0-beta.67) xml-js: registry.npmmirror.com/xml-js@1.6.11 transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/vuepress-plugin-md-enhance@2.0.0-beta.221(vuepress@2.0.0-beta.62): - resolution: {integrity: sha512-OXj0ZMMC3+AZEaCt2QvEoQxaPe0TpL9y/wqK+nCA0yEAct2QbKt7b4gh+wtjMYdFYP3gc1FAjYRIWBtKOiNaZA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-md-enhance/-/vuepress-plugin-md-enhance-2.0.0-beta.221.tgz} - id: registry.npmmirror.com/vuepress-plugin-md-enhance/2.0.0-beta.221 + registry.npmmirror.com/vuepress-plugin-md-enhance@2.0.0-beta.236(vuepress@2.0.0-beta.67): + resolution: {integrity: sha512-B9dy0IaFycgFYyX6XLH/tLMX9IfPErNZdui3NW+UyeR3MFZ8O2J7ALcMdL90HGXcvIGy/446fVWXwuiAcQtYAg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-md-enhance/-/vuepress-plugin-md-enhance-2.0.0-beta.236.tgz} + id: registry.npmmirror.com/vuepress-plugin-md-enhance/2.0.0-beta.236 name: vuepress-plugin-md-enhance - version: 2.0.0-beta.221 - engines: {node: '>=16.0.0', npm: '>=8', pnpm: '>=7'} + version: 2.0.0-beta.236 + engines: {node: '>=16.19.0', npm: '>=8', pnpm: '>=7'} peerDependencies: - sass-loader: ^13.3.1 - vuepress: 2.0.0-beta.62 - vuepress-vite: 2.0.0-beta.62 - vuepress-webpack: 2.0.0-beta.62 + sass-loader: ^13.3.2 + vuepress: 2.0.0-beta.67 + vuepress-vite: 2.0.0-beta.67 + vuepress-webpack: 2.0.0-beta.67 peerDependenciesMeta: sass-loader: optional: true @@ -8306,63 +8500,63 @@ packages: vuepress-webpack: optional: true dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@mdit/plugin-align': registry.npmmirror.com/@mdit/plugin-align@0.4.7 - '@mdit/plugin-attrs': registry.npmmirror.com/@mdit/plugin-attrs@0.4.7 - '@mdit/plugin-container': registry.npmmirror.com/@mdit/plugin-container@0.4.7 - '@mdit/plugin-figure': registry.npmmirror.com/@mdit/plugin-figure@0.4.7 - '@mdit/plugin-footnote': registry.npmmirror.com/@mdit/plugin-footnote@0.4.7 - '@mdit/plugin-img-lazyload': registry.npmmirror.com/@mdit/plugin-img-lazyload@0.4.7 - '@mdit/plugin-img-mark': registry.npmmirror.com/@mdit/plugin-img-mark@0.4.7 - '@mdit/plugin-img-size': registry.npmmirror.com/@mdit/plugin-img-size@0.4.7 - '@mdit/plugin-include': registry.npmmirror.com/@mdit/plugin-include@0.4.7 - '@mdit/plugin-katex': registry.npmmirror.com/@mdit/plugin-katex@0.4.7 - '@mdit/plugin-mark': registry.npmmirror.com/@mdit/plugin-mark@0.4.7 - '@mdit/plugin-mathjax': registry.npmmirror.com/@mdit/plugin-mathjax@0.4.7 - '@mdit/plugin-stylize': registry.npmmirror.com/@mdit/plugin-stylize@0.4.7 - '@mdit/plugin-sub': registry.npmmirror.com/@mdit/plugin-sub@0.4.7 - '@mdit/plugin-sup': registry.npmmirror.com/@mdit/plugin-sup@0.4.7 - '@mdit/plugin-tab': registry.npmmirror.com/@mdit/plugin-tab@0.4.7 - '@mdit/plugin-tasklist': registry.npmmirror.com/@mdit/plugin-tasklist@0.4.7 - '@mdit/plugin-tex': registry.npmmirror.com/@mdit/plugin-tex@0.4.7 - '@mdit/plugin-uml': registry.npmmirror.com/@mdit/plugin-uml@0.4.7 + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@mdit/plugin-align': registry.npmmirror.com/@mdit/plugin-align@0.4.8 + '@mdit/plugin-attrs': registry.npmmirror.com/@mdit/plugin-attrs@0.4.8 + '@mdit/plugin-container': registry.npmmirror.com/@mdit/plugin-container@0.4.8 + '@mdit/plugin-figure': registry.npmmirror.com/@mdit/plugin-figure@0.4.8 + '@mdit/plugin-footnote': registry.npmmirror.com/@mdit/plugin-footnote@0.4.8 + '@mdit/plugin-img-lazyload': registry.npmmirror.com/@mdit/plugin-img-lazyload@0.4.8 + '@mdit/plugin-img-mark': registry.npmmirror.com/@mdit/plugin-img-mark@0.4.8 + '@mdit/plugin-img-size': registry.npmmirror.com/@mdit/plugin-img-size@0.4.8 + '@mdit/plugin-include': registry.npmmirror.com/@mdit/plugin-include@0.4.8 + '@mdit/plugin-katex': registry.npmmirror.com/@mdit/plugin-katex@0.4.8 + '@mdit/plugin-mark': registry.npmmirror.com/@mdit/plugin-mark@0.4.8 + '@mdit/plugin-mathjax': registry.npmmirror.com/@mdit/plugin-mathjax@0.4.8 + '@mdit/plugin-stylize': registry.npmmirror.com/@mdit/plugin-stylize@0.4.8 + '@mdit/plugin-sub': registry.npmmirror.com/@mdit/plugin-sub@0.4.8 + '@mdit/plugin-sup': registry.npmmirror.com/@mdit/plugin-sup@0.4.8 + '@mdit/plugin-tab': registry.npmmirror.com/@mdit/plugin-tab@0.4.8 + '@mdit/plugin-tasklist': registry.npmmirror.com/@mdit/plugin-tasklist@0.4.8 + '@mdit/plugin-tex': registry.npmmirror.com/@mdit/plugin-tex@0.4.8 + '@mdit/plugin-uml': registry.npmmirror.com/@mdit/plugin-uml@0.4.8 '@types/js-yaml': registry.npmmirror.com/@types/js-yaml@4.0.5 - '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@12.2.3 - '@vue/repl': registry.npmmirror.com/@vue/repl@1.4.1(vue@3.3.4) - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 - '@vueuse/core': registry.npmmirror.com/@vueuse/core@10.1.2(vue@3.3.4) + '@types/markdown-it': registry.npmmirror.com/@types/markdown-it@13.0.1 + '@vue/repl': registry.npmmirror.com/@vue/repl@2.5.8 + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 + '@vueuse/core': registry.npmmirror.com/@vueuse/core@10.4.1(vue@3.3.4) balloon-css: registry.npmmirror.com/balloon-css@1.2.0 - chart.js: registry.npmmirror.com/chart.js@4.3.0 - echarts: registry.npmmirror.com/echarts@5.4.2 + chart.js: registry.npmmirror.com/chart.js@4.4.0 + echarts: registry.npmmirror.com/echarts@5.4.3 flowchart.ts: registry.npmmirror.com/flowchart.ts@1.0.0 js-yaml: registry.npmmirror.com/js-yaml@4.1.0 - katex: registry.npmmirror.com/katex@0.16.7 + katex: registry.npmmirror.com/katex@0.16.8 markdown-it: registry.npmmirror.com/markdown-it@13.0.1 - mermaid: registry.npmmirror.com/mermaid@10.2.2 + mermaid: registry.npmmirror.com/mermaid@10.4.0 reveal.js: registry.npmmirror.com/reveal.js@4.5.0 vue: registry.npmmirror.com/vue@3.3.4 - vue-router: registry.npmmirror.com/vue-router@4.2.2(vue@3.3.4) - vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.62(@vuepress/client@2.0.0-beta.62)(vue@3.3.4) - vuepress-plugin-sass-palette: registry.npmmirror.com/vuepress-plugin-sass-palette@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.221(vuepress@2.0.0-beta.62) + vue-router: registry.npmmirror.com/vue-router@4.2.4(vue@3.3.4) + vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.67(@vuepress/client@2.0.0-beta.67)(vue@3.3.4) + vuepress-plugin-sass-palette: registry.npmmirror.com/vuepress-plugin-sass-palette@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.236(vuepress@2.0.0-beta.67) transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/vuepress-plugin-photo-swipe@2.0.0-beta.221(vuepress@2.0.0-beta.62): - resolution: {integrity: sha512-cyrKSwd6USY7bWPG5z8hj88hsRTnH6VgxKzgPSsSIg1AJd3ZXW2SrIJGHRn4YmIWK1SPsrQadKKyqZOElLVGQA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-photo-swipe/-/vuepress-plugin-photo-swipe-2.0.0-beta.221.tgz} - id: registry.npmmirror.com/vuepress-plugin-photo-swipe/2.0.0-beta.221 + registry.npmmirror.com/vuepress-plugin-photo-swipe@2.0.0-beta.236(vuepress@2.0.0-beta.67): + resolution: {integrity: sha512-/AnpYY8yRYJmLhR038Ezcr5ewrcQJN0VjFK50g+dPXMR6VOS444S+OoY4o+5GoW1n90N2VHoQP0/PItE8p6Arg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-photo-swipe/-/vuepress-plugin-photo-swipe-2.0.0-beta.236.tgz} + id: registry.npmmirror.com/vuepress-plugin-photo-swipe/2.0.0-beta.236 name: vuepress-plugin-photo-swipe - version: 2.0.0-beta.221 - engines: {node: '>=16.0.0', npm: '>=8', pnpm: '>=7'} + version: 2.0.0-beta.236 + engines: {node: '>=16.19.0', npm: '>=8', pnpm: '>=7'} peerDependencies: - sass-loader: ^13.3.1 - vuepress: 2.0.0-beta.62 - vuepress-vite: 2.0.0-beta.62 - vuepress-webpack: 2.0.0-beta.62 + sass-loader: ^13.3.2 + vuepress: 2.0.0-beta.67 + vuepress-vite: 2.0.0-beta.67 + vuepress-webpack: 2.0.0-beta.67 peerDependenciesMeta: sass-loader: optional: true @@ -8373,32 +8567,32 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 - '@vueuse/core': registry.npmmirror.com/@vueuse/core@10.1.2(vue@3.3.4) - photoswipe: registry.npmmirror.com/photoswipe@5.3.7 + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 + '@vueuse/core': registry.npmmirror.com/@vueuse/core@10.4.1(vue@3.3.4) + photoswipe: registry.npmmirror.com/photoswipe@5.3.9 vue: registry.npmmirror.com/vue@3.3.4 - vue-router: registry.npmmirror.com/vue-router@4.2.2(vue@3.3.4) - vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.62(@vuepress/client@2.0.0-beta.62)(vue@3.3.4) - vuepress-plugin-sass-palette: registry.npmmirror.com/vuepress-plugin-sass-palette@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.221(vuepress@2.0.0-beta.62) + vue-router: registry.npmmirror.com/vue-router@4.2.4(vue@3.3.4) + vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.67(@vuepress/client@2.0.0-beta.67)(vue@3.3.4) + vuepress-plugin-sass-palette: registry.npmmirror.com/vuepress-plugin-sass-palette@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.236(vuepress@2.0.0-beta.67) transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/vuepress-plugin-pwa2@2.0.0-beta.221(vuepress@2.0.0-beta.62): - resolution: {integrity: sha512-L+e0PJCocUsfH0uM4VbAX+q7qHxqLm2e7/rYU2hyl1eMmcsm1MwjU8O+k23Fl52R7p4NmTMdVQIPM1CuNYdLPA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-pwa2/-/vuepress-plugin-pwa2-2.0.0-beta.221.tgz} - id: registry.npmmirror.com/vuepress-plugin-pwa2/2.0.0-beta.221 + registry.npmmirror.com/vuepress-plugin-pwa2@2.0.0-beta.236(vuepress@2.0.0-beta.67): + resolution: {integrity: sha512-FWLXQs+lt2tB3fputHqKRjFiVz35XYXqQGX123ZbCZjbVp8ENsgQZwtk2UqJPz/Qr80uJGrnFeHwUy4ntm9Xbw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-pwa2/-/vuepress-plugin-pwa2-2.0.0-beta.236.tgz} + id: registry.npmmirror.com/vuepress-plugin-pwa2/2.0.0-beta.236 name: vuepress-plugin-pwa2 - version: 2.0.0-beta.221 - engines: {node: '>=16.0.0', npm: '>=8', pnpm: '>=7'} + version: 2.0.0-beta.236 + engines: {node: '>=16.19.0', npm: '>=8', pnpm: '>=7'} peerDependencies: - sass-loader: ^13.3.1 - vuepress: 2.0.0-beta.62 - vuepress-vite: 2.0.0-beta.62 - vuepress-webpack: 2.0.0-beta.62 + sass-loader: ^13.3.2 + vuepress: 2.0.0-beta.67 + vuepress-vite: 2.0.0-beta.67 + vuepress-webpack: 2.0.0-beta.67 peerDependenciesMeta: sass-loader: optional: true @@ -8409,17 +8603,17 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 - '@vueuse/core': registry.npmmirror.com/@vueuse/core@10.1.2(vue@3.3.4) - mitt: registry.npmmirror.com/mitt@3.0.0 + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 + '@vueuse/core': registry.npmmirror.com/@vueuse/core@10.4.1(vue@3.3.4) + mitt: registry.npmmirror.com/mitt@3.0.1 register-service-worker: registry.npmmirror.com/register-service-worker@1.7.2 vue: registry.npmmirror.com/vue@3.3.4 - vue-router: registry.npmmirror.com/vue-router@4.2.2(vue@3.3.4) - vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.62(@vuepress/client@2.0.0-beta.62)(vue@3.3.4) - vuepress-plugin-sass-palette: registry.npmmirror.com/vuepress-plugin-sass-palette@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.221(vuepress@2.0.0-beta.62) + vue-router: registry.npmmirror.com/vue-router@4.2.4(vue@3.3.4) + vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.67(@vuepress/client@2.0.0-beta.67)(vue@3.3.4) + vuepress-plugin-sass-palette: registry.npmmirror.com/vuepress-plugin-sass-palette@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.236(vuepress@2.0.0-beta.67) workbox-build: registry.npmmirror.com/workbox-build@7.0.0 transitivePeerDependencies: - '@types/babel__core' @@ -8427,16 +8621,16 @@ packages: - supports-color dev: false - registry.npmmirror.com/vuepress-plugin-reading-time2@2.0.0-beta.221(vuepress@2.0.0-beta.62): - resolution: {integrity: sha512-x1UKKzLR2aVEOBxeezXk6lPC64/2z/hDAM+bzRpLzJtECzT1vilkoyMGLdIVCNTbVpzFum2TSVjrqeV3D1Iqxg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-reading-time2/-/vuepress-plugin-reading-time2-2.0.0-beta.221.tgz} - id: registry.npmmirror.com/vuepress-plugin-reading-time2/2.0.0-beta.221 + registry.npmmirror.com/vuepress-plugin-reading-time2@2.0.0-beta.236(vuepress@2.0.0-beta.67): + resolution: {integrity: sha512-JP6qKwpDgkuTE9IYRpISrUuCzeovljk+EwPycn01WrS67HUTBggssZCnUlRv9o8hIIDRmhHtQhjxs9WEa1Y2sA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-reading-time2/-/vuepress-plugin-reading-time2-2.0.0-beta.236.tgz} + id: registry.npmmirror.com/vuepress-plugin-reading-time2/2.0.0-beta.236 name: vuepress-plugin-reading-time2 - version: 2.0.0-beta.221 - engines: {node: '>=16.0.0', npm: '>=8', pnpm: '>=7'} + version: 2.0.0-beta.236 + engines: {node: '>=16.19.0', npm: '>=8', pnpm: '>=7'} peerDependencies: - vuepress: 2.0.0-beta.62 - vuepress-vite: 2.0.0-beta.62 - vuepress-webpack: 2.0.0-beta.62 + vuepress: 2.0.0-beta.67 + vuepress-vite: 2.0.0-beta.67 + vuepress-webpack: 2.0.0-beta.67 peerDependenciesMeta: vuepress: optional: true @@ -8445,25 +8639,25 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 vue: registry.npmmirror.com/vue@3.3.4 - vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.62(@vuepress/client@2.0.0-beta.62)(vue@3.3.4) - vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.221(vuepress@2.0.0-beta.62) + vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.67(@vuepress/client@2.0.0-beta.67)(vue@3.3.4) + vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.236(vuepress@2.0.0-beta.67) transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/vuepress-plugin-rtl@2.0.0-beta.221(vuepress@2.0.0-beta.62): - resolution: {integrity: sha512-DV+/HhPBUERwq3eMVxcOji4Sxhy8h5MjxmbyMzXfwg4CfdbyD3LP4HgE8uuGPCbhr5bzkVG5szlM6EyZPOBg8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-rtl/-/vuepress-plugin-rtl-2.0.0-beta.221.tgz} - id: registry.npmmirror.com/vuepress-plugin-rtl/2.0.0-beta.221 + registry.npmmirror.com/vuepress-plugin-rtl@2.0.0-beta.236(vuepress@2.0.0-beta.67): + resolution: {integrity: sha512-7PzeNfDMmTZoi/bHtJEL54RWAfF9COgSV3Agb3/gKosuZEiTTF5GCDHItZfMEAi7+rkihYDM+Tq3we130irsGg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-rtl/-/vuepress-plugin-rtl-2.0.0-beta.236.tgz} + id: registry.npmmirror.com/vuepress-plugin-rtl/2.0.0-beta.236 name: vuepress-plugin-rtl - version: 2.0.0-beta.221 - engines: {node: '>=16.0.0', npm: '>=8', pnpm: '>=7'} + version: 2.0.0-beta.236 + engines: {node: '>=16.19.0', npm: '>=8', pnpm: '>=7'} peerDependencies: - vuepress: 2.0.0-beta.62 - vuepress-vite: 2.0.0-beta.62 - vuepress-webpack: 2.0.0-beta.62 + vuepress: 2.0.0-beta.67 + vuepress-vite: 2.0.0-beta.67 + vuepress-webpack: 2.0.0-beta.67 peerDependenciesMeta: vuepress: optional: true @@ -8472,28 +8666,28 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 vue: registry.npmmirror.com/vue@3.3.4 - vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.62(@vuepress/client@2.0.0-beta.62)(vue@3.3.4) - vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.221(vuepress@2.0.0-beta.62) + vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.67(@vuepress/client@2.0.0-beta.67)(vue@3.3.4) + vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.236(vuepress@2.0.0-beta.67) transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/vuepress-plugin-sass-palette@2.0.0-beta.221(vuepress@2.0.0-beta.62): - resolution: {integrity: sha512-AnfGRjWSQbixhUjUN5cg9jnFFpRF6ywJcM3rDBFjjIvOtnBc7xKBvQCmoyrtkGFxi9GFt6KSYhTabCK3n4dGCg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-sass-palette/-/vuepress-plugin-sass-palette-2.0.0-beta.221.tgz} - id: registry.npmmirror.com/vuepress-plugin-sass-palette/2.0.0-beta.221 + registry.npmmirror.com/vuepress-plugin-sass-palette@2.0.0-beta.236(vuepress@2.0.0-beta.67): + resolution: {integrity: sha512-WF7JshvQEURp1DP2NabB2rLGiseJGjyj/7bdb2TpD+fMuAhlYyLIiGtfiQevcIIWuVWWMklv1CVdvRDEOfrclg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-sass-palette/-/vuepress-plugin-sass-palette-2.0.0-beta.236.tgz} + id: registry.npmmirror.com/vuepress-plugin-sass-palette/2.0.0-beta.236 name: vuepress-plugin-sass-palette - version: 2.0.0-beta.221 - engines: {node: '>=16.0.0', npm: '>=8', pnpm: '>=7'} + version: 2.0.0-beta.236 + engines: {node: '>=16.19.0', npm: '>=8', pnpm: '>=7'} peerDependencies: - sass-loader: ^13.3.1 - vuepress: 2.0.0-beta.62 - vuepress-vite: 2.0.0-beta.62 - vuepress-webpack: 2.0.0-beta.62 + sass-loader: ^13.3.2 + vuepress: 2.0.0-beta.67 + vuepress-vite: 2.0.0-beta.67 + vuepress-webpack: 2.0.0-beta.67 peerDependenciesMeta: sass-loader: optional: true @@ -8504,27 +8698,27 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 chokidar: registry.npmmirror.com/chokidar@3.5.3 - sass: registry.npmmirror.com/sass@1.62.1 - vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.62(@vuepress/client@2.0.0-beta.62)(vue@3.3.4) - vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.221(vuepress@2.0.0-beta.62) + sass: registry.npmmirror.com/sass@1.66.1 + vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.67(@vuepress/client@2.0.0-beta.67)(vue@3.3.4) + vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.236(vuepress@2.0.0-beta.67) transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/vuepress-plugin-seo2@2.0.0-beta.221(vuepress@2.0.0-beta.62): - resolution: {integrity: sha512-SJpVyCeHbUJvDXggM05bMRoXNP5MOj7MS/rzCjiJnXljAr+yGyc3vBAiFbDPQxYs2GeibWZKpYvgU1TU2g3Ewg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-seo2/-/vuepress-plugin-seo2-2.0.0-beta.221.tgz} - id: registry.npmmirror.com/vuepress-plugin-seo2/2.0.0-beta.221 + registry.npmmirror.com/vuepress-plugin-seo2@2.0.0-beta.236(vuepress@2.0.0-beta.67): + resolution: {integrity: sha512-x5oLFoS+73HnLA6V5IdQLuRliLro8tzxeJnws2/baAPMg/2Vz1e/SeHuuRkPMrBrr44R31+lEJ3rLJEmiG3Q1A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-seo2/-/vuepress-plugin-seo2-2.0.0-beta.236.tgz} + id: registry.npmmirror.com/vuepress-plugin-seo2/2.0.0-beta.236 name: vuepress-plugin-seo2 - version: 2.0.0-beta.221 - engines: {node: '>=16.0.0', npm: '>=8', pnpm: '>=7'} + version: 2.0.0-beta.236 + engines: {node: '>=16.19.0', npm: '>=8', pnpm: '>=7'} peerDependencies: - vuepress: 2.0.0-beta.62 - vuepress-vite: 2.0.0-beta.62 - vuepress-webpack: 2.0.0-beta.62 + vuepress: 2.0.0-beta.67 + vuepress-vite: 2.0.0-beta.67 + vuepress-webpack: 2.0.0-beta.67 peerDependenciesMeta: vuepress: optional: true @@ -8533,25 +8727,25 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 - vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.62(@vuepress/client@2.0.0-beta.62)(vue@3.3.4) - vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.221(vuepress@2.0.0-beta.62) + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 + vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.67(@vuepress/client@2.0.0-beta.67)(vue@3.3.4) + vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.236(vuepress@2.0.0-beta.67) transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/vuepress-plugin-sitemap2@2.0.0-beta.221(vuepress@2.0.0-beta.62): - resolution: {integrity: sha512-L6l3Xe/uDvg67gFCQVNQr5N4LkjXoPWOTRo98jaavGijZqC9tSqOnB7/hR0Zwo2lKNPNSv+WzeJfVLPv8AtGKw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-sitemap2/-/vuepress-plugin-sitemap2-2.0.0-beta.221.tgz} - id: registry.npmmirror.com/vuepress-plugin-sitemap2/2.0.0-beta.221 + registry.npmmirror.com/vuepress-plugin-sitemap2@2.0.0-beta.236(vuepress@2.0.0-beta.67): + resolution: {integrity: sha512-2+C2N1xDSkjir5PSok3MHeGRTSHqZn6za6CA0kxUdsQitRhAcZVq+lXOnSyYv85SuOOY3R/3Ct9ZrRXNFVWIOg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-plugin-sitemap2/-/vuepress-plugin-sitemap2-2.0.0-beta.236.tgz} + id: registry.npmmirror.com/vuepress-plugin-sitemap2/2.0.0-beta.236 name: vuepress-plugin-sitemap2 - version: 2.0.0-beta.221 - engines: {node: '>=16.0.0', npm: '>=8', pnpm: '>=7'} + version: 2.0.0-beta.236 + engines: {node: '>=16.19.0', npm: '>=8', pnpm: '>=7'} peerDependencies: - vuepress: 2.0.0-beta.62 - vuepress-vite: 2.0.0-beta.62 - vuepress-webpack: 2.0.0-beta.62 + vuepress: 2.0.0-beta.67 + vuepress-vite: 2.0.0-beta.67 + vuepress-webpack: 2.0.0-beta.67 peerDependenciesMeta: vuepress: optional: true @@ -8560,26 +8754,26 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 sitemap: registry.npmmirror.com/sitemap@7.1.1 - vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.62(@vuepress/client@2.0.0-beta.62)(vue@3.3.4) - vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.221(vuepress@2.0.0-beta.62) + vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.67(@vuepress/client@2.0.0-beta.67)(vue@3.3.4) + vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.236(vuepress@2.0.0-beta.67) transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/vuepress-shared@2.0.0-beta.221(vuepress@2.0.0-beta.62): - resolution: {integrity: sha512-Hcmp9BH8Fn/Ohpv+Q3iMe16Acq7RFq4hHPMjP0UT6WBmhL0A09chKlEhRUV6BQAZ4FIYixYqUeU74AnmQGy6og==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-shared/-/vuepress-shared-2.0.0-beta.221.tgz} - id: registry.npmmirror.com/vuepress-shared/2.0.0-beta.221 + registry.npmmirror.com/vuepress-shared@2.0.0-beta.236(vuepress@2.0.0-beta.67): + resolution: {integrity: sha512-izHGnHqOXebc0ouP04IgTVuz+xblRb3vdZhjn1AmIWVaEdyPRJ1w3vbWY/5aARNoQubEdBitCXqL3UwvC35FJQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-shared/-/vuepress-shared-2.0.0-beta.236.tgz} + id: registry.npmmirror.com/vuepress-shared/2.0.0-beta.236 name: vuepress-shared - version: 2.0.0-beta.221 - engines: {node: '>=16.0.0', npm: '>=8', pnpm: '>=7'} + version: 2.0.0-beta.236 + engines: {node: '>=16.19.0', npm: '>=8', pnpm: '>=7'} peerDependencies: - vuepress: 2.0.0-beta.62 - vuepress-vite: 2.0.0-beta.62 - vuepress-webpack: 2.0.0-beta.62 + vuepress: 2.0.0-beta.67 + vuepress-vite: 2.0.0-beta.67 + vuepress-webpack: 2.0.0-beta.67 peerDependenciesMeta: vuepress: optional: true @@ -8588,36 +8782,36 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 - '@vueuse/core': registry.npmmirror.com/@vueuse/core@10.1.2(vue@3.3.4) + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 + '@vueuse/core': registry.npmmirror.com/@vueuse/core@10.4.1(vue@3.3.4) cheerio: registry.npmmirror.com/cheerio@1.0.0-rc.12 - dayjs: registry.npmmirror.com/dayjs@1.11.8 - execa: registry.npmmirror.com/execa@7.1.1 + dayjs: registry.npmmirror.com/dayjs@1.11.9 + execa: registry.npmmirror.com/execa@8.0.1 fflate: registry.npmmirror.com/fflate@0.8.0 gray-matter: registry.npmmirror.com/gray-matter@4.0.3 - semver: registry.npmmirror.com/semver@7.5.1 + semver: registry.npmmirror.com/semver@7.5.4 striptags: registry.npmmirror.com/striptags@3.2.0 vue: registry.npmmirror.com/vue@3.3.4 - vue-router: registry.npmmirror.com/vue-router@4.2.2(vue@3.3.4) - vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.62(@vuepress/client@2.0.0-beta.62)(vue@3.3.4) + vue-router: registry.npmmirror.com/vue-router@4.2.4(vue@3.3.4) + vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.67(@vuepress/client@2.0.0-beta.67)(vue@3.3.4) transitivePeerDependencies: - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/vuepress-theme-hope@2.0.0-beta.221(vuepress@2.0.0-beta.62): - resolution: {integrity: sha512-o67vfvvnXYC5xP3Xr4Y91Uf9JCR2fBAAmwOrkDcoKPnA5yieO2vLF+sSAJigQkNa23dg9iXEj14Kl1Bwl6qoFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-theme-hope/-/vuepress-theme-hope-2.0.0-beta.221.tgz} - id: registry.npmmirror.com/vuepress-theme-hope/2.0.0-beta.221 + registry.npmmirror.com/vuepress-theme-hope@2.0.0-beta.236(vuepress@2.0.0-beta.67): + resolution: {integrity: sha512-6hXZ9UJ9GBfAvzF/xZjXqpwzXp2BDY+z0zUsSIHqAY1iBIaMEcbsy6+vJ8wTkCzvGsYtsTesK/qB6KB/SoWuRg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-theme-hope/-/vuepress-theme-hope-2.0.0-beta.236.tgz} + id: registry.npmmirror.com/vuepress-theme-hope/2.0.0-beta.236 name: vuepress-theme-hope - version: 2.0.0-beta.221 - engines: {node: '>=16.0.0', npm: '>=8', pnpm: '>=7'} + version: 2.0.0-beta.236 + engines: {node: '>=16.19.0', npm: '>=8', pnpm: '>=7'} peerDependencies: - sass-loader: ^13.3.1 - vuepress: 2.0.0-beta.62 - vuepress-vite: 2.0.0-beta.62 - vuepress-webpack: 2.0.0-beta.62 + sass-loader: ^13.3.2 + vuepress: 2.0.0-beta.67 + vuepress-vite: 2.0.0-beta.67 + vuepress-webpack: 2.0.0-beta.67 peerDependenciesMeta: sass-loader: optional: true @@ -8628,70 +8822,71 @@ packages: vuepress-webpack: optional: true dependencies: - '@vuepress/cli': registry.npmmirror.com/@vuepress/cli@2.0.0-beta.62 - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.62 - '@vuepress/plugin-active-header-links': registry.npmmirror.com/@vuepress/plugin-active-header-links@2.0.0-beta.62 - '@vuepress/plugin-container': registry.npmmirror.com/@vuepress/plugin-container@2.0.0-beta.62 - '@vuepress/plugin-external-link-icon': registry.npmmirror.com/@vuepress/plugin-external-link-icon@2.0.0-beta.62 - '@vuepress/plugin-git': registry.npmmirror.com/@vuepress/plugin-git@2.0.0-beta.62 - '@vuepress/plugin-nprogress': registry.npmmirror.com/@vuepress/plugin-nprogress@2.0.0-beta.62 - '@vuepress/plugin-prismjs': registry.npmmirror.com/@vuepress/plugin-prismjs@2.0.0-beta.62 - '@vuepress/plugin-theme-data': registry.npmmirror.com/@vuepress/plugin-theme-data@2.0.0-beta.62 - '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.62 - '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.62 - '@vueuse/core': registry.npmmirror.com/@vueuse/core@10.1.2(vue@3.3.4) + '@vuepress/cli': registry.npmmirror.com/@vuepress/cli@2.0.0-beta.67 + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.67 + '@vuepress/plugin-active-header-links': registry.npmmirror.com/@vuepress/plugin-active-header-links@2.0.0-beta.67 + '@vuepress/plugin-container': registry.npmmirror.com/@vuepress/plugin-container@2.0.0-beta.67 + '@vuepress/plugin-external-link-icon': registry.npmmirror.com/@vuepress/plugin-external-link-icon@2.0.0-beta.67 + '@vuepress/plugin-git': registry.npmmirror.com/@vuepress/plugin-git@2.0.0-beta.67 + '@vuepress/plugin-nprogress': registry.npmmirror.com/@vuepress/plugin-nprogress@2.0.0-beta.67 + '@vuepress/plugin-prismjs': registry.npmmirror.com/@vuepress/plugin-prismjs@2.0.0-beta.67 + '@vuepress/plugin-theme-data': registry.npmmirror.com/@vuepress/plugin-theme-data@2.0.0-beta.67 + '@vuepress/shared': registry.npmmirror.com/@vuepress/shared@2.0.0-beta.67 + '@vuepress/utils': registry.npmmirror.com/@vuepress/utils@2.0.0-beta.67 + '@vueuse/core': registry.npmmirror.com/@vueuse/core@10.4.1(vue@3.3.4) balloon-css: registry.npmmirror.com/balloon-css@1.2.0 - bcrypt-ts: registry.npmmirror.com/bcrypt-ts@3.0.1 + bcrypt-ts: registry.npmmirror.com/bcrypt-ts@4.0.0 cheerio: registry.npmmirror.com/cheerio@1.0.0-rc.12 chokidar: registry.npmmirror.com/chokidar@3.5.3 gray-matter: registry.npmmirror.com/gray-matter@4.0.3 vue: registry.npmmirror.com/vue@3.3.4 - vue-router: registry.npmmirror.com/vue-router@4.2.2(vue@3.3.4) - vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.62(@vuepress/client@2.0.0-beta.62)(vue@3.3.4) - vuepress-plugin-auto-catalog: registry.npmmirror.com/vuepress-plugin-auto-catalog@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-plugin-blog2: registry.npmmirror.com/vuepress-plugin-blog2@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-plugin-comment2: registry.npmmirror.com/vuepress-plugin-comment2@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-plugin-components: registry.npmmirror.com/vuepress-plugin-components@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-plugin-copy-code2: registry.npmmirror.com/vuepress-plugin-copy-code2@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-plugin-copyright2: registry.npmmirror.com/vuepress-plugin-copyright2@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-plugin-feed2: registry.npmmirror.com/vuepress-plugin-feed2@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-plugin-md-enhance: registry.npmmirror.com/vuepress-plugin-md-enhance@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-plugin-photo-swipe: registry.npmmirror.com/vuepress-plugin-photo-swipe@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-plugin-pwa2: registry.npmmirror.com/vuepress-plugin-pwa2@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-plugin-reading-time2: registry.npmmirror.com/vuepress-plugin-reading-time2@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-plugin-rtl: registry.npmmirror.com/vuepress-plugin-rtl@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-plugin-sass-palette: registry.npmmirror.com/vuepress-plugin-sass-palette@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-plugin-seo2: registry.npmmirror.com/vuepress-plugin-seo2@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-plugin-sitemap2: registry.npmmirror.com/vuepress-plugin-sitemap2@2.0.0-beta.221(vuepress@2.0.0-beta.62) - vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.221(vuepress@2.0.0-beta.62) + vue-router: registry.npmmirror.com/vue-router@4.2.4(vue@3.3.4) + vuepress: registry.npmmirror.com/vuepress@2.0.0-beta.67(@vuepress/client@2.0.0-beta.67)(vue@3.3.4) + vuepress-plugin-auto-catalog: registry.npmmirror.com/vuepress-plugin-auto-catalog@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-plugin-blog2: registry.npmmirror.com/vuepress-plugin-blog2@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-plugin-comment2: registry.npmmirror.com/vuepress-plugin-comment2@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-plugin-components: registry.npmmirror.com/vuepress-plugin-components@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-plugin-copy-code2: registry.npmmirror.com/vuepress-plugin-copy-code2@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-plugin-copyright2: registry.npmmirror.com/vuepress-plugin-copyright2@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-plugin-feed2: registry.npmmirror.com/vuepress-plugin-feed2@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-plugin-md-enhance: registry.npmmirror.com/vuepress-plugin-md-enhance@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-plugin-photo-swipe: registry.npmmirror.com/vuepress-plugin-photo-swipe@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-plugin-pwa2: registry.npmmirror.com/vuepress-plugin-pwa2@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-plugin-reading-time2: registry.npmmirror.com/vuepress-plugin-reading-time2@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-plugin-rtl: registry.npmmirror.com/vuepress-plugin-rtl@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-plugin-sass-palette: registry.npmmirror.com/vuepress-plugin-sass-palette@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-plugin-seo2: registry.npmmirror.com/vuepress-plugin-seo2@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-plugin-sitemap2: registry.npmmirror.com/vuepress-plugin-sitemap2@2.0.0-beta.236(vuepress@2.0.0-beta.67) + vuepress-shared: registry.npmmirror.com/vuepress-shared@2.0.0-beta.236(vuepress@2.0.0-beta.67) transitivePeerDependencies: - '@types/babel__core' - '@vue/composition-api' - supports-color dev: false - registry.npmmirror.com/vuepress-vite@2.0.0-beta.62(@vuepress/client@2.0.0-beta.62)(vue@3.3.4): - resolution: {integrity: sha512-C93T5ZCFMnbdXkZ/R/romtwPPP2zjPN38YZhrM6w6wWjSMDvrG26IFRwluXy+W84O0Pg7xOwqRom0wvO4kCxmA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-vite/-/vuepress-vite-2.0.0-beta.62.tgz} - id: registry.npmmirror.com/vuepress-vite/2.0.0-beta.62 + registry.npmmirror.com/vuepress-vite@2.0.0-beta.67(@vuepress/client@2.0.0-beta.67)(vue@3.3.4): + resolution: {integrity: sha512-oaak2RPKBP0LeaDpDntlsQWLklCBf2vdeceXtPSLV2IzL/wtMHs5DQ/f7zXxCzvku3h/FIstmgoKq/vC0TvHkA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress-vite/-/vuepress-vite-2.0.0-beta.67.tgz} + id: registry.npmmirror.com/vuepress-vite/2.0.0-beta.67 name: vuepress-vite - version: 2.0.0-beta.62 + version: 2.0.0-beta.67 engines: {node: '>=16.19.0'} hasBin: true peerDependencies: - '@vuepress/client': 2.0.0-beta.62 - vue: ^3.3.1 + '@vuepress/client': 2.0.0-beta.67 + vue: ^3.3.4 dependencies: - '@vuepress/bundler-vite': registry.npmmirror.com/@vuepress/bundler-vite@2.0.0-beta.62 - '@vuepress/cli': registry.npmmirror.com/@vuepress/cli@2.0.0-beta.62 - '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.62 - '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.62 - '@vuepress/theme-default': registry.npmmirror.com/@vuepress/theme-default@2.0.0-beta.62 + '@vuepress/bundler-vite': registry.npmmirror.com/@vuepress/bundler-vite@2.0.0-beta.67 + '@vuepress/cli': registry.npmmirror.com/@vuepress/cli@2.0.0-beta.67 + '@vuepress/client': registry.npmmirror.com/@vuepress/client@2.0.0-beta.67 + '@vuepress/core': registry.npmmirror.com/@vuepress/core@2.0.0-beta.67 + '@vuepress/theme-default': registry.npmmirror.com/@vuepress/theme-default@2.0.0-beta.67 vue: registry.npmmirror.com/vue@3.3.4 transitivePeerDependencies: - '@types/node' - '@vue/composition-api' - less + - lightningcss - sass - sass-loader - stylus @@ -8701,20 +8896,21 @@ packages: - ts-node dev: false - registry.npmmirror.com/vuepress@2.0.0-beta.62(@vuepress/client@2.0.0-beta.62)(vue@3.3.4): - resolution: {integrity: sha512-kwoC7RA6PGetWSU/NwV6dJ3VItg+R+K2IpAJ4bKsnRueIqGpDZwPr423nRK0VwDhh2sN7lUn6LoyaybPwWrGZg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress/-/vuepress-2.0.0-beta.62.tgz} - id: registry.npmmirror.com/vuepress/2.0.0-beta.62 + registry.npmmirror.com/vuepress@2.0.0-beta.67(@vuepress/client@2.0.0-beta.67)(vue@3.3.4): + resolution: {integrity: sha512-931pKDOph20RKMLZAH5YYlMz+nfx9jcOQio1Gxk0pB7DwuSxAVFxPv2dbIUP4E/4uWOkLppRhLYcrOoxEbVYzA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vuepress/-/vuepress-2.0.0-beta.67.tgz} + id: registry.npmmirror.com/vuepress/2.0.0-beta.67 name: vuepress - version: 2.0.0-beta.62 + version: 2.0.0-beta.67 engines: {node: '>=16.19.0'} hasBin: true dependencies: - vuepress-vite: registry.npmmirror.com/vuepress-vite@2.0.0-beta.62(@vuepress/client@2.0.0-beta.62)(vue@3.3.4) + vuepress-vite: registry.npmmirror.com/vuepress-vite@2.0.0-beta.67(@vuepress/client@2.0.0-beta.67)(vue@3.3.4) transitivePeerDependencies: - '@types/node' - '@vue/composition-api' - '@vuepress/client' - less + - lightningcss - sass - sass-loader - stylus @@ -8725,14 +8921,6 @@ packages: - vue dev: false - registry.npmmirror.com/wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/wcwidth/-/wcwidth-1.0.1.tgz} - name: wcwidth - version: 1.0.1 - dependencies: - defaults: registry.npmmirror.com/defaults@1.0.4 - dev: false - registry.npmmirror.com/web-worker@1.2.0: resolution: {integrity: sha512-PgF341avzqyx60neE9DD+XS26MMNMoUQRz9NOZwW32nPQrF6p77f1htcnjBSEV8BGMKZ16choqUG4hyI0Hx7mA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/web-worker/-/web-worker-1.2.0.tgz} name: web-worker @@ -8856,10 +9044,10 @@ packages: engines: {node: '>=16.0.0'} dependencies: '@apideck/better-ajv-errors': registry.npmmirror.com/@apideck/better-ajv-errors@0.3.6(ajv@8.12.0) - '@babel/core': registry.npmmirror.com/@babel/core@7.22.1 - '@babel/preset-env': registry.npmmirror.com/@babel/preset-env@7.22.4(@babel/core@7.22.1) + '@babel/core': registry.npmmirror.com/@babel/core@7.22.11 + '@babel/preset-env': registry.npmmirror.com/@babel/preset-env@7.22.4(@babel/core@7.22.11) '@babel/runtime': registry.npmmirror.com/@babel/runtime@7.22.3 - '@rollup/plugin-babel': registry.npmmirror.com/@rollup/plugin-babel@5.3.1(@babel/core@7.22.1)(rollup@2.79.1) + '@rollup/plugin-babel': registry.npmmirror.com/@rollup/plugin-babel@5.3.1(@babel/core@7.22.11)(rollup@2.79.1) '@rollup/plugin-node-resolve': registry.npmmirror.com/@rollup/plugin-node-resolve@11.2.1(rollup@2.79.1) '@rollup/plugin-replace': registry.npmmirror.com/@rollup/plugin-replace@2.4.2(rollup@2.79.1) '@surma/rollup-plugin-off-main-thread': registry.npmmirror.com/@surma/rollup-plugin-off-main-thread@2.2.3 @@ -9119,10 +9307,10 @@ packages: yargs-parser: registry.npmmirror.com/yargs-parser@18.1.3 dev: false - registry.npmmirror.com/zrender@5.4.3: - resolution: {integrity: sha512-DRUM4ZLnoaT0PBVvGBDO9oWIDBKFdAVieNWxWwK0niYzJCMwGchRk21/hsE+RKkIveH3XHCyvXcJDkgLVvfizQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/zrender/-/zrender-5.4.3.tgz} + registry.npmmirror.com/zrender@5.4.4: + resolution: {integrity: sha512-0VxCNJ7AGOMCWeHVyTrGzUgrK4asT4ml9PEkeGirAkKNYXYzoPJCLvmyfdoOXcjTHPs10OZVMfD1Rwg16AZyYw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/zrender/-/zrender-5.4.4.tgz} name: zrender - version: 5.4.3 + version: 5.4.4 dependencies: tslib: registry.npmmirror.com/tslib@2.3.0 dev: false