-
-

-

-

-

-

-

-

+## 联系作者
+
+若系列文章对你有所帮助,欢迎订阅公众号或微信”骚扰“,获取更多内容。**商务合作请备注来意**
+
+
+
+
+
+
+
+
+
-若系列文章对你有所帮助,欢迎订阅公众号,获取更多内容。也可微信”骚扰“,商务合作请备注来意
-
-
-
-
-
-
-
-
-
-
-
交流/加群/互看朋友圈
当然:**聊天 /提问 /建议 /提需求** 可以在本公众号直接**私信**,后台可以看到,有时间即会回复,偶尔的延迟和疏漏还请小伙伴们谅解,蟹蟹。
-### 外链
-
diff --git a/manuscripts/back/栈和队列/1.栈的基本概念和基本操作.md b/manuscripts/back/栈和队列/1.栈的基本概念和基本操作.md
index b6bafbb..3840dad 100644
--- a/manuscripts/back/栈和队列/1.栈的基本概念和基本操作.md
+++ b/manuscripts/back/栈和队列/1.栈的基本概念和基本操作.md
@@ -17,7 +17,7 @@
- 明确栈是一种线性表
- 限定栈只能在某一端进行插入或者删除操作
-
+
`栈顶`:线性表允许进行插入和删除的一端。
diff --git a/manuscripts/back/栈和队列/4.队列的基本概念和基础操作.md b/manuscripts/back/栈和队列/4.队列的基本概念和基础操作.md
index 36be4e6..6aab142 100644
--- a/manuscripts/back/栈和队列/4.队列的基本概念和基础操作.md
+++ b/manuscripts/back/栈和队列/4.队列的基本概念和基础操作.md
@@ -21,7 +21,7 @@
`出队`: 删除队列元素,也叫做`离队`
-
+
结合生活中排队的经验,在群体素质高、无人插队的情况下(`薛定谔排队`,噗呲,哈哈哈),**一般最早排队的也是最早离队的**,和栈的`后进先出`不一样的是,队列是`先进先出`的,即:First In Frist Out
diff --git a/manuscripts/back/栈和队列/5.队列的顺序存储结构.md b/manuscripts/back/栈和队列/5.队列的顺序存储结构.md
index 3db7b26..bed171d 100644
--- a/manuscripts/back/栈和队列/5.队列的顺序存储结构.md
+++ b/manuscripts/back/栈和队列/5.队列的顺序存储结构.md
@@ -44,7 +44,7 @@ typedef struct {
-
+
在空队列中,初始状态为`Q.front===Q.rear==0`,当元素a入队时,队尾指针rear后移+1,入队成功后,`Q.front==0`、`Q.rear==1`,在队不满的情况下进队,都是`先赋值给队尾元素,再移动队尾指针rear+1`,通过上面的图宝贝可以看到,队列被元素打满的时:
@@ -54,7 +54,7 @@ typedef struct {
> Tips: MaxSize为队列结构体定义中,最大存储元素个数哦~
-
+
进队说完了,那给宝贝来说说出队吧。以上图为例,队列中`Q.rear==Maxsize`、`Q.front==0`;当出现元素在队首出队,就会直接影响队首指针,从上面的流程上看:
@@ -90,7 +90,7 @@ typedef struct {
在上面的顺序队列中,当队满后进行出队列,由于顺序队列出队只在队首进行操作,并且只会修改队首指针,这时候就会出现队尾指针一直`Q.rear===MaxSize`情况,就如下:
-
+
可以很明显的看到,明明队列不满,但是由于进队列只能在队尾操作,因此不能进行进队操作;通常在这种情况下入队就会出现“上溢出”。
@@ -109,7 +109,7 @@ typedef struct {
-
+
当队首指针`Q.front=MaxSize-1`后,再有元素`出队`就前进一个位置自动到位置0了【注意:可以结合时钟来理解,一圈转完了】
@@ -127,7 +127,7 @@ typedef struct {
**和时钟一样,顺时钟进行时间变换,在出队、入队时,队首、队尾指针都是按顺时针方向进1**
-
+
如上图,循环队列从最开始初始化为空队列时:`Q.front==Q.rear==0`,经过元素a入队,队尾指针顺时针前移`Q.rear+1`,到元素a、b、c、d陆续入队,就好像时钟转完了一圈,循环队列已满,此时发现:`Q.front==Q.rear==0`在队满时候依然成立,所以结合前面提到的初始化对空条件:`Q.front==Q.rear==0`,用`Q.front==Q.rear`来区分`队空`和`队满`是非常不合适的。
diff --git a/manuscripts/back/栈和队列/6.队列的链式存储结构.md b/manuscripts/back/栈和队列/6.队列的链式存储结构.md
index 237150c..70ccdee 100644
--- a/manuscripts/back/栈和队列/6.队列的链式存储结构.md
+++ b/manuscripts/back/栈和队列/6.队列的链式存储结构.md
@@ -22,7 +22,7 @@
> - 队头指针指向队头元素
> - 队尾指针指向队尾元素的下一个位置
-[//]: # ()
+
队列的链式存储结构:
@@ -53,7 +53,7 @@ typedef struct{
仔细思考上面的入队、出队操作,都需要考虑队空的情况下的特殊处理,不带头结点的队列导致队空队首和队尾指针都为NULL,比较麻烦;结合之前整理、学习过的单链表,套用一下先贤的思路,也整上一个头结点,就会发现容易处理很多;
-
+
链式队列加上头结点后,之前较为复杂的入队、出队操作就统一起来了。
@@ -198,7 +198,7 @@ bool DeLinkQueue(LinkQueue &Q, ElemType &x){
出队的时候明显有些绕,需要明确队列中头结点的存在,出队出的是单链表中头结点的后一个结点,同时要确保整个过程`不断链`
-
+
@@ -206,7 +206,7 @@ bool DeLinkQueue(LinkQueue &Q, ElemType &x){
`双端队列`: 允许在两端都可以进行入队和出队操作的队列,元素的逻辑结构仍然是线性结构
-
+
**双端队列的两端分别称为`前端`和`后端`,两端都可以`入队`和`出队`**
diff --git a/manuscripts/back/栈和队列/8.特殊矩阵的压缩存储.md b/manuscripts/back/栈和队列/8.特殊矩阵的压缩存储.md
index 9ba49ae..3f117a0 100644
--- a/manuscripts/back/栈和队列/8.特殊矩阵的压缩存储.md
+++ b/manuscripts/back/栈和队列/8.特殊矩阵的压缩存储.md
@@ -59,7 +59,7 @@
-
+
三元组的结点存储了行标(row)、列表(col)、值(value)三种信息,是主要用来存储稀疏矩阵的一种数据结构。
diff --git a/manuscripts/category/README.md b/manuscripts/category/README.md
deleted file mode 100644
index 2471e27..0000000
--- a/manuscripts/category/README.md
+++ /dev/null
@@ -1,973 +0,0 @@
----
-title: null
-date: 2021-01-19 08:04:19
-permalink: /pages/add102/
-categories:
- - category
-tags:
- -
----
-
-
-#
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-## 写最前面
-
-> 这里是日常工作、学习、生活中总结的各类文章笔记,主要涉及开发技术总结记录,偶尔也会感慨万千,水一些无关技术的文章;若发现博客外链不能访问则可能博客设置修改过,请直接访问博客;所有内容会选择性的发表于**微信公众号、个人博客、掘金、CSDN ,实际内容以本仓库排版、校对为主。** 也会不定时同步到 **码云** 。
-> **以下内容没有链接的代表尚未完成,大家善用快捷键Ctrl+F**
->
-> 创建时间:2020年2月14日
-
-
-
-## 关于作者
-
-
--

[个人项目整理](http://blog.142vip.cn/s/projects)
--

[自我介绍]()
-
-
-## 思维导图
-
-
-> 内容同步与文档,可以结合思维导图对文档进行有效学习.相关目录的xmind文件为思维导图原文件
-
-
-## 日常推荐
-
-
-- [云服务器推荐](docs/recommend/云服务器推荐.md)
-- [学习网站、使用工具](docs/recommend/学习网站、效率工具.md)
-- [值得细读的技术文章推荐](docs/recommend/值得细读的技术文章推荐.md)
-
-
-# 文章笔记
-
-
-**注:无高亮有效访问链接的待完成/同步**
-
-
-## 前端
-
-
-> 前端技术百花齐放、层出不穷,个人认为要注重广度,学会看官方文档熟练操作即可;
-
-
-#### CSS
-
-
-> 依赖W3CSchool文档和日常整理,主要是对CSS常用操作和基础属性进行整理总结。不会过多深入
-
-
-- [CSS开发规范](docs/css/CSS开发规范.md)
-
-- 样式属性
-
-- 页面布局
-
-- 移动端适配
-
-
-
-
-##### [基础教程](docs/css/基础教程)
-
-
-##
-
-
-#### JavaScript
-
-
-> **本级目录下的JavaScript内容没有发表到[博客](http://blog.142vip.cn)上,建议对照[脑图](docs/javascript/README.md)在[JavaScript主目录](javascript)下学习**,依赖官方文档及自身对JavaScript语言的初步了解,进行的关于JavaScript知识整理,主要目的是复习基础概念、了解新特性、熟练ES6/7操作;整体相对来说由易到难,方便后续查阅学习~
-
-
-##### 快速入门
-
-
-- [简单介绍](docs/javascript/快速入门/javascript简单介绍.md)
-- [快速了解](docs/javascript/快速入门/javascript快速入门.md)
-- [JavasScript开发规范](docs/javascript/JavaScript开发规范.md)
-
-
-##### 基础教程
-
-
-- [语法与数据结构](docs/javascript/基础教程/javascript语法与数据结构.md)
-- [循环与迭代](docs/javascript/基础教程/javascript循环与迭代.md)
-- [流程控制与错误处理](docs/javascript/基础教程/javascript流程控制与错误处理.md)
-- [表达式和运算符](docs/javascript/基础教程/javascript表达式和运算符.md)
-- [函数和方法](docs/javascript/基础教程/javascript函数.md)
-- [数字和日期](docs/javascript/基础教程/javascript数字和日期.md)
-- [对象的使用](docs/javascript/基础教程/javascript对象的使用.md)
-- [正则表达式](docs/javascript/基础教程/javascript正则表达式.md)
-- [promise对象的使用](docs/javascript/基础教程/promise对象的使用.md)
-- [modules模块](docs/javascript/基础教程/modules模块.md)
-
-
-##### 中级教程
-
-
-- [Promise对象](docs/javascript/中级教程/promise对象.md)
-- [async函数](docs/javascript/中级教程/async函数.md)
-- [class类](docs/javascript/中级教程/class类.md)
-
-
-##### 高级教程
-
-
-- [不一样的ajax](docs/javascript/高级教程/不一样的ajax.md)
-- [什么是事件循环](docs/javascript/高级教程/什么是事件循环.md)
-
-- [JSON.stringify()的三个参数]()
-
-
-##### 最后稻草
-
-
-- [ES6、ES7、ES8、ES9、ES10的新特性](docs/javascript/最后稻草/ES6、ES7、ES8、ES9、ES10的新特性.md)
-- [ES2020新特性](docs/javascript/最后稻草/ES2020新特性.md)
-- [JavaScript 工具函数大全](docs/javascript/最后稻草/JavaScript工具函数大全.md)
-- [常用函数方法整理](docs/javascript/最后稻草/常用函数方法整理.md)
-
-
-#### JQuery
-
-
-- [安装使用](docs/jquery/安装使用.md)
-- [基本属性](docs/jquery/基本属性.md)
-
-
-- Css样式
-
-
-- 选择器
-
-
-- 文档处理
-
-
-- 筛选
-
-
-- 事件
-
-
-- 效果
-
-
-- 事件对象
-
-
-- 延迟对象
-
-
-- 回调函数
-
-
-- 其他整理
-
-
-#### Vuejs
-
-
-> 介绍基础、常用的vue功能,不会很深入的涉及到vue源码及原理
-
-
-#### React
-
-
-#### Nuxtjs
-
-
-> Nuxtjs是在vue框架上进行封装的,主要是用来解决单体页面的服务端渲染问题,提供网站进行SEO优化的可能
-
-
-[前端读写cookie]()
-
-
-#### UI框架
-
-
-> 市面上前端框架层出不穷,不同的技术栈依赖的UI框架也不尽相同,这里将会依据笔者使用的UI框架,以线上项目展示的方式,介绍用过的框架;
-
-
-- Bootstrap
-- LayerUI
-- Ant-design-vue
-- iView-UI
-- VantUI
-- Element-UI
-
-
-## 后端【Node】
-
-
-> 相比前端,作为偏后端的开发者, 后端技术的学习则需要稳扎稳打、不断积累整理,在会用、能用、熟练的基础上,更应该学习其中的原理;所以若你为后端开发者,不论Java、Nodejs、Go等技术栈,对待下面将提及的微服务架构、容器技术、服务治理、高可用等都需要努力学习,抓住重点;
->
-> 在面试面前,能力是不会说谎的,打铁还需自身硬,加油~
-
-
-#### Express框架
-
-
-- [框架概念简介](docs/express/框架介绍.md)
-- [brew和tree的安装](docs/express/brew和tree的安装.md)
-- 搭建express基础项目
-- 安装
-- 路由
-- 静态文件
-- 中间件
-- 统一错误处理
-- [express()函数](docs/express/express()函数.md)
-- [application对象详解](docs/express/application对象详解.md)
-- [request对象](docs/express/request对象.md)
-- [respon对象]()
-- [router对象]()
-- 数据库集成
-- MVC分层
-- [pm2进程管理](docs/express/pm2进程管理.md)
-- 分环境部署上线
-
-
-#### Koa框架
-
-
-- koa介绍
-- 手把手搭建第一个koa项目
-- 应用(Application)
-- 中间件(Middleware)
-- 上下文(Context)
-- 请求(Request)
-- 响应(Response)
-
-
-#### Eggjs框架
-
-
-##### 基础篇
-
-
-- [第一部分:Git概述](docs/eggjs/git-README.md)
-
-
-* [1.1 下载和安装](docs/eggjs/git-download.md)
- * [1.2 基本配置](docs/eggjs/git-config.md)
- * [1.3 常用命令](docs/eggjs/git-dns.md)
- * [1.4 GitHub简单使用](docs/eggjs/git-github.md)
- * [1.5 GitBook简单使用](https://mp.weixin.qq.com/s/Wn_IZ6K4eqh1PtomRtqdqg)
- * [1.5.1 Typora简介](docs/eggjs/git-typora.md)
- * [1.5.2 MarkDown语法](docs/eggjs/git-markdown.md)
- * [1.6 码云和GitHub的选择](docs/eggjs/git-choice.md)
-
-
-- [第二部分:数据库概述](docs/eggjs/mysql-README.md)
-
-
- - [2.1 下载和安装](docs/eggjs/mysql-download.md)
- - [2.2 连接数据库](docs/eggjs/git-connect.md)
- - [2.3 CURD操作](docs/eggjs/mysql-curd.md)
- - [2.4 Redis缓存](docs/eggjs/mysql-redis.md)
- - [2.4.1 redis安装](docs/eggjs/mysql-redis-install.md)
- - [2.4.2 redis常用指令](docs/eggjs/mysql-redis-dns.md)
- - [2.5 可视化管理](docs/eggjs/mysql-redis-view.md)
-
-
-##### 入门篇
-
-
-- [第一部分:Egg框架快速入门](docs/eggjs/egg-README.md)
-
-
-- [1.1 基础功能](docs/eggjs/egg-base.md)
- - [1.1.1 接口参数获取](docs/eggjs/egg-request-params.md)
- - [1.1.2 Egg内置对象 ](docs/eggjs/egg-object.md)
- - [1.1.3 Config配置](docs/eggjs/egg-config.md)
- - [1.1.4 Egg生命周期](docs/eggjs/egg-life.md)
- - [1.1.5 中间件理解](docs/eggjs/egg-middleware.md)
- - [1.1.6 Router路由分发](docs/eggjs/egg-router.md)
- - [1.1.7 Controller控制器](docs/eggjs/egg-controller.md)
- - [1.1.8 Service服务](docs/eggjs/egg-service.md)
- - [1.1.9 常用插件](docs/eggjs/egg-plugin.md)
-- [1.2 核心功能](docs/eggjs/egg-core.md)
- - [1.2.1 日志输出](docs/eggjs/egg-logger.md)
- - [1.2.2 定时任务](docs/eggjs/egg-schedule.md)
- - [1.2.2 HttpClient网络请求](docs/eggjs/egg-httpclient.md)
- - [1.2.3 Cookie的基本使用](docs/eggjs/egg-cookies.md)
- - [1.2.4 Session的基本使用](docs/eggjs/egg-session.md)
- - [1.2.5 统一异常-错误处理](docs/eggjs/egg-try-catch.md)
- - [1.2.6 CSRF防范和XSS攻击](docs/eggjs/egg-csrf-xss.md)
- - [1.2.7 RESTful API接口风格](docs/eggjs/egg-restful.md)
-
-
-- [第二部分:插件开发](docs/eggjs/plugin-README.md)
-
-
- - [2.1 egg-validate参数校验](docs/eggjs/plugin-egg-validate.md)
- - [2.2 egg-view-ejs页面渲染](docs/eggjs/plugin-egg-view.ejs.md)
- - [2.3 egg-redis缓存](docs/eggjs/plugin-egg-redis.md)
- - [2.4 egg-mysql](docs/eggjs/plugin-egg-mysql.md)
- - [2.5 egg-sequelize](docs/eggjs/plugin-egg-sequelize.md)
- - [2.6 egg-socket.io即时通讯](docs/eggjs/plugin-egg-socket.io.md)
-
-
-##### 代码实战篇
-
-
-- [第一部分:常用代码](docs/eggjs/project-README-CODE.md)
-
-
- - [1.1 图片前端在线剪辑](docs/eggjs/project-images-cropper.md)
- - [1.2 文件上传后台处理](docs/eggjs/project-upload.md)
- - [1.3 MD5加密-解密算法](docs/eggjs/project-md5.md)
- - [1.4 Egg Jwt加密和校验](docs/eggjs/project-token.md)
-- [第二部分:项目简介](docs/eggjs/project-README-INTRODUCE.md)
-
-
- - [2.1 基于OAuth2的统一认证中心系统](docs/eggjs/project-ssoCenterSystem.md)
- - [2.2 常用前后端分页比较与实现](docs/eggjs/project-pagenation.md)
- - [2.3基于Spring Boot实现的个人博客](docs/eggjs/project-spring-boot-blog.md)
- - [2.4 基于Yapi搭建的接口管理系统](docs/eggjs/project-webapi.md)
- - [2.5 GitBook开源笔记总结站点搭建](docs/eggjs/project-gitbook.md)
- - [2.6 个人网站及接口服务搭建搭建](docs/eggjs/project-142vip.cn.md)
-- [第三部分:手把手搭建基础Egg开发框架](docs/eggjs/egg-egg-example.md)
-
-
-#### Nestjs框架
-
-
-> Nestjs框架推崇typescript语法,并且友好的兼容express框架,因此在学习Nestjs框架之前,请务必先熟悉express框架相关操作并进行typescript入门;在一定程度上typescript和面向对象语言Java、Net等很相似,如果你之前有JavaScript和Java的基础,那么应该恭喜你,你的学习速度将会倍速提高
-
-
-- [核心基础概念](nestjs/nestjs核心基础概念.md)
-- [项目创建初始化入门](nestjs/nestjs项目创建初始化入门.md)
-- [整合swagger快速生成api文档](nestjs/nestjs整合swagger快速生成api文档.md)
-- [接口路由请求传参](nestjs/nestjs接口路由请求传参.md)
-
-
-## 算法
-
-
-- 算法分析
-
-
-#### 查找
-
-
-- 顺序查找
-- 折半查找
-- 分块查找
-- B树和B+树
-- 散列(Hash)表
-- 字符串模式匹配(KPM)
-
-
-#### 排序
-
-
-- 插入排序
-- 交换排序
-- 选择排序
-- 归并排序
-- 基数排序
-- 内部排序比较
-- 外部排序比较
-
-
-#### LeetCode刷题
-
-
-## 数据库
-
-
-> 主讲数据库基础知识,结合node的简单使用,相关的部署方案参照下方的文档
-
-
-#### MySQL
-
-
-- [【服务器版】MySQL的安装部署](https://mp.weixin.qq.com/s/U1OUZYHEChFDx03FvgbMHA)
-- [MySQL优化之Explain参数说明](docs/mysql/MySQL优化之Explain参数说明.md)
-- 索引
-- sql优化
-- [基于GTID主从复制的原理和基础配置](docs/mysql/基于GTID主从复制的原理和基础配置.md)
-- [MySQL日志类型把我难哭了,你学废了吗?](docs/mysql/mysql日志比较.md)
-
-
-#### Redis
-
-
-> 将围绕redis基础概念、使用场景、使用方式、简单部署等方面 展开介绍,[主目录](redis)下有自己觉得还不错PDF文档~
-
-
-- [key命名规范与建议](docs/redis/key命名规范与建议.md)
-- [redis开发使用规范](docs/redis/redis开发使用规范.md)
-- [redis基础介绍](docs/redis/redis基础介绍.md)
-- [redis的简单安装和部署](https://mp.weixin.qq.com/s/Xe-ZDf2kgUWfYSkuULAdlw)
-- [官方默认配置模板](code/docs/redis/redis-default.conf)
-- 数据类型
-- [redis简单主从集群部署-docker方式](docs/docs/redis/redis集群部署.md)
-- [memCache与Redis比较](docs/redis/memCache与Redis.md)
-
-
-#### Mongo
-
-
-- 基本介绍
-- 安装部署
-- 简单使用
-- Node下的CURD操作
-
-
-## 服务部署
-
-
-#### nginx
-
-
-- [nginx安装,普通安装 Or Docker搞定?](docs/nginx/nginx基础部署.md)
-- [手把手nginx基础入门]()
-- [反向代理、负载均衡真有那么难吗?]()
-- [Nginx SSL证书,从此踏上Https之路](docs/nginx/nginx服务器ssl证书配置.md)
-
-
-#### docker
-
-
-- 我与docker的第一次硬碰硬
-- docker操作入门真有那么难吗?
-- 这些基础操作指令,你会吗?
-- 那些年,我常用的docker指令操作汇总
-
-
-#### docker-compose
-
-
-- 听说你装了N次都没搞定?
-- 集群启动失败,yaml规范不清楚?
-- [我了解的docker-compose都在这里了](https://mp.weixin.qq.com/s/nC4nF51xn61TZlenuUxDog)
-
-
-#### linux下shell编程
-
-- [shell基础整理](https://mp.weixin.qq.com/s/gctrWdB1JEK59_a9tJQSkg)
-- [操作mysql数据库](shell/shell连接mysql.md)
-- shell操作docker
-- 环境变量env
-
-
-## 服务网关
-
-
-#### kong
-
-
-- [kong的的基本介绍](/api-gateway/kong/kong的基本介绍.md)
-- [docker下kong的部署](/api-gateway/kong/基于docker部署kong网关服务.md)
-- docker-compose搭建kong集群
-- 可视化管理界面介绍
-
-
-#### konga
-
-
-- 基本介绍与docker部署
-- 简单使用
-- 路由管理
-
-
-#### kong-dashboard
-
-
-- docker简单部署
-- 路由管理
-- 插件介绍
-
-
-## 服务注册
-
-
-#### Apollo
-
-
-> 携程开发的配置中心经典项目,可集成多语言客户端,实现灰度部署,在分布式微服务的场景下抽离出服务配置,方便统一管理、发布
-
-
-#### Consul
-
-
-> 服务注册、发现,key-value键值对管理
-
-
-#### Nacos
-
-
-> 背靠国内一线互联网大厂——阿里巴巴,也是可适用于微服务下的配置管理,支持Java、Nodejs等主流语言,目前生态良好,技术支持表现一般,属于Apollo替代产品
-
-
-## 消息中间件
-
-
-> 消息队列已经逐渐成为企业IT系统内部通信的核心手段。具有低耦合、可靠投递、广播、流量控制、最终一致性等一系列功能,成为异步RPC的主要手段之一。当今市面上有很多主流的消息中间件,如老牌的ActiveMQ、RabbitMQ,炙手可热的Kafka,阿里巴巴自主开发RocketMQ等。
->
-> 目前个人了解的有:RabbitMQ、Kafka、RocketMQ
-
-
-#### RabbitMQ
-
-
-#### kafka
-
-
-#### RocketMQ
-
-
-## RPC框架
-
-
-#### gRPC
-
-
-> gRPC 一开始由 google 开发,是一款语言中立、平台中立、开源的远程过程调用(RPC)系统,tensorflow分布式与tensorflow serving底层通信都是是用的grpc。我自己基于JavaScript技术栈上较多的接触到gRPC,传送门:[基于js下各框架grpc的使用]()
-
-
-- nodejs下grpc的简单实用
-
-
-- grpc集成express框架
-
-
-- grpc集成koa框架
-
-
-- eggjs框架下grpc的线上部署
-
-
-- grpc插件开发示例
-
-
-
-
-
-#### Dubbo
-
-
-> Alibaba开发的一个RPC框架,远程接口基于Java Interface, 依托于Spring框架(**Java技术栈重点研究**)
-
-
-#### Thrift
-
-
-> Apache的一个项目(http://thrift.apache.org),前身是Facebook开发的一个RPC框架,采用thrift作为IDL (Interface description language)。
-
-
-## Elk日志管理平台
-
-
-> 全链路日志
-
-- [ELK基础概念与常用架构整理](docs/elk/基础概念与常用架构整理.md)
-
-
-#### ElasticSearch
-
-
-> 数据存储
-
-
-#### Logstash
-
-
-> 数据收集
-
-
-#### Kibana
-
-
-> 数据展示
-
-
-## 监控工具
-
-
-> 参考笔者线上平台:http://view.142vip.cn/grafana 账号/密码:test/123456 基于docker部署,由于是个人学生服务器,站点访问延迟较高
->
-> 常用工具:promethus 、grafana、zabbix、lepus等
-
-
-#### Prometheus
-
-
-#### Grafana
-
-
-#### Zabbix
-
-
-#### lepus(天兔)
-
-
-## 高可用架构
-
-
-#### MySQL集群
-
-
-##### 主从同步
-
-
-> 实现功能:主从服务器数据一致,低延迟、高并发
-
-
-- Binlog主从复制
-- GTID主从复制
-- 主主复制
-
-
-##### 代理中间件
-
-
-> 实现功能:读写分离、分库分表、负载均衡、故障切换
-
-
-- Mycat
-- 360Atlas
-
-
-#### 集群监控
-
-
-> 实现功能:实时监控、可视化数据显示、故障报警
-
-
-##### Prometheus
-
-
-- 监控MySQL集群
-- 监控Mongo数据库
-- 监控Node服务
-- 监控linux服务器
-- 监控redis集群
-
-
-##### Grafana
-
-
-- 基本安装部署
-- 功能介绍和简单操作
-- 可视化数据图形显示界面
-- 常用模板
-
-
-##### alter-manager
-
-
-- 推送到邮箱
-- 推送到钉钉、微信机器人
-- 推送到自定义消息接口(webhook钩子)
-
-
-#### 压力测试
-
-
-- jmeter
-
-
-#### Redis集群
-
-
-> 持续整理中...
-
-
-##### 简单主从模式
-
-
-#### 哨兵模式
-
-
-##### cluster模式
-
-
-## 网站搭建
-
-
-> 从大二开始搭建个人网站:http://www.142vip.cn 起初非常简陋,工作之后计划进行第三版迭代,一直抽空佛系谢谢, 目前在重构中..
-
-
-- 最初的梦想
-- 舍弃Java,我的重构之路
-- 网站正规化,Nginx配置SSL证书
-- 小小网站却耗费三台学生服务器?
-
-
-
-
-
-
-## 书籍整理
-
-### 技术类
-> 待整理
-
-#### [狼书 - 了不起的Node.js](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/Readme.md)
-
-- [第一章 Node.js初识](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/第一章%20Node.js初识.md)
-- [第二章 Nodejs安装与入门](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/第二章%20Nodejs安装与入门.md)
-- [第三章 更了不起的Node.js](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/第三章%20更了不起的Node.js.md)
-- [第四章 更好的Node.js](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/第四章%20更好的Node.js.md)
-- [第五章 Node.js是如何执行的](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/第五章%20Node.js是如何执行的.md)
-- [第六章 模块与核心](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/第六章%20模块与核心.md)
-- [第七章 异步写法与流程控制](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/第七章%20异步写法与流程控制.md)
-
-- [全部笔记](docs/读书笔记/../article-records/读书笔记/狼书-了不起的Node.js/全部笔记.md)
-
-
-#### [ES6标准入门——阮一峰]()
-
-> 本书内容较多,很多基础细节都有说明,难度中等、适合入门,书中很多例子我也摘抄了很多,主要是我认为重要的,笔记按照自己学习逻辑整理的,请君慢用
-- [1.ECMAScript 6 简介](docs/article-records/读书笔记/ES6标准入门/1.ECMAScript%206%20简介.md)
-- [2.let和const命令](docs/article-records/读书笔记/ES6标准入门/2.let和const的命令.md)
-- [3.变量的解构赋值](docs/article-records/读书笔记/ES6标准入门/3.变量的解构赋值.md)
-- [4.字符串详解]()
-### 非技术类
-
-> 主要是跟计算机无关的一些书,在看完之后,会选择性的进行思维导图、经典词句整理,也可能添加个人思考
-
-
-#### [你好孤独 - 陈果](docs/article-records/读书笔记/好的孤独-陈果/Readme.md)
-
-## 公众号汇总
-
-### 2020年
-
-#### 7月
-
-- [【2020-07-26】微信公众号我来了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483659&idx=1&sn=ac7b633a45ac06d388e0698163a2543e&chksm=fcdfb887cba8319151aedfa80c5b59d130838af81fe51c76e5c4926f82f4937b51c8c0c1470e&token=1304241434&lang=zh_CN#rd)
-
-- [【2020-07-27】介绍一下,我在B站](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483760&idx=1&sn=30a9fa2a051079c5330039615950c34d&chksm=fcdfb8fccba831ea64644be501ecca3cea5846f16367faed9c84b44a30d9b6dc30456dae6548&token=1304241434&lang=zh_CN#rd)
-
-
-- [【2020-07-28】五年了,我终于换了人生中的第一台MacBookPro](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483762&idx=1&sn=e9ea759f1c1589881cc3bd9cabddb70a&chksm=fcdfb8fecba831e8c4635a4cefd302977071ed11a4dda6161cf9ad8458865297194f87cb013a&token=1304241434&lang=zh_CN#rd)
-
-
-- [【2020-07-29】工作中第一次被喷,我到底是如何应对的?](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483770&idx=1&sn=6b760873a814f4e18baab415bee3d863&chksm=fcdfb8f6cba831e00802de653ff6723a0bb169a93fe3a6a9762ee62d75d8cd88409268db9047&token=1304241434&lang=zh_CN#rd)
-
-
-- [【2020-07-31】CSDN关注100了,就这????](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483778&idx=1&sn=3d9f623c58d595f75d7092783a6c5abe&chksm=fcdfb80ecba83118e76de1ed88a5be51229e4145182aee6e0bcc13e4697707cf9f4609d8799d&token=1304241434&lang=zh_CN#rd)
-
-
-
-#### 8月
-- [【2020-08-01】旧友相见,甚是怀念](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483790&idx=1&sn=76e13ac79ad498309542c9f41878bb1c&chksm=fcdfb802cba8311456ea9ff3309c4354055022cd0056b13c11fac44252231550e17a03f26f29&token=639111151&lang=zh_CN#rd)
-
-- [【2020-08-03】JavaScript基础介绍和快速入门](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247483805&idx=1&sn=4da4e0d3a2912aee146248c1d8f7f96f&chksm=fcdfb811cba83107fd8f08d3e35af7c72bf7d908d577ad83e45d80b0e9d1bbdbf16b1f169d64&token=639111151&lang=zh_CN#rd)
-
-
-#### 9月
-
-- [【2020-09-01】Redis的简单安装和部署 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484600&idx=1&sn=489aa1bd12487b0bf8f2a7694f4ca1aa&chksm=fcdfbd34cba83422f0afee027747d9e95773e093fa3a24225c2729029c4392bf42043964782f&token=1613702159&lang=zh_CN#rd)
-
-- [【2020-09-01】就很像?? ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484600&idx=2&sn=a9962c6ca3a5eddd085bcd15617f64d9&chksm=fcdfbd34cba83422b987020a858b7cf31bfde6033642d697d5a00ad9ed618f3cf14deb207d67&token=1613702159&lang=zh_CN#rd)
-
-- [【2020-09-03】shell编程基础整理 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484702&idx=1&sn=6e3e862153755d9e61f5f4ebf220381d&chksm=fcdfbc92cba835844e8b6fd37d86a34ccf83342895f448c88ba5b62db974eb536a8e74a121aa&token=1613702159&lang=zh_CN#rd)
-
-- [【2020-09-03】大学四年建站用过的云服务器都在这里了 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484702&idx=2&sn=c7589eecbe58ff8939f72c0ff0bf567d&chksm=fcdfbc92cba83584b03dfeea7290606ce8249b0c3105b0b3b95a9087c77e3b1c7f863d8e30f9&token=1613702159&lang=zh_CN#rd)
-
-- [【2020-09-04】面试复盘和思考 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484711&idx=1&sn=bf362439ccfad04da53ce65c824a988d&chksm=fcdfbcabcba835bddc43c40fd3a454793adf7849a5d5bb356825d481b82ae3e58a749859502c&token=1613702159&lang=zh_CN#rd)
-
-- [【2020-09-06】朋友是“无用”的,不是你瞧不起我,就是我瞧不起你 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484759&idx=1&sn=e0f8a7a70ddede75d94b202ddc6106d6&chksm=fcdfbcdbcba835cd2138658d750f7e09a820b34daf4624f253a21a11b5de56635d35e4c0df19&token=1613702159&lang=zh_CN#rd)
-
-- [【2020-09-06】GitHub简单使用 ](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484759&idx=2&sn=ade86739c94f99f944a3d387bc7e13ef&chksm=fcdfbcdbcba835cd192c3b7b7eeea8f5dbb16b2b2fa58b6e2094184f5aa3341927a6d1fad6f8&token=1613702159&lang=zh_CN#rd)
-
-- [【2020-09-07】MySQL日志类型把我难哭了,你学废了吗?](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484771&idx=1&sn=6ae4c6e8d333b0e1aa5cd1aee161d9b8&chksm=fcdfbcefcba835f94e3c0abc189477f241f675f38a63eb03bd320447e89da39cb08b72038ba3&token=1613702159&lang=zh_CN#rd)
-
-- [【2020-09-11】向各位汇报这周状态,再也不敢鸽了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484783&idx=1&sn=b9e82a2c2b04b7050d0659085af537ef&chksm=fcdfbce3cba835f5e692f5ffbb16505dbf3b5ccc9bb0bdf4b3f467629b293d0e0ce3086ec8dc&token=639111151&lang=zh_CN#rd)
-
-
-- [【2020-09-11】向各位汇报这周状态,再也不敢鸽了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484783&idx=1&sn=b9e82a2c2b04b7050d0659085af537ef&chksm=fcdfbce3cba835f5e692f5ffbb16505dbf3b5ccc9bb0bdf4b3f467629b293d0e0ce3086ec8dc&token=639111151&lang=zh_CN#rd)
-
-- [【2020-09-12】向各位汇报,再也不敢鸽了,人生处处有惊喜](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484784&idx=1&sn=ae73f1f4e53b622039a75ec41cabe378&chksm=fcdfbcfccba835eafefe304913e4078cf8dfac22f62fd9d686b307bbdf46d147016f5e876e05&token=639111151&lang=zh_CN#rd)
-
-
-- [【2020-09-13】来来来,无厘头技术(水)文,各种尬。简简单单评价一下](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484815&idx=1&sn=10d26a600112ec4f95b3b3f470955744&chksm=fcdfbc03cba83515b07f0ae6cee791d1fb5fd619364cff3a17a4deab91333f0a6277b09a66a9&token=639111151&lang=zh_CN#rd)
-
-- [【2020-09-13】基础Brew和Tree的安装实录](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484815&idx=2&sn=94a6455ed6b17fa5b27e96358e935803&chksm=fcdfbc03cba83515d13dcfc2dea2445085a34ff4360e0a367fd914bb04bc6ba18a780a0cd2d2&token=639111151&lang=zh_CN#rd)
-
-- [【2020-09-13】PM2进程管理,给我学!](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484815&idx=3&sn=38a289efffda9510b5ff04c5bed0663e&chksm=fcdfbc03cba835154c888b9d7f86eac85c250eefb9d053687173274373f2f8d7b19fc307e76a&token=639111151&lang=zh_CN#rd)
-
-- [【2020-09-14】数据结构,一定要学废了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484823&idx=1&sn=d41bb8da02585cf9ea8d0b3ef27e3dbb&chksm=fcdfbc1bcba8350d84ba2f01eaf187cbaa2d4cf5a9078beb1f2fafe94edb0126c82595ed8191&token=368257571&lang=zh_CN#rd)
-
-- [【2020-09-16】ELK基础概念与常用架构整理](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484837&idx=1&sn=7f0de3eeea3fc6ee299587704f5c44cd&chksm=fcdfbc29cba8353fd894582da7ae2c93b5920c4dbb1e197b011a817dc0962e317842a32d5560&token=368257571&lang=zh_CN#rd)
-
-
-- [【2020-09-17】分享书上一段话,问一个问题](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484850&idx=1&sn=7af55ef3a7d843d9c43de6d6c7911da3&chksm=fcdfbc3ecba835287b2c644cda606454a713d370fbd7d14714b22a04277f7a7784b96b8b277e&token=368257571&lang=zh_CN#rd)
-
-
-- [【2020-09-17】看源码遇到的三个知识点,一个也没懂](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484850&idx=2&sn=c59839c677d7c9652a09d1f8c70ef8d6&chksm=fcdfbc3ecba83528cf8271a2615129340a6f11954b6d9396160d0fb2c41593253d5e3510a031&token=368257571&lang=zh_CN#rd)
-
-
-- [【2020-09-20】express()函数整理](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484865&idx=2&sn=63e6b669341217135013816464dd5bd9&chksm=fcdfbc4dcba8355b4de0f712047709425a35fa3b122378b31f0e4db3afb82dfd38872862aab4&token=368257571&lang=zh_CN#rd)
-
-
-- [【2020-09-22】入秋了,安好](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484865&idx=1&sn=e39e3547da49f40e1b64deadf9a9cfef&chksm=fcdfbc4dcba8355bfa9c8b9531a463fc652b764064528dd6c243f47a157b20e017bad3f410f4&token=368257571&lang=zh_CN#rd)
-
-
-- [【2020-09-22】Nginx安装详解,我服务器上也是这样的](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484897&idx=1&sn=b1073522cfd3ce6ebbe85e85ad4e35e0&chksm=fcdfbc6dcba8357bdb212c9db1378a045d0dcfd95b79ed05688180f05d2b391f9b724d0d752f&token=368257571&lang=zh_CN#rd)
-
-- [【2020-09-22】被攻击的一天](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484897&idx=2&sn=34c61ed01c6522d2861be3342ec12ad5&chksm=fcdfbc6dcba8357b76eb0fe6c502d932def6cd232297b010f9b2f9a1fca35c38df77dacce7f2&token=368257571&lang=zh_CN#rd)
-
-
-- [【2020-09-26】跟父亲视频的一个半小时,聊到了我,也聊到了Ta](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484929&idx=1&sn=394783dd2bfd65da24ae6dcb89d69ec6&chksm=fcdfbf8dcba8369b926b7083bbe3515aa5857f7589acc3f9d6d4987c67539a76dbd6e3cb70a1&token=368257571&lang=zh_CN#rd)
-
-
-#### 10月
-- [【2020-10-07】时间太快,溜了溜了,杭州见](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484943&idx=1&sn=ad37db87dc40f381fd18cc828e492384&chksm=fcdfbf83cba8369598fc2773b63df235a9719b43749e7daab753c621fef5af4fba054dbb46ea&token=368257571&lang=zh_CN#rd)
-
-- [【2020-10-14】写不了代码就不写嘛](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484951&idx=1&sn=edddf3d6c8f3fc6dd1d14063b536c732&chksm=fcdfbf9bcba8368d81ddffcbd258f7e4b7fb573d2a8963859e1b156e8a5f5d81f5629c49be6e&token=368257571&lang=zh_CN#rd)
-
-- [【2020-10-18】我不行了,这号关注量男女7:3 还怎么相亲嘛?](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484968&idx=1&sn=d37960ed81044fbf314440af85049d65&chksm=fcdfbfa4cba836b25082535910f7137d1513d834d54fbfadf48a433b29511ccf4d532f19b88a&token=368257571&lang=zh_CN#rd)
-
-- [【2020-10-26】悄悄接你下班,陪你回家](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247484988&idx=1&sn=947c487946fa3574d33e9c6861a1ee28&chksm=fcdfbfb0cba836a626d2efa904a5177c2e0916c381b26c89b6dcfc610a380b906d4480f7cc9b&token=368257571&lang=zh_CN#rd)
-
-
-#### 11月
-
-- [【2020-11-01】11月,你好](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485002&idx=1&sn=3760eba58f7ded433b71bec48b89a681&chksm=fcdfbfc6cba836d0b7db1f2aa5a4a884f68f8ce20a59aa44b4ac46c59eb4dd1c233079241a4a&token=368257571&lang=zh_CN#rd)
-
-- [【2020-11-15】她来了她来了,她带着剪了三遍的视频来了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485042&idx=1&sn=181ae5062c31ee7931390607b6f10358&chksm=fcdfbffecba836e8275c849007470db6964f7cd675af59fe73c94369334d17d4840e8c0413d5&token=898438314&lang=zh_CN#rd)
-
-
-- [【2020-11-18】陪我一路的小姐姐,谢谢啦~ 我大意了呀,没有闪](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485053&idx=1&sn=ed2fe0de87b70781cdb7755ef4726340&chksm=fcdfbff1cba836e7165dc53722aaf96ef38d8f43cfadadcb4695d8ff430ea64619caada81cfa&token=1939941957&lang=zh_CN#rd)
-
-- [【2020-11-30】11月的尾巴,12月你好](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485066&idx=1&sn=1d357917f548a6d977af96c6582db527&chksm=fcdfbf06cba836103152f7a3fdfbf97c1be2472a84f824cbddd532c15aefe14c71b3b076233f&token=831506871&lang=zh_CN#rd)
-
-#### 12月
-
-- [【2020-12-06】周末小记——忆旧友、吃火锅,也会感慨](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485080&idx=2&sn=bdc551f2e9bf54dc01881979339af8ad&chksm=fcdfbf14cba836022a05854547cbca03b5a08b912a0e0f195d4856d6b53ecd78aee2f167b515&token=1581389686&lang=zh_CN#rd)
-
-
-- [【2020-12-10】上火、牙疼,也要砍程序媛一刀](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485100&idx=1&sn=e7c0c41229d51ebfab2939deb1751672&chksm=fcdfbf20cba836364da35ab5acfed076876aae486126bc1c41cdd2502cc89a41cbde7c645610&token=1054397108&lang=zh_CN#rd)
-
-
-- [【2020-12-17】今晚不蹦迪,来聊一聊个人项目的接口返回](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485136&idx=1&sn=4619fb835e6d57e106ab01116012662a&chksm=fcdfbf5ccba8364aecddf14d11ed8ba36f38050b83b30b8d46e10f86b164aab05322b8455b36&token=755050934&lang=zh_CN#rd)
-
-- [【2020-12-20】事情,从英吉利海岸的那杯卡布奇诺美式咖啡说起](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485180&idx=1&sn=15ab9be3e15130103f26c919cbe0b605&chksm=fcdfbf70cba83666d287acc35485d02ddf67bacad6ea46d9ef04521f9f429fcb015d371c918e&token=1356818265&lang=zh_CN#rd)
-
-
-### 2021年
-
-
-#### 1月
-
-
-- [【2021-01-06】谁在看小王子呀~](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485228&idx=1&sn=1c30866a209af2a5eb927fd7bd63cc8b&chksm=fcdfbea0cba837b6d4cf9865b72a6a1553c4d9b6a6cce369bb09f66730ab37ec649071e7ab7c&token=1356818265&lang=zh_CN#rd)
-
-
-- [【2021-01-15】2020小结,没事就点点看看呗,反正小目标都没完成](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485249&idx=1&sn=dadf2a6dbed1879bbd98c62491436a9c&chksm=fcdfbecdcba837db5c11b8023ffa7ad6cf5a47c03027a0029604a50d0a77c75908efc05af39a&token=1356818265&lang=zh_CN#rd)
-
-- [【2021-01-17】搞波大的,浅谈深拷贝——文末有彩蛋](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485258&idx=1&sn=fb71007a5feed8e18674be27b1c749ab&chksm=fcdfbec6cba837d099e90a5f45781ee8cac474388e25ad9383a4fbc05fdb16a8e1377265c018&token=1356818265&lang=zh_CN#rd)
-
-
-- [【2021-01-18】到底该如何发布Npm插件,常用指令在这里](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485277&idx=1&sn=9eb7c3cef21ace2cc5853e382f2bb03f&chksm=fcdfbed1cba837c7839f3b57836f43b3425c8b5a7888f543bf4a1dd8b39cd82ed7d51a24a685&token=1356818265&lang=zh_CN#rd)
-
-
-- [【2021-01-20】好用的AntDocs,也来学着用一下,基本过程整理](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485291&idx=1&sn=19f13df8131a9f662973f2d9240c1eab&chksm=fcdfbee7cba837f180d8ad30735cd61e6c73fe195e63d46046bb24f80e1536aa0a585c3e1015&token=1356818265&lang=zh_CN#rd)
-
-
-- [【2021-01-27】【持续更新】从查找算法开始数据结构入门,大家都在掘金等你](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485318&idx=1&sn=6ae5fc9f1cf994818ff89d53a926761e&chksm=fcdfbe0acba8371c9d0025008084857cf14c52b01dfb1b9460d3388ba543c36da2abcbf90216&token=1356818265&lang=zh_CN#rd)
-
-
-- [【2021-01-30】ORM框架入门之Sequelize,我快翻译不动了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485341&idx=1&sn=fc493c28ab138056567e916b769ddbf2&chksm=fcdfbe11cba8370793e8e0d71e7766f4e1e7f3e8672921d6b98757f7d7b271b290f3edc65d6f&token=1356818265&lang=zh_CN#rd)
-
-#### 2月
-
-- [【2021-02-07】被妹妹支配的一周,晚上差点连家都回不去..](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485376&idx=1&sn=049a5df5cb97786e80aded38a1bf3732&chksm=fcdfbe4ccba8375a52cb8d7077836216e5f5f41ee9453aebf524eb0a5d8a5db48cbabc11f3e4&token=1356818265&lang=zh_CN#rd)
-
-
-- [【2021-02-11】【新年快乐】程序员的2020,就这样悄咪咪地溜走了](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485404&idx=1&sn=276100858df23daf987dbc68997477df&chksm=fcdfbe50cba837460079fc9ab414754a49668f82dc0f6a5a41ec320d3e5dd77c1a8c271e061b&token=1356818265&lang=zh_CN#rd)
-
-
-- [【2021-02-13】抢红包、拼手气来啦,之前答应的抽奖变成新年红包啦~](https://mp.weixin.qq.com/s?__biz=MzU3MTUxOTIwMw==&mid=2247485420&idx=1&sn=26c0e3690363af5dddd805ae417eeee9&chksm=fcdfbe60cba8377645e44333ccbe35147b9844578008e5699aba62b82c12fc03634e2d68781c&token=1356818265&lang=zh_CN#rd)
-
-## 赞赏支持
-
-
-> 相逢不用忙归去,明日黄花蝶也愁;若系列文章对你有帮助,不如请作者喝一杯伏见桃山...
->
-> **赞赏过的一定要扫下方右侧微信跟我说呀!!!!!!**
-
-
-
-

-
-
-
-
-
-## 联系我
-
-
-> 对仓库有任何问题或建议,欢迎微信“骚扰”,商务合作请备注!
-
-

-
-
-
-## 鸣谢
-
-
-以下排名不分先后!([详细统计]())
-
-
-
-
-
-## 赞助列表
-
-以下排名不分先后!
-
-
-
-
-
-
-## 公众号
-
-
-如果大家想要实时关注我更新的文章以及我的日常的话,可以关注我的公众号,基本每天都会更新技术和各种吹水文章,就当做是记录心情、成长的地方吧
-
-
-
-
-

-
\ No newline at end of file
diff --git a/manuscripts/category/about_author.md b/manuscripts/category/about_author.md
deleted file mode 100644
index d723819..0000000
--- a/manuscripts/category/about_author.md
+++ /dev/null
@@ -1,121 +0,0 @@
----
-title: 关于作者
-sidebarDepth: 0
-date: 2021-01-19 08:04:19
-permalink: /pages/15aa63/
-categories:
- - category
-tags:
- -
----
-
-
-## 我在做哪些事情?
-
-### 代码开源
-
-
-
-| 仓库名称 | 链接地址 | 当前状态 |
-| :----: | :----: |:----: |
-| **bilibili-reptile** | [https://github.com/mmdapl/bilibili-reptile](hhttps://github.com/mmdapl/bilibili-reptile) | done |
-| **project-display** | [https://github.com/mmdapl/project-display](https://github.com/mmdapl/project-display) | done |
-
-
-### 知识仓库
-
-利用业余时间,结合工作经验,以JavaScript和CS专业课为主题,持续维护的知识文档型仓库,其中
-- `408CSFamily` 主攻计算机408基础知识,以考研基础作为切入点
-- `JavaScriptCollection` 偏向工作实战,以JavaScript技术栈及周边技术作为切入点
-
-
-
-| 仓库名称 | 链接地址 | 当前状态 |
-| :----: | :----: |:----: |
-| **408CSFamily** | [https://github.com/mmdapl/408CSFamily](https://github.com/mmdapl/408CSFamily) | 日常维护 |
-| **JavaScriptCollection** | [https://github.com/mmdapl/JavaScriptCollection](https://github.com/mmdapl/JavaScriptCollection) | 日常维护 |
-
-### npm插件
-
-
-
-| 插件名称 | 链接地址 |当前状态 |
-| :----: | :----: |:----: |
-| **egg-axios-plus**| [https://github.com/mmdapl/egg-axios-plus](https://github.com/mmdapl/egg-axios-plus) | done |
-| **egg-sequelize-plus** | [https://github.com/mmdapl/egg-sequelize-plus](https://github.com/mmdapl/egg-sequelize-plus) | done |
-| **grpc相关** | [https://github.com/mmdapl](https://github.com/mmdapl) | doing |
-
-### 项目
-
-> 正在整理汇总
-
-#### 工作项目
-
-> 采用分布式微服务架构的邮箱类项目,涉及服务网关、消息队列、Apollo配置中心、Consul服务注册发现、redis集群及优化、mysql集群及优化、grpc远程调用、Oauth2授权认证等功能的新框架重构项目,待整理
-
-#### 日常项目
-
-> oauth2授权平台....
-
-
-
-## 平台账号
-
-「目前活跃于Bilibili、Github上,新注册了掘金、微信公众号,均可直接搜:**Rong姐姐好可爱**,访问主页;所有内容以微信公众号和Github为准,选择部分公众号内容发表博客」
-
-
-| 平台名称 | 链接地址 |
-| :----: | :----: |
-| **Bilibili** | [https://space.bilibili.com/350937042](https://space.bilibili.com/350937042) |
-| **CSDN** | [https://blog.csdn.net/Mmdapl](https://blog.csdn.net/Mmdapl) |
-| **Github** | [https://github.com/mmdapl](https://github.com/mmdapl) |
-| **掘金** | [https://juejin.im/user/448256476724807](https://juejin.im/user/448256476724807)|
-
-
-
-
-
-## 联系我
-
-
-对仓库有任何问题或建议,欢迎公众号留言“骚扰”,商务合作请备注!
-
-
-
-

-
-
-
-
-
-## 公众号
-
-
-- 相逢不用忙归去,明日黄花蝶也愁....
-
-- **若系列文章对你有所帮助,不如来公众号交个朋友吧.**
-
-
-
-
-
-
-
-
-
diff --git a/manuscripts/category/reader_donate.md b/manuscripts/category/reader_donate.md
deleted file mode 100644
index 749a573..0000000
--- a/manuscripts/category/reader_donate.md
+++ /dev/null
@@ -1,57 +0,0 @@
----
-title: 赞赏支持
-sidebarDepth: 0
-date: 2021-01-19 08:04:19
-permalink: /pages/c33acd/
-categories:
- - category
-tags:
- -
----
-
-
-
-
-
-
-
-## 赞赏支持
-
-- 相逢不用忙归去,明日黄花蝶也愁;若系列文章对你有帮助,不如请作者喝一杯伏见桃山...
-- **赞赏过的一定要扫下方右侧微信跟我说呀!!!!!!**
-
-
-
-
-
-

-
-
-
-
-
-## 鸣谢列表
-
-
-以下排名不分先后!([详细统计]())
-
-
-
-
-
-## 赞助列表
-
-以下排名不分先后!
diff --git a/manuscripts/category/sidebar_contents.js b/manuscripts/category/sidebar_contents.js
deleted file mode 100644
index 9042c5c..0000000
--- a/manuscripts/category/sidebar_contents.js
+++ /dev/null
@@ -1,15 +0,0 @@
-/*
- * @Description:
- * @Version: Beta1.0
- * @Author: 【B站&公众号】Rong姐姐好可爱
- * @Date: 2021-01-19 08:04:19
- * @LastEditors: 【B站&公众号】Rong姐姐好可爱
- * @LastEditTime: 2021-02-14 21:23:32
- */
-module.exports = [
- // "/category/",
- "update_logs",
- "about_author",
- "reader_donate",
-
-];
diff --git a/manuscripts/category/test/1.test.md b/manuscripts/category/test/1.test.md
deleted file mode 100644
index d5e8fbc..0000000
--- a/manuscripts/category/test/1.test.md
+++ /dev/null
@@ -1,19 +0,0 @@
----
-title: test
-date: 2021-03-07 23:06:30
-permalink: /pages/10b7a4/
-categories:
- - category
- - test
-tags:
- -
----
-
-werwre
\ No newline at end of file
diff --git a/manuscripts/category/update_logs.md b/manuscripts/category/update_logs.md
deleted file mode 100644
index ae92847..0000000
--- a/manuscripts/category/update_logs.md
+++ /dev/null
@@ -1,54 +0,0 @@
----
-title: 更新日志
-sidebarDepth: 0
-date: 2021-02-14 20:52:54
-permalink: /pages/bdad06/
-categories:
- - category
-tags:
- -
----
-
-
-#
-
-
-
-## 基本说明
-
-
--
优化表示优化、已完成、可正式使用状态。
--
紫色表示修复、可测试状态。
--
红色红色表示出现异常、告警、错误状态。
--
橙色表示新增、正在进行、默认状态。
-
-
-## 提交记录
-
-以下为个人Github账号**Rong姐姐好可爱**所有仓库代码提交记录
-
-
-
-## 版本记录
-
-
-### 0.1.2
-
-**2020-11-01**
-
-- Egg.js框架基础整理完成
-- 基于VuePress进行md文档修订,规整文档样式及模板
-
-### 0.1.1
-
-**2020-10-09**
-
--
2332第一篇egg相关文档
-- 初次接触VuePress
\ No newline at end of file
diff --git a/manuscripts/数据结构/code/BinaryInsertSort.cpp b/manuscripts/数据结构/code/BinaryInsertSort.cpp
index 91de713..c55dbe8 100644
--- a/manuscripts/数据结构/code/BinaryInsertSort.cpp
+++ b/manuscripts/数据结构/code/BinaryInsertSort.cpp
@@ -9,16 +9,16 @@
void BinaryInsertSort(ElemType Arr[],int n){
- int i,j,lowIndex,hightIndex,midIndex;
+ int i,j,lowIndex,heightIndex,midIndex;
for(i=2;j<=n;i++){
// 将待排序的元素暂存在Arr[0]上
Arr[0]=Arr[i];
lowIndex=1; // 左侧子表 折半查找起始位置
- hightIndex=i-1; // 左侧子表 折半查找结束位置
+ heightIndex=i-1; // 左侧子表 折半查找结束位置
- while(lowIndex<=hightIndex){
+ while(lowIndex<=heightIndex){
// 左侧有序子表的中间位置角标
midIndex=(lowIndex+hightIndex)/2;
@@ -34,12 +34,11 @@ void BinaryInsertSort(ElemType Arr[],int n){
// 跳出循环需要(lowIndex>hightIndex),说明待插入位置的角标在hightIndex之后,为 hightIndex+1,此时需要将(hightIndex,i)之间的所有元素后移
-
- for(j=i-1;j>hightIndex;--j){
+ for(j=i-1;j>heightIndex;--j){
Arr[j+1]=Arr[j]
}
// 后移完成后,将元素Arr[0]赋值到位置(hightIndex+1)上
- Arr[hightIndex+1]=Arr[0]
+ Arr[heightIndex+1]=Arr[0]
}
}
diff --git a/manuscripts/数据结构/基础入门/1.基础概念.md b/manuscripts/数据结构/基础入门/1.基础概念.md
index 34d433a..75e3d02 100644
--- a/manuscripts/数据结构/基础入门/1.基础概念.md
+++ b/manuscripts/数据结构/基础入门/1.基础概念.md
@@ -1,6 +1,6 @@
-## 基础概念
+# 基础概念
### 数据
diff --git a/manuscripts/数据结构/基础入门/2.数据结构三要素.md b/manuscripts/数据结构/基础入门/2.数据结构三要素.md
index 347587c..9976baa 100644
--- a/manuscripts/数据结构/基础入门/2.数据结构三要素.md
+++ b/manuscripts/数据结构/基础入门/2.数据结构三要素.md
@@ -1,6 +1,6 @@
-## 数据结构三要素
+# 数据结构三要素
- 数据的逻辑结构
- 数据的存储结构
diff --git a/manuscripts/数据结构/基础入门/3.算法和算法评价.md b/manuscripts/数据结构/基础入门/3.算法和算法评价.md
index f176118..00345a3 100644
--- a/manuscripts/数据结构/基础入门/3.算法和算法评价.md
+++ b/manuscripts/数据结构/基础入门/3.算法和算法评价.md
@@ -1,5 +1,5 @@
-## 算法和算法评价
+# 算法和算法评价
### 算法
diff --git a/manuscripts/数据结构/基础入门/Readme.md b/manuscripts/数据结构/基础入门/readme.md
similarity index 51%
rename from manuscripts/数据结构/基础入门/Readme.md
rename to manuscripts/数据结构/基础入门/readme.md
index 5bb7d6b..bf43eab 100644
--- a/manuscripts/数据结构/基础入门/Readme.md
+++ b/manuscripts/数据结构/基础入门/readme.md
@@ -13,8 +13,8 @@
### 主要内容
-- [基础概念](/数据结构/基础入门/1.基础概念.md)
-- [数据结构三要素](/数据结构/基础入门/2.数据结构三要素.md)
-- [算法与算法评价](/数据结构/基础入门/3.算法和算法评价.md)
+- [基础概念](1.基础概念.md)
+- [数据结构三要素](2.数据结构三要素.md)
+- [算法与算法评价](3.算法和算法评价.md)
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/manuscripts/数据结构/栈和队列/1.栈的基本概念和基本操作.md b/manuscripts/数据结构/栈和队列/1.栈的基本概念和基本操作.md
index 030f3f7..3840dad 100644
--- a/manuscripts/数据结构/栈和队列/1.栈的基本概念和基本操作.md
+++ b/manuscripts/数据结构/栈和队列/1.栈的基本概念和基本操作.md
@@ -17,7 +17,7 @@
- 明确栈是一种线性表
- 限定栈只能在某一端进行插入或者删除操作
-
+
`栈顶`:线性表允许进行插入和删除的一端。
diff --git a/manuscripts/数据结构/栈和队列/2.栈的顺序存储结构.md b/manuscripts/数据结构/栈和队列/2.栈的顺序存储结构.md
index 5052ad7..6e0675e 100644
--- a/manuscripts/数据结构/栈和队列/2.栈的顺序存储结构.md
+++ b/manuscripts/数据结构/栈和队列/2.栈的顺序存储结构.md
@@ -196,7 +196,7 @@ bool GetTop(SqStack S,ElemType &x){
>Tips: 类似头对头,一致对外这种感觉,噗呲哈哈
-
+
在上面的共享栈结构图中,两个栈(0、1号顺序栈)的栈顶指针都指向栈顶元素
diff --git a/manuscripts/数据结构/栈和队列/3.栈的链式存储结构.md b/manuscripts/数据结构/栈和队列/3.栈的链式存储结构.md
index 81f3ea6..f070945 100644
--- a/manuscripts/数据结构/栈和队列/3.栈的链式存储结构.md
+++ b/manuscripts/数据结构/栈和队列/3.栈的链式存储结构.md
@@ -22,7 +22,7 @@
**通常对于链栈来说,是不需要头结点的,当然也存在带头结点的链栈**
-
+
栈的链式存储类型:
diff --git a/manuscripts/数据结构/栈和队列/4.队列的基本概念和基础操作.md b/manuscripts/数据结构/栈和队列/4.队列的基本概念和基础操作.md
index 36be4e6..6aab142 100644
--- a/manuscripts/数据结构/栈和队列/4.队列的基本概念和基础操作.md
+++ b/manuscripts/数据结构/栈和队列/4.队列的基本概念和基础操作.md
@@ -21,7 +21,7 @@
`出队`: 删除队列元素,也叫做`离队`
-
+
结合生活中排队的经验,在群体素质高、无人插队的情况下(`薛定谔排队`,噗呲,哈哈哈),**一般最早排队的也是最早离队的**,和栈的`后进先出`不一样的是,队列是`先进先出`的,即:First In Frist Out
diff --git a/manuscripts/数据结构/栈和队列/5.队列的顺序存储结构.md b/manuscripts/数据结构/栈和队列/5.队列的顺序存储结构.md
index 3db7b26..bed171d 100644
--- a/manuscripts/数据结构/栈和队列/5.队列的顺序存储结构.md
+++ b/manuscripts/数据结构/栈和队列/5.队列的顺序存储结构.md
@@ -44,7 +44,7 @@ typedef struct {
-
+
在空队列中,初始状态为`Q.front===Q.rear==0`,当元素a入队时,队尾指针rear后移+1,入队成功后,`Q.front==0`、`Q.rear==1`,在队不满的情况下进队,都是`先赋值给队尾元素,再移动队尾指针rear+1`,通过上面的图宝贝可以看到,队列被元素打满的时:
@@ -54,7 +54,7 @@ typedef struct {
> Tips: MaxSize为队列结构体定义中,最大存储元素个数哦~
-
+
进队说完了,那给宝贝来说说出队吧。以上图为例,队列中`Q.rear==Maxsize`、`Q.front==0`;当出现元素在队首出队,就会直接影响队首指针,从上面的流程上看:
@@ -90,7 +90,7 @@ typedef struct {
在上面的顺序队列中,当队满后进行出队列,由于顺序队列出队只在队首进行操作,并且只会修改队首指针,这时候就会出现队尾指针一直`Q.rear===MaxSize`情况,就如下:
-
+
可以很明显的看到,明明队列不满,但是由于进队列只能在队尾操作,因此不能进行进队操作;通常在这种情况下入队就会出现“上溢出”。
@@ -109,7 +109,7 @@ typedef struct {
-
+
当队首指针`Q.front=MaxSize-1`后,再有元素`出队`就前进一个位置自动到位置0了【注意:可以结合时钟来理解,一圈转完了】
@@ -127,7 +127,7 @@ typedef struct {
**和时钟一样,顺时钟进行时间变换,在出队、入队时,队首、队尾指针都是按顺时针方向进1**
-
+
如上图,循环队列从最开始初始化为空队列时:`Q.front==Q.rear==0`,经过元素a入队,队尾指针顺时针前移`Q.rear+1`,到元素a、b、c、d陆续入队,就好像时钟转完了一圈,循环队列已满,此时发现:`Q.front==Q.rear==0`在队满时候依然成立,所以结合前面提到的初始化对空条件:`Q.front==Q.rear==0`,用`Q.front==Q.rear`来区分`队空`和`队满`是非常不合适的。
diff --git a/manuscripts/数据结构/栈和队列/6.队列的链式存储结构.md b/manuscripts/数据结构/栈和队列/6.队列的链式存储结构.md
index 97c15f9..70ccdee 100644
--- a/manuscripts/数据结构/栈和队列/6.队列的链式存储结构.md
+++ b/manuscripts/数据结构/栈和队列/6.队列的链式存储结构.md
@@ -22,7 +22,7 @@
> - 队头指针指向队头元素
> - 队尾指针指向队尾元素的下一个位置
-[//]: # ()
+
队列的链式存储结构:
@@ -53,7 +53,7 @@ typedef struct{
仔细思考上面的入队、出队操作,都需要考虑队空的情况下的特殊处理,不带头结点的队列导致队空队首和队尾指针都为NULL,比较麻烦;结合之前整理、学习过的单链表,套用一下先贤的思路,也整上一个头结点,就会发现容易处理很多;
-
+
链式队列加上头结点后,之前较为复杂的入队、出队操作就统一起来了。
@@ -198,7 +198,7 @@ bool DeLinkQueue(LinkQueue &Q, ElemType &x){
出队的时候明显有些绕,需要明确队列中头结点的存在,出队出的是单链表中头结点的后一个结点,同时要确保整个过程`不断链`
-
+
@@ -206,7 +206,7 @@ bool DeLinkQueue(LinkQueue &Q, ElemType &x){
`双端队列`: 允许在两端都可以进行入队和出队操作的队列,元素的逻辑结构仍然是线性结构
-
+
**双端队列的两端分别称为`前端`和`后端`,两端都可以`入队`和`出队`**
diff --git a/manuscripts/数据结构/栈和队列/8.特殊矩阵的压缩存储.md b/manuscripts/数据结构/栈和队列/8.特殊矩阵的压缩存储.md
index 9ba49ae..8bcac2d 100644
--- a/manuscripts/数据结构/栈和队列/8.特殊矩阵的压缩存储.md
+++ b/manuscripts/数据结构/栈和队列/8.特殊矩阵的压缩存储.md
@@ -59,7 +59,7 @@
-
+
三元组的结点存储了行标(row)、列表(col)、值(value)三种信息,是主要用来存储稀疏矩阵的一种数据结构。
diff --git a/manuscripts/数据结构/栈和队列/Readme.md b/manuscripts/数据结构/栈和队列/Readme.md
deleted file mode 100644
index 2049b01..0000000
--- a/manuscripts/数据结构/栈和队列/Readme.md
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-## 栈和队列
-
-### 主要内容
-
-- [栈的基本概念和基本操作](/数据结构/栈和队列/1.栈的基本概念和基本操作.md)
-- [栈的顺序存储结构](/数据结构/栈和队列/2.栈的顺序存储结构.md)
-- [栈的链式存储结构](/数据结构/栈和队列/3.栈链式存储结构.md)
-- [队列的基本概念和基础操作](/数据结构/栈和队列/4.队列的基本概念和基础操作.md)
-- [队列的顺序存储](/数据结构/栈和队列/5.队列的顺序存储结构.md)
-- [队列的链式存储](/数据结构/栈和队列/6.队列的链式存储结构.md)
-- [栈和队列的应用](/数据结构/栈和队列/栈和队列的应用.md)
-- [特殊矩阵的压缩存储](/数据结构/栈和队列/8.特殊矩阵的压缩存储.md)
-
-
\ No newline at end of file
diff --git a/manuscripts/数据结构/栈和队列/readme.md b/manuscripts/数据结构/栈和队列/readme.md
new file mode 100644
index 0000000..4744fe6
--- /dev/null
+++ b/manuscripts/数据结构/栈和队列/readme.md
@@ -0,0 +1,24 @@
+
+
+
+## 栈和队列
+
+### 主要内容
+
+- [栈的基本概念和基本操作](1.栈的基本概念和基本操作.md)
+- [栈的顺序存储结构](2.栈的顺序存储结构.md)
+- [栈的链式存储结构](3.栈链式存储结构.md)
+- [队列的基本概念和基础操作](4.队列的基本概念和基础操作.md)
+- [队列的顺序存储](5.队列的顺序存储结构.md)
+- [队列的链式存储](6.队列的链式存储结构.md)
+- [栈和队列的应用](7.栈和队列的应用.md)
+- [特殊矩阵的压缩存储](8.特殊矩阵的压缩存储.md)
+
+
\ No newline at end of file
diff --git a/manuscripts/数据结构/线性表/2.线性表的顺序表示.md b/manuscripts/数据结构/线性表/2.线性表的顺序表示.md
index 41b5504..35af57a 100644
--- a/manuscripts/数据结构/线性表/2.线性表的顺序表示.md
+++ b/manuscripts/数据结构/线性表/2.线性表的顺序表示.md
@@ -15,7 +15,7 @@
`顺序表`:顺序存储的线性表,**是用一组地址连续的存储单元,依次存储线性表中的数据元素,使得在逻辑上相邻的两个元素在物理位置上也相邻。**
-
+
@@ -148,7 +148,7 @@ bool ListInsert(SqList &L, int i, ElemType e){
**时间复杂度**
-
+
- 最好情况:在表尾插入,元素向后移动循环没有执行,时间复杂度O(1);
- 最坏情况:在表头插入,元素后移循环执行n次,时间复杂度为O(n);
diff --git a/manuscripts/数据结构/线性表/Readme.md b/manuscripts/数据结构/线性表/Readme.md
deleted file mode 100644
index ffe8194..0000000
--- a/manuscripts/数据结构/线性表/Readme.md
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-## 线性表
-
-
-### 主要内容
-
-- [基础概念和基本操作](/manuscripts/数据结构/线性表/1.基础概念和基本操作.md)
-- [线性表的顺序表示](/manuscripts/数据结构/线性表/2.线性表的顺序表示.md)
-- [线性表的链式表示之单链表](/数据结构/线性表/3.线性表的链式表示.md)
-- [线性表的链式表示之双链表](/manuscripts/数据结构/线性表/4.线性表的链式表示【双链表】.md)
-- [线性表的链式表示之循环链表](/manuscripts/数据结构/线性表/5.线性表的链式表示【循环链表】.md)
-- [线性表的链式表示之静态链表](/manuscripts/数据结构/线性表/6.线性表的链式表示【静态链表】.md)
-- [顺序表和链表的比较](/manuscripts/数据结构/线性表/7.顺序表和链表的比较.md)
-- [存储结构的选取](/manuscripts/数据结构/线性表/8.存储结构的选取.md)
-- [零碎知识补充](/manuscripts/数据结构/线性表/9.零碎知识补充.md)
-
-
-
-
-
diff --git a/manuscripts/数据结构/线性表/readme.md b/manuscripts/数据结构/线性表/readme.md
new file mode 100644
index 0000000..cb90f8e
--- /dev/null
+++ b/manuscripts/数据结构/线性表/readme.md
@@ -0,0 +1,29 @@
+
+
+
+## 线性表
+
+
+### 主要内容
+
+- [基础概念和基本操作](1.基础概念和基本操作.md)
+- [线性表的顺序表示](2.线性表的顺序表示.md)
+- [线性表的链式表示之单链表](/数据结构/线性表/3.线性表的链式表示.md)
+- [线性表的链式表示之双链表](4.线性表的链式表示【双链表】.md)
+- [线性表的链式表示之循环链表](5.线性表的链式表示【循环链表】.md)
+- [线性表的链式表示之静态链表](6.线性表的链式表示【静态链表】.md)
+- [顺序表和链表的比较](7.顺序表和链表的比较.md)
+- [存储结构的选取](8.存储结构的选取.md)
+- [零碎知识补充](9.零碎知识补充.md)
+
+
+
+
+
diff --git a/package.json b/package.json
index 80a2c59..66afe90 100644
--- a/package.json
+++ b/package.json
@@ -19,11 +19,22 @@
"url": "https://github.com/142vip"
},
"devDependencies": {
- "@vuepress/client": "2.0.0-beta.60",
+ "@typescript-eslint/eslint-plugin": "^5.54.0",
+ "@typescript-eslint/parser": "^5.54.0",
+ "@vuepress/client": "2.0.0-beta.61",
+ "@vuepress/utils": "2.0.0-beta.61",
+ "eslint": "^8.35.0",
+ "eslint-config-standard": "^17.0.0",
+ "eslint-plugin-import": "^2.27.5",
+ "eslint-plugin-n": "^15.6.1",
+ "eslint-plugin-promise": "^6.1.1",
+ "eslint-plugin-vue": "^9.9.0",
+ "husky": "^8.0.3",
+ "typescript": "^3.9.10",
"vue": "^3.2.47",
- "vuepress": "2.0.0-beta.60",
- "vuepress-plugin-search-pro": "^2.0.0-beta.172",
- "vuepress-theme-hope": "^2.0.0-beta.172"
+ "vuepress": "2.0.0-beta.61",
+ "vuepress-plugin-search-pro": "2.0.0-beta.185",
+ "vuepress-theme-hope": "2.0.0-beta.185"
},
"license": "MIT"
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 8c7a02c..608ad8e 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,18 +1,40 @@
-lockfileVersion: 5.3
+lockfileVersion: 5.4
specifiers:
- '@vuepress/client': 2.0.0-beta.60
+ '@typescript-eslint/eslint-plugin': ^5.54.0
+ '@typescript-eslint/parser': ^5.54.0
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
+ eslint: ^8.35.0
+ eslint-config-standard: ^17.0.0
+ eslint-plugin-import: ^2.27.5
+ eslint-plugin-n: ^15.6.1
+ eslint-plugin-promise: ^6.1.1
+ eslint-plugin-vue: ^9.9.0
+ husky: ^8.0.3
+ typescript: ^3.9.10
vue: ^3.2.47
- vuepress: 2.0.0-beta.60
- vuepress-plugin-search-pro: ^2.0.0-beta.172
- vuepress-theme-hope: ^2.0.0-beta.172
+ vuepress: 2.0.0-beta.61
+ vuepress-plugin-search-pro: 2.0.0-beta.185
+ vuepress-theme-hope: 2.0.0-beta.185
devDependencies:
- '@vuepress/client': 2.0.0-beta.60
+ '@typescript-eslint/eslint-plugin': 5.54.0_rnadeopnlkrqw7c6bwgkipvmrq
+ '@typescript-eslint/parser': 5.54.0_gv45cv5f5y7bgncpx37yd3rwim
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
+ eslint: 8.35.0
+ eslint-config-standard: 17.0.0_hwjsujmtoc7k47rjh5qfu7woty
+ eslint-plugin-import: 2.27.5_ajyizmi44oc3hrc35l6ndh7p4e
+ eslint-plugin-n: 15.6.1_eslint@8.35.0
+ eslint-plugin-promise: 6.1.1_eslint@8.35.0
+ eslint-plugin-vue: 9.9.0_eslint@8.35.0
+ husky: 8.0.3
+ typescript: 3.9.10
vue: 3.2.47
- vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc
- vuepress-plugin-search-pro: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-theme-hope: 2.0.0-beta.172_vuepress@2.0.0-beta.60
+ vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u
+ vuepress-plugin-search-pro: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-theme-hope: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
packages:
@@ -48,20 +70,20 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/core/7.20.12:
- resolution: {integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==}
+ /@babel/core/7.21.0:
+ resolution: {integrity: sha512-PuxUbxcW6ZYe656yL3EAhpy7qXKq0DmYsrJLpbB8XrsCP9Nm+XCg9XFMb5vIDliPD7+U/+M+QJlH17XOcB7eXA==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.0
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.20.14
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
- '@babel/helper-module-transforms': 7.20.11
- '@babel/helpers': 7.20.13
- '@babel/parser': 7.20.15
+ '@babel/generator': 7.21.1
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
+ '@babel/helper-module-transforms': 7.21.2
+ '@babel/helpers': 7.21.0
+ '@babel/parser': 7.21.2
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.13
- '@babel/types': 7.20.7
+ '@babel/traverse': 7.21.2
+ '@babel/types': 7.21.2
convert-source-map: 1.9.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -71,12 +93,13 @@ packages:
- supports-color
dev: true
- /@babel/generator/7.20.14:
- resolution: {integrity: sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==}
+ /@babel/generator/7.21.1:
+ resolution: {integrity: sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
'@jridgewell/gen-mapping': 0.3.2
+ '@jridgewell/trace-mapping': 0.3.17
jsesc: 2.5.2
dev: true
@@ -84,7 +107,7 @@ packages:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
/@babel/helper-builder-binary-assignment-operator-visitor/7.18.9:
@@ -92,33 +115,33 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-explode-assignable-expression': 7.18.6
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
- /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.12:
+ /@babel/helper-compilation-targets/7.20.7_@babel+core@7.21.0:
resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/compat-data': 7.20.14
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-validator-option': 7.18.6
browserslist: 4.21.5
lru-cache: 5.1.1
semver: 6.3.0
dev: true
- /@babel/helper-create-class-features-plugin/7.20.12_@babel+core@7.20.12:
+ /@babel/helper-create-class-features-plugin/7.20.12_@babel+core@7.21.0:
resolution: {integrity: sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
+ '@babel/helper-function-name': 7.21.0
'@babel/helper-member-expression-to-functions': 7.20.7
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/helper-replace-supers': 7.20.7
@@ -128,24 +151,24 @@ packages:
- supports-color
dev: true
- /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.20.12:
+ /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.21.0:
resolution: {integrity: sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-annotate-as-pure': 7.18.6
regexpu-core: 5.2.2
dev: true
- /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.12:
+ /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.21.0:
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
debug: 4.3.4
lodash.debounce: 4.0.8
@@ -164,40 +187,40 @@ packages:
resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
- /@babel/helper-function-name/7.19.0:
- resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==}
+ /@babel/helper-function-name/7.21.0:
+ resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.20.7
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
/@babel/helper-hoist-variables/7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
/@babel/helper-member-expression-to-functions/7.20.7:
resolution: {integrity: sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
/@babel/helper-module-imports/7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
- /@babel/helper-module-transforms/7.20.11:
- resolution: {integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==}
+ /@babel/helper-module-transforms/7.21.2:
+ resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': 7.18.9
@@ -206,8 +229,8 @@ packages:
'@babel/helper-split-export-declaration': 7.18.6
'@babel/helper-validator-identifier': 7.19.1
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.13
- '@babel/types': 7.20.7
+ '@babel/traverse': 7.21.2
+ '@babel/types': 7.21.2
transitivePeerDependencies:
- supports-color
dev: true
@@ -216,7 +239,7 @@ packages:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
/@babel/helper-plugin-utils/7.20.2:
@@ -224,17 +247,17 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.12:
+ /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.21.0:
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-wrap-function': 7.20.5
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
transitivePeerDependencies:
- supports-color
dev: true
@@ -247,8 +270,8 @@ packages:
'@babel/helper-member-expression-to-functions': 7.20.7
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.13
- '@babel/types': 7.20.7
+ '@babel/traverse': 7.21.2
+ '@babel/types': 7.21.2
transitivePeerDependencies:
- supports-color
dev: true
@@ -257,21 +280,21 @@ packages:
resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
/@babel/helper-skip-transparent-expression-wrappers/7.20.0:
resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
/@babel/helper-split-export-declaration/7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
/@babel/helper-string-parser/7.19.4:
@@ -293,21 +316,21 @@ packages:
resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-function-name': 7.19.0
+ '@babel/helper-function-name': 7.21.0
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.13
- '@babel/types': 7.20.7
+ '@babel/traverse': 7.21.2
+ '@babel/types': 7.21.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helpers/7.20.13:
- resolution: {integrity: sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==}
+ /@babel/helpers/7.21.0:
+ resolution: {integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.13
- '@babel/types': 7.20.7
+ '@babel/traverse': 7.21.2
+ '@babel/types': 7.21.2
transitivePeerDependencies:
- supports-color
dev: true
@@ -329,406 +352,414 @@ packages:
'@babel/types': 7.20.7
dev: true
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.12:
+ /@babel/parser/7.21.2:
+ resolution: {integrity: sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ '@babel/types': 7.21.2
+ dev: true
+
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.21.0:
resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.21.0:
resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.21.0
dev: true
- /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.21.0:
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.0
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.21.0:
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-static-block/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-proposal-class-static-block/7.20.7_@babel+core@7.21.0:
resolution: {integrity: sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.21.0:
resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.0
dev: true
- /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.12:
+ /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.21.0:
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.0
dev: true
- /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.21.0:
resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.0
dev: true
- /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.21.0:
resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.0
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.21.0:
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.0
dev: true
- /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.21.0:
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.0
dev: true
- /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.21.0:
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.20.14
- '@babel/core': 7.20.12
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.21.0
dev: true
- /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.21.0:
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.0
dev: true
- /@babel/plugin-proposal-optional-chaining/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-proposal-optional-chaining/7.20.7_@babel+core@7.21.0:
resolution: {integrity: sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0
dev: true
- /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.21.0:
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.20.12:
+ /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.21.0:
resolution: {integrity: sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
+ '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.21.0:
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.12:
+ /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.21.0:
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.12:
+ /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.21.0:
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.12:
+ /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.21.0:
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.12:
+ /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.21.0:
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.12:
+ /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.21.0:
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.12:
+ /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.21.0:
resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.12:
+ /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.21.0:
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.12:
+ /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.21.0:
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.12:
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.21.0:
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.12:
+ /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.21.0:
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.12:
+ /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.21.0:
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.12:
+ /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.21.0:
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.12:
+ /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.21.0:
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.12:
+ /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.21.0:
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.12:
+ /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.21.0:
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.21.0:
resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.21.0:
resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.21.0:
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-block-scoping/7.20.15_@babel+core@7.20.12:
+ /@babel/plugin-transform-block-scoping/7.20.15_@babel+core@7.21.0:
resolution: {integrity: sha512-Vv4DMZ6MiNOhu/LdaZsT/bsLRxgL94d269Mv4R/9sp6+Mp++X/JqypZYypJXLlM4mlL352/Egzbzr98iABH1CA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-classes/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-transform-classes/7.20.7_@babel+core@7.21.0:
resolution: {integrity: sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
+ '@babel/helper-function-name': 7.21.0
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-replace-supers': 7.20.7
@@ -738,399 +769,399 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.21.0:
resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
'@babel/template': 7.20.7
dev: true
- /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.21.0:
resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.21.0:
resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.12:
+ /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.21.0:
resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.21.0:
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.12:
+ /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.21.0:
resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.12:
+ /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.21.0:
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
- '@babel/helper-function-name': 7.19.0
+ '@babel/core': 7.21.0
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
+ '@babel/helper-function-name': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.12:
+ /@babel/plugin-transform-literals/7.18.9_@babel+core@7.21.0:
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.21.0:
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.20.12:
+ /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.21.0:
resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-module-transforms': 7.20.11
+ '@babel/core': 7.21.0
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-commonjs/7.20.11_@babel+core@7.20.12:
+ /@babel/plugin-transform-modules-commonjs/7.20.11_@babel+core@7.21.0:
resolution: {integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-module-transforms': 7.20.11
+ '@babel/core': 7.21.0
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-simple-access': 7.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.20.12:
+ /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.21.0:
resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-module-transforms': 7.20.11
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-identifier': 7.19.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.21.0:
resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-module-transforms': 7.20.11
+ '@babel/core': 7.21.0
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.20.12:
+ /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.21.0:
resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.21.0:
resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.21.0:
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-replace-supers': 7.20.7
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.21.0:
resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.21.0:
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.20.12:
+ /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.21.0:
resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
regenerator-transform: 0.15.1
dev: true
- /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.21.0:
resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.21.0:
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-spread/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-transform-spread/7.20.7_@babel+core@7.21.0:
resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
dev: true
- /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.21.0:
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.12:
+ /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.21.0:
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.12:
+ /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.21.0:
resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.12:
+ /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.21.0:
resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.21.0:
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/preset-env/7.20.2_@babel+core@7.20.12:
+ /@babel/preset-env/7.20.2_@babel+core@7.21.0:
resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.20.14
- '@babel/core': 7.20.12
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-option': 7.18.6
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-proposal-class-static-block': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.12
- '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.12
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.12
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.12
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.12
- '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-block-scoping': 7.20.15_@babel+core@7.20.12
- '@babel/plugin-transform-classes': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.12
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.12
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.12
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.12
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.20.12
- '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.20.12
- '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.20.12
- '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.20.12
- '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.20.12
- '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.12
- '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.12
- '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.12
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.12
- '@babel/preset-modules': 0.1.5_@babel+core@7.20.12
- '@babel/types': 7.20.7
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.12
- babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.12
- babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.12
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-proposal-class-static-block': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.21.0
+ '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.21.0
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.0
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.21.0
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.0
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.21.0
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.0
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.0
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.0
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.21.0
+ '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-block-scoping': 7.20.15_@babel+core@7.21.0
+ '@babel/plugin-transform-classes': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.21.0
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.21.0
+ '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.21.0
+ '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.21.0
+ '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.21.0
+ '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.21.0
+ '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.21.0
+ '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.21.0
+ '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.21.0
+ '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.0
+ '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.21.0
+ '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.21.0
+ '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.21.0
+ '@babel/preset-modules': 0.1.5_@babel+core@7.21.0
+ '@babel/types': 7.21.2
+ babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.21.0
+ babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.21.0
+ babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.21.0
core-js-compat: 3.27.2
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-modules/0.1.5_@babel+core@7.20.12:
+ /@babel/preset-modules/0.1.5_@babel+core@7.21.0:
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12
- '@babel/types': 7.20.7
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.0
+ '@babel/types': 7.21.2
esutils: 2.0.3
dev: true
@@ -1146,22 +1177,22 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/parser': 7.20.15
- '@babel/types': 7.20.7
+ '@babel/parser': 7.21.2
+ '@babel/types': 7.21.2
dev: true
- /@babel/traverse/7.20.13:
- resolution: {integrity: sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==}
+ /@babel/traverse/7.21.2:
+ resolution: {integrity: sha512-ts5FFU/dSUPS13tv8XiEObDu9K+iagEKME9kAbaP7r0Y9KtZJZ+NGndDvWoRAYNpeWafbpFeki3q9QoMD6gxyw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.20.14
+ '@babel/generator': 7.21.1
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
+ '@babel/helper-function-name': 7.21.0
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.20.15
- '@babel/types': 7.20.7
+ '@babel/parser': 7.21.2
+ '@babel/types': 7.21.2
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
@@ -1177,6 +1208,15 @@ packages:
to-fast-properties: 2.0.0
dev: true
+ /@babel/types/7.21.2:
+ resolution: {integrity: sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-string-parser': 7.19.4
+ '@babel/helper-validator-identifier': 7.19.1
+ to-fast-properties: 2.0.0
+ dev: true
+
/@braintree/sanitize-url/6.0.2:
resolution: {integrity: sha512-Tbsj02wXCbqGmzdnXNk0SOF19ChhRU70BsroIi4Pm6Ehp56in6vch94mfbdQ17DozxkL3BAVjbZ4Qc1a0HFRAg==}
dev: true
@@ -1379,6 +1419,48 @@ packages:
dev: true
optional: true
+ /@eslint/eslintrc/2.0.0:
+ resolution: {integrity: sha512-fluIaaV+GyV24CCu/ggiHdV+j4RNh85yQnAYS/G2mZODZgGmmlrgCydjUcV3YvxCm9x8nMAfThsqTni4KiXT4A==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ ajv: 6.12.6
+ debug: 4.3.4
+ espree: 9.4.1
+ globals: 13.20.0
+ ignore: 5.2.4
+ import-fresh: 3.3.0
+ js-yaml: 4.1.0
+ minimatch: 3.1.2
+ strip-json-comments: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@eslint/js/8.35.0:
+ resolution: {integrity: sha512-JXdzbRiWclLVoD8sNUjR443VVlYqiYmDVT6rGUEIEHU5YJW0gaVZwV2xgM7D4arkvASqD0IlLUVjHiFuxaftRw==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dev: true
+
+ /@humanwhocodes/config-array/0.11.8:
+ resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==}
+ engines: {node: '>=10.10.0'}
+ dependencies:
+ '@humanwhocodes/object-schema': 1.2.1
+ debug: 4.3.4
+ minimatch: 3.1.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@humanwhocodes/module-importer/1.0.1:
+ resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
+ engines: {node: '>=12.22'}
+ dev: true
+
+ /@humanwhocodes/object-schema/1.2.1:
+ resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
+ dev: true
+
/@jridgewell/gen-mapping/0.1.1:
resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
engines: {node: '>=6.0.0'}
@@ -1438,239 +1520,227 @@ packages:
'@lit-labs/ssr-dom-shim': 1.0.0
dev: true
- /@mdit-vue/plugin-component/0.11.2:
- resolution: {integrity: sha512-ucFiEULCkLcCG1Tf1MfG5u5PS4BIXWIeKGHRGsXxz1ix2GbZWKFVgWEdNEckBu8s75Fv1WJLIOiAYZyri2f1nw==}
+ /@mdit-vue/plugin-component/0.12.0:
+ resolution: {integrity: sha512-LrwV3f0Y6H7b7m/w1Y3bkGuR3HOiBK4QiHHW3HuRMza6MZodDQbj8Baik5/V5GiSg1/ltijS1CymVcycd1EfTw==}
dependencies:
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mdit-vue/plugin-frontmatter/0.11.1:
- resolution: {integrity: sha512-AdZJInjD1pTJXlfhuoBS5ycuIQ3ewBfY0R/XHM3TRDEaDHQJHxouUCpCyijZmpdljTU45lFetIowaKtAi7GBog==}
+ /@mdit-vue/plugin-frontmatter/0.12.0:
+ resolution: {integrity: sha512-26Y3JktjGgNoCVH7NLqi5RcdAauAqxepTt2qXueRcRHtGpiRQV2/M1FveIhCOTCtHSuG5bBOHUxGaV6vRK3Vbw==}
dependencies:
- '@mdit-vue/types': 0.11.0
+ '@mdit-vue/types': 0.12.0
'@types/markdown-it': 12.2.3
gray-matter: 4.0.3
markdown-it: 13.0.1
dev: true
- /@mdit-vue/plugin-headers/0.11.2:
- resolution: {integrity: sha512-hH2zm4m+2tWe7dya/nxbbpB95pa9RjwYxl++kyZuRrqyhNTtsi2HWojX02peQ1nQMKKIWPDHtpeAHGP7dOLKFw==}
+ /@mdit-vue/plugin-headers/0.12.0:
+ resolution: {integrity: sha512-7qR63J2uc/rXbjHT77WoYBm9imwzx1tVESmRK+Uth6kqFvSWAXAFPcm4PBatGEE8TgzhklPs5BTcQtQhmmsyaw==}
dependencies:
- '@mdit-vue/shared': 0.11.2
- '@mdit-vue/types': 0.11.0
+ '@mdit-vue/shared': 0.12.0
+ '@mdit-vue/types': 0.12.0
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mdit-vue/plugin-sfc/0.11.1:
- resolution: {integrity: sha512-3AjQXqExzT9FWGNOeTBqK1pbt1UA5anrZvjo7OO2PJ3lrfZd0rbjionFkmW/VW1912laHUraIP6n74mUNqPuWw==}
+ /@mdit-vue/plugin-sfc/0.12.0:
+ resolution: {integrity: sha512-mH+rHsERzDxGucAQJILspRiD723AIWMmtMhp7lDKdkCIbIhYfupFv/CkSeX+LAx5UY5greWvUTPGYVKn4gw/5Q==}
dependencies:
- '@mdit-vue/types': 0.11.0
+ '@mdit-vue/types': 0.12.0
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mdit-vue/plugin-title/0.11.2:
- resolution: {integrity: sha512-R91WCN16CePWRT2bSXaDJGXvj0MuaCz4m2GbYqUbQxd+dqf18uuGPdbhr1rwhIqCvy7GD/g7hSgOFi3DNDAIzA==}
+ /@mdit-vue/plugin-title/0.12.0:
+ resolution: {integrity: sha512-XrQcior1EmPgsDG88KsoF4LUSQw/RS1Nyfn5xNWGiurO70a2hml4kCe0XzT4sLKUAPG0HNbIY6b92ezNezqWTg==}
dependencies:
- '@mdit-vue/shared': 0.11.2
- '@mdit-vue/types': 0.11.0
+ '@mdit-vue/shared': 0.12.0
+ '@mdit-vue/types': 0.12.0
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mdit-vue/plugin-toc/0.11.2:
- resolution: {integrity: sha512-0OcGG4TnYIZJ6SLZtk24Nj0oP2vcLn0FyMTao/nB/2Z17/fP3whoo6dVV+0G4Oi8HZ+MMDi661lvS2b4b/glYA==}
+ /@mdit-vue/plugin-toc/0.12.0:
+ resolution: {integrity: sha512-tT985CqvLp17DFWHrSvmmJbh7qcy0Rl0dBbYN//Fn952a04dbr1mb2LqW0B1oStSAQj2q24HpK4ZPgYOt7Z1Jg==}
dependencies:
- '@mdit-vue/shared': 0.11.2
- '@mdit-vue/types': 0.11.0
+ '@mdit-vue/shared': 0.12.0
+ '@mdit-vue/types': 0.12.0
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mdit-vue/shared/0.11.2:
- resolution: {integrity: sha512-Z/GS/v9DURZE13Hv41meKzdnprMwenVJoM3t82OE5HIGvtE6QovsZ+mMF/rMvLgaLLMDjT3EwvrrBmemWkHYTQ==}
+ /@mdit-vue/shared/0.12.0:
+ resolution: {integrity: sha512-E+sGSubhvnp+Gmb2hJXFDxdLwwQD1H52EVbA4yrxxI5q/cwtnPIN2eJU3zlZB9KcvzXYDFFwt/x2mfhK8RZKBg==}
dependencies:
- '@mdit-vue/types': 0.11.0
+ '@mdit-vue/types': 0.12.0
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mdit-vue/types/0.11.0:
- resolution: {integrity: sha512-ygCGP7vFpqS02hpZwEe1uz8cfImWX06+zRs08J+tCZRKb6k+easIaIHFtY9ZSxt7j9L/gAPLDo/5RmOT6z0DPQ==}
+ /@mdit-vue/types/0.12.0:
+ resolution: {integrity: sha512-mrC4y8n88BYvgcgzq9bvTlDgFyi2zuvzmPilRvRc3Uz1iIvq8mDhxJ0rHKFUNzPEScpDvJdIujqiDrulMqiudA==}
dev: true
- /@mdit/plugin-align/0.2.3:
- resolution: {integrity: sha512-TR4bR8qIg7tYSa62XspVzJKfUCCBJBiwTIAfKWtmeQALtDBClCZa26bL2EJnmdY5EdQVzU9sTHXWcR/p3AnVaw==}
+ /@mdit/plugin-align/0.3.0:
+ resolution: {integrity: sha512-t5SY5n93Et8MJRbEmlcREpPNLy/A7j0U13mXiuADtgvkMIWGXiO3PLyPPLfov9vWhh1tcDcNQ1+XY3hw71LwzQ==}
engines: {node: '>= 14'}
dependencies:
- '@mdit/plugin-container': 0.2.3
+ '@mdit/plugin-container': 0.3.0
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mdit/plugin-attrs/0.2.3:
- resolution: {integrity: sha512-iTqwXOAscDXL20Lt4do3wI6+MQz/iqvSqETpR57M20yl2L/rM02RdVex5BWbxdhqFtDylh+/qtI4X2H6JFv/OQ==}
+ /@mdit/plugin-attrs/0.3.0:
+ resolution: {integrity: sha512-u8TrEmoZsCmtPA8Q94CXEBAU8VO8xEaX7JJ20SXcv5C8u4h5S/LwnqBXckBH9B8Qz0j8JS7XeKxfm6X+lmwMxg==}
engines: {node: '>= 14'}
dependencies:
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mdit/plugin-container/0.2.3:
- resolution: {integrity: sha512-psgaYyBX6Pq56R5S+NOIWhk8nz73LBaoputKq2NjQadIUgYlN7CmwOJeUjyg4ZK0wwBg1HzFFD5JaJ+C2jVssA==}
+ /@mdit/plugin-container/0.3.0:
+ resolution: {integrity: sha512-mNdw5H8VsifwtRCEvuyIa6kTDP1a3CHe7PhICzmK51/6yObN6PRWWwEDuG3vJOu1pIRltcsgMKMwEC8BWT2S0A==}
engines: {node: '>= 14'}
dependencies:
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mdit/plugin-figure/0.2.3:
- resolution: {integrity: sha512-d1KMMkQq9+0SxVMssnm28KDm1JVxozA8lh9fecKRlMnvN7B7NCnLbQZEe/l8Tj2yesOEgzSGL98+gfu/wdJimA==}
+ /@mdit/plugin-figure/0.3.0:
+ resolution: {integrity: sha512-657sxb+qjZ5ff5YXEOuPqobSFcXuLNS7pWFA9oZxK8Fbo8FqS/sAKuUV2axo2SBR9pydLNP/bPvu2YbvYdQkNA==}
engines: {node: '>= 14'}
dependencies:
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mdit/plugin-footnote/0.2.3:
- resolution: {integrity: sha512-LiSxbIu5PJTEj+qUcULQViLvyLyDjmnyM/iRdN4Y2biZ2Is/iVsHfhrrOFoqfTIRUqMwZwvbNJdyFPNheTCQfg==}
+ /@mdit/plugin-footnote/0.3.0:
+ resolution: {integrity: sha512-2qfSklSJplsP4sct02cdMcBSVyLAHIhR1OMxhEnS0WsUMtX68r2G7buBtfVbYRT68lCygkZFAD4nymdslEdDRA==}
engines: {node: '>= 14'}
dependencies:
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mdit/plugin-img-lazyload/0.2.3:
- resolution: {integrity: sha512-LQJ+mEDiRVyyUYIv4V5NXb3H8Mxp58OLEGJAyM5GV30ZnlsNQV/eyqLvrkaI/zzr0AULaI4RnwtZrUthsxmQZA==}
+ /@mdit/plugin-img-lazyload/0.3.0:
+ resolution: {integrity: sha512-KytI59hWWfiynlt8meFBEGcJO0LrdUbj2Uicq7E1NycTIipgxAKIPU0pxc/eY+gdJhp+W0lpl+orRG0eoVLX+A==}
engines: {node: '>= 14'}
dependencies:
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mdit/plugin-img-mark/0.2.3:
- resolution: {integrity: sha512-bQyCeF1DH06MTb+bpjja5As/mkDMShoEWaZ2inc9knphkLA3EHYuHo+DU72RlhXvYv9AaUmlFl870Wu5OeNvZw==}
+ /@mdit/plugin-img-mark/0.3.0:
+ resolution: {integrity: sha512-dto+KOvhai6piINS3052+GUk6AKvxe3bSU6I1dFbYKRswIDZcf8XIMQZVYiBN+2tLKMQzzwcu+irVuWHkS6LYQ==}
engines: {node: '>= 14'}
dependencies:
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mdit/plugin-img-size/0.2.3:
- resolution: {integrity: sha512-oIBWHMIqlMRp4ns/AQC9DwluV2x/aG+vnu1QhIBaUeuLcwZKp4IdmdDDMTqzASpvMpwqe+wRt4aVnyOmOzRF+w==}
+ /@mdit/plugin-img-size/0.3.0:
+ resolution: {integrity: sha512-cjj9hGJTiwNwAmuQPSRaQZNaguYBExHZREm1NboWI8zMCTvMXc1zZnTHb96WmD1n2K2c9L2pLkAuqPJu5Z8ZpA==}
engines: {node: '>= 14'}
dependencies:
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mdit/plugin-include/0.2.3:
- resolution: {integrity: sha512-ZCNKi5w+FYkwXXoaFyRqfohBz1uxkwCOWjuF8iHtI8PCXJrquoQz4ynXpLCtMXkg2ohgrcHcQriTOwoGM7xusA==}
+ /@mdit/plugin-include/0.3.0:
+ resolution: {integrity: sha512-rDH+4fqT3bv7+Nf5OT6LOvwn545ox5eE1eGHkZWty/XINbKmNP6VSdbgdieqAgJA4nlLCs4yscFk2vuzT8dqrQ==}
dependencies:
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
upath: 2.0.1
dev: true
- /@mdit/plugin-katex/0.2.3:
- resolution: {integrity: sha512-BBeLtivXoGsxHLXqM6h0G661E3amnFBqGX3OuUO3pgVL/IU+yVkn1tFu6D0eFZkyN4juHHrqa1RP2MLQSlziug==}
+ /@mdit/plugin-katex/0.3.0:
+ resolution: {integrity: sha512-Uol7ZF2Yc4fBgQOwsy6cQQFkoIWXqV8o7Wf+I9ZJHYosbKZXFrfLkfDkWISSb+TzSTBCrRkrQtt6zi+4+nj9sw==}
engines: {node: '>= 14'}
dependencies:
- '@mdit/plugin-tex': 0.2.3
+ '@mdit/plugin-tex': 0.3.0
'@types/katex': 0.16.0
'@types/markdown-it': 12.2.3
katex: 0.16.4
markdown-it: 13.0.1
dev: true
- /@mdit/plugin-mark/0.2.3:
- resolution: {integrity: sha512-ppGqi3hCV0yeswAK8K4mmTXrzLU/skBjzDQx8q02Ixt7ppE+T8Sh6A9Pir7pPDqhDTE5MHKWxl//KlUfyPQPMw==}
+ /@mdit/plugin-mark/0.3.0:
+ resolution: {integrity: sha512-LRCjS/q8ryg/yWnKCGIKWVxCRu36WBfUGDlCuw+cb59ptkbF24Q6Khs8pnZZGq6q+XSFHmYUCCHqp2q79XAvyA==}
engines: {node: '>= 14'}
dependencies:
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mdit/plugin-mathjax/0.2.3:
- resolution: {integrity: sha512-8P5SqRQuyEQ2JBzIGG+Cl93eZU0rx+i1asELRDnz7t1NCTyIkyLCA57utZx5kC3UcuBo7Nog4N2L04zKup2AxQ==}
+ /@mdit/plugin-mathjax/0.3.0:
+ resolution: {integrity: sha512-9lvYnVd0kllsysikRr4f+OMS9zjM57QgEIB7e+dSDtYGMQISNxiLQvYap/pMMtY+zZQ51I7heGCjZ2OXmWEtbg==}
engines: {node: '>= 14'}
dependencies:
- '@mdit/plugin-tex': 0.2.3
+ '@mdit/plugin-tex': 0.3.0
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
mathjax-full: 3.2.2
upath: 2.0.1
dev: true
- /@mdit/plugin-stylize/0.2.3:
- resolution: {integrity: sha512-EeRLwmEDwxB7NaF91OAqIJ5uUKHoPyZie4zFLbA3gKwqVXa6OC1XG1k3S8w9GuRnep/K7+e/5gPGFM68tI7v8g==}
+ /@mdit/plugin-stylize/0.3.0:
+ resolution: {integrity: sha512-WT+ts6/Xd+K3ASlHDWa4ZHqDx4KgRsuHgLhmyvyAGY9ApNP1Q0ROY5Ik4bn92WVRU3WEfK8ICOEOnoEPEP2NJA==}
engines: {node: '>= 14'}
dependencies:
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mdit/plugin-sub/0.2.3:
- resolution: {integrity: sha512-eWCOxASIU/Y1efzhJkb1y0XWa0yGVdtYm4SKfUd73rF4dNEYIYJiNKkQfefrGtMuQdeM7iBqBZfYtcq/nipkzg==}
+ /@mdit/plugin-sub/0.3.0:
+ resolution: {integrity: sha512-T4fYZqIJ2ZJOQ4WoURU813XL7Y6prs5jYaxLWteOqF9JkTcqNQ22hJcdGe5domIG/dH79IZqVHkJ7okoFOt/Xg==}
engines: {node: '>= 14'}
dependencies:
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mdit/plugin-sup/0.2.3:
- resolution: {integrity: sha512-gqOOQo6lE2e8SFHpXhKCKiFGoVIO1JUDA97Ol5iIFZtXJ4lbObWKxtYa63KH+kOVwDUUGSojQ6s8+oGMxmtIDA==}
+ /@mdit/plugin-sup/0.3.0:
+ resolution: {integrity: sha512-K6L1/WK94XwFG+Oo54GVM9m+Y0cjinoiVtWjT0OIswCQWDuuXG7H4JH2uxBxQJb8MWNsnnQRUFnaG1RPiRP94Q==}
engines: {node: '>= 14'}
dependencies:
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mdit/plugin-tab/0.2.3:
- resolution: {integrity: sha512-J0LkcQ2Kb2fm+8Gnd1Ke8rKfJXMQPqwx3ZDa2AtLCcBEf5hWAKbLoc/cWjDVXiHjsdOklIs5AtCyNUkR5YbyOA==}
+ /@mdit/plugin-tab/0.3.0:
+ resolution: {integrity: sha512-mHnj+AZRem7Jilc1Auu7wL5Uo/S32Slp1WU3Of3RJn0LiQnEpZHKr/kpQutEWV+kZo/rIcTIxdCYWXBZqj38ng==}
dependencies:
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mdit/plugin-tasklist/0.2.3:
- resolution: {integrity: sha512-szYn7pyaozAPhilrNeC5PNLR+Rm9qlPvRQsxMK88Sa4seSdDhQnPkDb+407QYtYdYpyrn0ZKCvnmuXc9CLlhmQ==}
+ /@mdit/plugin-tasklist/0.3.0:
+ resolution: {integrity: sha512-/nekYc2zSKxGFbTR2o6dXyqoUfQBrf9PX0O81ZOGIzaMI+t6y9q3tJwnmbwLD/QE1MeW6kaR4byCcD3rc1SyAQ==}
engines: {node: '>= 14'}
dependencies:
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mdit/plugin-tex/0.2.3:
- resolution: {integrity: sha512-sD7dILLqwdPA3B89W5Ezj2vMjrYZKBFICLvPmp49crdAW51tcLUtjKK5nF86fUY7VULlsDG9h5+lQV9wc/HNYA==}
+ /@mdit/plugin-tex/0.3.0:
+ resolution: {integrity: sha512-GXAOOBlk2me/noWOCbZeoqMsCcsIeNob+LhLYfk8q4w3rHJM9gdUI5JL05ClbvO7eNSSjQVZZ1tHfyjK08RvSg==}
engines: {node: '>= 14'}
dependencies:
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mdit/plugin-uml/0.2.3:
- resolution: {integrity: sha512-bLo1R4f6xaXtToLLP4+7+x/i9p815NnuS+l63RkhE2juEagQYKaB2Ytw/91K0/sprWrrvOL3ESRlgFK14MAmHQ==}
+ /@mdit/plugin-uml/0.3.0:
+ resolution: {integrity: sha512-QS00olhRy3Ct5qwjFYBk6YtCZK5oLM8K4SyPND7LCrqiV3PiAtH8jXN9BnDmKQN+EhXXzFe3NlxRjNLvGu/JUw==}
engines: {node: '>= 14'}
dependencies:
'@types/markdown-it': 12.2.3
markdown-it: 13.0.1
dev: true
- /@mermaid-js/mermaid-mindmap/9.3.0:
- resolution: {integrity: sha512-IhtYSVBBRYviH1Ehu8gk69pMDF8DSRqXBRDMWrEfHoaMruHeaP2DXA3PBnuwsMaCdPQhlUUcy/7DBLAEIXvCAw==}
- dependencies:
- '@braintree/sanitize-url': 6.0.2
- cytoscape: 3.23.0
- cytoscape-cose-bilkent: 4.1.0_cytoscape@3.23.0
- cytoscape-fcose: 2.2.0_cytoscape@3.23.0
- d3: 7.8.2
- khroma: 2.0.0
- non-layered-tidy-tree-layout: 2.0.2
- dev: true
-
/@nodelib/fs.scandir/2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
@@ -1692,7 +1762,7 @@ packages:
fastq: 1.15.0
dev: true
- /@rollup/plugin-babel/5.3.1_d8e457a9eec5694be0a6185ede2794cb:
+ /@rollup/plugin-babel/5.3.1_4tnfxcmsyr7y5qv3uwkivwqysm:
resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
engines: {node: '>= 10.0.0'}
peerDependencies:
@@ -1703,7 +1773,7 @@ packages:
'@types/babel__core':
optional: true
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-module-imports': 7.18.6
'@rollup/pluginutils': 3.1.0_rollup@2.79.1
rollup: 2.79.1
@@ -1773,9 +1843,10 @@ packages:
resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==}
dev: true
- /@types/fs-extra/9.0.13:
- resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==}
+ /@types/fs-extra/11.0.1:
+ resolution: {integrity: sha512-MxObHvNl4A69ofaTRU8DFqvgzzv8s9yRtaPPm5gud9HDNvpB3GPQFvNuTWAI59B9huVGV5jXYJwbCsmBsOGYWA==}
dependencies:
+ '@types/jsonfile': 6.1.1
'@types/node': 18.13.0
dev: true
@@ -1783,6 +1854,20 @@ packages:
resolution: {integrity: sha512-FdLBT93h3kcZ586Aee66HPCVJ6qvxVjBlDWNmxSGSbCZe9hTsjRKdSsl4y1T+3zfujxo9auykQMnFsfyHWD7wg==}
dev: true
+ /@types/json-schema/7.0.11:
+ resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==}
+ dev: true
+
+ /@types/json5/0.0.29:
+ resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
+ dev: true
+
+ /@types/jsonfile/6.1.1:
+ resolution: {integrity: sha512-GSgiRCVeapDN+3pqA35IkQwasaCh/0YFH5dEF6S88iDvEn901DjOeH3/QPY+XYP1DFzDZPvIvfeEgk+7br5png==}
+ dependencies:
+ '@types/node': 18.13.0
+ dev: true
+
/@types/katex/0.16.0:
resolution: {integrity: sha512-hz+S3nV6Mym5xPbT9fnO8dDhBFQguMYpY0Ipxv06JMi1ORgnEM4M1ymWDUhUNer3ElLmT583opRo4RzxKmh9jw==}
dev: true
@@ -1833,7 +1918,11 @@ packages:
/@types/sax/1.2.4:
resolution: {integrity: sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw==}
dependencies:
- '@types/node': 17.0.45
+ '@types/node': 18.13.0
+ dev: true
+
+ /@types/semver/7.3.13:
+ resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==}
dev: true
/@types/trusted-types/2.0.2:
@@ -1844,14 +1933,144 @@ packages:
resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==}
dev: true
- /@vitejs/plugin-vue/4.0.0_vite@4.0.4+vue@3.2.47:
+ /@typescript-eslint/eslint-plugin/5.54.0_rnadeopnlkrqw7c6bwgkipvmrq:
+ resolution: {integrity: sha512-+hSN9BdSr629RF02d7mMtXhAJvDTyCbprNYJKrXETlul/Aml6YZwd90XioVbjejQeHbb3R8Dg0CkRgoJDxo8aw==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ '@typescript-eslint/parser': ^5.0.0
+ eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/parser': 5.54.0_gv45cv5f5y7bgncpx37yd3rwim
+ '@typescript-eslint/scope-manager': 5.54.0
+ '@typescript-eslint/type-utils': 5.54.0_gv45cv5f5y7bgncpx37yd3rwim
+ '@typescript-eslint/utils': 5.54.0_gv45cv5f5y7bgncpx37yd3rwim
+ debug: 4.3.4
+ eslint: 8.35.0
+ grapheme-splitter: 1.0.4
+ ignore: 5.2.4
+ natural-compare-lite: 1.4.0
+ regexpp: 3.2.0
+ semver: 7.3.8
+ tsutils: 3.21.0_typescript@3.9.10
+ typescript: 3.9.10
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/parser/5.54.0_gv45cv5f5y7bgncpx37yd3rwim:
+ resolution: {integrity: sha512-aAVL3Mu2qTi+h/r04WI/5PfNWvO6pdhpeMRWk9R7rEV4mwJNzoWf5CCU5vDKBsPIFQFjEq1xg7XBI2rjiMXQbQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/scope-manager': 5.54.0
+ '@typescript-eslint/types': 5.54.0
+ '@typescript-eslint/typescript-estree': 5.54.0_typescript@3.9.10
+ debug: 4.3.4
+ eslint: 8.35.0
+ typescript: 3.9.10
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/scope-manager/5.54.0:
+ resolution: {integrity: sha512-VTPYNZ7vaWtYna9M4oD42zENOBrb+ZYyCNdFs949GcN8Miwn37b8b7eMj+EZaq7VK9fx0Jd+JhmkhjFhvnovhg==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ '@typescript-eslint/types': 5.54.0
+ '@typescript-eslint/visitor-keys': 5.54.0
+ dev: true
+
+ /@typescript-eslint/type-utils/5.54.0_gv45cv5f5y7bgncpx37yd3rwim:
+ resolution: {integrity: sha512-WI+WMJ8+oS+LyflqsD4nlXMsVdzTMYTxl16myXPaCXnSgc7LWwMsjxQFZCK/rVmTZ3FN71Ct78ehO9bRC7erYQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: '*'
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/typescript-estree': 5.54.0_typescript@3.9.10
+ '@typescript-eslint/utils': 5.54.0_gv45cv5f5y7bgncpx37yd3rwim
+ debug: 4.3.4
+ eslint: 8.35.0
+ tsutils: 3.21.0_typescript@3.9.10
+ typescript: 3.9.10
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/types/5.54.0:
+ resolution: {integrity: sha512-nExy+fDCBEgqblasfeE3aQ3NuafBUxZxgxXcYfzYRZFHdVvk5q60KhCSkG0noHgHRo/xQ/BOzURLZAafFpTkmQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dev: true
+
+ /@typescript-eslint/typescript-estree/5.54.0_typescript@3.9.10:
+ resolution: {integrity: sha512-X2rJG97Wj/VRo5YxJ8Qx26Zqf0RRKsVHd4sav8NElhbZzhpBI8jU54i6hfo9eheumj4oO4dcRN1B/zIVEqR/MQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/types': 5.54.0
+ '@typescript-eslint/visitor-keys': 5.54.0
+ debug: 4.3.4
+ globby: 11.1.0
+ is-glob: 4.0.3
+ semver: 7.3.8
+ tsutils: 3.21.0_typescript@3.9.10
+ typescript: 3.9.10
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/utils/5.54.0_gv45cv5f5y7bgncpx37yd3rwim:
+ resolution: {integrity: sha512-cuwm8D/Z/7AuyAeJ+T0r4WZmlnlxQ8wt7C7fLpFlKMR+dY6QO79Cq1WpJhvZbMA4ZeZGHiRWnht7ZJ8qkdAunw==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ '@types/json-schema': 7.0.11
+ '@types/semver': 7.3.13
+ '@typescript-eslint/scope-manager': 5.54.0
+ '@typescript-eslint/types': 5.54.0
+ '@typescript-eslint/typescript-estree': 5.54.0_typescript@3.9.10
+ eslint: 8.35.0
+ eslint-scope: 5.1.1
+ eslint-utils: 3.0.0_eslint@8.35.0
+ semver: 7.3.8
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ dev: true
+
+ /@typescript-eslint/visitor-keys/5.54.0:
+ resolution: {integrity: sha512-xu4wT7aRCakGINTLGeyGqDn+78BwFlggwBjnHa1ar/KaGagnmwLYmlrXIrgAaQ3AE1Vd6nLfKASm7LrFHNbKGA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ '@typescript-eslint/types': 5.54.0
+ eslint-visitor-keys: 3.3.0
+ dev: true
+
+ /@vitejs/plugin-vue/4.0.0_vite@4.1.4+vue@3.2.47:
resolution: {integrity: sha512-e0X4jErIxAB5oLtDqbHvHpJe/uWNkdpYV83AOG2xo2tEVSzCzewgJMtREZM30wXnM5ls90hxiOtAuVU6H5JgbA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: ^4.0.0
vue: ^3.2.25
dependencies:
- vite: 4.0.4
+ vite: 4.1.4
vue: 3.2.47
dev: true
@@ -1950,20 +2169,20 @@ packages:
resolution: {integrity: sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ==}
dev: true
- /@vuepress/bundler-vite/2.0.0-beta.60:
- resolution: {integrity: sha512-nf+UAKNlAEZXZqu2Ztvr8Hg/5CtevWxvQGfYKV4lhw8UmoDjKKHoHPpPhF1QTUbnZ8W+jPLzIVz+hjunzsxl/A==}
+ /@vuepress/bundler-vite/2.0.0-beta.61:
+ resolution: {integrity: sha512-J9/DGfsqr9rGJT+0osL9uL+jrrGHeAsWuZoCCbQIDbe0rEO2whvou51PJpwko3R0vvCTWsolh6rXYeb0N0+yFg==}
dependencies:
- '@vitejs/plugin-vue': 4.0.0_vite@4.0.4+vue@3.2.47
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/core': 2.0.0-beta.60
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
+ '@vitejs/plugin-vue': 4.0.0_vite@4.1.4+vue@3.2.47
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/core': 2.0.0-beta.61
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
autoprefixer: 10.4.13_postcss@8.4.21
connect-history-api-fallback: 2.0.0
postcss: 8.4.21
postcss-load-config: 4.0.1_postcss@8.4.21
- rollup: 3.14.0
- vite: 4.0.4
+ rollup: 3.18.0
+ vite: 4.1.4
vue: 3.2.47
vue-router: 4.1.6_vue@3.2.47
transitivePeerDependencies:
@@ -1977,13 +2196,13 @@ packages:
- ts-node
dev: true
- /@vuepress/cli/2.0.0-beta.60:
- resolution: {integrity: sha512-ibC6ezsn1m+r3PB382ZZfmwBFlkR/9LVk5u2cUBmhBj4t+W2XPgWkKTTmG81ny7lnUJweloQc9fa1ww77se2Ug==}
+ /@vuepress/cli/2.0.0-beta.61:
+ resolution: {integrity: sha512-0CWc82c75987mVZwBOGBaCDke74NwlS6L3n1ybWrrqaFeueZSonwdm+qvaNvM/AJC10chqOJtpO/O3P+/YkBHQ==}
hasBin: true
dependencies:
- '@vuepress/core': 2.0.0-beta.60
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
+ '@vuepress/core': 2.0.0-beta.61
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
cac: 6.7.14
chokidar: 3.5.3
envinfo: 7.8.1
@@ -1992,56 +2211,56 @@ packages:
- supports-color
dev: true
- /@vuepress/client/2.0.0-beta.60:
- resolution: {integrity: sha512-WU5VGeDp41A2dVXqp18YBggflIjTq68mA+s5TCz93wk+7elAmPAkWKcobQBYQgvsuwHyg9nWulZAfMN6OEygKQ==}
+ /@vuepress/client/2.0.0-beta.61:
+ resolution: {integrity: sha512-C5QbdQkPsurEsKUkLclVucUAKMzBph9kHMUvfKHJqBaAsiXKYVLa61AICTJeyDkhTYF0faOjmpqmaElfMt1S9w==}
dependencies:
'@vue/devtools-api': 6.5.0
- '@vuepress/shared': 2.0.0-beta.60
+ '@vuepress/shared': 2.0.0-beta.61
vue: 3.2.47
vue-router: 4.1.6_vue@3.2.47
dev: true
- /@vuepress/core/2.0.0-beta.60:
- resolution: {integrity: sha512-HkUkqBnBI7GMVZGxdzV4C/iyFwPo215sVLYvZVEWpQIaLk/47WkK0sHtz/1i00ujwJC3uGOH1+f0IHkxzqjUmg==}
+ /@vuepress/core/2.0.0-beta.61:
+ resolution: {integrity: sha512-jPr60d/uadgBmEQhXCRLNOm2M4Ym65lvZhGf/wyZCo14kpacp2YoO7RR8bzp/NEpWe7ndr/U8O/VDjFYTsz80g==}
dependencies:
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/markdown': 2.0.0-beta.60
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/markdown': 2.0.0-beta.61
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
vue: 3.2.47
transitivePeerDependencies:
- supports-color
dev: true
- /@vuepress/markdown/2.0.0-beta.60:
- resolution: {integrity: sha512-97AT4aZr1k1VrJZoUvzbrX6nU/TwxlFpLNi8KNtWK3TMZT6+hAU0aCg6TwuwirShvey8mr9GaMNSssAdpSK4mg==}
+ /@vuepress/markdown/2.0.0-beta.61:
+ resolution: {integrity: sha512-vzj933XxsfE9B+1kdMXncYtYU7TGTLjWP+qeikVsy5imq2BXa/n3OFVGyGkkdOYmu05hkm82+07dOvtGA+iMBQ==}
dependencies:
- '@mdit-vue/plugin-component': 0.11.2
- '@mdit-vue/plugin-frontmatter': 0.11.1
- '@mdit-vue/plugin-headers': 0.11.2
- '@mdit-vue/plugin-sfc': 0.11.1
- '@mdit-vue/plugin-title': 0.11.2
- '@mdit-vue/plugin-toc': 0.11.2
- '@mdit-vue/shared': 0.11.2
- '@mdit-vue/types': 0.11.0
+ '@mdit-vue/plugin-component': 0.12.0
+ '@mdit-vue/plugin-frontmatter': 0.12.0
+ '@mdit-vue/plugin-headers': 0.12.0
+ '@mdit-vue/plugin-sfc': 0.12.0
+ '@mdit-vue/plugin-title': 0.12.0
+ '@mdit-vue/plugin-toc': 0.12.0
+ '@mdit-vue/shared': 0.12.0
+ '@mdit-vue/types': 0.12.0
'@types/markdown-it': 12.2.3
'@types/markdown-it-emoji': 2.0.2
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
markdown-it: 13.0.1
- markdown-it-anchor: 8.6.6_203ea4fed94a963ea5da6bb0985d1ff7
+ markdown-it-anchor: 8.6.7_ea7kj7wzjkld5jo2noyjqxi764
markdown-it-emoji: 2.0.2
mdurl: 1.0.1
transitivePeerDependencies:
- supports-color
dev: true
- /@vuepress/plugin-active-header-links/2.0.0-beta.60:
- resolution: {integrity: sha512-L+KijW7FvoDWMTd6wiIZhMA/uZYgMhiukL6IaVWtQ0COyWGIjaZUlX+mHd1munSzz4aWBMbck7no82bPswCh0g==}
+ /@vuepress/plugin-active-header-links/2.0.0-beta.61:
+ resolution: {integrity: sha512-+bbzb4YqnuTOANvSmJq8hbp60Tl3jLMiaZdkHKxKK9lDODGfTB8uAlH+KvuvxxuLm+Za186r+2PtBwJby773fA==}
dependencies:
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/core': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/core': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
ts-debounce: 4.0.0
vue: 3.2.47
vue-router: 4.1.6_vue@3.2.47
@@ -2049,142 +2268,142 @@ packages:
- supports-color
dev: true
- /@vuepress/plugin-back-to-top/2.0.0-beta.60:
- resolution: {integrity: sha512-vpVTA6EwWjjYyl6Op5J16RV6rEvwUYkLnjYhJ2qWroDb8U2x32HGWFJZQFIyatGO+oU6UBVYow90j2+Ery2g6g==}
+ /@vuepress/plugin-back-to-top/2.0.0-beta.61:
+ resolution: {integrity: sha512-2KX83rdc00FSs38o8/P2Hp0ifKVtRbO+4kXW5ilzY27v0UMY8H//KxmoE/+PZDS9iyeXF1O/YUm3VtoMN5Y/9g==}
dependencies:
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/core': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/core': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
ts-debounce: 4.0.0
vue: 3.2.47
transitivePeerDependencies:
- supports-color
dev: true
- /@vuepress/plugin-container/2.0.0-beta.60:
- resolution: {integrity: sha512-yQBAm7sFRGMvCz8Ju2qFG0iLQs/XvWd11UAsywSdvps3A0nZuANSb68QTYJPN3JJfZ5d0LCxlhJ4rbBWT49+wQ==}
+ /@vuepress/plugin-container/2.0.0-beta.61:
+ resolution: {integrity: sha512-XVIhMpTSv0F8tsmCKFHzFtsJzD2SeiKX60jHaEGCym+shNvr9euECWY7ygEB5Ob6oQUIDZNS1dDb1RcYsksZ8A==}
dependencies:
'@types/markdown-it': 12.2.3
- '@vuepress/core': 2.0.0-beta.60
- '@vuepress/markdown': 2.0.0-beta.60
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
+ '@vuepress/core': 2.0.0-beta.61
+ '@vuepress/markdown': 2.0.0-beta.61
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
markdown-it: 13.0.1
markdown-it-container: 3.0.0
transitivePeerDependencies:
- supports-color
dev: true
- /@vuepress/plugin-external-link-icon/2.0.0-beta.60:
- resolution: {integrity: sha512-We4YmS4G7sWoOec/FKYhTM86qRCMBbDThcxOiPm6sWHrhTdxk3bFgJq/DfqJU/ply1ta72AWep0rEY6fj6JJ2A==}
+ /@vuepress/plugin-external-link-icon/2.0.0-beta.61:
+ resolution: {integrity: sha512-Jyp/QdqIvybfocD2K8otKIeHrKMeOamt74tlstsZxrtveKhWE3Js1/n2MP/bJlGkcHrAb6lQQr/JFhpT5jtHVg==}
dependencies:
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/core': 2.0.0-beta.60
- '@vuepress/markdown': 2.0.0-beta.60
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/core': 2.0.0-beta.61
+ '@vuepress/markdown': 2.0.0-beta.61
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
vue: 3.2.47
transitivePeerDependencies:
- supports-color
dev: true
- /@vuepress/plugin-git/2.0.0-beta.60:
- resolution: {integrity: sha512-Yu+D8gItxD8BFueV5fQd7AxIgjcxyDY1AFCTmPsP9VDMJ0AuJuaPTLWOf5o0uKzWd5z1mDw0ZwWFh8j3FyHv+A==}
+ /@vuepress/plugin-git/2.0.0-beta.61:
+ resolution: {integrity: sha512-ozoxZ+x57yGiHDs5tXJvbyoZTiYpfb7QQaS5mgxn0+XZqfg7/cZnT7DmJtxVqk+VFmz73WHgN+4pGRjkuTOLqQ==}
dependencies:
- '@vuepress/core': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
- execa: 6.1.0
+ '@vuepress/core': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
+ execa: 7.0.0
transitivePeerDependencies:
- supports-color
dev: true
- /@vuepress/plugin-medium-zoom/2.0.0-beta.60:
- resolution: {integrity: sha512-KiJui/sTIHa321jJ/dc11ysyqTMj4Sz9tWoTSnwBJ4nebaO/0OFGQcFajk2+1ELs4poUh/w0THxc+NskR+bf+g==}
+ /@vuepress/plugin-medium-zoom/2.0.0-beta.61:
+ resolution: {integrity: sha512-mFY2vHXeqC8dizFVlFO7HIzirb79Z8sudKWPVfZmq0Qmlttyhxlns8GjrsPQl1mnz2NlYUY1ztUasikPwsYjAw==}
dependencies:
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/core': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/core': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
medium-zoom: 1.0.8
vue: 3.2.47
transitivePeerDependencies:
- supports-color
dev: true
- /@vuepress/plugin-nprogress/2.0.0-beta.60:
- resolution: {integrity: sha512-zRdJP39qFO8q9TAwlCS4tLOd2rLGtkKqkPTsfhjtWwDqSbtTHy0GqVBL8KJUy3H0+qSiyvtC647yLNRbJ9LOlw==}
+ /@vuepress/plugin-nprogress/2.0.0-beta.61:
+ resolution: {integrity: sha512-d36NEy8hkZaAuqMZec9VTEjozPkj9Wvimyx+AgJYpYN8JDBrWB58r9Gu9xHf8/PVeEnKayggD2xJYpGKtQ2lrw==}
dependencies:
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/core': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/core': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
vue: 3.2.47
vue-router: 4.1.6_vue@3.2.47
transitivePeerDependencies:
- supports-color
dev: true
- /@vuepress/plugin-palette/2.0.0-beta.60:
- resolution: {integrity: sha512-KPIQCLUEIsgsdxINR6mYJRhHmWCo0850QEvy9+ikdv+ds1z6wJ5xwq/xWy/pRJ6lXdgHQrtuVkroWl+IdppcRw==}
+ /@vuepress/plugin-palette/2.0.0-beta.61:
+ resolution: {integrity: sha512-mQE/2dxwOZfkc7wwkwR6byaeMJYTqQV7WmfQ4YQ3zAOr4nDP8Bx/zZVRyV3NjAcMwuif/CURpAYJo+WkFM+fpQ==}
dependencies:
- '@vuepress/core': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
+ '@vuepress/core': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
chokidar: 3.5.3
transitivePeerDependencies:
- supports-color
dev: true
- /@vuepress/plugin-prismjs/2.0.0-beta.60:
- resolution: {integrity: sha512-yWRWAsUX6iO7uUN67yyy20x3H1clQZ519rHh2dvs6wMyXsO0E3vlNB8jrveOdr+0lfoUll58t2AsxpvzTObY0A==}
+ /@vuepress/plugin-prismjs/2.0.0-beta.61:
+ resolution: {integrity: sha512-B6TRmttJuPs1OMJXE2Stul7zhMUKCPy2YSXEmVWwlJ90jWti85o5nhTT9/OhxBVn3EZ89b+YroPDbB/g1uUc1w==}
dependencies:
- '@vuepress/core': 2.0.0-beta.60
+ '@vuepress/core': 2.0.0-beta.61
prismjs: 1.29.0
transitivePeerDependencies:
- supports-color
dev: true
- /@vuepress/plugin-theme-data/2.0.0-beta.60:
- resolution: {integrity: sha512-3b34sXEAzShvUzeEMA/0JE4VrLxoMqGJOGMl0I9m0DKg2apgjRG6nYYq6gUnJW0gcUVK+tOOOHsMT6mTMs3xdA==}
+ /@vuepress/plugin-theme-data/2.0.0-beta.61:
+ resolution: {integrity: sha512-drPLGbaXqXnHsuFHn6FolbqdRIxJzla1+10b3cKnsslatRbSPjKWos4Eri3xzgzEIC5TotPwTeT25gDRMpW8Sw==}
dependencies:
'@vue/devtools-api': 6.5.0
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/core': 2.0.0-beta.60
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/core': 2.0.0-beta.61
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
vue: 3.2.47
transitivePeerDependencies:
- supports-color
dev: true
- /@vuepress/shared/2.0.0-beta.60:
- resolution: {integrity: sha512-bwFksEtSQpbyAGJZkvRK9Z2zGmS144nv759vOzbRUZPPlGffeauzrPw9w7wxqp3gTJvIE/4Ufqt0AZTuSP/F/g==}
+ /@vuepress/shared/2.0.0-beta.61:
+ resolution: {integrity: sha512-NhOQ1FDr5lDSu5IinNlNNzrF+jGOZ+bMFUyAlCxlTvK9oY6aRBCNwV8dWme+yoh3/zviKHGu62Xp7J2hKAHNZA==}
dependencies:
- '@mdit-vue/types': 0.11.0
+ '@mdit-vue/types': 0.12.0
'@vue/shared': 3.2.47
dev: true
- /@vuepress/theme-default/2.0.0-beta.60:
- resolution: {integrity: sha512-j9ybX31HWlmITnuGFt/IxQOt8ttBDI8ebzh4uKs70Yv8z4m1pMrlPNY2Qs2ubLpJIuCQNtMY2cfQKgaUiDYAuQ==}
+ /@vuepress/theme-default/2.0.0-beta.61:
+ resolution: {integrity: sha512-ajjxaGqrSy5LXf+7sslHV1fbUzggMYjITcXxBYa3gT4zVu1tsytAAcmtYxnQKblL1Eo2Wo7inujl/NUwaWDjDQ==}
peerDependencies:
sass-loader: ^13.2.0
peerDependenciesMeta:
sass-loader:
optional: true
dependencies:
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/core': 2.0.0-beta.60
- '@vuepress/plugin-active-header-links': 2.0.0-beta.60
- '@vuepress/plugin-back-to-top': 2.0.0-beta.60
- '@vuepress/plugin-container': 2.0.0-beta.60
- '@vuepress/plugin-external-link-icon': 2.0.0-beta.60
- '@vuepress/plugin-git': 2.0.0-beta.60
- '@vuepress/plugin-medium-zoom': 2.0.0-beta.60
- '@vuepress/plugin-nprogress': 2.0.0-beta.60
- '@vuepress/plugin-palette': 2.0.0-beta.60
- '@vuepress/plugin-prismjs': 2.0.0-beta.60
- '@vuepress/plugin-theme-data': 2.0.0-beta.60
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
- '@vueuse/core': 9.12.0_vue@3.2.47
- sass: 1.58.0
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/core': 2.0.0-beta.61
+ '@vuepress/plugin-active-header-links': 2.0.0-beta.61
+ '@vuepress/plugin-back-to-top': 2.0.0-beta.61
+ '@vuepress/plugin-container': 2.0.0-beta.61
+ '@vuepress/plugin-external-link-icon': 2.0.0-beta.61
+ '@vuepress/plugin-git': 2.0.0-beta.61
+ '@vuepress/plugin-medium-zoom': 2.0.0-beta.61
+ '@vuepress/plugin-nprogress': 2.0.0-beta.61
+ '@vuepress/plugin-palette': 2.0.0-beta.61
+ '@vuepress/plugin-prismjs': 2.0.0-beta.61
+ '@vuepress/plugin-theme-data': 2.0.0-beta.61
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
+ '@vueuse/core': 9.13.0_vue@3.2.47
+ sass: 1.58.3
vue: 3.2.47
vue-router: 4.1.6_vue@3.2.47
transitivePeerDependencies:
@@ -2192,13 +2411,13 @@ packages:
- supports-color
dev: true
- /@vuepress/utils/2.0.0-beta.60:
- resolution: {integrity: sha512-R5m5/AtKWAnlH+Su2yxoHQNp2JdJZ7gHV5531RbFySq9FTlKHtvE5RFceeppc0/UpzPE6KggRdaRqyjc77vg4g==}
+ /@vuepress/utils/2.0.0-beta.61:
+ resolution: {integrity: sha512-W7g6xjrdyOW5E1V1ouyTm5d4+kgSd4KcM80D7K0NNScrhLIW6gpOggVVOVyTH3q2K1GQhzPlUcUe04ZNSo0ilQ==}
dependencies:
'@types/debug': 4.1.7
- '@types/fs-extra': 9.0.13
+ '@types/fs-extra': 11.0.1
'@types/hash-sum': 1.0.0
- '@vuepress/shared': 2.0.0-beta.60
+ '@vuepress/shared': 2.0.0-beta.61
debug: 4.3.4
fs-extra: 11.1.0
globby: 13.1.3
@@ -2210,24 +2429,24 @@ packages:
- supports-color
dev: true
- /@vueuse/core/9.12.0_vue@3.2.47:
- resolution: {integrity: sha512-h/Di8Bvf6xRcvS/PvUVheiMYYz3U0tH3X25YxONSaAUBa841ayMwxkuzx/DGUMCW/wHWzD8tRy2zYmOC36r4sg==}
+ /@vueuse/core/9.13.0_vue@3.2.47:
+ resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==}
dependencies:
'@types/web-bluetooth': 0.0.16
- '@vueuse/metadata': 9.12.0
- '@vueuse/shared': 9.12.0_vue@3.2.47
+ '@vueuse/metadata': 9.13.0
+ '@vueuse/shared': 9.13.0_vue@3.2.47
vue-demi: 0.13.11_vue@3.2.47
transitivePeerDependencies:
- '@vue/composition-api'
- vue
dev: true
- /@vueuse/metadata/9.12.0:
- resolution: {integrity: sha512-9oJ9MM9lFLlmvxXUqsR1wLt1uF7EVbP5iYaHJYqk+G2PbMjY6EXvZeTjbdO89HgoF5cI6z49o2zT/jD9SVoNpQ==}
+ /@vueuse/metadata/9.13.0:
+ resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==}
dev: true
- /@vueuse/shared/9.12.0_vue@3.2.47:
- resolution: {integrity: sha512-TWuJLACQ0BVithVTRbex4Wf1a1VaRuSpVeyEd4vMUWl54PzlE0ciFUshKCXnlLuD0lxIaLK4Ypj3NXYzZh4+SQ==}
+ /@vueuse/shared/9.13.0_vue@3.2.47:
+ resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==}
dependencies:
vue-demi: 0.13.11_vue@3.2.47
transitivePeerDependencies:
@@ -2239,7 +2458,7 @@ packages:
resolution: {integrity: sha512-hTfh2AbWQCX/oS4Hgr0W9cf79pHYf7X6Km5AcBDAmOL6AI7a5kP9qo9y2mcEzdfn9LK06P5Uuk8HY8vxQbgcrA==}
engines: {node: '>=14'}
dependencies:
- '@vueuse/core': 9.12.0_vue@3.2.47
+ '@vueuse/core': 9.13.0_vue@3.2.47
autosize: 5.0.2
marked: 4.2.12
vue: 3.2.47
@@ -2251,12 +2470,29 @@ packages:
resolution: {integrity: sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ==}
dev: true
+ /acorn-jsx/5.3.2_acorn@8.8.2:
+ resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
+ peerDependencies:
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ acorn: 8.8.2
+ dev: true
+
/acorn/8.8.2:
resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==}
engines: {node: '>=0.4.0'}
hasBin: true
dev: true
+ /ajv/6.12.6:
+ resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
+ dependencies:
+ fast-deep-equal: 3.1.3
+ fast-json-stable-stringify: 2.1.0
+ json-schema-traverse: 0.4.1
+ uri-js: 4.4.1
+ dev: true
+
/ajv/8.12.0:
resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
dependencies:
@@ -2266,6 +2502,11 @@ packages:
uri-js: 4.4.1
dev: true
+ /ansi-regex/5.0.1:
+ resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
+ engines: {node: '>=8'}
+ dev: true
+
/ansi-regex/6.0.1:
resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
engines: {node: '>=12'}
@@ -2307,6 +2548,42 @@ packages:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
dev: true
+ /array-includes/3.1.6:
+ resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.1.4
+ es-abstract: 1.21.1
+ get-intrinsic: 1.2.0
+ is-string: 1.0.7
+ dev: true
+
+ /array-union/2.1.0:
+ resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
+ engines: {node: '>=8'}
+ dev: true
+
+ /array.prototype.flat/1.3.1:
+ resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.1.4
+ es-abstract: 1.21.1
+ es-shim-unscopables: 1.0.0
+ dev: true
+
+ /array.prototype.flatmap/1.3.1:
+ resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.1.4
+ es-abstract: 1.21.1
+ es-shim-unscopables: 1.0.0
+ dev: true
+
/artalk/2.4.4:
resolution: {integrity: sha512-8O/FjQM+oFnfsfouuej2qjRNfV9/0JJR2jI9vS7neI8zTa4xqu0PChDIR0CtZG8ze0eOKI0taTlEFhmahJUJIQ==}
dependencies:
@@ -2360,38 +2637,38 @@ packages:
engines: {node: '>= 0.4'}
dev: true
- /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.12:
+ /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.21.0:
resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.20.14
- '@babel/core': 7.20.12
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.12:
+ /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.21.0:
resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0
core-js-compat: 3.27.2
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.12:
+ /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.21.0:
resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -2499,6 +2776,12 @@ packages:
engines: {node: '>=6'}
dev: true
+ /builtins/5.0.1:
+ resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==}
+ dependencies:
+ semver: 7.3.8
+ dev: true
+
/cac/6.7.14:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
@@ -2511,6 +2794,16 @@ packages:
get-intrinsic: 1.2.0
dev: true
+ /callsites/3.1.0:
+ resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /camelcase/5.3.1:
+ resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
+ engines: {node: '>=6'}
+ dev: true
+
/caniuse-lite/1.0.30001450:
resolution: {integrity: sha512-qMBmvmQmFXaSxexkjjfMvD5rnDL0+m+dUMZKoDYsGG8iZN29RuYh9eRoMvKsT6uMAWlyUUGDEQGJJYjzCIO9ew==}
dev: true
@@ -2537,8 +2830,8 @@ packages:
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
dev: true
- /chart.js/4.2.0:
- resolution: {integrity: sha512-wbtcV+QKeH0F7gQZaCJEIpsNriFheacouJQTVIjITi3eQA8bTlIBoknz0+dgV79aeKLNMAX+nDslIVE/nJ3rzA==}
+ /chart.js/4.2.1:
+ resolution: {integrity: sha512-6YbpQ0nt3NovAgOzbkSSeeAQu/3za1319dPUQTXn9WcOpywM8rGKxJHrhS8V8xEkAlk8YhEfjbuAPfUyp6jIsw==}
engines: {pnpm: ^7.0.0}
dependencies:
'@kurkle/color': 0.3.2
@@ -2595,6 +2888,14 @@ packages:
engines: {node: '>=6'}
dev: true
+ /cliui/6.0.0:
+ resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
+ dependencies:
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wrap-ansi: 6.2.0
+ dev: true
+
/clone/1.0.4:
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
engines: {node: '>=0.8'}
@@ -2719,6 +3020,12 @@ packages:
engines: {node: '>= 6'}
dev: true
+ /cssesc/3.0.0:
+ resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
+ engines: {node: '>=4'}
+ hasBin: true
+ dev: true
+
/csstype/2.6.21:
resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==}
dev: true
@@ -3001,15 +3308,15 @@ packages:
d3-zoom: 3.0.0
dev: true
- /dagre-d3-es/7.0.6:
- resolution: {integrity: sha512-CaaE/nZh205ix+Up4xsnlGmpog5GGm81Upi2+/SBHxwNwrccBb3K51LzjZ1U6hgvOlAEUsVWf1xSTzCyKpJ6+Q==}
+ /dagre-d3-es/7.0.9:
+ resolution: {integrity: sha512-rYR4QfVmy+sR44IBDvVtcAmOReGBvRCWDpO2QjYwqgh9yijw6eSHBqaPG/LIOEy7aBsniLvtMW6pg19qJhq60w==}
dependencies:
d3: 7.8.2
lodash-es: 4.17.21
dev: true
- /dashjs/4.5.2:
- resolution: {integrity: sha512-WXPk0lPDSaHjiSVoVRh2jQPiMmB1alKUH8hV2CVmaI0vPUeT1wIY7madVE38SthfOmwS9IJViv1RrxrxdGjElg==}
+ /dashjs/4.6.0:
+ resolution: {integrity: sha512-0PDoSBM9PXb+Io0pRnw2CmO7aV9W8FC/BqBRNhLxzM3/e5Kfj7BLy0OWkkSB58ULg6Md6r+6jkGOTUhut/35rg==}
dependencies:
bcp-47-match: 1.0.3
bcp-47-normalize: 1.1.1
@@ -3019,6 +3326,7 @@ packages:
html-entities: 1.4.0
imsc: 1.1.3
localforage: 1.10.0
+ path-browserify: 1.0.1
ua-parser-js: 1.0.33
dev: true
@@ -3026,6 +3334,17 @@ packages:
resolution: {integrity: sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==}
dev: true
+ /debug/3.2.7:
+ resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: 2.1.2
+ dev: true
+
/debug/4.3.4:
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
@@ -3038,6 +3357,15 @@ packages:
ms: 2.1.2
dev: true
+ /decamelize/1.2.0:
+ resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /deep-is/0.1.4:
+ resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
+ dev: true
+
/deepmerge/4.3.0:
resolution: {integrity: sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==}
engines: {node: '>=0.10.0'}
@@ -3063,6 +3391,10 @@ packages:
robust-predicates: 3.0.1
dev: true
+ /dijkstrajs/1.0.2:
+ resolution: {integrity: sha512-QV6PMaHTCNmKSeP6QoXhVTw9snc9VD8MulTT0Bd99Pacp4SS1cjcrYPgBPmibqKVtMJJfqC6XvOXgPMEEPH/fg==}
+ dev: true
+
/dir-glob/3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
@@ -3070,6 +3402,20 @@ packages:
path-type: 4.0.0
dev: true
+ /doctrine/2.1.0:
+ resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ esutils: 2.0.3
+ dev: true
+
+ /doctrine/3.0.0:
+ resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ esutils: 2.0.3
+ dev: true
+
/dom-serializer/2.0.0:
resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
dependencies:
@@ -3089,8 +3435,8 @@ packages:
domelementtype: 2.3.0
dev: true
- /dompurify/2.4.1:
- resolution: {integrity: sha512-ewwFzHzrrneRjxzmK6oVz/rZn9VWspGFRDb4/rRtIsM1n36t9AKma/ye8syCpcw+XJ25kOK/hOG7t1j2I2yBqA==}
+ /dompurify/2.4.3:
+ resolution: {integrity: sha512-q6QaLcakcRjebxjg8/+NP+h0rPfatOgOzc46Fst9VAA3jF2ApfKBNKMzdP4DYTqtUMXSCd5pRS/8Po/OmoCHZQ==}
dev: true
/domutils/3.0.1:
@@ -3120,6 +3466,18 @@ packages:
resolution: {integrity: sha512-8s9aJf3YiokIrR+HOQzNOGmEHFXVUQzXM/JaViVvKdCkNUjS+lEa/uT7xw3nDVG/IgfxiIwUGkwJ6AR1pTpYsQ==}
dev: true
+ /elkjs/0.8.2:
+ resolution: {integrity: sha512-L6uRgvZTH+4OF5NE/MBbzQx/WYpru1xCBE9respNj6qznEewGUIfhzmm7horWWxbNO2M0WckQypGctR8lH79xQ==}
+ dev: true
+
+ /emoji-regex/8.0.0:
+ resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
+ dev: true
+
+ /encode-utf8/1.0.3:
+ resolution: {integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==}
+ dev: true
+
/entities/3.0.1:
resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==}
engines: {node: '>=0.12'}
@@ -3184,6 +3542,12 @@ packages:
has-tostringtag: 1.0.0
dev: true
+ /es-shim-unscopables/1.0.0:
+ resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
+ dependencies:
+ has: 1.0.3
+ dev: true
+
/es-to-primitive/1.2.1:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
@@ -3237,17 +3601,293 @@ packages:
engines: {node: '>=0.8.0'}
dev: true
+ /escape-string-regexp/4.0.0:
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
+ engines: {node: '>=10'}
+ dev: true
+
+ /eslint-config-standard/17.0.0_hwjsujmtoc7k47rjh5qfu7woty:
+ resolution: {integrity: sha512-/2ks1GKyqSOkH7JFvXJicu0iMpoojkwB+f5Du/1SC0PtBL+s8v30k9njRZ21pm2drKYm2342jFnGWzttxPmZVg==}
+ peerDependencies:
+ eslint: ^8.0.1
+ eslint-plugin-import: ^2.25.2
+ eslint-plugin-n: ^15.0.0
+ eslint-plugin-promise: ^6.0.0
+ dependencies:
+ eslint: 8.35.0
+ eslint-plugin-import: 2.27.5_ajyizmi44oc3hrc35l6ndh7p4e
+ eslint-plugin-n: 15.6.1_eslint@8.35.0
+ eslint-plugin-promise: 6.1.1_eslint@8.35.0
+ dev: true
+
+ /eslint-import-resolver-node/0.3.7:
+ resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==}
+ dependencies:
+ debug: 3.2.7
+ is-core-module: 2.11.0
+ resolve: 1.22.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /eslint-module-utils/2.7.4_qynxowrxvm2kj5rbowcxf5maga:
+ resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: '*'
+ eslint-import-resolver-node: '*'
+ eslint-import-resolver-typescript: '*'
+ eslint-import-resolver-webpack: '*'
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ eslint:
+ optional: true
+ eslint-import-resolver-node:
+ optional: true
+ eslint-import-resolver-typescript:
+ optional: true
+ eslint-import-resolver-webpack:
+ optional: true
+ dependencies:
+ '@typescript-eslint/parser': 5.54.0_gv45cv5f5y7bgncpx37yd3rwim
+ debug: 3.2.7
+ eslint: 8.35.0
+ eslint-import-resolver-node: 0.3.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /eslint-plugin-es/4.1.0_eslint@8.35.0:
+ resolution: {integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==}
+ engines: {node: '>=8.10.0'}
+ peerDependencies:
+ eslint: '>=4.19.1'
+ dependencies:
+ eslint: 8.35.0
+ eslint-utils: 2.1.0
+ regexpp: 3.2.0
+ dev: true
+
+ /eslint-plugin-import/2.27.5_ajyizmi44oc3hrc35l6ndh7p4e:
+ resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ dependencies:
+ '@typescript-eslint/parser': 5.54.0_gv45cv5f5y7bgncpx37yd3rwim
+ array-includes: 3.1.6
+ array.prototype.flat: 1.3.1
+ array.prototype.flatmap: 1.3.1
+ debug: 3.2.7
+ doctrine: 2.1.0
+ eslint: 8.35.0
+ eslint-import-resolver-node: 0.3.7
+ eslint-module-utils: 2.7.4_qynxowrxvm2kj5rbowcxf5maga
+ has: 1.0.3
+ is-core-module: 2.11.0
+ is-glob: 4.0.3
+ minimatch: 3.1.2
+ object.values: 1.1.6
+ resolve: 1.22.1
+ semver: 6.3.0
+ tsconfig-paths: 3.14.2
+ transitivePeerDependencies:
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - supports-color
+ dev: true
+
+ /eslint-plugin-n/15.6.1_eslint@8.35.0:
+ resolution: {integrity: sha512-R9xw9OtCRxxaxaszTQmQAlPgM+RdGjaL1akWuY/Fv9fRAi8Wj4CUKc6iYVG8QNRjRuo8/BqVYIpfqberJUEacA==}
+ engines: {node: '>=12.22.0'}
+ peerDependencies:
+ eslint: '>=7.0.0'
+ dependencies:
+ builtins: 5.0.1
+ eslint: 8.35.0
+ eslint-plugin-es: 4.1.0_eslint@8.35.0
+ eslint-utils: 3.0.0_eslint@8.35.0
+ ignore: 5.2.4
+ is-core-module: 2.11.0
+ minimatch: 3.1.2
+ resolve: 1.22.1
+ semver: 7.3.8
+ dev: true
+
+ /eslint-plugin-promise/6.1.1_eslint@8.35.0:
+ resolution: {integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^7.0.0 || ^8.0.0
+ dependencies:
+ eslint: 8.35.0
+ dev: true
+
+ /eslint-plugin-vue/9.9.0_eslint@8.35.0:
+ resolution: {integrity: sha512-YbubS7eK0J7DCf0U2LxvVP7LMfs6rC6UltihIgval3azO3gyDwEGVgsCMe1TmDiEkl6GdMKfRpaME6QxIYtzDQ==}
+ engines: {node: ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.2.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ eslint: 8.35.0
+ eslint-utils: 3.0.0_eslint@8.35.0
+ natural-compare: 1.4.0
+ nth-check: 2.1.1
+ postcss-selector-parser: 6.0.11
+ semver: 7.3.8
+ vue-eslint-parser: 9.1.0_eslint@8.35.0
+ xml-name-validator: 4.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /eslint-scope/5.1.1:
+ resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 4.3.0
+ dev: true
+
+ /eslint-scope/7.1.1:
+ resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 5.3.0
+ dev: true
+
+ /eslint-utils/2.1.0:
+ resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==}
+ engines: {node: '>=6'}
+ dependencies:
+ eslint-visitor-keys: 1.3.0
+ dev: true
+
+ /eslint-utils/3.0.0_eslint@8.35.0:
+ resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
+ engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
+ peerDependencies:
+ eslint: '>=5'
+ dependencies:
+ eslint: 8.35.0
+ eslint-visitor-keys: 2.1.0
+ dev: true
+
+ /eslint-visitor-keys/1.3.0:
+ resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==}
+ engines: {node: '>=4'}
+ dev: true
+
+ /eslint-visitor-keys/2.1.0:
+ resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
+ engines: {node: '>=10'}
+ dev: true
+
+ /eslint-visitor-keys/3.3.0:
+ resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dev: true
+
+ /eslint/8.35.0:
+ resolution: {integrity: sha512-BxAf1fVL7w+JLRQhWl2pzGeSiGqbWumV4WNvc9Rhp6tiCtm4oHnyPBSEtMGZwrQgudFQ+otqzWoPB7x+hxoWsw==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ hasBin: true
+ dependencies:
+ '@eslint/eslintrc': 2.0.0
+ '@eslint/js': 8.35.0
+ '@humanwhocodes/config-array': 0.11.8
+ '@humanwhocodes/module-importer': 1.0.1
+ '@nodelib/fs.walk': 1.2.8
+ ajv: 6.12.6
+ chalk: 4.1.2
+ cross-spawn: 7.0.3
+ debug: 4.3.4
+ doctrine: 3.0.0
+ escape-string-regexp: 4.0.0
+ eslint-scope: 7.1.1
+ eslint-utils: 3.0.0_eslint@8.35.0
+ eslint-visitor-keys: 3.3.0
+ espree: 9.4.1
+ esquery: 1.5.0
+ esutils: 2.0.3
+ fast-deep-equal: 3.1.3
+ file-entry-cache: 6.0.1
+ find-up: 5.0.0
+ glob-parent: 6.0.2
+ globals: 13.20.0
+ grapheme-splitter: 1.0.4
+ ignore: 5.2.4
+ import-fresh: 3.3.0
+ imurmurhash: 0.1.4
+ is-glob: 4.0.3
+ is-path-inside: 3.0.3
+ js-sdsl: 4.3.0
+ js-yaml: 4.1.0
+ json-stable-stringify-without-jsonify: 1.0.1
+ levn: 0.4.1
+ lodash.merge: 4.6.2
+ minimatch: 3.1.2
+ natural-compare: 1.4.0
+ optionator: 0.9.1
+ regexpp: 3.2.0
+ strip-ansi: 6.0.1
+ strip-json-comments: 3.1.1
+ text-table: 0.2.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/esm/3.2.25:
resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==}
engines: {node: '>=6'}
dev: true
+ /espree/9.4.1:
+ resolution: {integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ acorn: 8.8.2
+ acorn-jsx: 5.3.2_acorn@8.8.2
+ eslint-visitor-keys: 3.3.0
+ dev: true
+
/esprima/4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
engines: {node: '>=4'}
hasBin: true
dev: true
+ /esquery/1.5.0:
+ resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
+ engines: {node: '>=0.10'}
+ dependencies:
+ estraverse: 5.3.0
+ dev: true
+
+ /esrecurse/4.3.0:
+ resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
+ engines: {node: '>=4.0'}
+ dependencies:
+ estraverse: 5.3.0
+ dev: true
+
+ /estraverse/4.3.0:
+ resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
+ engines: {node: '>=4.0'}
+ dev: true
+
+ /estraverse/5.3.0:
+ resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
+ engines: {node: '>=4.0'}
+ dev: true
+
/estree-walker/1.0.1:
resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==}
dev: true
@@ -3265,13 +3905,13 @@ packages:
resolution: {integrity: sha512-jrxnPsCGqng1UZuEp9DecX/AuSyAszATSjf4oEcRxvfxa1Oux4KkIPKBAAWWnpdwfARtr+Q0o9aPYWjsROD7ug==}
dev: true
- /execa/6.1.0:
- resolution: {integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ /execa/7.0.0:
+ resolution: {integrity: sha512-tQbH0pH/8LHTnwTrsKWideqi6rFB/QNUawEwrn+WHyz7PX1Tuz2u7wfTvbaNBdP5JD5LVWxNo8/A8CHNZ3bV6g==}
+ engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
dependencies:
cross-spawn: 7.0.3
get-stream: 6.0.1
- human-signals: 3.0.1
+ human-signals: 4.3.0
is-stream: 3.0.0
merge-stream: 2.0.0
npm-run-path: 5.1.0
@@ -3310,6 +3950,10 @@ packages:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
dev: true
+ /fast-levenshtein/2.0.6:
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
+ dev: true
+
/fastq/1.15.0:
resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
dependencies:
@@ -3320,6 +3964,13 @@ packages:
resolution: {integrity: sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw==}
dev: true
+ /file-entry-cache/6.0.1:
+ resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
+ engines: {node: ^10.12.0 || >=12.0.0}
+ dependencies:
+ flat-cache: 3.0.4
+ dev: true
+
/filelist/1.0.4:
resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
dependencies:
@@ -3333,6 +3984,34 @@ packages:
to-regex-range: 5.0.1
dev: true
+ /find-up/4.1.0:
+ resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
+ engines: {node: '>=8'}
+ dependencies:
+ locate-path: 5.0.0
+ path-exists: 4.0.0
+ dev: true
+
+ /find-up/5.0.0:
+ resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
+ engines: {node: '>=10'}
+ dependencies:
+ locate-path: 6.0.0
+ path-exists: 4.0.0
+ dev: true
+
+ /flat-cache/3.0.4:
+ resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
+ engines: {node: ^10.12.0 || >=12.0.0}
+ dependencies:
+ flatted: 3.2.7
+ rimraf: 3.0.2
+ dev: true
+
+ /flatted/3.2.7:
+ resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
+ dev: true
+
/flowchart.ts/0.1.2:
resolution: {integrity: sha512-4N8U2gXTkWUYh57SkCYwnSBM2B9Djia+JjClx/rLA13m0xz2S5BZht/9DvTZH5yXGZkmk7NGxGB15tnbUSI6mg==}
dependencies:
@@ -3405,6 +4084,11 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
+ /get-caller-file/2.0.5:
+ resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
+ engines: {node: 6.* || 8.* || >= 10.*}
+ dev: true
+
/get-intrinsic/1.2.0:
resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==}
dependencies:
@@ -3430,8 +4114,8 @@ packages:
get-intrinsic: 1.2.0
dev: true
- /giscus/1.2.6:
- resolution: {integrity: sha512-VqMWmCdlUk9krX2M3oMgn9/Y6XEbRXRHtfhNTuRn/AdeGOeko54OFEIsizQ/nYWymuUNGZR48KGptCtYL77rtA==}
+ /giscus/1.2.8:
+ resolution: {integrity: sha512-pufrgQYt1W+4ztiWp/PilLPN8NdyKvpbQ8jNqbAa1g84t6qqyevXHfkOYCi4x4d+y191vJAUc6seL1Dq74yUeA==}
dependencies:
lit: 2.6.1
dev: true
@@ -3443,6 +4127,13 @@ packages:
is-glob: 4.0.3
dev: true
+ /glob-parent/6.0.2:
+ resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
+ engines: {node: '>=10.13.0'}
+ dependencies:
+ is-glob: 4.0.3
+ dev: true
+
/glob/7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
dependencies:
@@ -3459,6 +4150,13 @@ packages:
engines: {node: '>=4'}
dev: true
+ /globals/13.20.0:
+ resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ type-fest: 0.20.2
+ dev: true
+
/globalthis/1.0.3:
resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
engines: {node: '>= 0.4'}
@@ -3466,6 +4164,18 @@ packages:
define-properties: 1.1.4
dev: true
+ /globby/11.1.0:
+ resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
+ engines: {node: '>=10'}
+ dependencies:
+ array-union: 2.1.0
+ dir-glob: 3.0.1
+ fast-glob: 3.2.12
+ ignore: 5.2.4
+ merge2: 1.4.1
+ slash: 3.0.0
+ dev: true
+
/globby/13.1.3:
resolution: {integrity: sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -3487,6 +4197,10 @@ packages:
resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
dev: true
+ /grapheme-splitter/1.0.4:
+ resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
+ dev: true
+
/gray-matter/4.0.3:
resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==}
engines: {node: '>=6.0'}
@@ -3560,8 +4274,8 @@ packages:
resolution: {integrity: sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==}
dev: true
- /hls.js/1.3.2:
- resolution: {integrity: sha512-qb9xNRBnYoNuJfACsolKzlzNxl0ietBxC6Aa1H45GZTkmg3XjEc7gfXThCINCw/0F+sm3n0x1m4toqWecxjWwA==}
+ /hls.js/1.3.4:
+ resolution: {integrity: sha512-iFEwVqtEDk6sKotcTwtJ5OMo/nuDTk9PrpB8FI2J2WYf8EriTVfR4FaK0aNyYtwbYeRSWCXJKlz23xeREdlNYg==}
dev: true
/html-entities/1.4.0:
@@ -3577,9 +4291,15 @@ packages:
entities: 4.4.0
dev: true
- /human-signals/3.0.1:
- resolution: {integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==}
- engines: {node: '>=12.20.0'}
+ /human-signals/4.3.0:
+ resolution: {integrity: sha512-zyzVyMjpGBX2+6cDVZeFPCdtOtdsxOeseRhB9tkQ6xXmGUNrcnBzdEKPy3VPNYz+4gy1oukVOXcrJCunSyc6QQ==}
+ engines: {node: '>=14.18.0'}
+ dev: true
+
+ /husky/8.0.3:
+ resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==}
+ engines: {node: '>=14'}
+ hasBin: true
dev: true
/iconv-lite/0.6.3:
@@ -3610,12 +4330,25 @@ packages:
resolution: {integrity: sha512-WDxL3Hheb1JkRN3sQkyujNlL/xRjAo3rJtaU5xeufUauG66JdMr32bLj4gF+vWl84DIA3Zxw7tiAjneYzRRw+w==}
dev: true
+ /import-fresh/3.3.0:
+ resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
+ engines: {node: '>=6'}
+ dependencies:
+ parent-module: 1.0.1
+ resolve-from: 4.0.0
+ dev: true
+
/imsc/1.1.3:
resolution: {integrity: sha512-IY0hMkVTNoqoYwKEp5UvNNKp/A5jeJUOrIO7judgOyhHT+xC6PA4VBOMAOhdtAYbMRHx9DTgI8p6Z6jhYQPFDA==}
dependencies:
sax: 1.2.1
dev: true
+ /imurmurhash/0.1.4:
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
+ engines: {node: '>=0.8.19'}
+ dev: true
+
/inflight/1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
dependencies:
@@ -3720,6 +4453,11 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
+ /is-fullwidth-code-point/3.0.0:
+ resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
+ engines: {node: '>=8'}
+ dev: true
+
/is-glob/4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
@@ -3758,6 +4496,11 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
+ /is-path-inside/3.0.3:
+ resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
+ engines: {node: '>=8'}
+ dev: true
+
/is-regex/1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
@@ -3847,6 +4590,10 @@ packages:
supports-color: 7.2.0
dev: true
+ /js-sdsl/4.3.0:
+ resolution: {integrity: sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==}
+ dev: true
+
/js-tokens/4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
dev: true
@@ -3859,6 +4606,13 @@ packages:
esprima: 4.0.1
dev: true
+ /js-yaml/4.1.0:
+ resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
+ hasBin: true
+ dependencies:
+ argparse: 2.0.1
+ dev: true
+
/jsesc/0.5.0:
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
@@ -3870,6 +4624,10 @@ packages:
hasBin: true
dev: true
+ /json-schema-traverse/0.4.1:
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
+ dev: true
+
/json-schema-traverse/1.0.0:
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
dev: true
@@ -3878,6 +4636,17 @@ packages:
resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
dev: true
+ /json-stable-stringify-without-jsonify/1.0.1:
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
+ dev: true
+
+ /json5/1.0.2:
+ resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
+ hasBin: true
+ dependencies:
+ minimist: 1.2.8
+ dev: true
+
/json5/2.2.3:
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
engines: {node: '>=6'}
@@ -3926,6 +4695,14 @@ packages:
engines: {node: '>=6'}
dev: true
+ /levn/0.4.1:
+ resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
+ engines: {node: '>= 0.8.0'}
+ dependencies:
+ prelude-ls: 1.2.1
+ type-check: 0.4.0
+ dev: true
+
/lie/3.1.1:
resolution: {integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==}
dependencies:
@@ -3974,6 +4751,20 @@ packages:
lie: 3.1.1
dev: true
+ /locate-path/5.0.0:
+ resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
+ engines: {node: '>=8'}
+ dependencies:
+ p-locate: 4.1.0
+ dev: true
+
+ /locate-path/6.0.0:
+ resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
+ engines: {node: '>=10'}
+ dependencies:
+ p-locate: 5.0.0
+ dev: true
+
/lodash-es/4.17.21:
resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
dev: true
@@ -3982,6 +4773,10 @@ packages:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
dev: true
+ /lodash.merge/4.6.2:
+ resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
+ dev: true
+
/lodash.sortby/4.7.0:
resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
dev: true
@@ -4004,14 +4799,21 @@ packages:
yallist: 3.1.1
dev: true
+ /lru-cache/6.0.0:
+ resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
+ engines: {node: '>=10'}
+ dependencies:
+ yallist: 4.0.0
+ dev: true
+
/magic-string/0.25.9:
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
dependencies:
sourcemap-codec: 1.4.8
dev: true
- /markdown-it-anchor/8.6.6_203ea4fed94a963ea5da6bb0985d1ff7:
- resolution: {integrity: sha512-jRW30YGywD2ESXDc+l17AiritL0uVaSnWsb26f+68qaW9zgbIIr1f4v2Nsvc0+s0Z2N3uX6t/yAw7BwCQ1wMsA==}
+ /markdown-it-anchor/8.6.7_ea7kj7wzjkld5jo2noyjqxi764:
+ resolution: {integrity: sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA==}
peerDependencies:
'@types/markdown-it': '*'
markdown-it: '*'
@@ -4071,19 +4873,25 @@ packages:
engines: {node: '>= 8'}
dev: true
- /mermaid/9.3.0:
- resolution: {integrity: sha512-mGl0BM19TD/HbU/LmlaZbjBi//tojelg8P/mxD6pPZTAYaI+VawcyBdqRsoUHSc7j71PrMdJ3HBadoQNdvP5cg==}
+ /mermaid/10.0.1:
+ resolution: {integrity: sha512-3O3QfTE0Ohhe3jbzsiQImKKnnARoZS3QQt/cyLbfnFaKN5fRs0tf0cOznCTpZHyB/r505S1qGrJJNYXxmMcYyg==}
dependencies:
'@braintree/sanitize-url': 6.0.2
+ cytoscape: 3.23.0
+ cytoscape-cose-bilkent: 4.1.0_cytoscape@3.23.0
+ cytoscape-fcose: 2.2.0_cytoscape@3.23.0
d3: 7.8.2
- dagre-d3-es: 7.0.6
- dompurify: 2.4.1
+ dagre-d3-es: 7.0.9
+ dayjs: 1.11.7
+ dompurify: 2.4.3
+ elkjs: 0.8.2
khroma: 2.0.0
lodash-es: 4.17.21
- moment-mini: 2.29.4
non-layered-tidy-tree-layout: 2.0.2
stylis: 4.1.3
+ ts-dedent: 2.2.0
uuid: 9.0.0
+ web-worker: 1.2.0
dev: true
/mhchemparser/4.1.1:
@@ -4121,6 +4929,10 @@ packages:
brace-expansion: 2.0.1
dev: true
+ /minimist/1.2.8:
+ resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
+ dev: true
+
/mitt/3.0.0:
resolution: {integrity: sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ==}
dev: true
@@ -4129,10 +4941,6 @@ packages:
resolution: {integrity: sha512-7NO5s6n10TIV96d4g2uDpG7ZDpIhMh0QNfGdJw/W47JswFcosz457wqz/b5sAKvl12sxINGFCn80NZHKwxQEXA==}
dev: true
- /moment-mini/2.29.4:
- resolution: {integrity: sha512-uhXpYwHFeiTbY9KSgPPRoo1nt8OxNVdMVoTBYHfSEKeRkIkwGpO+gERmhuhBtzfaeOyTkykSrm2+noJBgqt3Hg==}
- dev: true
-
/mpegts.js/1.7.2:
resolution: {integrity: sha512-qQ1ELBDC4IAqpULFuFzp3hoQeKwD5BCR3UM9Lk2+kj9jCWcXl19spF7PdzX0ZljghPHAj/VL2ajBbGyMWk2fgA==}
dependencies:
@@ -4150,6 +4958,14 @@ packages:
hasBin: true
dev: true
+ /natural-compare-lite/1.4.0:
+ resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
+ dev: true
+
+ /natural-compare/1.4.0:
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
+ dev: true
+
/node-releases/2.0.10:
resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==}
dev: true
@@ -4200,6 +5016,15 @@ packages:
object-keys: 1.1.1
dev: true
+ /object.values/1.1.6:
+ resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.1.4
+ es-abstract: 1.21.1
+ dev: true
+
/once/1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
dependencies:
@@ -4226,6 +5051,18 @@ packages:
kind-of: 6.0.3
dev: true
+ /optionator/0.9.1:
+ resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==}
+ engines: {node: '>= 0.8.0'}
+ dependencies:
+ deep-is: 0.1.4
+ fast-levenshtein: 2.0.6
+ levn: 0.4.1
+ prelude-ls: 1.2.1
+ type-check: 0.4.0
+ word-wrap: 1.2.3
+ dev: true
+
/ora/6.1.2:
resolution: {integrity: sha512-EJQ3NiP5Xo94wJXIzAyOtSb0QEIAUu7m8t6UZ9krbz0vAJqr92JpcK/lEXg91q6B9pEGqrykkd2EQplnifDSBw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -4241,6 +5078,46 @@ packages:
wcwidth: 1.0.1
dev: true
+ /p-limit/2.3.0:
+ resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
+ engines: {node: '>=6'}
+ dependencies:
+ p-try: 2.2.0
+ dev: true
+
+ /p-limit/3.1.0:
+ resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
+ engines: {node: '>=10'}
+ dependencies:
+ yocto-queue: 0.1.0
+ dev: true
+
+ /p-locate/4.1.0:
+ resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
+ engines: {node: '>=8'}
+ dependencies:
+ p-limit: 2.3.0
+ dev: true
+
+ /p-locate/5.0.0:
+ resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
+ engines: {node: '>=10'}
+ dependencies:
+ p-limit: 3.1.0
+ dev: true
+
+ /p-try/2.2.0:
+ resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /parent-module/1.0.1:
+ resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
+ engines: {node: '>=6'}
+ dependencies:
+ callsites: 3.1.0
+ dev: true
+
/parse5-htmlparser2-tree-adapter/7.0.0:
resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==}
dependencies:
@@ -4254,6 +5131,15 @@ packages:
entities: 4.4.0
dev: true
+ /path-browserify/1.0.1:
+ resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
+ dev: true
+
+ /path-exists/4.0.0:
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
+ engines: {node: '>=8'}
+ dev: true
+
/path-is-absolute/1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
@@ -4278,8 +5164,8 @@ packages:
engines: {node: '>=8'}
dev: true
- /photoswipe/5.3.5:
- resolution: {integrity: sha512-90JeebKBhjz1co9goGJ4vjDK84YhGKbLO8J/aKcoWS/OGddVZB77ONIs7igUKa0IB1HozTs0BiS184wzZCghMw==}
+ /photoswipe/5.3.6:
+ resolution: {integrity: sha512-v7e8iMfaPUujTACYsK5HBCCtFoW9n2dMZmjIlbvFS2oSpTQmPrfc3PrWnGx8OGY3jNOKho8JC8L277+m+9ag9Q==}
engines: {node: '>= 0.12.0'}
dev: true
@@ -4302,6 +5188,11 @@ packages:
url-polyfill: 1.1.12
dev: true
+ /pngjs/5.0.0:
+ resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==}
+ engines: {node: '>=10.13.0'}
+ dev: true
+
/postcss-load-config/4.0.1_postcss@8.4.21:
resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
engines: {node: '>= 14'}
@@ -4319,6 +5210,14 @@ packages:
yaml: 2.2.1
dev: true
+ /postcss-selector-parser/6.0.11:
+ resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==}
+ engines: {node: '>=4'}
+ dependencies:
+ cssesc: 3.0.0
+ util-deprecate: 1.0.2
+ dev: true
+
/postcss-value-parser/4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
dev: true
@@ -4332,6 +5231,11 @@ packages:
source-map-js: 1.0.2
dev: true
+ /prelude-ls/1.2.1:
+ resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
+ engines: {node: '>= 0.8.0'}
+ dev: true
+
/pretty-bytes/5.6.0:
resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
engines: {node: '>=6'}
@@ -4347,6 +5251,17 @@ packages:
engines: {node: '>=6'}
dev: true
+ /qrcode/1.5.1:
+ resolution: {integrity: sha512-nS8NJ1Z3md8uTjKtP+SGGhfqmTCs5flU/xR623oI0JX+Wepz9R8UrRVCTBTJm3qGw3rH6jJ6MUHjkDx15cxSSg==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+ dependencies:
+ dijkstrajs: 1.0.2
+ encode-utf8: 1.0.3
+ pngjs: 5.0.0
+ yargs: 15.4.1
+ dev: true
+
/queue-microtask/1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
dev: true
@@ -4413,6 +5328,11 @@ packages:
functions-have-names: 1.2.3
dev: true
+ /regexpp/3.2.0:
+ resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
+ engines: {node: '>=8'}
+ dev: true
+
/regexpu-core/5.2.2:
resolution: {integrity: sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==}
engines: {node: '>=4'}
@@ -4440,11 +5360,25 @@ packages:
jsesc: 0.5.0
dev: true
+ /require-directory/2.1.1:
+ resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/require-from-string/2.0.2:
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
engines: {node: '>=0.10.0'}
dev: true
+ /require-main-filename/2.0.0:
+ resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
+ dev: true
+
+ /resolve-from/4.0.0:
+ resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
+ engines: {node: '>=4'}
+ dev: true
+
/resolve/1.22.1:
resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==}
hasBin: true
@@ -4472,6 +5406,13 @@ packages:
engines: {node: '>=10.0.0'}
dev: true
+ /rimraf/3.0.2:
+ resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
+ hasBin: true
+ dependencies:
+ glob: 7.2.3
+ dev: true
+
/robust-predicates/3.0.1:
resolution: {integrity: sha512-ndEIpszUHiG4HtDsQLeIuMvRsDnn8c8rYStabochtUeCvfuvNptb5TUbVD68LRAILPX7p9nqQGh4xJgn3EHS/g==}
dev: true
@@ -4497,8 +5438,8 @@ packages:
fsevents: 2.3.2
dev: true
- /rollup/3.14.0:
- resolution: {integrity: sha512-o23sdgCLcLSe3zIplT9nQ1+r97okuaiR+vmAPZPTDYB7/f3tgWIYNyiQveMsZwshBT0is4eGax/HH83Q7CG+/Q==}
+ /rollup/3.18.0:
+ resolution: {integrity: sha512-J8C6VfEBjkvYPESMQYxKHxNOh4A5a3FlP+0BETGo34HEcE4eTlgCrO2+eWzlu2a/sHs2QUkZco+wscH7jhhgWg==}
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
optionalDependencies:
@@ -4531,8 +5472,8 @@ packages:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
dev: true
- /sass/1.58.0:
- resolution: {integrity: sha512-PiMJcP33DdKtZ/1jSjjqVIKihoDc6yWmYr9K/4r3fVVIEDAluD0q7XZiRKrNJcPK3qkLRF/79DND1H5q1LBjgg==}
+ /sass/1.58.3:
+ resolution: {integrity: sha512-Q7RaEtYf6BflYrQ+buPudKR26/lH+10EmO9bBqbmPh/KeLqv8bjpTNqxe71ocONqXq+jYiCbpPUmQMS+JJPk4A==}
engines: {node: '>=12.0.0'}
hasBin: true
dependencies:
@@ -4562,12 +5503,24 @@ packages:
hasBin: true
dev: true
+ /semver/7.3.8:
+ resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==}
+ engines: {node: '>=10'}
+ hasBin: true
+ dependencies:
+ lru-cache: 6.0.0
+ dev: true
+
/serialize-javascript/4.0.0:
resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==}
dependencies:
randombytes: 2.1.0
dev: true
+ /set-blocking/2.0.0:
+ resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
+ dev: true
+
/shebang-command/2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
@@ -4603,6 +5556,11 @@ packages:
sax: 1.2.4
dev: true
+ /slash/3.0.0:
+ resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
+ engines: {node: '>=8'}
+ dev: true
+
/slash/4.0.0:
resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
engines: {node: '>=12'}
@@ -4650,6 +5608,15 @@ packages:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
dev: true
+ /string-width/4.2.3:
+ resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
+ engines: {node: '>=8'}
+ dependencies:
+ emoji-regex: 8.0.0
+ is-fullwidth-code-point: 3.0.0
+ strip-ansi: 6.0.1
+ dev: true
+
/string.prototype.matchall/4.0.8:
resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==}
dependencies:
@@ -4694,6 +5661,13 @@ packages:
is-regexp: 1.0.0
dev: true
+ /strip-ansi/6.0.1:
+ resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
+ engines: {node: '>=8'}
+ dependencies:
+ ansi-regex: 5.0.1
+ dev: true
+
/strip-ansi/7.0.1:
resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==}
engines: {node: '>=12'}
@@ -4706,6 +5680,11 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
+ /strip-bom/3.0.0:
+ resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
+ engines: {node: '>=4'}
+ dev: true
+
/strip-comments/2.0.1:
resolution: {integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==}
engines: {node: '>=10'}
@@ -4716,6 +5695,11 @@ packages:
engines: {node: '>=12'}
dev: true
+ /strip-json-comments/3.1.1:
+ resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
+ engines: {node: '>=8'}
+ dev: true
+
/striptags/3.2.0:
resolution: {integrity: sha512-g45ZOGzHDMe2bdYMdIvdAfCQkCTDMGBazSw1ypMowwGIee7ZQ5dU0rBJ8Jqgl+jAKIv4dbeE1jscZq9wid1Tkw==}
dev: true
@@ -4769,6 +5753,10 @@ packages:
source-map-support: 0.5.21
dev: true
+ /text-table/0.2.0:
+ resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
+ dev: true
+
/to-fast-properties/2.0.0:
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
engines: {node: '>=4'}
@@ -4791,6 +5779,24 @@ packages:
resolution: {integrity: sha512-+1iDGY6NmOGidq7i7xZGA4cm8DAa6fqdYcvO5Z6yBevH++Bdo9Qt/mN0TzHUgcCcKv1gmh9+W5dHqz8pMWbCbg==}
dev: true
+ /ts-dedent/2.2.0:
+ resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==}
+ engines: {node: '>=6.10'}
+ dev: true
+
+ /tsconfig-paths/3.14.2:
+ resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==}
+ dependencies:
+ '@types/json5': 0.0.29
+ json5: 1.0.2
+ minimist: 1.2.8
+ strip-bom: 3.0.0
+ dev: true
+
+ /tslib/1.14.1:
+ resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
+ dev: true
+
/tslib/2.3.0:
resolution: {integrity: sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==}
dev: true
@@ -4799,8 +5805,25 @@ packages:
resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==}
dev: true
- /twikoo/1.6.9:
- resolution: {integrity: sha512-Umm2kqj4gPkTqxCbHpLO8QLq+T3fn4OPIa5hqW7amYj2aBVVOIdd3dsBbvE1sYT94GFu+Ivea/L41nR1g4lqqw==}
+ /tsutils/3.21.0_typescript@3.9.10:
+ resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
+ engines: {node: '>= 6'}
+ peerDependencies:
+ typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
+ dependencies:
+ tslib: 1.14.1
+ typescript: 3.9.10
+ dev: true
+
+ /twikoo/1.6.10:
+ resolution: {integrity: sha512-5CPfRUzd8kHvNB6ekYXvgEbsIEQuySBOm47VkMh3nI4rj79crT+2v9aCDVuson+KorEngdGfe5MOni0VKNblmQ==}
+ dev: true
+
+ /type-check/0.4.0:
+ resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
+ engines: {node: '>= 0.8.0'}
+ dependencies:
+ prelude-ls: 1.2.1
dev: true
/type-fest/0.16.0:
@@ -4808,6 +5831,11 @@ packages:
engines: {node: '>=10'}
dev: true
+ /type-fest/0.20.2:
+ resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
+ engines: {node: '>=10'}
+ dev: true
+
/typed-array-length/1.0.4:
resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
dependencies:
@@ -4816,6 +5844,12 @@ packages:
is-typed-array: 1.1.10
dev: true
+ /typescript/3.9.10:
+ resolution: {integrity: sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==}
+ engines: {node: '>=4.2.0'}
+ hasBin: true
+ dev: true
+
/ua-parser-js/1.0.33:
resolution: {integrity: sha512-RqshF7TPTE0XLYAqmjlu5cLLuGdKrNu9O1KLA/qp39QtbZwuzwv1dT46DZSopoUMsYgXpB3Cv8a03FI8b74oFQ==}
dev: true
@@ -4908,8 +5942,8 @@ packages:
hasBin: true
dev: true
- /vite/4.0.4:
- resolution: {integrity: sha512-xevPU7M8FU0i/80DMR+YhgrzR5KS2ORy1B4xcX/cXLsvnUWvfHuqMmVU6N0YiJ4JWGRJJsLCgjEzKjG9/GKoSw==}
+ /vite/4.1.4:
+ resolution: {integrity: sha512-3knk/HsbSTKEin43zHu7jTwYWv81f8kgAL99G5NWBcA1LKvtvcVAC4JjBH1arBunO9kQka+1oGbrMKOjk4ZrBg==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
@@ -4936,7 +5970,7 @@ packages:
esbuild: 0.16.17
postcss: 8.4.21
resolve: 1.22.1
- rollup: 3.14.0
+ rollup: 3.18.0
optionalDependencies:
fsevents: 2.3.2
dev: true
@@ -4956,6 +5990,24 @@ packages:
vue: 3.2.47
dev: true
+ /vue-eslint-parser/9.1.0_eslint@8.35.0:
+ resolution: {integrity: sha512-NGn/iQy8/Wb7RrRa4aRkokyCZfOUWk19OP5HP6JEozQFX5AoS/t+Z0ZN7FY4LlmWc4FNI922V7cvX28zctN8dQ==}
+ engines: {node: ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: '>=6.0.0'
+ dependencies:
+ debug: 4.3.4
+ eslint: 8.35.0
+ eslint-scope: 7.1.1
+ eslint-visitor-keys: 3.3.0
+ espree: 9.4.1
+ esquery: 1.5.0
+ lodash: 4.17.21
+ semver: 7.3.8
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/vue-router/4.1.6_vue@3.2.47:
resolution: {integrity: sha512-DYWYwsG6xNPmLq/FmZn8Ip+qrhFEzA14EI12MsMgVxvHFDYvlr4NXpVF5hrRH1wVcDP8fGi5F4rxuJSl8/r+EQ==}
peerDependencies:
@@ -4975,14 +6027,15 @@ packages:
'@vue/shared': 3.2.47
dev: true
- /vuepress-plugin-auto-catalog/2.0.0-beta.172_vuepress@2.0.0-beta.60:
- resolution: {integrity: sha512-/J4x5mBrgAkbi5gYjkBDAGfWQhX74R7lJq8tYxo4HUo/9ZDczO0LKVP7hZoWlaDGO89S1LadFpbun/DTVs2D0A==}
+ /vuepress-plugin-auto-catalog/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe:
+ resolution: {integrity: sha512-qY4kBglePu3L8Z41DZpOA1UNWc9RGs4df0ffDNQFmqXf+gMyNshA/43l8be/JgVbIh2GF+rlJAIvkdwuh7MmXQ==}
engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'}
peerDependencies:
+ '@vuepress/client': 2.0.0-beta.61
sass-loader: ^13.2.0
- vuepress: 2.0.0-beta.60
- vuepress-vite: 2.0.0-beta.60
- vuepress-webpack: 2.0.0-beta.60
+ vuepress: 2.0.0-beta.61
+ vuepress-vite: 2.0.0-beta.61
+ vuepress-webpack: 2.0.0-beta.61
peerDependenciesMeta:
'@vuepress/client':
optional: true
@@ -5001,28 +6054,29 @@ packages:
vuepress-webpack:
optional: true
dependencies:
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/core': 2.0.0-beta.60
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/core': 2.0.0-beta.61
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
vue: 3.2.47
vue-router: 4.1.6_vue@3.2.47
- vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc
- vuepress-plugin-components: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-plugin-sass-palette: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60
+ vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u
+ vuepress-plugin-components: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-plugin-sass-palette: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
transitivePeerDependencies:
- '@vue/composition-api'
- supports-color
dev: true
- /vuepress-plugin-blog2/2.0.0-beta.172_vuepress@2.0.0-beta.60:
- resolution: {integrity: sha512-6EVXWIotmf1PaW0xOU85HsvkcRuPNb0abXcsGUAQ1NknCumxLWaYAaHjY6Unnf/fFoDz3THmrAMoegUnwTBfTw==}
+ /vuepress-plugin-blog2/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe:
+ resolution: {integrity: sha512-0NzFK2+iCGjLr49qwu2q6J78/2HUuAq21AtqhrFmDZm2/OSIkI9SXZ/nUdhCLr3KBxNmnCU+IPN0ilvSyCLqRw==}
engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'}
peerDependencies:
- vuepress: 2.0.0-beta.60
- vuepress-vite: 2.0.0-beta.60
- vuepress-webpack: 2.0.0-beta.60
+ '@vuepress/client': 2.0.0-beta.61
+ vuepress: 2.0.0-beta.61
+ vuepress-vite: 2.0.0-beta.61
+ vuepress-webpack: 2.0.0-beta.61
peerDependenciesMeta:
'@vuepress/client':
optional: true
@@ -5035,27 +6089,29 @@ packages:
vuepress-webpack:
optional: true
dependencies:
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/core': 2.0.0-beta.60
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/core': 2.0.0-beta.61
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
chokidar: 3.5.3
vue: 3.2.47
vue-router: 4.1.6_vue@3.2.47
- vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc
- vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60
+ vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u
+ vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
transitivePeerDependencies:
+ - '@vue/composition-api'
- supports-color
dev: true
- /vuepress-plugin-comment2/2.0.0-beta.172_vuepress@2.0.0-beta.60:
- resolution: {integrity: sha512-9ptTMLGUxvOR8WkC1egn9AS+Ytr9jW0VW0ksLn4ZZ7lefbmALSpBi8qqkVFJmFpTgiPktta/TevAgQ5CPXQ1QA==}
+ /vuepress-plugin-comment2/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe:
+ resolution: {integrity: sha512-MV60V/yfVz+ZYTNcWXHJ/YLJgBFBhfWwntjUGOoJlvYbSswbxyxdQPtLpzJrB3LAN4qEy2I8hSOSgvTdKtDrZQ==}
engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'}
peerDependencies:
+ '@vuepress/client': 2.0.0-beta.61
sass-loader: ^13.2.0
- vuepress: 2.0.0-beta.60
- vuepress-vite: 2.0.0-beta.60
- vuepress-webpack: 2.0.0-beta.60
+ vuepress: 2.0.0-beta.61
+ vuepress-vite: 2.0.0-beta.61
+ vuepress-webpack: 2.0.0-beta.61
peerDependenciesMeta:
'@vuepress/client':
optional: true
@@ -5072,31 +6128,32 @@ packages:
vuepress-webpack:
optional: true
dependencies:
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
'@waline/client': 2.14.7
artalk: 2.4.4
- giscus: 1.2.6
- twikoo: 1.6.9
+ giscus: 1.2.8
+ twikoo: 1.6.10
vue: 3.2.47
vue-router: 4.1.6_vue@3.2.47
- vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc
- vuepress-plugin-sass-palette: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60
+ vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u
+ vuepress-plugin-sass-palette: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
transitivePeerDependencies:
- '@vue/composition-api'
- supports-color
dev: true
- /vuepress-plugin-components/2.0.0-beta.172_vuepress@2.0.0-beta.60:
- resolution: {integrity: sha512-2ajbcVQ4x9TSRBw72Fd4k+dHGAxx+MvEvsihxP5U3sL7MD+34ncR5AMsi27ahBkF3blcE4MFt9W+/AcC91CtLg==}
+ /vuepress-plugin-components/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe:
+ resolution: {integrity: sha512-y/dwVS6fKOXHj/o+cgXyIlDKmBZv+zJ7209tVixYrEBoFcM6onYA4/3Ed7TVO4QljsRphGsi5EqiFwC0Uk8c0A==}
engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'}
peerDependencies:
+ '@vuepress/client': 2.0.0-beta.61
sass-loader: ^13.2.0
- vuepress: 2.0.0-beta.60
- vuepress-vite: 2.0.0-beta.60
- vuepress-webpack: 2.0.0-beta.60
+ vuepress: 2.0.0-beta.61
+ vuepress-vite: 2.0.0-beta.61
+ vuepress-webpack: 2.0.0-beta.61
peerDependenciesMeta:
'@vuepress/client':
optional: true
@@ -5116,35 +6173,37 @@ packages:
optional: true
dependencies:
'@stackblitz/sdk': 1.8.2
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
- '@vueuse/core': 9.12.0_vue@3.2.47
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
+ '@vueuse/core': 9.13.0_vue@3.2.47
artplayer: 4.6.2
balloon-css: 1.2.0
- dashjs: 4.5.2
- hls.js: 1.3.2
+ dashjs: 4.6.0
+ hls.js: 1.3.4
mpegts.js: 1.7.2
plyr: 3.7.3
+ qrcode: 1.5.1
vue: 3.2.47
vue-router: 4.1.6_vue@3.2.47
- vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc
- vuepress-plugin-reading-time2: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-plugin-sass-palette: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60
+ vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u
+ vuepress-plugin-reading-time2: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-plugin-sass-palette: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
transitivePeerDependencies:
- '@vue/composition-api'
- supports-color
dev: true
- /vuepress-plugin-copy-code2/2.0.0-beta.172_vuepress@2.0.0-beta.60:
- resolution: {integrity: sha512-Ty1gVNvbSr2WJAcOTsCOorYhQNtScbOFSgJ5NCe544eJ4GylhV1WW+RhEL8g2GRNrG+JXxx8WHC2EMYsYD2Ghg==}
+ /vuepress-plugin-copy-code2/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe:
+ resolution: {integrity: sha512-SMLU92BmlbhRoYYUSrZVAubQ5nhYbNJKGg1hLNtmXcp/XxmNqQK8L9R9+o6u7YL7Xkle0R609eFveYqSYkBI8Q==}
engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'}
peerDependencies:
+ '@vuepress/client': 2.0.0-beta.61
sass-loader: ^13.2.0
- vuepress: 2.0.0-beta.60
- vuepress-vite: 2.0.0-beta.60
- vuepress-webpack: 2.0.0-beta.60
+ vuepress: 2.0.0-beta.61
+ vuepress-vite: 2.0.0-beta.61
+ vuepress-webpack: 2.0.0-beta.61
peerDependenciesMeta:
'@vuepress/client':
optional: true
@@ -5161,28 +6220,29 @@ packages:
vuepress-webpack:
optional: true
dependencies:
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
- '@vueuse/core': 9.12.0_vue@3.2.47
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
+ '@vueuse/core': 9.13.0_vue@3.2.47
balloon-css: 1.2.0
vue: 3.2.47
vue-router: 4.1.6_vue@3.2.47
- vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc
- vuepress-plugin-sass-palette: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60
+ vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u
+ vuepress-plugin-sass-palette: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
transitivePeerDependencies:
- '@vue/composition-api'
- supports-color
dev: true
- /vuepress-plugin-copyright2/2.0.0-beta.172_vuepress@2.0.0-beta.60:
- resolution: {integrity: sha512-RNaEPQ2o80XskWiGaF31yJhw7DCpuCMKzYwkQY9Gxk3rMbz72+lA48Ah/u6LQS61gUZxk+g50xMC+OdZwCFhuw==}
+ /vuepress-plugin-copyright2/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe:
+ resolution: {integrity: sha512-XmijINLqpG0Q7+VeIN08gwPpj6MwmONdau8QfzTu9NaFYNj7rg24Rs0pCMEwLxE8yoweh9A7zKKGfYrqUGXPRg==}
engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'}
peerDependencies:
- vuepress: 2.0.0-beta.60
- vuepress-vite: 2.0.0-beta.60
- vuepress-webpack: 2.0.0-beta.60
+ '@vuepress/client': 2.0.0-beta.61
+ vuepress: 2.0.0-beta.61
+ vuepress-vite: 2.0.0-beta.61
+ vuepress-webpack: 2.0.0-beta.61
peerDependenciesMeta:
'@vuepress/client':
optional: true
@@ -5195,26 +6255,26 @@ packages:
vuepress-webpack:
optional: true
dependencies:
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
- '@vueuse/core': 9.12.0_vue@3.2.47
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
+ '@vueuse/core': 9.13.0_vue@3.2.47
vue: 3.2.47
vue-router: 4.1.6_vue@3.2.47
- vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc
- vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60
+ vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u
+ vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
transitivePeerDependencies:
- '@vue/composition-api'
- supports-color
dev: true
- /vuepress-plugin-feed2/2.0.0-beta.172_vuepress@2.0.0-beta.60:
- resolution: {integrity: sha512-ce/nOdrdBcgxYc18KdUS9on3NRSKpOarj2/OONoInT9Uk74nAVR0SpFwPkWwI3rdGiHmbzJZ3Aj/Yy0oQeklVQ==}
+ /vuepress-plugin-feed2/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe:
+ resolution: {integrity: sha512-HFExLZ9GL/5zhK564+8lzsYKlbSv0hLRiTh4wHQOtqiQSGA7ZzGywaXyRZnWOh1u1GKeuPSaPHLgLiUiXtlC2Q==}
engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'}
peerDependencies:
- vuepress: 2.0.0-beta.60
- vuepress-vite: 2.0.0-beta.60
- vuepress-webpack: 2.0.0-beta.60
+ vuepress: 2.0.0-beta.61
+ vuepress-vite: 2.0.0-beta.61
+ vuepress-webpack: 2.0.0-beta.61
peerDependenciesMeta:
vuepress:
optional: true
@@ -5223,24 +6283,27 @@ packages:
vuepress-webpack:
optional: true
dependencies:
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
cheerio: 1.0.0-rc.12
- vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc
- vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60
+ vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u
+ vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
xml-js: 1.6.11
transitivePeerDependencies:
+ - '@vue/composition-api'
+ - '@vuepress/client'
- supports-color
dev: true
- /vuepress-plugin-md-enhance/2.0.0-beta.172_vuepress@2.0.0-beta.60:
- resolution: {integrity: sha512-LmrWJSmd2PG8+3X/lmpJ6E5EZ4+Uu4vsjM6qm3DZjUGg+lXmAMRLulMslVdfHfrJbITeIKM9X8+V6X1CECAUyg==}
+ /vuepress-plugin-md-enhance/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe:
+ resolution: {integrity: sha512-YabS06pMEabqZUUsH5tFfj3bXL/5byYaFo73gyHQe/zigbhAlJtFmbA5SqE8AaSUA4eFPMpx1XVOUS73obV5Hg==}
engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'}
peerDependencies:
+ '@vuepress/client': 2.0.0-beta.61
sass-loader: ^13.2.0
- vuepress: 2.0.0-beta.60
- vuepress-vite: 2.0.0-beta.60
- vuepress-webpack: 2.0.0-beta.60
+ vuepress: 2.0.0-beta.61
+ vuepress-vite: 2.0.0-beta.61
+ vuepress-webpack: 2.0.0-beta.61
peerDependenciesMeta:
'@vuepress/client':
optional: true
@@ -5257,59 +6320,59 @@ packages:
vuepress-webpack:
optional: true
dependencies:
- '@babel/core': 7.20.12
- '@mdit/plugin-align': 0.2.3
- '@mdit/plugin-attrs': 0.2.3
- '@mdit/plugin-container': 0.2.3
- '@mdit/plugin-figure': 0.2.3
- '@mdit/plugin-footnote': 0.2.3
- '@mdit/plugin-img-lazyload': 0.2.3
- '@mdit/plugin-img-mark': 0.2.3
- '@mdit/plugin-img-size': 0.2.3
- '@mdit/plugin-include': 0.2.3
- '@mdit/plugin-katex': 0.2.3
- '@mdit/plugin-mark': 0.2.3
- '@mdit/plugin-mathjax': 0.2.3
- '@mdit/plugin-stylize': 0.2.3
- '@mdit/plugin-sub': 0.2.3
- '@mdit/plugin-sup': 0.2.3
- '@mdit/plugin-tab': 0.2.3
- '@mdit/plugin-tasklist': 0.2.3
- '@mdit/plugin-tex': 0.2.3
- '@mdit/plugin-uml': 0.2.3
- '@mermaid-js/mermaid-mindmap': 9.3.0
+ '@babel/core': 7.21.0
+ '@mdit/plugin-align': 0.3.0
+ '@mdit/plugin-attrs': 0.3.0
+ '@mdit/plugin-container': 0.3.0
+ '@mdit/plugin-figure': 0.3.0
+ '@mdit/plugin-footnote': 0.3.0
+ '@mdit/plugin-img-lazyload': 0.3.0
+ '@mdit/plugin-img-mark': 0.3.0
+ '@mdit/plugin-img-size': 0.3.0
+ '@mdit/plugin-include': 0.3.0
+ '@mdit/plugin-katex': 0.3.0
+ '@mdit/plugin-mark': 0.3.0
+ '@mdit/plugin-mathjax': 0.3.0
+ '@mdit/plugin-stylize': 0.3.0
+ '@mdit/plugin-sub': 0.3.0
+ '@mdit/plugin-sup': 0.3.0
+ '@mdit/plugin-tab': 0.3.0
+ '@mdit/plugin-tasklist': 0.3.0
+ '@mdit/plugin-tex': 0.3.0
+ '@mdit/plugin-uml': 0.3.0
'@types/markdown-it': 12.2.3
'@vue/repl': 1.3.2_vue@3.2.47
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
- '@vueuse/core': 9.12.0_vue@3.2.47
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
+ '@vueuse/core': 9.13.0_vue@3.2.47
balloon-css: 1.2.0
- chart.js: 4.2.0
+ chart.js: 4.2.1
echarts: 5.4.1
flowchart.ts: 0.1.2
katex: 0.16.4
markdown-it: 13.0.1
- mermaid: 9.3.0
+ mermaid: 10.0.1
reveal.js: 4.4.0
vue: 3.2.47
vue-router: 4.1.6_vue@3.2.47
- vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc
- vuepress-plugin-sass-palette: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60
+ vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u
+ vuepress-plugin-sass-palette: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
transitivePeerDependencies:
- '@vue/composition-api'
- supports-color
dev: true
- /vuepress-plugin-photo-swipe/2.0.0-beta.172_vuepress@2.0.0-beta.60:
- resolution: {integrity: sha512-7wLJ0sdBJBfne1d1W/WiomSeKSWGw1Lpcu6NuzdOkIElvqJGSCc+qB+w9/9jaXGsaTQzgEeXIppSLAofOY7Lrg==}
+ /vuepress-plugin-photo-swipe/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe:
+ resolution: {integrity: sha512-/xP5Q4ue0tJrbHFuUbopVjXVr5Qh9wR7jjX1e3WjS+ossxF+wrDqMglgJz0KmaztUK0Cam9zPJbP4AdTUuFTSw==}
engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'}
peerDependencies:
+ '@vuepress/client': 2.0.0-beta.61
sass-loader: ^13.2.0
- vuepress: 2.0.0-beta.60
- vuepress-vite: 2.0.0-beta.60
- vuepress-webpack: 2.0.0-beta.60
+ vuepress: 2.0.0-beta.61
+ vuepress-vite: 2.0.0-beta.61
+ vuepress-webpack: 2.0.0-beta.61
peerDependenciesMeta:
'@vuepress/client':
optional: true
@@ -5326,29 +6389,30 @@ packages:
vuepress-webpack:
optional: true
dependencies:
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
- '@vueuse/core': 9.12.0_vue@3.2.47
- photoswipe: 5.3.5
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
+ '@vueuse/core': 9.13.0_vue@3.2.47
+ photoswipe: 5.3.6
vue: 3.2.47
vue-router: 4.1.6_vue@3.2.47
- vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc
- vuepress-plugin-sass-palette: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60
+ vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u
+ vuepress-plugin-sass-palette: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
transitivePeerDependencies:
- '@vue/composition-api'
- supports-color
dev: true
- /vuepress-plugin-pwa2/2.0.0-beta.172_vuepress@2.0.0-beta.60:
- resolution: {integrity: sha512-Xf25I6k8LkrVKZvRjx0KF6FPEfAqcLELYI0QtwlyWN9WvPs4C8DP7ukGaLMm/cDTHTHn/C0FkLYM8awObbC3zA==}
+ /vuepress-plugin-pwa2/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe:
+ resolution: {integrity: sha512-Osa7a0gnpxXIxg9tanTM/9OyUDR3bOBWUpEBavZz1PTg/Xk/g0DKykaPbZkx3GO3Le+xFvI+s4gnSJ8BXzSvQQ==}
engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'}
peerDependencies:
+ '@vuepress/client': 2.0.0-beta.61
sass-loader: ^13.2.0
- vuepress: 2.0.0-beta.60
- vuepress-vite: 2.0.0-beta.60
- vuepress-webpack: 2.0.0-beta.60
+ vuepress: 2.0.0-beta.61
+ vuepress-vite: 2.0.0-beta.61
+ vuepress-webpack: 2.0.0-beta.61
peerDependenciesMeta:
'@vuepress/client':
optional: true
@@ -5365,17 +6429,17 @@ packages:
vuepress-webpack:
optional: true
dependencies:
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
- '@vueuse/core': 9.12.0_vue@3.2.47
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
+ '@vueuse/core': 9.13.0_vue@3.2.47
mitt: 3.0.0
register-service-worker: 1.7.2
vue: 3.2.47
vue-router: 4.1.6_vue@3.2.47
- vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc
- vuepress-plugin-sass-palette: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60
+ vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u
+ vuepress-plugin-sass-palette: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
workbox-build: 6.5.4
transitivePeerDependencies:
- '@types/babel__core'
@@ -5383,13 +6447,13 @@ packages:
- supports-color
dev: true
- /vuepress-plugin-reading-time2/2.0.0-beta.172_vuepress@2.0.0-beta.60:
- resolution: {integrity: sha512-u/JjNoR/GI/syUnikecQ/PfHARKhErH+Be9ZDmq6kzaPtVbtJyua3W9PH+b/fkvvcLM2mY76mRgZ70mnHq9GEg==}
+ /vuepress-plugin-reading-time2/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe:
+ resolution: {integrity: sha512-WV9X30BX4HBHRycX6R85jilUifY7FpgDBY0lwft+Fxfuf5Pf1+AuS0uuc4glWGbSjTxsQxbseLwRsHEgK3/E5Q==}
engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'}
peerDependencies:
- vuepress: 2.0.0-beta.60
- vuepress-vite: 2.0.0-beta.60
- vuepress-webpack: 2.0.0-beta.60
+ vuepress: 2.0.0-beta.61
+ vuepress-vite: 2.0.0-beta.61
+ vuepress-webpack: 2.0.0-beta.61
peerDependenciesMeta:
vuepress:
optional: true
@@ -5400,19 +6464,21 @@ packages:
vuepress-webpack:
optional: true
dependencies:
- vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc
- vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60
+ vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u
+ vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
transitivePeerDependencies:
+ - '@vue/composition-api'
+ - '@vuepress/client'
- supports-color
dev: true
- /vuepress-plugin-rtl/2.0.0-beta.172_vuepress@2.0.0-beta.60:
- resolution: {integrity: sha512-rp3cG2Rife0OwA5j+cqtdx6xt6qmhx25m0zqSv8GMXDxndzCCiOZioHv0f+y8PfYhzhlIhjwgxwd8TuY8mN+/Q==}
+ /vuepress-plugin-rtl/2.0.0-beta.185_vuepress@2.0.0-beta.61:
+ resolution: {integrity: sha512-Su7yNRv9lBBbwmz8AJOUNlQY5t6LTe8P3h9xkj97Z12GtQbcQ0oj72eB4Il6qkA4l/6o4lwALVLs86aqM4eQ+g==}
engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'}
peerDependencies:
- vuepress: 2.0.0-beta.60
- vuepress-vite: 2.0.0-beta.60
- vuepress-webpack: 2.0.0-beta.60
+ vuepress: 2.0.0-beta.61
+ vuepress-vite: 2.0.0-beta.61
+ vuepress-webpack: 2.0.0-beta.61
peerDependenciesMeta:
vuepress:
optional: true
@@ -5421,24 +6487,25 @@ packages:
vuepress-webpack:
optional: true
dependencies:
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
vue: 3.2.47
- vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc
- vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60
+ vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u
+ vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
transitivePeerDependencies:
+ - '@vue/composition-api'
- supports-color
dev: true
- /vuepress-plugin-sass-palette/2.0.0-beta.172_vuepress@2.0.0-beta.60:
- resolution: {integrity: sha512-ziybGwkOzcW0wTC4F/n2rFYMDqa0uDdSHHJPfhvc/cIOh/WEkSmQnbpWZ4/EC0mUrdQ2L6Bz9XLWTlG6fTcnPw==}
+ /vuepress-plugin-sass-palette/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe:
+ resolution: {integrity: sha512-ovbjTdNCfcXOk8q52g145WsmXq3s1JN3APBHe2vJ+H/JBczi7ew+m3u7A8D6us+FRn7ikiomvcnJlfbYpROyYA==}
engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'}
peerDependencies:
sass-loader: ^13.2.0
- vuepress: 2.0.0-beta.60
- vuepress-vite: 2.0.0-beta.60
- vuepress-webpack: 2.0.0-beta.60
+ vuepress: 2.0.0-beta.61
+ vuepress-vite: 2.0.0-beta.61
+ vuepress-webpack: 2.0.0-beta.61
peerDependenciesMeta:
sass-loader:
optional: true
@@ -5451,24 +6518,27 @@ packages:
vuepress-webpack:
optional: true
dependencies:
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
chokidar: 3.5.3
- sass: 1.58.0
- vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc
- vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60
+ sass: 1.58.3
+ vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u
+ vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
transitivePeerDependencies:
+ - '@vue/composition-api'
+ - '@vuepress/client'
- supports-color
dev: true
- /vuepress-plugin-search-pro/2.0.0-beta.172_vuepress@2.0.0-beta.60:
- resolution: {integrity: sha512-YvAxROcj7/slfqpwo4GPaOAU+jy3Hi/fHM5vhqUchptcOOM2whhO5ELxtYk7+9L/dKnwY7ywSm5D1KPNefvt6Q==}
+ /vuepress-plugin-search-pro/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe:
+ resolution: {integrity: sha512-Y5LZtcTcdZRiJXim3qERVlXJOokEI/IhPTirgdL51FVGm4cRH5WN4QU8OMN0GF+zt7mRu4GS6dR9lr2VMfB8ug==}
engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'}
peerDependencies:
+ '@vuepress/client': 2.0.0-beta.61
sass-loader: ^13.2.0
- vuepress: 2.0.0-beta.60
- vuepress-vite: 2.0.0-beta.60
- vuepress-webpack: 2.0.0-beta.60
+ vuepress: 2.0.0-beta.61
+ vuepress-vite: 2.0.0-beta.61
+ vuepress-webpack: 2.0.0-beta.61
peerDependenciesMeta:
'@vuepress/client':
optional: true
@@ -5485,30 +6555,30 @@ packages:
vuepress-webpack:
optional: true
dependencies:
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
- '@vueuse/core': 9.12.0_vue@3.2.47
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
+ '@vueuse/core': 9.13.0_vue@3.2.47
body-scroll-lock: 3.1.5
cheerio: 1.0.0-rc.12
chokidar: 3.5.3
vue: 3.2.47
vue-router: 4.1.6_vue@3.2.47
- vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc
- vuepress-plugin-sass-palette: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60
+ vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u
+ vuepress-plugin-sass-palette: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
transitivePeerDependencies:
- '@vue/composition-api'
- supports-color
dev: true
- /vuepress-plugin-seo2/2.0.0-beta.172_vuepress@2.0.0-beta.60:
- resolution: {integrity: sha512-IZGuepbuZONDHK7c/ca71KBrPEMl+YFgkjtU35d84TwV6WJzMEX4kFYL6cE4/H5jBuKLrcSpo+7DdThaGYXKmw==}
+ /vuepress-plugin-seo2/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe:
+ resolution: {integrity: sha512-QKjZwGL3g1LPjiHjzG4MAyFLv3EaqVbnSQYHfV7S2QM4WtFeZMSTBpvASZ71UnvCY1W+nYzztpRjGKBaN3efDA==}
engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'}
peerDependencies:
- vuepress: 2.0.0-beta.60
- vuepress-vite: 2.0.0-beta.60
- vuepress-webpack: 2.0.0-beta.60
+ vuepress: 2.0.0-beta.61
+ vuepress-vite: 2.0.0-beta.61
+ vuepress-webpack: 2.0.0-beta.61
peerDependenciesMeta:
vuepress:
optional: true
@@ -5517,21 +6587,23 @@ packages:
vuepress-webpack:
optional: true
dependencies:
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
- vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc
- vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
+ vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u
+ vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
transitivePeerDependencies:
+ - '@vue/composition-api'
+ - '@vuepress/client'
- supports-color
dev: true
- /vuepress-plugin-sitemap2/2.0.0-beta.172_vuepress@2.0.0-beta.60:
- resolution: {integrity: sha512-QkfD5rwMSIBAFCBPtOtXU2L6GMcKFoeHLFM38oOfNwvMnvK5jmW9FFL0NPnZRQ/NT9/MaLCk3a9E+EUwajqZig==}
+ /vuepress-plugin-sitemap2/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe:
+ resolution: {integrity: sha512-xrSq1eJI7IncaAniKH8EdT7v3+b/y+SSR3tjKip/QZDXyKIklgtZr59FVfT6tJEgoZMnQXL8W+NTm4gFVsVHmQ==}
engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'}
peerDependencies:
- vuepress: 2.0.0-beta.60
- vuepress-vite: 2.0.0-beta.60
- vuepress-webpack: 2.0.0-beta.60
+ vuepress: 2.0.0-beta.61
+ vuepress-vite: 2.0.0-beta.61
+ vuepress-webpack: 2.0.0-beta.61
peerDependenciesMeta:
vuepress:
optional: true
@@ -5542,22 +6614,25 @@ packages:
vuepress-webpack:
optional: true
dependencies:
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
sitemap: 7.1.1
- vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc
- vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60
+ vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u
+ vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
transitivePeerDependencies:
+ - '@vue/composition-api'
+ - '@vuepress/client'
- supports-color
dev: true
- /vuepress-shared/2.0.0-beta.172_vuepress@2.0.0-beta.60:
- resolution: {integrity: sha512-Nsv09nw3FWe/ilsoIBjqlIiUirFUBtHCnu7NYkhiu291nWeobqp9ywlFjvQ8JcXJhUe17Jk9CUF3iv8D068Hew==}
+ /vuepress-shared/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe:
+ resolution: {integrity: sha512-jATVUHj4NTxzgY1txwpI6NNqRXHWDj2M9KnqLkAqQxZmkPIAAgp+flMY5zg60GolJU1uVc66cyE0LPUJK0HmSg==}
engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'}
peerDependencies:
- vuepress: 2.0.0-beta.60
- vuepress-vite: 2.0.0-beta.60
- vuepress-webpack: 2.0.0-beta.60
+ '@vuepress/client': 2.0.0-beta.61
+ vuepress: 2.0.0-beta.61
+ vuepress-vite: 2.0.0-beta.61
+ vuepress-webpack: 2.0.0-beta.61
peerDependenciesMeta:
'@vuepress/client':
optional: true
@@ -5568,30 +6643,34 @@ packages:
vuepress-webpack:
optional: true
dependencies:
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
+ '@vueuse/core': 9.13.0_vue@3.2.47
cheerio: 1.0.0-rc.12
dayjs: 1.11.7
- execa: 6.1.0
+ execa: 7.0.0
fflate: 0.7.4
gray-matter: 4.0.3
+ semver: 7.3.8
striptags: 3.2.0
vue: 3.2.47
vue-router: 4.1.6_vue@3.2.47
- vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc
+ vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u
transitivePeerDependencies:
+ - '@vue/composition-api'
- supports-color
dev: true
- /vuepress-theme-hope/2.0.0-beta.172_vuepress@2.0.0-beta.60:
- resolution: {integrity: sha512-/pGlVGB6iSu/Ygq2SlTQtvRi1g7Kw3fJpEF2Tl+Zn6ZVZvS9mZeMmY8i0M4T4iuWcYXb+hjSSeJQg9lGOiT28A==}
+ /vuepress-theme-hope/2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe:
+ resolution: {integrity: sha512-7ett3a1kO+fgQmvSdqpAxDcMlG5R8wex6wK907XhjZCDAEHTgmomIRpFnhG8atrrjDp7wKHSTGQRSbXvEp7pSg==}
engines: {node: ^14.18.0 || >=16.0.0, npm: '>=8', pnpm: '>=7'}
peerDependencies:
+ '@vuepress/client': 2.0.0-beta.61
sass-loader: ^13.2.0
- vuepress: 2.0.0-beta.60
- vuepress-vite: 2.0.0-beta.60
- vuepress-webpack: 2.0.0-beta.60
+ vuepress: 2.0.0-beta.61
+ vuepress-vite: 2.0.0-beta.61
+ vuepress-webpack: 2.0.0-beta.61
peerDependenciesMeta:
'@vuepress/client':
optional: true
@@ -5653,20 +6732,20 @@ packages:
optional: true
dependencies:
'@types/body-scroll-lock': 3.1.0
- '@vuepress/cli': 2.0.0-beta.60
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/core': 2.0.0-beta.60
- '@vuepress/plugin-active-header-links': 2.0.0-beta.60
- '@vuepress/plugin-container': 2.0.0-beta.60
- '@vuepress/plugin-external-link-icon': 2.0.0-beta.60
- '@vuepress/plugin-git': 2.0.0-beta.60
- '@vuepress/plugin-nprogress': 2.0.0-beta.60
- '@vuepress/plugin-palette': 2.0.0-beta.60
- '@vuepress/plugin-prismjs': 2.0.0-beta.60
- '@vuepress/plugin-theme-data': 2.0.0-beta.60
- '@vuepress/shared': 2.0.0-beta.60
- '@vuepress/utils': 2.0.0-beta.60
- '@vueuse/core': 9.12.0_vue@3.2.47
+ '@vuepress/cli': 2.0.0-beta.61
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/core': 2.0.0-beta.61
+ '@vuepress/plugin-active-header-links': 2.0.0-beta.61
+ '@vuepress/plugin-container': 2.0.0-beta.61
+ '@vuepress/plugin-external-link-icon': 2.0.0-beta.61
+ '@vuepress/plugin-git': 2.0.0-beta.61
+ '@vuepress/plugin-nprogress': 2.0.0-beta.61
+ '@vuepress/plugin-palette': 2.0.0-beta.61
+ '@vuepress/plugin-prismjs': 2.0.0-beta.61
+ '@vuepress/plugin-theme-data': 2.0.0-beta.61
+ '@vuepress/shared': 2.0.0-beta.61
+ '@vuepress/utils': 2.0.0-beta.61
+ '@vueuse/core': 9.13.0_vue@3.2.47
balloon-css: 1.2.0
bcrypt-ts: 3.0.0
body-scroll-lock: 3.1.5
@@ -5675,41 +6754,41 @@ packages:
gray-matter: 4.0.3
vue: 3.2.47
vue-router: 4.1.6_vue@3.2.47
- vuepress: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc
- vuepress-plugin-auto-catalog: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-plugin-blog2: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-plugin-comment2: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-plugin-components: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-plugin-copy-code2: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-plugin-copyright2: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-plugin-feed2: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-plugin-md-enhance: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-plugin-photo-swipe: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-plugin-pwa2: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-plugin-reading-time2: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-plugin-rtl: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-plugin-sass-palette: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-plugin-seo2: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-plugin-sitemap2: 2.0.0-beta.172_vuepress@2.0.0-beta.60
- vuepress-shared: 2.0.0-beta.172_vuepress@2.0.0-beta.60
+ vuepress: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u
+ vuepress-plugin-auto-catalog: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-plugin-blog2: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-plugin-comment2: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-plugin-components: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-plugin-copy-code2: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-plugin-copyright2: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-plugin-feed2: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-plugin-md-enhance: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-plugin-photo-swipe: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-plugin-pwa2: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-plugin-reading-time2: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-plugin-rtl: 2.0.0-beta.185_vuepress@2.0.0-beta.61
+ vuepress-plugin-sass-palette: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-plugin-seo2: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-plugin-sitemap2: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
+ vuepress-shared: 2.0.0-beta.185_44bug2q4gvgfsg4b36ccgweufe
transitivePeerDependencies:
- '@types/babel__core'
- '@vue/composition-api'
- supports-color
dev: true
- /vuepress-vite/2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc:
- resolution: {integrity: sha512-ljHvo419nbfYl/cQecVbYL4bwJjUOX0+z76v/4yX6ODeGIpdHIs7ARZ4t52mr0EEfwP6aZbZa+qFZTTQutxAuQ==}
+ /vuepress-vite/2.0.0-beta.61_zcwlgd45apez724duilctoxt4u:
+ resolution: {integrity: sha512-4mcR8XSY5b36CYkPqF80WvoeGAEjTw6Cr9bMPHrPVSjG4qqyfVpdSdyRtXD+/5aLJB7r/L60J7PI1pKTci1+3w==}
hasBin: true
peerDependencies:
- '@vuepress/client': 2.0.0-beta.60
- vue: ^3.2.45
+ '@vuepress/client': 2.0.0-beta.61
+ vue: ^3.2.47
dependencies:
- '@vuepress/bundler-vite': 2.0.0-beta.60
- '@vuepress/cli': 2.0.0-beta.60
- '@vuepress/client': 2.0.0-beta.60
- '@vuepress/core': 2.0.0-beta.60
- '@vuepress/theme-default': 2.0.0-beta.60
+ '@vuepress/bundler-vite': 2.0.0-beta.61
+ '@vuepress/cli': 2.0.0-beta.61
+ '@vuepress/client': 2.0.0-beta.61
+ '@vuepress/core': 2.0.0-beta.61
+ '@vuepress/theme-default': 2.0.0-beta.61
vue: 3.2.47
transitivePeerDependencies:
- '@types/node'
@@ -5724,11 +6803,11 @@ packages:
- ts-node
dev: true
- /vuepress/2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc:
- resolution: {integrity: sha512-evkv5PtX5pdlEyY5EcEV+rN/HTmi8iG7ZcvAnMFfYKWdvKiUjE+/DPwZfmE8emx33FEE2htbAKgtruABTocEjA==}
+ /vuepress/2.0.0-beta.61_zcwlgd45apez724duilctoxt4u:
+ resolution: {integrity: sha512-gpttL0x5ZvI9eTyR/pexBknIAcgrdjAWoiJc7OYd4bIVfwlXAb4GO4A2EwRSX+pIaNOWdcd+sfZA86EMEbrtNg==}
hasBin: true
dependencies:
- vuepress-vite: 2.0.0-beta.60_936b00771fca784c47ac7ef0cdfceefc
+ vuepress-vite: 2.0.0-beta.61_zcwlgd45apez724duilctoxt4u
transitivePeerDependencies:
- '@types/node'
- '@vue/composition-api'
@@ -5750,6 +6829,10 @@ packages:
defaults: 1.0.4
dev: true
+ /web-worker/1.2.0:
+ resolution: {integrity: sha512-PgF341avzqyx60neE9DD+XS26MMNMoUQRz9NOZwW32nPQrF6p77f1htcnjBSEV8BGMKZ16choqUG4hyI0Hx7mA==}
+ dev: true
+
/webidl-conversions/4.0.2:
resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
dev: true
@@ -5776,6 +6859,10 @@ packages:
is-symbol: 1.0.4
dev: true
+ /which-module/2.0.0:
+ resolution: {integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==}
+ dev: true
+
/which-typed-array/1.1.9:
resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==}
engines: {node: '>= 0.4'}
@@ -5800,6 +6887,11 @@ packages:
resolution: {integrity: sha512-Gd9+TUn5nXdwj/hFsPVx5cuHHiF5Bwuc30jZ4+ronF1qHK5O7HD0sgmXWSEgwKquT3ClLoKPVbO6qGwVwLzvAw==}
dev: true
+ /word-wrap/1.2.3:
+ resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/workbox-background-sync/6.5.4:
resolution: {integrity: sha512-0r4INQZMyPky/lj4Ou98qxcThrETucOde+7mRGJl13MPJugQNKeZQOdIJe/1AchOP23cTqHcN/YVpD6r8E6I8g==}
dependencies:
@@ -5818,10 +6910,10 @@ packages:
engines: {node: '>=10.0.0'}
dependencies:
'@apideck/better-ajv-errors': 0.3.6_ajv@8.12.0
- '@babel/core': 7.20.12
- '@babel/preset-env': 7.20.2_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/preset-env': 7.20.2_@babel+core@7.21.0
'@babel/runtime': 7.20.13
- '@rollup/plugin-babel': 5.3.1_d8e457a9eec5694be0a6185ede2794cb
+ '@rollup/plugin-babel': 5.3.1_4tnfxcmsyr7y5qv3uwkivwqysm
'@rollup/plugin-node-resolve': 11.2.1_rollup@2.79.1
'@rollup/plugin-replace': 2.4.2_rollup@2.79.1
'@surma/rollup-plugin-off-main-thread': 2.2.3
@@ -5946,6 +7038,15 @@ packages:
workbox-core: 6.5.4
dev: true
+ /wrap-ansi/6.2.0:
+ resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
+ engines: {node: '>=8'}
+ dependencies:
+ ansi-styles: 4.3.0
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ dev: true
+
/wrappy/1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
dev: true
@@ -5957,20 +7058,63 @@ packages:
sax: 1.2.4
dev: true
+ /xml-name-validator/4.0.0:
+ resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
+ engines: {node: '>=12'}
+ dev: true
+
/xmldom-sre/0.1.31:
resolution: {integrity: sha512-f9s+fUkX04BxQf+7mMWAp5zk61pciie+fFLC9hX9UVvCeJQfNHRHXpeo5MPcR0EUf57PYLdt+ZO4f3Ipk2oZUw==}
engines: {node: '>=0.1'}
dev: true
+ /y18n/4.0.3:
+ resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
+ dev: true
+
/yallist/3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
dev: true
+ /yallist/4.0.0:
+ resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
+ dev: true
+
/yaml/2.2.1:
resolution: {integrity: sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==}
engines: {node: '>= 14'}
dev: true
+ /yargs-parser/18.1.3:
+ resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
+ engines: {node: '>=6'}
+ dependencies:
+ camelcase: 5.3.1
+ decamelize: 1.2.0
+ dev: true
+
+ /yargs/15.4.1:
+ resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
+ engines: {node: '>=8'}
+ dependencies:
+ cliui: 6.0.0
+ decamelize: 1.2.0
+ find-up: 4.1.0
+ get-caller-file: 2.0.5
+ require-directory: 2.1.1
+ require-main-filename: 2.0.0
+ set-blocking: 2.0.0
+ string-width: 4.2.3
+ which-module: 2.0.0
+ y18n: 4.0.3
+ yargs-parser: 18.1.3
+ dev: true
+
+ /yocto-queue/0.1.0:
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
+ engines: {node: '>=10'}
+ dev: true
+
/zrender/5.4.1:
resolution: {integrity: sha512-M4Z05BHWtajY2241EmMPHglDQAJ1UyHQcYsxDNzD9XLSkPDqMq4bB28v9Pb4mvHnVQ0GxyTklZ/69xCFP6RXBA==}
dependencies: