From c2c0f719cc09be51f333621b6618fc34fb21f492 Mon Sep 17 00:00:00 2001 From: Gitea Date: Tue, 30 Jul 2024 12:01:07 +0800 Subject: [PATCH 01/43] =?UTF-8?q?=E6=88=90=E7=BB=A9=E6=B1=87=E6=80=BB?= =?UTF-8?q?=E5=92=8C=E8=AF=84=E5=A5=96bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/AnnualCompPointController.java | 34 ++++++++++++++++--- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java index 34860de7..9c5444f6 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java @@ -337,6 +337,15 @@ public class AnnualCompPointController extends JeecgController cjhz(@RequestParam(name = "id", required = true) String id,HttpServletRequest req) { AnnualCompPoint annualCompPoint = annualCompPointService.getById(id); + QueryWrapper queryWrappersc = new QueryWrapper<>(); + queryWrappersc.eq("annual_compid",annualCompPoint.getAnnualCompId()); + queryWrappersc.eq("annual_comp_p",annualCompPoint.getId()); + List listsc = scorePersionService.list(queryWrappersc); + if(listsc.size()>0){ + for (int k = 0 ; k < listsc.size() ; k++){ + scorePersionService.removeById(listsc.get(k).getId()); + } + } QueryWrapper queryWrapper = new QueryWrapper<>(); queryWrapper.select("bmcode,SUM(score) as score"); queryWrapper.eq("ann_com_p",id); @@ -516,12 +525,22 @@ public class AnnualCompPointController extends JeecgController queryWrapperap = new QueryWrapper<>(); + queryWrapperap.eq("annal_comp",annualCompPoint.getAnnualCompId()); + queryWrapperap.eq("annual_comp_p",annualCompPoint.getId()); + List listap = awardPersionService.list(queryWrapperap); + if(listap.size()>0){ + for (int k = 0 ; k < listap.size() ; k++){ + awardPersionService.removeById(listap.get(k).getId()); + } + } QueryWrapper queryWrappersp = new QueryWrapper<>(); queryWrappersp.eq("annualid",annualCompService.getById(annualCompPoint.getAnnualCompId()).getAnnualid()); queryWrappersp.eq("annual_compid",annualCompPoint.getAnnualCompId()); queryWrappersp.eq("annual_comp_p",id); queryWrappersp.orderByAsc("sort"); List listsp = scorePersionService.list(queryWrappersp); + try { for (int i = 0 ; i listsp = scorePersionService.list(queryWrappersp); + try { for (int i = 0 ; i Date: Tue, 30 Jul 2024 12:07:44 +0800 Subject: [PATCH 02/43] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=AD=A6=E5=8F=B7/?= =?UTF-8?q?=E5=B7=A5=E5=8F=B7=E5=BF=85=E5=A1=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/utils/helper/validator.ts | 15 +++++++++++++++ .../src/views/system/user/userYX.data.ts | 15 +++++++++++++-- 2 files changed, 28 insertions(+), 2 deletions(-) diff --git a/jeecgboot-vue3-master/src/utils/helper/validator.ts b/jeecgboot-vue3-master/src/utils/helper/validator.ts index de8a4bbf..c554053a 100644 --- a/jeecgboot-vue3-master/src/utils/helper/validator.ts +++ b/jeecgboot-vue3-master/src/utils/helper/validator.ts @@ -49,6 +49,21 @@ export const rules = { }, ]; }, + workNo(required){ + return [ + { + required: required, + validator: async (_, value) => { + if (required && !value) { + return Promise.reject('请输入工号/学号'); + } + + return Promise.resolve(); + }, + trigger: 'change', + }, + ]; + }, startTime(endTime, required) { return [ { diff --git a/jeecgboot-vue3-master/src/views/system/user/userYX.data.ts b/jeecgboot-vue3-master/src/views/system/user/userYX.data.ts index 706d8710..774a711b 100644 --- a/jeecgboot-vue3-master/src/views/system/user/userYX.data.ts +++ b/jeecgboot-vue3-master/src/views/system/user/userYX.data.ts @@ -185,9 +185,8 @@ export const formSchemaYX: FormSchema[] = [ { label: '工号/学号', field: 'workNo', - required: true, component: 'Input', - dynamicRules: ({ model, schema }) => rules.duplicateCheckRule('sys_user', 'work_no', model, schema, true), + dynamicRules: ({ model, schema }) => rules.workNo('workNo'), }, /* { label: '职务', @@ -298,11 +297,23 @@ export const formSchemaYX: FormSchema[] = [ { label: '邮箱', field: 'email', + rules: [ + { + required: true, + message: '请输入登录邮箱', + }, + ], component: 'Input', }, { label: '手机号码', field: 'phone', + rules: [ + { + required: true, + message: '请输入登录手机号码', + }, + ], component: 'Input', }, /*{ From 46ab1d1a08d203791b8b33a64f794c33bc00d091 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=AE=B6=E4=B8=9C?= <1654135867@qq.com> Date: Tue, 30 Jul 2024 14:30:01 +0800 Subject: [PATCH 03/43] =?UTF-8?q?=E6=B3=A8=E5=86=8C=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=AD=A6=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../system/controller/SysUserController.java | 10 ++++++++++ .../src/locales/lang/zh-CN/sys.ts | 1 + .../src/views/system/loginmini/MiniRegister.vue | 14 +++++++++++++- 3 files changed, 24 insertions(+), 1 deletion(-) diff --git a/jeecg-boot-master/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/SysUserController.java b/jeecg-boot-master/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/SysUserController.java index 1af4c42d..a0e964ec 100644 --- a/jeecg-boot-master/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/SysUserController.java +++ b/jeecg-boot-master/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/SysUserController.java @@ -1145,6 +1145,7 @@ public class SysUserController { String departmentid = jsonObject.getString("departmentid"); String realname = jsonObject.getString("realname"); String checkKey = jsonObject.getString("checkKey"); + String workon = jsonObject.getString("workno"); if(captcha==null){ result.error500("验证码无效"); @@ -1187,6 +1188,14 @@ public class SysUserController { result.setSuccess(false); return result; } + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.in("work_no", workon); + List sysUser3 = sysUserService.list(queryWrapper); + if (sysUser3.size()>0) { + result.setMessage("该学号/工号已注册"); + result.setSuccess(false); + return result; + } if(oConvertUtils.isEmpty(realname)){ realname = username; @@ -1198,6 +1207,7 @@ public class SysUserController { String passwordEncode = PasswordUtil.encrypt(username, password, salt); user.setSalt(salt); user.setUsername(username); + user.setWorkNo(workon); user.setRealname(realname); user.setPassword(passwordEncode); //user.setEmail(email); diff --git a/jeecgboot-vue3-master/src/locales/lang/zh-CN/sys.ts b/jeecgboot-vue3-master/src/locales/lang/zh-CN/sys.ts index 6d020b7c..f37df5c2 100644 --- a/jeecgboot-vue3-master/src/locales/lang/zh-CN/sys.ts +++ b/jeecgboot-vue3-master/src/locales/lang/zh-CN/sys.ts @@ -60,6 +60,7 @@ export default { placeholder: '请输入锁屏密码或者用户密码', }, login: { + workno: '工号/学号', backSignIn: '返回', signInFormTitle: '登录', mobileSignInFormTitle: '手机登录', diff --git a/jeecgboot-vue3-master/src/views/system/loginmini/MiniRegister.vue b/jeecgboot-vue3-master/src/views/system/loginmini/MiniRegister.vue index ba2d25c0..6df31a98 100644 --- a/jeecgboot-vue3-master/src/views/system/loginmini/MiniRegister.vue +++ b/jeecgboot-vue3-master/src/views/system/loginmini/MiniRegister.vue @@ -27,6 +27,12 @@ + +
+ + +
+
@@ -137,6 +143,7 @@ const formRef = ref(); const formData = reactive({ username: '', + workno: '', mobile: '', smscode: '', password: '', @@ -228,6 +235,10 @@ const randCodeData = reactive({ createMessage.warn(t('sys.login.passwordPlaceholder')); return; } + if (!formData.workno) { + createMessage.warn(t('sys.login.passwordPlaceholder')); + return; + } if (!formData.confirmPassword) { createMessage.warn(t('sys.login.confirmPassword')); return; @@ -250,6 +261,7 @@ const randCodeData = reactive({ try { const resultInfo = await registerStu( toRaw({ + workno: formData.workno, username: formData.username, departmentid: formData.department, realname: formData.realname, @@ -286,7 +298,7 @@ const randCodeData = reactive({ * 初始化表单 */ function initForm() { - Object.assign(formData, { username: '', mobile: '', realname: '', department: '', smscode: '', password: '', confirmPassword: ''/*, policy: false*/ }); + Object.assign(formData, { workno: '', username: '', mobile: '', realname: '', department: '', smscode: '', password: '', confirmPassword: ''/*, policy: false*/ }); if (!unref(timer)) { showInterval.value = true; clearInterval(unref(timer)); From c3eb31e9ad74b8881db2aa9db359d99ec60d60a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=AE=B6=E4=B8=9C?= <1654135867@qq.com> Date: Tue, 30 Jul 2024 14:52:58 +0800 Subject: [PATCH 04/43] =?UTF-8?q?=E5=B9=B4=E5=BA=A6=E6=AF=94=E8=B5=9B?= =?UTF-8?q?=E6=9C=AA=E5=90=AF=E5=8A=A8=E8=BF=98=E5=8F=AF=E4=BB=A5=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E5=B9=B4=E5=BA=A6=E6=AF=94=E8=B5=9B=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/AnnualCompPointServiceImpl.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/service/impl/AnnualCompPointServiceImpl.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/service/impl/AnnualCompPointServiceImpl.java index 5b4ef54d..233a316d 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/service/impl/AnnualCompPointServiceImpl.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/service/impl/AnnualCompPointServiceImpl.java @@ -83,6 +83,10 @@ public class AnnualCompPointServiceImpl extends ServiceImpl queryWrapper = new LambdaQueryWrapper<>(); From 69240db3316cf7fc4ad4307976fba03878011913 Mon Sep 17 00:00:00 2001 From: zhc077 <565291854@qq.com> Date: Tue, 30 Jul 2024 15:07:08 +0800 Subject: [PATCH 05/43] =?UTF-8?q?=E4=BA=8C=E7=BA=A7=E9=83=A8=E9=97=A8?= =?UTF-8?q?=E8=BF=87=E6=BB=A4=207.30?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../depart/DepartAbilityEvaluation.data.ts | 4 ++-- .../departCompTotalScore/DepartCompTotalScore.data.ts | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/jeecgboot-vue3-master/src/views/abilityEvaluation/depart/DepartAbilityEvaluation.data.ts b/jeecgboot-vue3-master/src/views/abilityEvaluation/depart/DepartAbilityEvaluation.data.ts index fe950756..9e10be25 100644 --- a/jeecgboot-vue3-master/src/views/abilityEvaluation/depart/DepartAbilityEvaluation.data.ts +++ b/jeecgboot-vue3-master/src/views/abilityEvaluation/depart/DepartAbilityEvaluation.data.ts @@ -29,7 +29,7 @@ export const searchFormSchema: FormSchema[] = [ field: 'depetId', component: 'JDictSelectTag', componentProps: { - dictCode: "sys_depart,depart_name,id" + dictCode:"sys_depart,depart_name,id,parent_id='1693446350597038081'" }, colProps: {span: 6}, }, @@ -59,7 +59,7 @@ export const formSchema: FormSchema[] = [ field: 'depetId', component: 'JDictSelectTag', componentProps: { - dictCode: "sys_depart,depart_name,id" + dictCode:"sys_depart,depart_name,id,parent_id='1693446350597038081'" }, dynamicRules: ({model, schema}) => { return [ diff --git a/jeecgboot-vue3-master/src/views/annualScore/departCompTotalScore/DepartCompTotalScore.data.ts b/jeecgboot-vue3-master/src/views/annualScore/departCompTotalScore/DepartCompTotalScore.data.ts index 48b3b3f4..eeda545d 100644 --- a/jeecgboot-vue3-master/src/views/annualScore/departCompTotalScore/DepartCompTotalScore.data.ts +++ b/jeecgboot-vue3-master/src/views/annualScore/departCompTotalScore/DepartCompTotalScore.data.ts @@ -42,7 +42,7 @@ export const searchFormSchema: FormSchema[] = [ field: 'depet', component: 'JDictSelectTag', componentProps:{ - dictCode:"sys_depart,depart_name,id" + dictCode:"sys_depart,depart_name,id,parent_id='1693446350597038081'" }, colProps: {span: 6}, }, @@ -63,7 +63,9 @@ export const formSchema: FormSchema[] = [ field: 'depet', component: 'JDictSelectTag', componentProps:{ - dictCode:"sys_depart,depart_name,id" + dictCode:"sys_depart,depart_name,id,parent_id='1693446350597038081'" + // dictCode: "sys_user,realname,id,username!='admin' order by create_time", + }, dynamicRules: ({model,schema}) => { return [ From 863345ee917ec2379fd08e51ee748db7bb11b9ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=AE=B6=E4=B8=9C?= <1654135867@qq.com> Date: Tue, 30 Jul 2024 15:15:56 +0800 Subject: [PATCH 06/43] =?UTF-8?q?=E5=B9=B4=E5=BA=A6=E6=AF=94=E8=B5=9B?= =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E9=80=9A=E8=BF=87=E5=90=8E=E4=B8=8D=E5=8F=AF?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=92=8C=E5=88=A0=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/AnnualCompPointController.java | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java index 9c5444f6..1c33d0e2 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java @@ -304,7 +304,12 @@ public class AnnualCompPointController extends JeecgController edit(@RequestBody AnnualCompPoint annualCompPoint) { - boolean isUpdate = annualCompPointService.updateById(annualCompPoint); + boolean isUpdate ; + if(annualCompPoint.getAnnualCompState().equals("0") && annualCompPoint.getAnnualCompState().equals("4") ){ + isUpdate = annualCompPointService.updateById(annualCompPoint); + } else { + return Result.error("当前状态不可修改"); + } if (!isUpdate){ return Result.error("编辑失败!"); } @@ -322,7 +327,13 @@ public class AnnualCompPointController extends JeecgController delete(@RequestParam(name = "id", required = true) String id) { - annualCompPointService.removeById(id); + AnnualCompPoint annualCompPoint =annualCompPointService.getById(id); + if(annualCompPoint.getAnnualCompState().equals("0") && annualCompPoint.getAnnualCompState().equals("4") ) { + System.out.println(id); + annualCompPointService.removeById(id); + }else { + return Result.error("当前状态不可删除"); + } return Result.OK("删除成功!"); } /** From 7470c338f8cb5a11d1784adfb935cd02042df393 Mon Sep 17 00:00:00 2001 From: Gitea Date: Tue, 30 Jul 2024 15:52:08 +0800 Subject: [PATCH 07/43] bug --- .../controller/AnnualCompPointController.java | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java index 1c33d0e2..509acca0 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java @@ -951,8 +951,11 @@ public class AnnualCompPointController extends JeecgController list = ExcelImportUtil.importExcel(file.getInputStream(), AnnualCompPointMb.class, params); for (int i = 0 ; i < list.size();i++){ - SysUser sysUser = sysUserService.getUserByName(list.get(i).getStudentcode()); - if(sysUser==null){ + QueryWrapper qw = new QueryWrapper<>(); + qw.eq("work_no",list.get(i).getStudentcode()); + List listsys = sysUserService.list(qw); + //SysUser sysUser = sysUserService.getUserByName(list.get(i).getStudentcode()); + if(listsys.size()==0){ return Result.error("文件导入失败:第"+(i+1)+"行学生学号不存在"); } } @@ -972,7 +975,10 @@ public class AnnualCompPointController extends JeecgController qw1 = new QueryWrapper<>(); + qw1.eq("work_no",list.get(k).getStudentcode()); + List listsys1 = sysUserService.list(qw1); + tm.setUserId(listsys1.get(0).getId()); tm.setCaptain("0"); teamManagementService.save(tm); } From b029ba9777c919992bcc13761ec7d81112679d6d Mon Sep 17 00:00:00 2001 From: Gitea Date: Tue, 30 Jul 2024 15:53:20 +0800 Subject: [PATCH 08/43] bug --- .../controller/AwardPersionController.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java index 1ec8927e..5b2bbbc8 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java @@ -120,7 +120,7 @@ public class AwardPersionController extends JeecgController page = new Page(pageNo, pageSize); QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(awardPersion, req.getParameterMap()); - queryWrapper.eq("studentcode",user.getUsername()); + queryWrapper.eq("studentcode",sysUserService.getById(user.getId()).getWorkNo()); IPage pageList = awardPersionService.page(page, queryWrapper); return Result.OK(pageList); }else if(sysRoleList.get(0).getId().equals("1693451972151386114")){ @@ -224,7 +224,7 @@ public class AwardPersionController extends JeecgController Date: Tue, 30 Jul 2024 16:15:00 +0800 Subject: [PATCH 09/43] =?UTF-8?q?=E6=96=B0=E5=88=9B=E5=BB=BA=E7=9A=84?= =?UTF-8?q?=E7=94=A8=E6=88=B7=E5=8F=AF=E4=BB=A5=E7=9C=8B=E5=88=B0=E6=89=80?= =?UTF-8?q?=E6=9C=89=E7=9A=84=E5=B9=B4=E5=BA=A6=E6=AF=94=E8=B5=9B=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/AnnualCompPointController.java | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java index 1c33d0e2..24053d0d 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java @@ -148,17 +148,24 @@ public class AnnualCompPointController extends JeecgController queryWrapperComp = new LambdaQueryWrapper<>(); // id位数相同,可用like模糊 - queryWrapperComp.like(Comp::getCompAdmin, userId); + queryWrapperComp.eq(Comp::getCompAdmin, userId); List list = compService.list(queryWrapperComp); + if(list.isEmpty()){ + return Result.error("未绑定比赛"); + } List ids = list.stream().map(Comp::getId).collect(Collectors.toList()); // 获取负责的年度比赛id QueryWrapper queryWrapperAnnual = new QueryWrapper<>(); - queryWrapperAnnual.in(ids.size()!=0,"compid",ids); + /*queryWrapperAnnual.in(ids.size()!=0,"compid",ids);*/ + queryWrapperAnnual.in("compid",ids); List listAnnual = annualCompService.list(queryWrapperAnnual); + if(listAnnual.isEmpty()){ + return Result.error("未创建年度比赛"); + } List annualIds = listAnnual.stream().map(AnnualComp::getId).collect(Collectors.toList()); QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(annualCompPoint, req.getParameterMap()); - queryWrapper.in(annualIds.size()!=0,"annual_comp_id",annualIds); + queryWrapper.in("annual_comp_id",annualIds); queryWrapper.eq("annual_comp_switch","Y"); // 比赛必须是开启的 Page page = new Page(pageNo, pageSize); IPage pageList = annualCompPointService.page(page, queryWrapper); From 13ebba7b6fe2cb9fb5bfcfd5b9d6403eb016f2df Mon Sep 17 00:00:00 2001 From: zhc077 <565291854@qq.com> Date: Tue, 30 Jul 2024 16:38:13 +0800 Subject: [PATCH 10/43] =?UTF-8?q?=E4=B8=AA=E4=BA=BA=E8=83=BD=E5=8A=9B?= =?UTF-8?q?=E9=87=8F=E5=8C=96=20=E7=8A=B6=E6=80=81=E4=BF=AE=E6=94=B9=207.3?= =?UTF-8?q?0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../annualCompPoint/committee/AnnualCompPointList.vue | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/jeecgboot-vue3-master/src/views/annualCompPoint/committee/AnnualCompPointList.vue b/jeecgboot-vue3-master/src/views/annualCompPoint/committee/AnnualCompPointList.vue index 09260ca0..16e1676f 100644 --- a/jeecgboot-vue3-master/src/views/annualCompPoint/committee/AnnualCompPointList.vue +++ b/jeecgboot-vue3-master/src/views/annualCompPoint/committee/AnnualCompPointList.vue @@ -402,6 +402,9 @@ }); } /** + * 个人积分汇总 + * 触发条件:评奖完成后操作,且更新项目状态为“积分已汇总”,并且不可再进行个人积分汇总 + * 是否已凭奖为1且未汇总过时,可以积分汇总操作 * 状态:0待提交、1已提交(待审核)、2已审核(已通过)、3待驳回、4已驳回、5-已报名、6-已选题、7-已上传作品、8-已评分、9-已评奖,10-积分已汇总 */ @@ -411,7 +414,12 @@ onClick: handleCollectScoreApply.bind(null, record), }); } - if (record.isPj == 1 ) { + + /** + * 个人能力量化 + * 触发条件:个人积分汇总完成后操作,可以重复进行个人能力量化操作 + */ + if (record.isPj == 1 && record.annualCompState == "10" ) { actions.unshift({ label: '个人能力量化', onClick: handlePersonalAbilityEvaluation.bind(null, record), From ca8fa3945543785ae062d11ab7cee3f845d8a618 Mon Sep 17 00:00:00 2001 From: Gitea Date: Tue, 30 Jul 2024 16:47:33 +0800 Subject: [PATCH 11/43] =?UTF-8?q?=E6=89=80=E6=9C=89=E7=94=A8=E5=88=B0?= =?UTF-8?q?=E6=AF=94=E8=B5=9B=E8=B4=9F=E8=B4=A3=E4=BA=BA=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E6=94=B9=E4=B8=BA=E7=AD=89=E4=BA=8E=E4=B8=8D=E7=94=A8like?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...petitionProjectRegistrationController.java | 6 +++--- .../controller/AnnualCompGroupController.java | 17 +++++++++++++---- .../controller/AwardPersionController.java | 19 ++++++++++++++----- .../controller/ScorePersionController.java | 15 ++++++++++++--- .../controller/ScoreStaController.java | 17 +++++++++++++---- 5 files changed, 55 insertions(+), 19 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualcompetitionprojectregistration/controller/AnnualCompetitionProjectRegistrationController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualcompetitionprojectregistration/controller/AnnualCompetitionProjectRegistrationController.java index 2aa65af5..d25084e9 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualcompetitionprojectregistration/controller/AnnualCompetitionProjectRegistrationController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualcompetitionprojectregistration/controller/AnnualCompetitionProjectRegistrationController.java @@ -995,7 +995,7 @@ public class AnnualCompetitionProjectRegistrationController { LoginUser user = (LoginUser) SecurityUtils.getSubject().getPrincipal(); Comp comp = new Comp(); QueryWrapper queryWrappercomp = QueryGenerator.initQueryWrapper(comp, req.getParameterMap()); - queryWrappercomp.like("comp_admin", user.getUsername()); + queryWrappercomp.eq("comp_admin", user.getUsername()); List list = compService.list(queryWrappercomp); Map map = new HashMap<>(); if (list.size() > 0) { @@ -1774,7 +1774,7 @@ public class AnnualCompetitionProjectRegistrationController { LoginUser user = (LoginUser) SecurityUtils.getSubject().getPrincipal(); Comp comp = new Comp(); QueryWrapper queryWrappercomp = QueryGenerator.initQueryWrapper(comp, req.getParameterMap()); - queryWrappercomp.like("comp_admin", user.getUsername()); + queryWrappercomp.eq("comp_admin", user.getUsername()); List list = compService.list(queryWrappercomp); Map map = new HashMap<>(); if (list.size() > 0) { @@ -2129,7 +2129,7 @@ public class AnnualCompetitionProjectRegistrationController { LoginUser user = (LoginUser) SecurityUtils.getSubject().getPrincipal(); Comp comp = new Comp(); QueryWrapper queryWrappercomp = QueryGenerator.initQueryWrapper(comp, req.getParameterMap()); - queryWrappercomp.like("comp_admin",user.getUsername()); + queryWrappercomp.eq("comp_admin",user.getUsername()); List list = compService.list(queryWrappercomp); List ids = list.stream().map(Comp::getId).collect(Collectors.toList()); QueryWrapper queryWrapperAnnual = new QueryWrapper<>(); diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualcompgroup/controller/AnnualCompGroupController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualcompgroup/controller/AnnualCompGroupController.java index 8172749f..32f5160f 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualcompgroup/controller/AnnualCompGroupController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualcompgroup/controller/AnnualCompGroupController.java @@ -95,21 +95,30 @@ public class AnnualCompGroupController extends JeecgController queryWrappercomp = QueryGenerator.initQueryWrapper(comp, req.getParameterMap()); - queryWrappercomp.like("comp_admin",user.getUsername()); + queryWrappercomp.eq("comp_admin",user.getUsername()); List list = compService.list(queryWrappercomp); + if(list.size()==0){ + return Result.error("未绑定比赛"); + } List ids = list.stream().map(Comp::getId).collect(Collectors.toList()); QueryWrapper queryWrapperAnnual = new QueryWrapper<>(); - queryWrapperAnnual.in(ids.size()!=0,"compid",ids); + queryWrapperAnnual.in("compid",ids); List listAnnual = annualCompService.list(queryWrapperAnnual); + if(listAnnual.size()==0){ + return Result.error("未创建年度比赛"); + } List annualIds = listAnnual.stream().map(AnnualComp::getId).collect(Collectors.toList()); QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(annualCompGroup, req.getParameterMap()); queryWrapper.in(annualIds.size()!=0,"annal_comp",annualIds); AnnualCompPoint annualCompPoint = new AnnualCompPoint(); QueryWrapper queryWrapperacp = QueryGenerator.initQueryWrapper(annualCompPoint, req.getParameterMap()); - queryWrapperacp.in(annualIds.size()!=0,"annual_comp_id",annualIds); + queryWrapperacp.in("annual_comp_id",annualIds); queryWrapperacp.eq("annual_comp_switch","Y"); // 比赛必须是开启的 List listacp = annualCompPointService.list(queryWrapperacp); + if(listacp.size()==0){ + return Result.error("未创建年度比赛项目"); + } List acpIds = listacp.stream().map(AnnualCompPoint::getId).collect(Collectors.toList()); queryWrapper.in(acpIds.size()!=0,"ann_comp_p",acpIds); @@ -190,7 +199,7 @@ public class AnnualCompGroupController extends JeecgController queryWrapper = QueryGenerator.initQueryWrapper(comp, req.getParameterMap()); - queryWrapper.like("comp_admin",user.getUsername()); + queryWrapper.eq("comp_admin",user.getUsername()); List list = compService.list(queryWrapper); String str = ""; for(int i = 0 ; i < list.size() ; i++){ diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java index 5b2bbbc8..b4b14f9d 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java @@ -127,23 +127,32 @@ public class AwardPersionController extends JeecgController queryWrappercomp = QueryGenerator.initQueryWrapper(comp, req.getParameterMap()); - queryWrappercomp.like("comp_admin",user.getUsername()); + queryWrappercomp.eq("comp_admin",user.getUsername()); List list = compService.list(queryWrappercomp); + if(list.size()==0){ + return Result.error("未绑定比赛"); + } List ids = list.stream().map(Comp::getId).collect(Collectors.toList()); QueryWrapper queryWrapperAnnual = new QueryWrapper<>(); - queryWrapperAnnual.in(ids.size()!=0,"compid",ids); + queryWrapperAnnual.in("compid",ids); List listAnnual = annualCompService.list(queryWrapperAnnual); + if(listAnnual.size()==0){ + return Result.error("未创建年度比赛"); + } List annualIds = listAnnual.stream().map(AnnualComp::getId).collect(Collectors.toList()); QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(awardPersion, req.getParameterMap()); - queryWrapper.in(annualIds.size()!=0,"annal_comp",annualIds); + queryWrapper.in("annal_comp",annualIds); AnnualCompPoint annualCompPoint = new AnnualCompPoint(); QueryWrapper queryWrapperacp = QueryGenerator.initQueryWrapper(annualCompPoint, req.getParameterMap()); - queryWrapperacp.in(annualIds.size()!=0,"annual_comp_id",annualIds); + queryWrapperacp.in("annual_comp_id",annualIds); queryWrapperacp.eq("annual_comp_switch","Y"); // 比赛必须是开启的 List listacp = annualCompPointService.list(queryWrapperacp); + if(listacp.size()==0){ + return Result.error("未创建年度比赛项目"); + } List acpIds = listacp.stream().map(AnnualCompPoint::getId).collect(Collectors.toList()); - queryWrapper.in(acpIds.size()!=0,"annual_comp_p",acpIds); + queryWrapper.in("annual_comp_p",acpIds); Page page = new Page(pageNo, pageSize); IPage pageList = awardPersionService.page(page, queryWrapper); diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/scorepersion/controller/ScorePersionController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/scorepersion/controller/ScorePersionController.java index 8b1fe80e..21a6f8a2 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/scorepersion/controller/ScorePersionController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/scorepersion/controller/ScorePersionController.java @@ -105,21 +105,30 @@ public class ScorePersionController extends JeecgController queryWrappercomp = QueryGenerator.initQueryWrapper(comp, req.getParameterMap()); - queryWrappercomp.like("comp_admin",user.getUsername()); + queryWrappercomp.eq("comp_admin",user.getUsername()); List list = compService.list(queryWrappercomp); + if(list.size()==0){ + return Result.error("未绑定比赛"); + } List ids = list.stream().map(Comp::getId).collect(Collectors.toList()); QueryWrapper queryWrapperAnnual = new QueryWrapper<>(); queryWrapperAnnual.in(ids.size()!=0,"compid",ids); List listAnnual = annualCompService.list(queryWrapperAnnual); + if(listAnnual.size()==0){ + return Result.error("未创建年度比赛"); + } List annualIds = listAnnual.stream().map(AnnualComp::getId).collect(Collectors.toList()); QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(scorePersion, req.getParameterMap()); - queryWrapper.in(annualIds.size()!=0,"annual_compid",annualIds); + queryWrapper.in("annual_compid",annualIds); AnnualCompPoint annualCompPoint = new AnnualCompPoint(); QueryWrapper queryWrapperacp = QueryGenerator.initQueryWrapper(annualCompPoint, req.getParameterMap()); - queryWrapperacp.in(annualIds.size()!=0,"annual_comp_id",annualIds); + queryWrapperacp.in("annual_comp_id",annualIds); queryWrapperacp.eq("annual_comp_switch","Y"); // 比赛必须是开启的 List listacp = annualCompPointService.list(queryWrapperacp); + if(listacp.size()==0){ + return Result.error("未创建年度比赛项目"); + } List acpIds = listacp.stream().map(AnnualCompPoint::getId).collect(Collectors.toList()); queryWrapper.in(acpIds.size()!=0,"annual_comp_p",acpIds); diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/scoresta/controller/ScoreStaController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/scoresta/controller/ScoreStaController.java index b276a960..9615ed40 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/scoresta/controller/ScoreStaController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/scoresta/controller/ScoreStaController.java @@ -87,23 +87,32 @@ public class ScoreStaController extends JeecgController queryWrappercomp = QueryGenerator.initQueryWrapper(comp, req.getParameterMap()); - queryWrappercomp.like("comp_admin",user.getUsername()); + queryWrappercomp.eq("comp_admin",user.getUsername()); List list = compService.list(queryWrappercomp); + if(list.size()==0){ + return Result.error("未绑定比赛"); + } List ids = list.stream().map(Comp::getId).collect(Collectors.toList()); QueryWrapper queryWrapperAnnual = new QueryWrapper<>(); - queryWrapperAnnual.in(ids.size()!=0,"compid",ids); + queryWrapperAnnual.in("compid",ids); List listAnnual = annualCompService.list(queryWrapperAnnual); + if(listAnnual.size()==0){ + return Result.error("未创建年度比赛"); + } List annualIds = listAnnual.stream().map(AnnualComp::getId).collect(Collectors.toList()); QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(scoreSta, req.getParameterMap()); - queryWrapper.in(annualIds.size()!=0,"annal_comp",annualIds); + queryWrapper.in("annal_comp",annualIds); AnnualCompPoint annualCompPoint = new AnnualCompPoint(); QueryWrapper queryWrapperacp = QueryGenerator.initQueryWrapper(annualCompPoint, req.getParameterMap()); queryWrapperacp.in(annualIds.size()!=0,"annual_comp_id",annualIds); queryWrapperacp.eq("annual_comp_switch","Y"); // 比赛必须是开启的 List listacp = annualCompPointService.list(queryWrapperacp); + if(listacp.size()==0){ + return Result.error("未创建年度比赛项目"); + } List acpIds = listacp.stream().map(AnnualCompPoint::getId).collect(Collectors.toList()); - queryWrapper.in(acpIds.size()!=0,"annual_compid",acpIds); + queryWrapper.in("annual_compid",acpIds); Page page = new Page(pageNo, pageSize); From 29839f5649aebbf4923b5d21c76fea7f8a9de2c6 Mon Sep 17 00:00:00 2001 From: zhc077 <565291854@qq.com> Date: Tue, 30 Jul 2024 17:43:32 +0800 Subject: [PATCH 12/43] =?UTF-8?q?=E4=B8=AA=E4=BA=BA=E8=83=BD=E5=8A=9B?= =?UTF-8?q?=E9=87=8F=E5=8C=96=20=E4=BF=AE=E6=94=B9=207.30?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/PersonalAbilityEvaluationServiceImpl.java | 2 +- .../service/impl/PersonalCompScoreServiceImpl.java | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/service/impl/PersonalAbilityEvaluationServiceImpl.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/service/impl/PersonalAbilityEvaluationServiceImpl.java index 8445b7da..58ec2db4 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/service/impl/PersonalAbilityEvaluationServiceImpl.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/service/impl/PersonalAbilityEvaluationServiceImpl.java @@ -127,7 +127,7 @@ public class PersonalAbilityEvaluationServiceImpl extends ServiceImpl score = new AtomicReference<>((double) 0); if (StringUtils.equals("Y", entryForm)) { //团队赛 Optional.ofNullable(managementList).orElse(new ArrayList<>()).forEach(e -> { From 1b097cdf70b96f9d76e4b7ffa42502b1c14629f3 Mon Sep 17 00:00:00 2001 From: Gitea Date: Tue, 30 Jul 2024 17:47:57 +0800 Subject: [PATCH 13/43] =?UTF-8?q?=E6=88=90=E7=BB=A9=E6=B1=87=E6=80=BB?= =?UTF-8?q?=E5=90=8E=E6=9B=B4=E6=96=B0=E4=BD=9C=E5=93=81=E7=8A=B6=E6=80=81?= =?UTF-8?q?=E4=B8=BA=E5=B7=B2=E8=AF=84=E5=88=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/AnnualCompPointController.java | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java index 5e637449..32faa70d 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java @@ -50,6 +50,8 @@ import org.jeecg.modules.demo.expscore.service.IExpScoreService; import org.jeecg.modules.demo.score_management.entity.ScoreManagement; import org.jeecg.modules.demo.scorepersion.entity.ScorePersion; import org.jeecg.modules.demo.scorepersion.service.IScorePersionService; +import org.jeecg.modules.demo.upfile_persion.entity.UpfilePersion; +import org.jeecg.modules.demo.upfile_persion.service.IUpfilePersionService; import org.jeecg.modules.system.entity.SysUser; import org.jeecg.modules.system.service.ISysUserService; import org.jeecgframework.poi.excel.ExcelImportUtil; @@ -124,6 +126,9 @@ public class AnnualCompPointController extends JeecgController queryWrapperup = new QueryWrapper<>(); + queryWrapperup.eq("apply_code",list.get(b).getBmcode()); + List listup = upfilePersionService.list(queryWrapperup); + if(listup.size()>0){ + up = listup.get(0); + up.setStatus(1); + upfilePersionService.updateById(up); + } + } return Result.OK("成功!"); } /** @@ -484,6 +501,18 @@ public class AnnualCompPointController extends JeecgController queryWrapperup = new QueryWrapper<>(); + queryWrapperup.eq("apply_code",list.get(b).getBmcode()); + List listup = upfilePersionService.list(queryWrapperup); + if(listup.size()>0){ + up = listup.get(0); + up.setStatus(1); + upfilePersionService.updateById(up); + } + } return Result.OK("成功!"); } From f2c9aed30f0956ba0caa2aaa6eabb5e092bc893f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=AE=B6=E4=B8=9C?= <1654135867@qq.com> Date: Tue, 30 Jul 2024 17:57:05 +0800 Subject: [PATCH 14/43] =?UTF-8?q?=E6=AF=94=E8=B5=9B=E6=8A=A5=E5=90=8D?= =?UTF-8?q?=E5=87=BA=E7=8E=B0=E5=85=A8=E9=83=A8=E6=95=B0=E6=8D=AE=E4=BB=A5?= =?UTF-8?q?=E5=8F=8A=E6=B2=A1=E6=9C=89=E5=88=A4=E7=A9=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...petitionProjectRegistrationController.java | 207 +++++++++++++++++- 1 file changed, 201 insertions(+), 6 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualcompetitionprojectregistration/controller/AnnualCompetitionProjectRegistrationController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualcompetitionprojectregistration/controller/AnnualCompetitionProjectRegistrationController.java index 2aa65af5..abac0787 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualcompetitionprojectregistration/controller/AnnualCompetitionProjectRegistrationController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualcompetitionprojectregistration/controller/AnnualCompetitionProjectRegistrationController.java @@ -143,8 +143,40 @@ public class AnnualCompetitionProjectRegistrationController { //处理查询信息 QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(annualCompetitionProjectRegistration, req.getParameterMap()); Page page = new Page(pageNo, pageSize); + LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); + //根据登录信息查询负责比赛 + List compList =compService.query().eq("comp_admin",loginUser.getUsername()).list(); + //判空 + if (compList.isEmpty()){ + return Result.error("未绑定比赛"); + } + //将比赛的id放进一个list里面 + List compIds = compList.stream() + .map(Comp::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + //根据比赛的id查询年度比赛id,这里没有去卡年度 + List annualCompList = annualCompService.query().in("compid",compIds).list(); + //判空 + if (annualCompList.isEmpty()){ + return Result.error("未创建年度比赛"); + } + //将年度比赛id存放到一个list里面 + List anncompIds = annualCompList.stream() + .map(AnnualComp::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + List annualCompPointList = annualCompPointService.query().in("annual_comp_id", anncompIds).list(); + //判空 + if (annualCompPointList.isEmpty()){ + return Result.error("未创建年度比赛项目"); + } + //将年度比赛项目id存放到一个list里面 + List anncomppointIds = annualCompPointList.stream() + .map(AnnualCompPoint::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + //根据用户角色决定查询信息 - queryWrapperAddRoleInfo(queryWrapper); + queryWrapper.in("annual_compid",anncomppointIds); + /* queryWrapperAddRoleInfo(queryWrapper);*/ //查询 IPage pageList = annualCompetitionProjectRegistrationService.page(page, queryWrapper); //处理返回信息 @@ -163,8 +195,40 @@ public class AnnualCompetitionProjectRegistrationController { //处理查询信息 QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(annualCompetitionProjectRegistration, req.getParameterMap()); Page page = new Page(pageNo, pageSize); + LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); + //根据登录信息查询负责比赛 + List compList =compService.query().eq("comp_admin",loginUser.getUsername()).list(); + //判空 + if (compList.isEmpty()){ + return Result.error("未绑定比赛"); + } + //将比赛的id放进一个list里面 + List compIds = compList.stream() + .map(Comp::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + //根据比赛的id查询年度比赛id,这里没有去卡年度 + List annualCompList = annualCompService.query().in("compid",compIds).list(); + //判空 + if (annualCompList.isEmpty()){ + return Result.error("未创建年度比赛"); + } + //将年度比赛id存放到一个list里面 + List anncompIds = annualCompList.stream() + .map(AnnualComp::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + List annualCompPointList = annualCompPointService.query().in("annual_comp_id", anncompIds).list(); + //判空 + if (annualCompPointList.isEmpty()){ + return Result.error("未创建年度比赛项目"); + } + //将年度比赛项目id存放到一个list里面 + List anncomppointIds = annualCompPointList.stream() + .map(AnnualCompPoint::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + //根据用户角色决定查询信息 - queryWrapperAddRoleInfo(queryWrapper); + queryWrapper.in("annual_compid",anncomppointIds); + /* queryWrapperAddRoleInfo(queryWrapper);*/ queryWrapper.eq("enroll_static", "2"); //查询 IPage pageList = annualCompetitionProjectRegistrationService.page(page, queryWrapper); @@ -184,8 +248,40 @@ public class AnnualCompetitionProjectRegistrationController { //处理查询信息 QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(annualCompetitionProjectRegistration, req.getParameterMap()); Page page = new Page(pageNo, pageSize); + LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); + //根据登录信息查询负责比赛 + List compList =compService.query().eq("comp_admin",loginUser.getUsername()).list(); + //判空 + if (compList.isEmpty()){ + return Result.error("未绑定比赛"); + } + //将比赛的id放进一个list里面 + List compIds = compList.stream() + .map(Comp::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + //根据比赛的id查询年度比赛id,这里没有去卡年度 + List annualCompList = annualCompService.query().in("compid",compIds).list(); + //判空 + if (annualCompList.isEmpty()){ + return Result.error("未创建年度比赛"); + } + //将年度比赛id存放到一个list里面 + List anncompIds = annualCompList.stream() + .map(AnnualComp::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + List annualCompPointList = annualCompPointService.query().in("annual_comp_id", anncompIds).list(); + //判空 + if (annualCompPointList.isEmpty()){ + return Result.error("未创建年度比赛项目"); + } + //将年度比赛项目id存放到一个list里面 + List anncomppointIds = annualCompPointList.stream() + .map(AnnualCompPoint::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + //根据用户角色决定查询信息 - queryWrapperAddRoleInfo(queryWrapper); + queryWrapper.in("annual_compid",anncomppointIds); + /* queryWrapperAddRoleInfo(queryWrapper);*/ queryWrapper.eq("enroll_static", "4"); //查询 IPage pageList = annualCompetitionProjectRegistrationService.page(page, queryWrapper); @@ -206,8 +302,40 @@ public class AnnualCompetitionProjectRegistrationController { //处理查询信息 QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(annualCompetitionProjectRegistration, req.getParameterMap()); Page page = new Page(pageNo, pageSize); + LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); + //根据登录信息查询负责比赛 + List compList =compService.query().eq("comp_admin",loginUser.getUsername()).list(); + //判空 + if (compList.isEmpty()){ + return Result.error("未绑定比赛"); + } + //将比赛的id放进一个list里面 + List compIds = compList.stream() + .map(Comp::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + //根据比赛的id查询年度比赛id,这里没有去卡年度 + List annualCompList = annualCompService.query().in("compid",compIds).list(); + //判空 + if (annualCompList.isEmpty()){ + return Result.error("未创建年度比赛"); + } + //将年度比赛id存放到一个list里面 + List anncompIds = annualCompList.stream() + .map(AnnualComp::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + List annualCompPointList = annualCompPointService.query().in("annual_comp_id", anncompIds).list(); + //判空 + if (annualCompPointList.isEmpty()){ + return Result.error("未创建年度比赛项目"); + } + //将年度比赛项目id存放到一个list里面 + List anncomppointIds = annualCompPointList.stream() + .map(AnnualCompPoint::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + //根据用户角色决定查询信息 - queryWrapperAddRoleInfo(queryWrapper); + queryWrapper.in("annual_compid",anncomppointIds); + /* queryWrapperAddRoleInfo(queryWrapper);*/ queryWrapper.eq("enroll_static", "1"); //查询 IPage pageList = annualCompetitionProjectRegistrationService.page(page, queryWrapper); @@ -227,8 +355,40 @@ public class AnnualCompetitionProjectRegistrationController { //处理查询信息 QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(annualCompetitionProjectRegistration, req.getParameterMap()); Page page = new Page(pageNo, pageSize); + LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); + //根据登录信息查询负责比赛 + List compList =compService.query().eq("comp_admin",loginUser.getUsername()).list(); + //判空 + if (compList.isEmpty()){ + return Result.error("未绑定比赛"); + } + //将比赛的id放进一个list里面 + List compIds = compList.stream() + .map(Comp::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + //根据比赛的id查询年度比赛id,这里没有去卡年度 + List annualCompList = annualCompService.query().in("compid",compIds).list(); + //判空 + if (annualCompList.isEmpty()){ + return Result.error("未创建年度比赛"); + } + //将年度比赛id存放到一个list里面 + List anncompIds = annualCompList.stream() + .map(AnnualComp::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + List annualCompPointList = annualCompPointService.query().in("annual_comp_id", anncompIds).list(); + //判空 + if (annualCompPointList.isEmpty()){ + return Result.error("未创建年度比赛项目"); + } + //将年度比赛项目id存放到一个list里面 + List anncomppointIds = annualCompPointList.stream() + .map(AnnualCompPoint::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + //根据用户角色决定查询信息 - queryWrapperAddRoleInfo(queryWrapper); + queryWrapper.in("annual_compid",anncomppointIds); + /* queryWrapperAddRoleInfo(queryWrapper);*/ queryWrapper.eq("enroll_static", "0"); //查询 IPage pageList = annualCompetitionProjectRegistrationService.page(page, queryWrapper); @@ -248,8 +408,40 @@ public class AnnualCompetitionProjectRegistrationController { //处理查询信息 QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(annualCompetitionProjectRegistration, req.getParameterMap()); Page page = new Page(pageNo, pageSize); + LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); + //根据登录信息查询负责比赛 + List compList =compService.query().eq("comp_admin",loginUser.getUsername()).list(); + //判空 + if (compList.isEmpty()){ + return Result.error("未绑定比赛"); + } + //将比赛的id放进一个list里面 + List compIds = compList.stream() + .map(Comp::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + //根据比赛的id查询年度比赛id,这里没有去卡年度 + List annualCompList = annualCompService.query().in("compid",compIds).list(); + //判空 + if (annualCompList.isEmpty()){ + return Result.error("未创建年度比赛"); + } + //将年度比赛id存放到一个list里面 + List anncompIds = annualCompList.stream() + .map(AnnualComp::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + List annualCompPointList = annualCompPointService.query().in("annual_comp_id", anncompIds).list(); + //判空 + if (annualCompPointList.isEmpty()){ + return Result.error("未创建年度比赛项目"); + } + //将年度比赛项目id存放到一个list里面 + List anncomppointIds = annualCompPointList.stream() + .map(AnnualCompPoint::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + //根据用户角色决定查询信息 - queryWrapperAddRoleInfo(queryWrapper); + queryWrapper.in("annual_compid",anncomppointIds); + /* queryWrapperAddRoleInfo(queryWrapper);*/ queryWrapper.eq("enroll_static", "3"); //查询 IPage pageList = annualCompetitionProjectRegistrationService.page(page, queryWrapper); @@ -273,6 +465,9 @@ public class AnnualCompetitionProjectRegistrationController { } else if (role.equals("committee")) { //首先获取负责的比赛 List compList = compService.query().eq("comp_admin",loginUser.getUsername()).list(); + if(compList.isEmpty()){ + return ; + } //将比赛的id放进一个list里面 List compIds = compList.stream() .map(Comp::getId) // 使用方法引用获取每个Comp对象的id From 2225ca7a31e48d4858ac5d94be33569d1013d641 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=AE=B6=E4=B8=9C?= <1654135867@qq.com> Date: Tue, 30 Jul 2024 18:24:04 +0800 Subject: [PATCH 15/43] =?UTF-8?q?=E7=BB=84=E5=A7=94=E4=BC=9A=E8=A7=92?= =?UTF-8?q?=E8=89=B2=E5=87=BA=E7=8E=B0=E5=85=A8=E9=83=A8=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E4=BB=A5=E5=8F=8A=E6=B2=A1=E6=9C=89=E5=88=A4=E7=A9=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ChaoseTopicPersionController.java | 65 +++++++++++++++++++ 1 file changed, 65 insertions(+) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/chooseTopicPersion/controller/ChaoseTopicPersionController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/chooseTopicPersion/controller/ChaoseTopicPersionController.java index ee96092f..16260830 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/chooseTopicPersion/controller/ChaoseTopicPersionController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/chooseTopicPersion/controller/ChaoseTopicPersionController.java @@ -11,16 +11,21 @@ import java.net.URLDecoder; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; +import org.apache.shiro.SecurityUtils; import org.jeecg.common.api.CommonAPI; import org.jeecg.common.api.vo.Result; import org.jeecg.common.system.query.QueryGenerator; import org.jeecg.common.system.vo.DictModel; +import org.jeecg.common.system.vo.LoginUser; import org.jeecg.common.util.oConvertUtils; import org.jeecg.modules.demo.anncomgrotop.entity.AnnComGroTop; import org.jeecg.modules.demo.anncomgrotop.service.IAnnComGroTopService; import org.jeecg.modules.demo.anncomgrotopp.entity.AnnComGroTopP; import org.jeecg.modules.demo.anncomgrotopp.service.IAnnComGroTopPService; +import org.jeecg.modules.demo.annualCompPoint.entity.AnnualCompPoint; import org.jeecg.modules.demo.annualCompPoint.service.IAnnualCompPointService; +import org.jeecg.modules.demo.annualcomp.entity.AnnualComp; +import org.jeecg.modules.demo.annualcomp.service.IAnnualCompService; import org.jeecg.modules.demo.annualcompetitionprojectregistration.entity.AnnualCompetitionProjectRegistration; import org.jeecg.modules.demo.annualcompetitionprojectregistration.service.IAnnualCompetitionProjectRegistrationService; import org.jeecg.modules.demo.chooseTopicPersion.entity.ChaoseTopicPersion; @@ -33,6 +38,9 @@ import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import lombok.extern.slf4j.Slf4j; +import org.jeecg.modules.demo.comp.entity.Comp; +import org.jeecg.modules.demo.comp.service.ICompService; +import org.jeecg.modules.demo.topic.entity.Topic; import org.jeecg.modules.demo.topic.service.ITopicService; import org.jeecg.modules.demo.upfile_persion.entity.UpfilePersion; import org.jeecg.modules.demo.upfile_persion.service.IUpfilePersionService; @@ -80,6 +88,10 @@ public class ChaoseTopicPersionController extends JeecgController queryWrapper = QueryGenerator.initQueryWrapper(chaoseTopicPersion, req.getParameterMap()); + //根据当前登录信息查询题目id,用list去接受 + List topicid =gettopicid(); + if (topicid.isEmpty()){ + return Result.error("请检查比赛流程,未发现选题信息。"); + } + queryWrapper.in("timul",topicid); Page page = new Page<>(pageNo, pageSize); IPage pageList = chaoseTopicPersionService.page(page, queryWrapper); List chooseDtos = new ArrayList<>(); @@ -131,6 +149,53 @@ public class ChaoseTopicPersionController extends JeecgController gettopicid() { + List topicids = new ArrayList<>(); + LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); + //根据登录信息查询负责比赛 + List compList =compService.query().eq("comp_admin",loginUser.getUsername()).list(); + //判空 + if (compList.isEmpty()){ + return topicids; + } + //将比赛的id放进一个list里面 + List compIds = compList.stream() + .map(Comp::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + //根据比赛的id查询年度比赛id,这里没有去卡年度 + List annualCompList = annualCompService.query().in("compid",compIds).list(); + //判空 + if (annualCompList.isEmpty()){ + return topicids; + } + //将年度比赛id存放到一个list里面 + List anncompIds = annualCompList.stream() + .map(AnnualComp::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + List annualCompPointList = annualCompPointService.query().in("annual_comp_id", anncompIds).list(); + //判空 + if (annualCompPointList.isEmpty()){ + return topicids; + } + //将年度比赛项目id存放到一个list里面 + List anncomppointIds = annualCompPointList.stream() + .map(AnnualCompPoint::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + + //根据年度比赛项目id查询题目 + List topicList = topicService.query().in("annual_compid",anncomppointIds).list(); + if (topicList.isEmpty()){ + return topicids; + } + topicids =topicList.stream() + .map(Topic::getId) // 使用方法引用获取每个Comp对象的id + .collect(Collectors.toList()); // 收集到List中 + + return topicids; + + } + @GetMapping(value = "/watch") public Result watch(String enrollCode) { QueryWrapper queryWrapper = new QueryWrapper<>(); From 19d2a251d102a97a23084f23c024370de16a8017 Mon Sep 17 00:00:00 2001 From: Gitea Date: Tue, 30 Jul 2024 18:44:58 +0800 Subject: [PATCH 16/43] =?UTF-8?q?=E5=B9=B4=E5=BA=A6=E6=AF=94=E8=B5=9B?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=BC=80=E5=A7=8B=E6=97=B6=E9=97=B4=E4=B8=8D?= =?UTF-8?q?=E8=83=BD=E5=A4=A7=E4=BA=8E=E7=BB=93=E6=9D=9F=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../demo/annualcomp/controller/AnnualCompController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualcomp/controller/AnnualCompController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualcomp/controller/AnnualCompController.java index 3859e459..56b062a1 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualcomp/controller/AnnualCompController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualcomp/controller/AnnualCompController.java @@ -369,8 +369,8 @@ public class AnnualCompController extends JeecgController end) { + return Result.error("开始时间不能大于结束时间"); } String compname = annualCompVo.getCompname(); String annualname = annualCompVo.getAnnualname(); From c1a4545735f649bd49a7a92ecffbb426ad651e61 Mon Sep 17 00:00:00 2001 From: Gitea Date: Tue, 30 Jul 2024 20:35:36 +0800 Subject: [PATCH 17/43] =?UTF-8?q?=E5=A5=96=E9=A1=B9=E5=AF=BC=E5=85=A5?= =?UTF-8?q?=E6=8A=A5=E9=94=99=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../awardpersion/controller/AwardPersionController.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java index b4b14f9d..06967da0 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java @@ -514,10 +514,14 @@ public class AwardPersionController extends JeecgController queryWrapperaca = QueryGenerator.initQueryWrapper(annualCompAward, request.getParameterMap()); queryWrapperaca.eq("annucompid",list.get(i).getAnnualCompP()); List listaca = annualCompAwardService.list(queryWrapperaca); + if(listaca.size()==0){ + return Result.error("未设置年度比赛奖项"); + } TeamManagement teamManagement = new TeamManagement(); QueryWrapper queryWrappertm = QueryGenerator.initQueryWrapper(teamManagement, request.getParameterMap()); queryWrappertm.eq("enroll_code",list.get(i).getEnrollCode()); List listtm = teamManagementService.list(queryWrappertm); + try { for (int l = 0 ; l < listtm.size() ; l++){ SysUser sysUser = sysUserService.getById(listtm.get(l).getUserId()); list.get(i).setStudentorg(sysDepartService.queryDepartsByUsername(sysUser.getUsername()).get(0).getId()); @@ -555,6 +559,9 @@ public class AwardPersionController extends JeecgController Date: Tue, 30 Jul 2024 20:36:50 +0800 Subject: [PATCH 18/43] =?UTF-8?q?=E5=B9=B4=E5=BA=A6=E6=AF=94=E8=B5=9B?= =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E5=BF=BD=E7=84=B6=E5=87=BA=E7=8E=B0=E5=88=B0?= =?UTF-8?q?=E5=BE=85=E5=AE=A1=E6=A0=B8AND=E6=AF=94=E8=B5=9B=E5=90=8D?= =?UTF-8?q?=E7=A7=B0=E9=87=8D=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/AnnualCompPointController.java | 65 +++++++++++++++++++ .../demo/comp/controller/CompController.java | 7 +- .../modules/demo/comp/mapper/CompMapper.java | 2 +- .../demo/comp/service/ICompService.java | 2 +- .../comp/service/impl/CompServiceImpl.java | 4 +- .../superAdmin/AnnualCompPoint.api.ts | 9 +++ .../superAdmin/AnnualCompPoint.data.ts | 12 ++++ .../AnnualCompPointListAwaitPass.vue | 5 +- .../AnnualCompPointListAwaitReject.vue | 5 +- .../superAdmin/AnnualCompPointListPass.vue | 5 +- 10 files changed, 102 insertions(+), 14 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java index 32faa70d..2d4dc70a 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/controller/AnnualCompPointController.java @@ -198,6 +198,71 @@ public class AnnualCompPointController extends JeecgController> + */ + @GetMapping(value = "/listdsh") + public Result> listdsh(AnnualCompPoint annualCompPoint, + @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo, + @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize, + HttpServletRequest req) { + QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(annualCompPoint, req.getParameterMap()); + queryWrapper.eq("annual_comp_state","1"); + Page page = new Page(pageNo, pageSize); + IPage pageList = annualCompPointService.page(page, queryWrapper); + + return Result.OK(pageList); + } + + /** + * 组委会 已审核 + * @param annualCompPoint + * @param pageNo + * @param pageSize + * @param req + * @return {@link Result}<{@link IPage}<{@link AnnualCompPoint}>> + */ + @GetMapping(value = "/listysh") + public Result> listysh(AnnualCompPoint annualCompPoint, + @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo, + @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize, + HttpServletRequest req) { + QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(annualCompPoint, req.getParameterMap()); + queryWrapper.eq("annual_comp_state","2"); + Page page = new Page(pageNo, pageSize); + IPage pageList = annualCompPointService.page(page, queryWrapper); + + return Result.OK(pageList); + } + + + /** + * + * 组委会 带驳回 + * @param annualCompPoint + * @param pageNo + * @param pageSize + * @param req + * @return {@link Result}<{@link IPage}<{@link AnnualCompPoint}>> + */ + @GetMapping(value = "/listdbh") + public Result> listdbh(AnnualCompPoint annualCompPoint, + @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo, + @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize, + HttpServletRequest req) { + QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(annualCompPoint, req.getParameterMap()); + queryWrapper.eq("annual_comp_state","3"); + Page page = new Page(pageNo, pageSize); + IPage pageList = annualCompPointService.page(page, queryWrapper); + + return Result.OK(pageList); + } + /** * 专家 显示所有 diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/comp/controller/CompController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/comp/controller/CompController.java index daddfe2a..4a1d2820 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/comp/controller/CompController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/comp/controller/CompController.java @@ -205,6 +205,11 @@ public class CompController extends JeecgController { Integer compOrder = comp.getCompOrder(); String departIds = comp.getCompOrgan(); + List compListsss = compService.query().eq("comp_name",comp.getCompName()).list(); + if (compListsss.size()>0){ + return Result.error("这个比赛名称已存在,请确定比赛名称是否正确"); + } + List list = Arrays.asList(comp.getCompAdmin().split(",")); /* List list1 = new ArrayList<>(); @@ -266,7 +271,7 @@ public class CompController extends JeecgController { System.out.println(compList.get(i).getCompOrder()); int rankold = insertAndRank(parlint, String.valueOf(compList.get(i).getCompOrder())); int scoreold = (int) (( rankold+1) * b + compTypeService.getById(comp.getCompTypeId()).getScorel()); - compService.updatedate(compList.get(i).getId(),scoreold); + compService.updatedatework(compList.get(i).getId(),scoreold); } } /*--------------------------王家东添加开始============================*/ diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/comp/mapper/CompMapper.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/comp/mapper/CompMapper.java index 9cf7e291..c3a11b74 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/comp/mapper/CompMapper.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/comp/mapper/CompMapper.java @@ -30,5 +30,5 @@ public interface CompMapper extends BaseMapper { List getAllCompByType(String compTypeId); @Update("UPDATE comp SET compweight = #{scoreold} WHERE id=#{id}") - void updatedate(String id, int scoreold); + void updatedatework(String id, int scoreold); } diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/comp/service/ICompService.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/comp/service/ICompService.java index 04c22724..38aa93bc 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/comp/service/ICompService.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/comp/service/ICompService.java @@ -22,5 +22,5 @@ public interface ICompService extends IService { List getAllCompByType(String compTypeId); - void updatedate(String id, int scoreold); + void updatedatework(String id, int scoreold); } diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/comp/service/impl/CompServiceImpl.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/comp/service/impl/CompServiceImpl.java index 44a09494..40a9c41c 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/comp/service/impl/CompServiceImpl.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/comp/service/impl/CompServiceImpl.java @@ -42,7 +42,7 @@ public class CompServiceImpl extends ServiceImpl implements IC } @Override - public void updatedate(String id, int scoreold) { - compMapper.updatedate(id,scoreold); + public void updatedatework(String id, int scoreold) { + compMapper.updatedatework(id,scoreold); } } diff --git a/jeecgboot-vue3-master/src/views/annualCompPoint/superAdmin/AnnualCompPoint.api.ts b/jeecgboot-vue3-master/src/views/annualCompPoint/superAdmin/AnnualCompPoint.api.ts index 4dc2f7fb..5910f782 100644 --- a/jeecgboot-vue3-master/src/views/annualCompPoint/superAdmin/AnnualCompPoint.api.ts +++ b/jeecgboot-vue3-master/src/views/annualCompPoint/superAdmin/AnnualCompPoint.api.ts @@ -6,6 +6,9 @@ const {createConfirm} = useMessage(); enum Api { listZJ = '/AnnualCompPoint/annualCompPoint/listZJ', list = '/AnnualCompPoint/annualCompPoint/listAdmin', + listdsh = '/AnnualCompPoint/annualCompPoint/listdsh', + listdbh = '/AnnualCompPoint/annualCompPoint/listdbh', + listysh = '/AnnualCompPoint/annualCompPoint/listysh', save = '/AnnualCompPoint/annualCompPoint/add', edit = '/AnnualCompPoint/annualCompPoint/edit', deleteOne = '/AnnualCompPoint/annualCompPoint/delete', @@ -15,6 +18,12 @@ enum Api { updatePass = '/AnnualCompPoint/annualCompPoint/updatePass', } +//待审核 +export const listdsh = (params) => defHttp.get({ url: Api.listdsh, params }); +//带驳回 +export const listdbh = (params) => defHttp.get({ url: Api.listdbh, params }); +//带已审核 +export const listysh = (params) => defHttp.get({ url: Api.listysh, params }); /** * 导出api * @param params diff --git a/jeecgboot-vue3-master/src/views/annualCompPoint/superAdmin/AnnualCompPoint.data.ts b/jeecgboot-vue3-master/src/views/annualCompPoint/superAdmin/AnnualCompPoint.data.ts index 3b0db7d0..44e50c0d 100644 --- a/jeecgboot-vue3-master/src/views/annualCompPoint/superAdmin/AnnualCompPoint.data.ts +++ b/jeecgboot-vue3-master/src/views/annualCompPoint/superAdmin/AnnualCompPoint.data.ts @@ -59,6 +59,18 @@ export const columns: BasicColumn[] = [ return '待驳回'; case "4": return '已驳回'; + case "5": + return '已报名'; + case "6": + return '已选题'; + case "7": + return '已上传作品'; + case "8": + return '已评分'; + case "9": + return '已评奖'; + case "10": + return '积分已汇总'; default: return annualCompState.value; } diff --git a/jeecgboot-vue3-master/src/views/annualCompPoint/superAdmin/AnnualCompPointListAwaitPass.vue b/jeecgboot-vue3-master/src/views/annualCompPoint/superAdmin/AnnualCompPointListAwaitPass.vue index 94d8d398..14da6e08 100644 --- a/jeecgboot-vue3-master/src/views/annualCompPoint/superAdmin/AnnualCompPointListAwaitPass.vue +++ b/jeecgboot-vue3-master/src/views/annualCompPoint/superAdmin/AnnualCompPointListAwaitPass.vue @@ -63,7 +63,7 @@ import {BasicTable, useTable, TableAction} from '/@/components/Table'; import {useListPage} from '/@/hooks/system/useListPage'; import {columns} from './AnnualCompPoint.data'; import { - list, + listdsh, deleteOne, batchDelete, getImportUrl, @@ -87,7 +87,7 @@ const registerModal = ref(); const {prefixCls, tableContext, onExportXls, onImportXls} = useListPage({ tableProps: { title: '年度比赛项目管理', - api: list, + api: listdsh, columns, canResize: false, useSearchForm: false, @@ -96,7 +96,6 @@ const {prefixCls, tableContext, onExportXls, onImportXls} = useListPage({ fixed: 'right', }, beforeFetch: (params) => { - queryParam.annualCompState=1; return Object.assign(params, queryParam); }, }, diff --git a/jeecgboot-vue3-master/src/views/annualCompPoint/superAdmin/AnnualCompPointListAwaitReject.vue b/jeecgboot-vue3-master/src/views/annualCompPoint/superAdmin/AnnualCompPointListAwaitReject.vue index 79963da0..9e08d984 100644 --- a/jeecgboot-vue3-master/src/views/annualCompPoint/superAdmin/AnnualCompPointListAwaitReject.vue +++ b/jeecgboot-vue3-master/src/views/annualCompPoint/superAdmin/AnnualCompPointListAwaitReject.vue @@ -64,7 +64,7 @@ import {BasicTable, useTable, TableAction} from '/@/components/Table'; import {useListPage} from '/@/hooks/system/useListPage'; import {columns} from './AnnualCompPoint.data'; import { - list, + listdbh, deleteOne, batchDelete, getImportUrl, @@ -90,7 +90,7 @@ const registerModal1 = ref(); const {prefixCls, tableContext, onExportXls, onImportXls} = useListPage({ tableProps: { title: '年度比赛项目管理', - api: list, + api: listdbh, columns, canResize: false, useSearchForm: false, @@ -99,7 +99,6 @@ const {prefixCls, tableContext, onExportXls, onImportXls} = useListPage({ fixed: 'right', }, beforeFetch: (params) => { - queryParam.annualCompState=3; return Object.assign(params, queryParam); }, }, diff --git a/jeecgboot-vue3-master/src/views/annualCompPoint/superAdmin/AnnualCompPointListPass.vue b/jeecgboot-vue3-master/src/views/annualCompPoint/superAdmin/AnnualCompPointListPass.vue index a144a693..807740cd 100644 --- a/jeecgboot-vue3-master/src/views/annualCompPoint/superAdmin/AnnualCompPointListPass.vue +++ b/jeecgboot-vue3-master/src/views/annualCompPoint/superAdmin/AnnualCompPointListPass.vue @@ -63,7 +63,7 @@ import {BasicTable, useTable, TableAction} from '/@/components/Table'; import {useListPage} from '/@/hooks/system/useListPage'; import {columns} from './AnnualCompPoint.data'; import { - list, + listysh, deleteOne, batchDelete, getImportUrl, @@ -87,7 +87,7 @@ const registerModal = ref(); const {prefixCls, tableContext, onExportXls, onImportXls} = useListPage({ tableProps: { title: '年度比赛项目管理', - api: list, + api: listysh, // api: () => list({ ...params, compStatus: compStatus }), columns, canResize: false, @@ -97,7 +97,6 @@ const {prefixCls, tableContext, onExportXls, onImportXls} = useListPage({ fixed: 'right', }, beforeFetch: (params) => { - queryParam.annualCompState=2; return Object.assign(params, queryParam); }, }, From 1fef75cfbca4966a743c40a950d630f01488254c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=AE=B6=E4=B8=9C?= <1654135867@qq.com> Date: Tue, 30 Jul 2024 21:07:03 +0800 Subject: [PATCH 19/43] =?UTF-8?q?=E5=90=8C=E4=B8=80=E5=B9=B4=E9=83=BD?= =?UTF-8?q?=E6=AF=94=E8=B5=9B=E4=B8=8B=E9=A1=B9=E7=9B=AE=E5=90=8D=E7=A7=B0?= =?UTF-8?q?=E4=B8=8D=E5=8F=AF=E9=87=8D=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/AnnualCompPointServiceImpl.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/service/impl/AnnualCompPointServiceImpl.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/service/impl/AnnualCompPointServiceImpl.java index 233a316d..45636d9b 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/service/impl/AnnualCompPointServiceImpl.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualCompPoint/service/impl/AnnualCompPointServiceImpl.java @@ -47,6 +47,9 @@ public class AnnualCompPointServiceImpl extends ServiceImpl annualCompPointListzbc = annualCompPointService.query().eq("annual_comp_id",annualCompPoint.getAnnualCompId()).eq("obj_name",annualCompPoint.getObjName()).list(); + if (annualCompPointListzbc.size()>0){ + return Result.error("同一年度比赛下项目名称不可重复"); + } + if (annualComp.getIsopen().equals("0")) { return Result.error("请先启动年度比赛"); From bdfc82c77454f7b20b837f22eda57224806d44a0 Mon Sep 17 00:00:00 2001 From: Gitea Date: Tue, 30 Jul 2024 21:32:26 +0800 Subject: [PATCH 20/43] =?UTF-8?q?=E5=A5=96=E9=A1=B9=E5=AF=BC=E5=85=A5?= =?UTF-8?q?=E6=8A=A5=E9=94=99=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/AwardPersionController.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java index 06967da0..7bcc2424 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java @@ -494,6 +494,21 @@ public class AwardPersionController extends JeecgController list = ExcelImportUtil.importExcel(file.getInputStream(), AwardPersion.class, params); List listsave = new ArrayList<>(); for(int i = 0 ; i < list.size() ; i++){ + if(list.get(i).getAnnualid()==null||list.get(i).getAnnualid().equals("")){ + return Result.error("文件导入失败:第"+(i+1)+"行年度为空"); + } + if(list.get(i).getAnnalComp()==null||list.get(i).getAnnalComp().equals("")){ + return Result.error("文件导入失败:第"+(i+1)+"行年度比赛为空"); + } + if(list.get(i).getAnnualCompP()==null||list.get(i).getAnnualCompP().equals("")){ + return Result.error("文件导入失败:第"+(i+1)+"行年度比赛项目为空"); + } + if(list.get(i).getEnrollCode()==null||list.get(i).getEnrollCode().equals("")){ + return Result.error("文件导入失败:第"+(i+1)+"行报名编号为空"); + } + if(list.get(i).getAwardname()==null||list.get(i).getAwardname().equals("")){ + return Result.error("文件导入失败:第"+(i+1)+"行奖项名称为空"); + } AnnualCompetitionProjectRegistration annualCompetitionProjectRegistration = new AnnualCompetitionProjectRegistration(); QueryWrapper queryWrappera = QueryGenerator.initQueryWrapper(annualCompetitionProjectRegistration, request.getParameterMap()); queryWrappera.eq("annual_compid",list.get(i).getAnnualCompP()); From f93e947e757dce9c37ae0f7b0e13b240474d7228 Mon Sep 17 00:00:00 2001 From: significative <163999932+significative@users.noreply.github.com> Date: Tue, 30 Jul 2024 21:51:14 +0800 Subject: [PATCH 21/43] =?UTF-8?q?=E7=A6=81=E7=94=A8=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/awardpersion/components/AwardPersionModal.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/jeecgboot-vue3-master/src/views/awardpersion/components/AwardPersionModal.vue b/jeecgboot-vue3-master/src/views/awardpersion/components/AwardPersionModal.vue index 9f07f102..7380cc03 100644 --- a/jeecgboot-vue3-master/src/views/awardpersion/components/AwardPersionModal.vue +++ b/jeecgboot-vue3-master/src/views/awardpersion/components/AwardPersionModal.vue @@ -23,6 +23,7 @@ visible.value = true; nextTick(() => { registerForm.value.add(); + registerForm.value.setIsT(false); }); } From 394fa73d5af1d293c00d99417ccf0b1942b9013b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=88=86=E7=B1=B3=E8=8A=B1?= <417727563@qq.com> Date: Tue, 30 Jul 2024 21:53:16 +0800 Subject: [PATCH 22/43] 30 --- .../jeecg/modules/demo/comp/mapper/CompMapper.java | 2 +- .../src/views/system/loginmini/MiniLogin.vue | 12 ++++++------ .../src/views/system/user/userYX.data.ts | 4 ++-- .../src/views/system/user/userZJ.data.ts | 4 ++-- .../src/views/system/userZJ/user.data.ts | 4 ++-- .../src/views/system/userZJ/userZJ.data.ts | 4 ++-- .../src/views/system/usercompexpert/user.data.ts | 4 ++-- .../src/views/system/usercompexpert/userZJ.data.ts | 4 ++-- .../src/views/system/userdep/userYX.data.ts | 4 ++-- .../src/views/system/userdep/userZJ.data.ts | 4 ++-- 10 files changed, 23 insertions(+), 23 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/comp/mapper/CompMapper.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/comp/mapper/CompMapper.java index c3a11b74..e0ee665b 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/comp/mapper/CompMapper.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/comp/mapper/CompMapper.java @@ -30,5 +30,5 @@ public interface CompMapper extends BaseMapper { List getAllCompByType(String compTypeId); @Update("UPDATE comp SET compweight = #{scoreold} WHERE id=#{id}") - void updatedatework(String id, int scoreold); + void updatedatework(@Param("id") String id, @Param("scoreold") int scoreold); } diff --git a/jeecgboot-vue3-master/src/views/system/loginmini/MiniLogin.vue b/jeecgboot-vue3-master/src/views/system/loginmini/MiniLogin.vue index 23db45ac..362230c8 100644 --- a/jeecgboot-vue3-master/src/views/system/loginmini/MiniLogin.vue +++ b/jeecgboot-vue3-master/src/views/system/loginmini/MiniLogin.vue @@ -112,13 +112,13 @@
- -
- --> +
diff --git a/jeecgboot-vue3-master/src/views/system/user/userYX.data.ts b/jeecgboot-vue3-master/src/views/system/user/userYX.data.ts index 774a711b..a793117a 100644 --- a/jeecgboot-vue3-master/src/views/system/user/userYX.data.ts +++ b/jeecgboot-vue3-master/src/views/system/user/userYX.data.ts @@ -21,7 +21,7 @@ export const columns: BasicColumn[] = [ width: 120, customRender: render.renderAvatar, }, - { +/* { title: '性别', dataIndex: 'sex', width: 80, @@ -34,7 +34,7 @@ export const columns: BasicColumn[] = [ title: '生日', dataIndex: 'birthday', width: 100, - }, + },*/ { title: '手机号', dataIndex: 'phone', diff --git a/jeecgboot-vue3-master/src/views/system/user/userZJ.data.ts b/jeecgboot-vue3-master/src/views/system/user/userZJ.data.ts index 6c5499f2..86ba0c07 100644 --- a/jeecgboot-vue3-master/src/views/system/user/userZJ.data.ts +++ b/jeecgboot-vue3-master/src/views/system/user/userZJ.data.ts @@ -20,7 +20,7 @@ export const columns: BasicColumn[] = [ width: 120, customRender: render.renderAvatar, }, - { + /*{ title: '性别', dataIndex: 'sex', width: 80, @@ -33,7 +33,7 @@ export const columns: BasicColumn[] = [ title: '生日', dataIndex: 'birthday', width: 100, - }, + },*/ { title: '手机号', dataIndex: 'phone', diff --git a/jeecgboot-vue3-master/src/views/system/userZJ/user.data.ts b/jeecgboot-vue3-master/src/views/system/userZJ/user.data.ts index 950900b6..b451bcf4 100644 --- a/jeecgboot-vue3-master/src/views/system/userZJ/user.data.ts +++ b/jeecgboot-vue3-master/src/views/system/userZJ/user.data.ts @@ -20,7 +20,7 @@ export const columns: BasicColumn[] = [ width: 120, customRender: render.renderAvatar, }, - { + /*{ title: '性别', dataIndex: 'sex', width: 80, @@ -33,7 +33,7 @@ export const columns: BasicColumn[] = [ title: '生日', dataIndex: 'birthday', width: 100, - }, + },*/ { title: '手机号', dataIndex: 'phone', diff --git a/jeecgboot-vue3-master/src/views/system/userZJ/userZJ.data.ts b/jeecgboot-vue3-master/src/views/system/userZJ/userZJ.data.ts index 77d46230..8cee59ab 100644 --- a/jeecgboot-vue3-master/src/views/system/userZJ/userZJ.data.ts +++ b/jeecgboot-vue3-master/src/views/system/userZJ/userZJ.data.ts @@ -20,7 +20,7 @@ export const columns: BasicColumn[] = [ width: 120, customRender: render.renderAvatar, }, - { + /* { title: '性别', dataIndex: 'sex', width: 80, @@ -33,7 +33,7 @@ export const columns: BasicColumn[] = [ title: '生日', dataIndex: 'birthday', width: 100, - }, + },*/ { title: '手机号', dataIndex: 'phone', diff --git a/jeecgboot-vue3-master/src/views/system/usercompexpert/user.data.ts b/jeecgboot-vue3-master/src/views/system/usercompexpert/user.data.ts index 5b1e0897..ad0618b7 100644 --- a/jeecgboot-vue3-master/src/views/system/usercompexpert/user.data.ts +++ b/jeecgboot-vue3-master/src/views/system/usercompexpert/user.data.ts @@ -20,7 +20,7 @@ export const columns: BasicColumn[] = [ width: 120, customRender: render.renderAvatar, }, - { + /*{ title: '性别', dataIndex: 'sex', width: 80, @@ -33,7 +33,7 @@ export const columns: BasicColumn[] = [ title: '生日', dataIndex: 'birthday', width: 100, - }, + },*/ { title: '手机号', dataIndex: 'phone', diff --git a/jeecgboot-vue3-master/src/views/system/usercompexpert/userZJ.data.ts b/jeecgboot-vue3-master/src/views/system/usercompexpert/userZJ.data.ts index 77d46230..dcba30a0 100644 --- a/jeecgboot-vue3-master/src/views/system/usercompexpert/userZJ.data.ts +++ b/jeecgboot-vue3-master/src/views/system/usercompexpert/userZJ.data.ts @@ -20,7 +20,7 @@ export const columns: BasicColumn[] = [ width: 120, customRender: render.renderAvatar, }, - { + /*{ title: '性别', dataIndex: 'sex', width: 80, @@ -33,7 +33,7 @@ export const columns: BasicColumn[] = [ title: '生日', dataIndex: 'birthday', width: 100, - }, + },*/ { title: '手机号', dataIndex: 'phone', diff --git a/jeecgboot-vue3-master/src/views/system/userdep/userYX.data.ts b/jeecgboot-vue3-master/src/views/system/userdep/userYX.data.ts index 8a4dce4a..be359385 100644 --- a/jeecgboot-vue3-master/src/views/system/userdep/userYX.data.ts +++ b/jeecgboot-vue3-master/src/views/system/userdep/userYX.data.ts @@ -22,7 +22,7 @@ export const columns: BasicColumn[] = [ width: 120, customRender: render.renderAvatar, }, - { + /*{ title: '性别', dataIndex: 'sex', width: 80, @@ -35,7 +35,7 @@ export const columns: BasicColumn[] = [ title: '生日', dataIndex: 'birthday', width: 100, - }, + },*/ { title: '手机号', dataIndex: 'phone', diff --git a/jeecgboot-vue3-master/src/views/system/userdep/userZJ.data.ts b/jeecgboot-vue3-master/src/views/system/userdep/userZJ.data.ts index 4ea8f467..e378e1a0 100644 --- a/jeecgboot-vue3-master/src/views/system/userdep/userZJ.data.ts +++ b/jeecgboot-vue3-master/src/views/system/userdep/userZJ.data.ts @@ -20,7 +20,7 @@ export const columns: BasicColumn[] = [ width: 120, customRender: render.renderAvatar, }, - { + /*{ title: '性别', dataIndex: 'sex', width: 80, @@ -33,7 +33,7 @@ export const columns: BasicColumn[] = [ title: '生日', dataIndex: 'birthday', width: 100, - }, + },*/ { title: '手机号', dataIndex: 'phone', From d4953de233d3027f705a0e438fd12d45d0c595e3 Mon Sep 17 00:00:00 2001 From: fhv Date: Tue, 30 Jul 2024 21:56:29 +0800 Subject: [PATCH 23/43] =?UTF-8?q?=E5=AD=A6=E7=94=9F=E7=A7=AF=E5=88=86?= =?UTF-8?q?=E3=80=81=E8=83=BD=E5=8A=9B=E6=9F=A5=E8=AF=A2=E6=9D=A1=E4=BB=B6?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../PersonalAbilityEvaluationCollectController.java | 8 +++++++- .../controller/PersonalCompTotalScoreController.java | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/controller/PersonalAbilityEvaluationCollectController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/controller/PersonalAbilityEvaluationCollectController.java index 92023f49..03aa9923 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/controller/PersonalAbilityEvaluationCollectController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/controller/PersonalAbilityEvaluationCollectController.java @@ -13,6 +13,8 @@ import org.jeecg.common.system.query.QueryGenerator; import org.jeecg.common.system.vo.LoginUser; import org.jeecg.modules.demo.abilityEvaluation.entity.PersonalAbilityEvaluationCollect; import org.jeecg.modules.demo.abilityEvaluation.service.IPersonalAbilityEvaluationCollectService; +import org.jeecg.modules.system.entity.SysUser; +import org.jeecg.modules.system.service.ISysUserService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import org.springframework.web.servlet.ModelAndView; @@ -35,6 +37,9 @@ public class PersonalAbilityEvaluationCollectController extends JeecgController< @Autowired private IPersonalAbilityEvaluationCollectService personalAbilityEvaluationCollectService; + @Autowired + private ISysUserService iSysUserService; + /** * 分页列表查询 * @@ -76,7 +81,8 @@ public class PersonalAbilityEvaluationCollectController extends JeecgController< HttpServletRequest req) { QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(personalAbilityEvaluationCollect, req.getParameterMap()); LoginUser user= (LoginUser) SecurityUtils.getSubject().getPrincipal(); - queryWrapper.eq("work_on",user.getUsername()); + SysUser user1 = iSysUserService.getById(user.getId()); + queryWrapper.eq("work_on",user1.getWorkNo()); Page page = new Page(pageNo, pageSize); IPage pageList = personalAbilityEvaluationCollectService.page(page, queryWrapper); return Result.OK(pageList); diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualScore/controller/PersonalCompTotalScoreController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualScore/controller/PersonalCompTotalScoreController.java index 8c34e5ff..5b142d59 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualScore/controller/PersonalCompTotalScoreController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualScore/controller/PersonalCompTotalScoreController.java @@ -15,6 +15,8 @@ import org.jeecg.common.system.query.QueryGenerator; import org.jeecg.common.system.vo.LoginUser; import org.jeecg.modules.demo.annualScore.entity.PersonalCompTotalScore; import org.jeecg.modules.demo.annualScore.service.IPersonalCompTotalScoreService; +import org.jeecg.modules.system.entity.SysUser; +import org.jeecg.modules.system.service.ISysUserService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import org.springframework.web.servlet.ModelAndView; @@ -37,6 +39,9 @@ public class PersonalCompTotalScoreController extends JeecgController queryWrapper = QueryGenerator.initQueryWrapper(personalCompTotalScore, req.getParameterMap()); LoginUser user= (LoginUser) SecurityUtils.getSubject().getPrincipal(); - queryWrapper.eq("work_on",user.getUsername()); + SysUser user1 = iSysUserService.getById(user.getId()); + queryWrapper.eq("work_on",user1.getWorkNo()); Page page = new Page(pageNo, pageSize); IPage pageList = personalCompTotalScoreService.page(page, queryWrapper); return Result.OK(pageList); From c9824f4e35083b02358432ebb72b4bc2c536ca70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=88=86=E7=B1=B3=E8=8A=B1?= <417727563@qq.com> Date: Tue, 30 Jul 2024 21:56:36 +0800 Subject: [PATCH 24/43] 30-02 --- jeecgboot-vue3-master/pnpm-lock.yaml | 22409 ------------------------- 1 file changed, 22409 deletions(-) delete mode 100644 jeecgboot-vue3-master/pnpm-lock.yaml diff --git a/jeecgboot-vue3-master/pnpm-lock.yaml b/jeecgboot-vue3-master/pnpm-lock.yaml deleted file mode 100644 index dd17d1de..00000000 --- a/jeecgboot-vue3-master/pnpm-lock.yaml +++ /dev/null @@ -1,22409 +0,0 @@ -lockfileVersion: '9.0' - -settings: - autoInstallPeers: true - excludeLinksFromLockfile: false - -overrides: - bin-wrapper: npm:bin-wrapper-china - rollup: ^2.72.0 - -importers: - - .: - dependencies: - '@ant-design/colors': - specifier: ^6.0.0 - version: https://registry.npmmirror.com/@ant-design/colors/-/colors-6.0.0.tgz - '@ant-design/icons-vue': - specifier: ^6.1.0 - version: https://registry.npmmirror.com/@ant-design/icons-vue/-/icons-vue-6.1.0.tgz(vue@3.2.33) - '@iconify/iconify': - specifier: ^2.2.1 - version: https://registry.npmmirror.com/@iconify/iconify/-/iconify-2.2.1.tgz - '@jeecg/online': - specifier: 3.5.3-beta3 - version: https://registry.npmmirror.com/@jeecg/online/-/online-3.5.3-beta3.tgz - '@logicflow/core': - specifier: ^1.1.13 - version: https://registry.npmmirror.com/@logicflow/core/-/core-1.1.13.tgz - '@logicflow/extension': - specifier: ^1.1.13 - version: https://registry.npmmirror.com/@logicflow/extension/-/extension-1.1.13.tgz - '@qiaoqiaoyun/drag-free': - specifier: ^1.0.52 - version: https://registry.npmmirror.com/@qiaoqiaoyun/drag-free/-/drag-free-1.0.511.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18) - '@vue/runtime-core': - specifier: ^3.2.33 - version: https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.2.33.tgz - '@vue/shared': - specifier: ^3.2.33 - version: https://registry.npmmirror.com/@vue/shared/-/shared-3.2.33.tgz - '@vueuse/core': - specifier: ^8.3.0 - version: https://registry.npmmirror.com/@vueuse/core/-/core-8.3.0.tgz(vue@3.2.33) - '@vueuse/shared': - specifier: ^8.3.0 - version: https://registry.npmmirror.com/@vueuse/shared/-/shared-8.3.0.tgz(vue@3.2.33) - '@zxcvbn-ts/core': - specifier: ^2.0.1 - version: https://registry.npmmirror.com/@zxcvbn-ts/core/-/core-2.0.1.tgz - ant-design-vue: - specifier: ^3.2.12 - version: https://registry.npmmirror.com/ant-design-vue/-/ant-design-vue-3.2.12.tgz(vue@3.2.33) - axios: - specifier: ^0.26.1 - version: https://registry.npmmirror.com/axios/-/axios-0.26.1.tgz(debug@4.3.4) - china-area-data: - specifier: ^5.0.1 - version: https://registry.npmmirror.com/china-area-data/-/china-area-data-5.0.1.tgz - clipboard: - specifier: ^2.0.8 - version: https://registry.npmmirror.com/clipboard/-/clipboard-2.0.8.tgz - codemirror: - specifier: ^5.65.3 - version: https://registry.npmmirror.com/codemirror/-/codemirror-5.65.3.tgz - cron-parser: - specifier: ^3.5.0 - version: https://registry.npmmirror.com/cron-parser/-/cron-parser-3.5.0.tgz - cropperjs: - specifier: ^1.5.12 - version: https://registry.npmmirror.com/cropperjs/-/cropperjs-1.5.12.tgz - crypto-js: - specifier: ^4.1.1 - version: https://registry.npmmirror.com/crypto-js/-/crypto-js-4.1.1.tgz - dayjs: - specifier: ^1.11.1 - version: https://registry.npmmirror.com/dayjs/-/dayjs-1.11.1.tgz - dom-align: - specifier: ^1.12.2 - version: https://registry.npmmirror.com/dom-align/-/dom-align-1.12.2.tgz - echarts: - specifier: ^5.3.2 - version: https://registry.npmmirror.com/echarts/-/echarts-5.3.2.tgz - emoji-mart-vue-fast: - specifier: ^11.1.1 - version: https://registry.npmmirror.com/emoji-mart-vue-fast/-/emoji-mart-vue-fast-11.1.1.tgz(vue@3.2.33) - enquire.js: - specifier: ^2.1.6 - version: https://registry.npmmirror.com/enquire.js/-/enquire.js-2.1.6.tgz - intro.js: - specifier: ^5.1.0 - version: https://registry.npmmirror.com/intro.js/-/intro.js-5.1.0.tgz - lodash-es: - specifier: ^4.17.21 - version: https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz - lodash.get: - specifier: ^4.4.2 - version: https://registry.npmmirror.com/lodash.get/-/lodash.get-4.4.2.tgz - md5: - specifier: ^2.3.0 - version: https://registry.npmmirror.com/md5/-/md5-2.3.0.tgz - mockjs: - specifier: ^1.1.0 - version: https://registry.npmmirror.com/mockjs/-/mockjs-1.1.0.tgz - nprogress: - specifier: ^0.2.0 - version: https://registry.npmmirror.com/nprogress/-/nprogress-0.2.0.tgz - path-to-regexp: - specifier: ^6.2.0 - version: https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-6.2.0.tgz - pinia: - specifier: 2.0.12 - version: https://registry.npmmirror.com/pinia/-/pinia-2.0.12.tgz(typescript@4.6.3)(vue@3.2.33) - pinyin-pro: - specifier: ^3.11.0 - version: https://registry.npmmirror.com/pinyin-pro/-/pinyin-pro-3.11.0.tgz - print-js: - specifier: ^1.6.0 - version: https://registry.npmmirror.com/print-js/-/print-js-1.6.0.tgz - qrcode: - specifier: ^1.5.0 - version: https://registry.npmmirror.com/qrcode/-/qrcode-1.5.0.tgz - qrcodejs2: - specifier: 0.0.2 - version: https://registry.npmmirror.com/qrcodejs2/-/qrcodejs2-0.0.2.tgz - qs: - specifier: ^6.10.3 - version: https://registry.npmmirror.com/qs/-/qs-6.10.3.tgz - resize-observer-polyfill: - specifier: ^1.5.1 - version: https://registry.npmmirror.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz - showdown: - specifier: ^2.1.0 - version: https://registry.npmmirror.com/showdown/-/showdown-2.1.0.tgz - sortablejs: - specifier: ^1.15.0 - version: https://registry.npmmirror.com/sortablejs/-/sortablejs-1.15.0.tgz - tinymce: - specifier: ^5.10.3 - version: https://registry.npmmirror.com/tinymce/-/tinymce-5.10.3.tgz - vditor: - specifier: ^3.8.13 - version: https://registry.npmmirror.com/vditor/-/vditor-3.8.13.tgz - vue: - specifier: ^3.2.33 - version: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - vue-cropper: - specifier: ^0.5.6 - version: https://registry.npmmirror.com/vue-cropper/-/vue-cropper-0.5.6.tgz - vue-cropperjs: - specifier: ^5.0.0 - version: https://registry.npmmirror.com/vue-cropperjs/-/vue-cropperjs-5.0.0.tgz(vue@3.2.33) - vue-i18n: - specifier: ^9.1.9 - version: https://registry.npmmirror.com/vue-i18n/-/vue-i18n-9.1.9.tgz(vue@3.2.33) - vue-infinite-scroll: - specifier: ^2.0.2 - version: https://registry.npmmirror.com/vue-infinite-scroll/-/vue-infinite-scroll-2.0.2.tgz - vue-json-pretty: - specifier: ^2.0.6 - version: https://registry.npmmirror.com/vue-json-pretty/-/vue-json-pretty-2.0.6.tgz(vue@3.2.33) - vue-print-nb-jeecg: - specifier: ^1.0.12 - version: https://registry.npmmirror.com/vue-print-nb-jeecg/-/vue-print-nb-jeecg-1.0.12.tgz - vue-router: - specifier: ^4.0.14 - version: https://registry.npmmirror.com/vue-router/-/vue-router-4.0.14.tgz(vue@3.2.33) - vue-types: - specifier: ^4.1.1 - version: https://registry.npmmirror.com/vue-types/-/vue-types-4.1.1.tgz(vue@3.2.33) - vuedraggable: - specifier: ^4.1.0 - version: https://registry.npmmirror.com/vuedraggable/-/vuedraggable-4.1.0.tgz(vue@3.2.33) - vxe-table: - specifier: 4.1.0 - version: https://registry.npmmirror.com/vxe-table/-/vxe-table-4.1.0.tgz(vue@3.2.33)(xe-utils@3.3.1) - vxe-table-plugin-antd: - specifier: 3.0.5 - version: https://registry.npmmirror.com/vxe-table-plugin-antd/-/vxe-table-plugin-antd-3.0.5.tgz(vxe-table@4.1.0) - xe-utils: - specifier: ^3.3.1 - version: https://registry.npmmirror.com/xe-utils/-/xe-utils-3.3.1.tgz - xss: - specifier: ^1.0.13 - version: https://registry.npmmirror.com/xss/-/xss-1.0.13.tgz - devDependencies: - '@commitlint/cli': - specifier: ^16.2.3 - version: https://registry.npmmirror.com/@commitlint/cli/-/cli-16.2.3.tgz - '@commitlint/config-conventional': - specifier: ^16.2.1 - version: https://registry.npmmirror.com/@commitlint/config-conventional/-/config-conventional-16.2.1.tgz - '@iconify/json': - specifier: ^2.1.30 - version: https://registry.npmmirror.com/@iconify/json/-/json-2.1.30.tgz - '@purge-icons/generated': - specifier: ^0.8.1 - version: https://registry.npmmirror.com/@purge-icons/generated/-/generated-0.8.1.tgz - '@rys-fe/vite-plugin-theme': - specifier: ^0.8.6 - version: https://registry.npmmirror.com/@rys-fe/vite-plugin-theme/-/vite-plugin-theme-0.8.6.tgz(vite@3.0.2) - '@types/codemirror': - specifier: ^5.60.5 - version: https://registry.npmmirror.com/@types/codemirror/-/codemirror-5.60.5.tgz - '@types/crypto-js': - specifier: ^4.1.1 - version: https://registry.npmmirror.com/@types/crypto-js/-/crypto-js-4.1.1.tgz - '@types/fs-extra': - specifier: ^9.0.13 - version: https://registry.npmmirror.com/@types/fs-extra/-/fs-extra-9.0.13.tgz - '@types/inquirer': - specifier: ^8.2.1 - version: https://registry.npmmirror.com/@types/inquirer/-/inquirer-8.2.1.tgz - '@types/intro.js': - specifier: ^3.0.2 - version: https://registry.npmmirror.com/@types/intro.js/-/intro.js-3.0.2.tgz - '@types/jest': - specifier: ^27.0.2 - version: https://registry.npmmirror.com/@types/jest/-/jest-27.0.2.tgz - '@types/lodash-es': - specifier: ^4.17.6 - version: https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.6.tgz - '@types/mockjs': - specifier: ^1.0.6 - version: https://registry.npmmirror.com/@types/mockjs/-/mockjs-1.0.6.tgz - '@types/node': - specifier: ^17.0.25 - version: https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - '@types/nprogress': - specifier: ^0.2.0 - version: https://registry.npmmirror.com/@types/nprogress/-/nprogress-0.2.0.tgz - '@types/pinyin': - specifier: ^2.10.0 - version: https://registry.npmmirror.com/@types/pinyin/-/pinyin-2.10.0.tgz - '@types/qrcode': - specifier: ^1.4.2 - version: https://registry.npmmirror.com/@types/qrcode/-/qrcode-1.4.2.tgz - '@types/qs': - specifier: ^6.9.7 - version: https://registry.npmmirror.com/@types/qs/-/qs-6.9.7.tgz - '@types/showdown': - specifier: ^1.9.4 - version: https://registry.npmmirror.com/@types/showdown/-/showdown-1.9.4.tgz - '@types/sortablejs': - specifier: ^1.10.7 - version: https://registry.npmmirror.com/@types/sortablejs/-/sortablejs-1.10.7.tgz - '@typescript-eslint/eslint-plugin': - specifier: ^5.20.0 - version: https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.20.0.tgz(@typescript-eslint/parser@5.20.0)(eslint@8.22.0)(typescript@4.6.3) - '@typescript-eslint/parser': - specifier: ^5.20.0 - version: https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-5.20.0.tgz(eslint@8.22.0)(typescript@4.6.3) - '@vitejs/plugin-legacy': - specifier: ^2.0.0 - version: https://registry.npmmirror.com/@vitejs/plugin-legacy/-/plugin-legacy-2.0.0.tgz(terser@5.19.2)(vite@3.0.2) - '@vitejs/plugin-vue': - specifier: ^3.0.1 - version: https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-3.0.1.tgz(vite@3.0.2)(vue@3.2.33) - '@vitejs/plugin-vue-jsx': - specifier: ^1.3.10 - version: https://registry.npmmirror.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-1.3.10.tgz - '@vue/compiler-sfc': - specifier: ^3.2.33 - version: https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.2.33.tgz - '@vue/test-utils': - specifier: ^2.0.0-rc.21 - version: https://registry.npmmirror.com/@vue/test-utils/-/test-utils-2.0.0-rc.21.tgz(vue@3.2.33) - autoprefixer: - specifier: ^10.4.4 - version: https://registry.npmmirror.com/autoprefixer/-/autoprefixer-10.4.4.tgz(postcss@8.4.12) - commitizen: - specifier: ^4.2.4 - version: https://registry.npmmirror.com/commitizen/-/commitizen-4.2.4.tgz - conventional-changelog-cli: - specifier: ^2.2.2 - version: https://registry.npmmirror.com/conventional-changelog-cli/-/conventional-changelog-cli-2.2.2.tgz - cross-env: - specifier: ^7.0.3 - version: https://registry.npmmirror.com/cross-env/-/cross-env-7.0.3.tgz - cz-git: - specifier: ^1.3.9 - version: https://registry.npmmirror.com/cz-git/-/cz-git-1.3.9.tgz - czg: - specifier: ^1.3.9 - version: https://registry.npmmirror.com/czg/-/czg-1.3.9.tgz - dotenv: - specifier: ^16.0.0 - version: https://registry.npmmirror.com/dotenv/-/dotenv-16.0.0.tgz - eslint: - specifier: ^8.22.0 - version: https://registry.npmmirror.com/eslint/-/eslint-8.22.0.tgz - eslint-config-prettier: - specifier: ^8.6.0 - version: https://registry.npmmirror.com/eslint-config-prettier/-/eslint-config-prettier-8.6.0.tgz(eslint@8.22.0) - eslint-define-config: - specifier: ^1.14.0 - version: https://registry.npmmirror.com/eslint-define-config/-/eslint-define-config-1.14.0.tgz - eslint-plugin-jest: - specifier: ^27.2.1 - version: https://registry.npmmirror.com/eslint-plugin-jest/-/eslint-plugin-jest-27.2.1.tgz(@typescript-eslint/eslint-plugin@5.20.0)(eslint@8.22.0)(jest@27.3.1)(typescript@4.6.3) - eslint-plugin-prettier: - specifier: ^4.2.1 - version: https://registry.npmmirror.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz(eslint-config-prettier@8.6.0)(eslint@8.22.0)(prettier@2.6.2) - eslint-plugin-vue: - specifier: ^9.9.0 - version: https://registry.npmmirror.com/eslint-plugin-vue/-/eslint-plugin-vue-9.9.0.tgz(eslint@8.22.0) - esno: - specifier: ^0.14.1 - version: https://registry.npmmirror.com/esno/-/esno-0.14.1.tgz - fs-extra: - specifier: ^10.1.0 - version: https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz - http-server: - specifier: ^14.0.0 - version: https://registry.npmmirror.com/http-server/-/http-server-14.0.0.tgz - husky: - specifier: ^7.0.4 - version: https://registry.npmmirror.com/husky/-/husky-7.0.4.tgz - inquirer: - specifier: ^8.2.2 - version: https://registry.npmmirror.com/inquirer/-/inquirer-8.2.2.tgz - is-ci: - specifier: ^3.0.0 - version: https://registry.npmmirror.com/is-ci/-/is-ci-3.0.0.tgz - jest: - specifier: ^27.3.1 - version: https://registry.npmmirror.com/jest/-/jest-27.3.1.tgz(ts-node@10.7.0) - less: - specifier: ^4.1.2 - version: https://registry.npmmirror.com/less/-/less-4.1.2.tgz - lint-staged: - specifier: 12.3.7 - version: https://registry.npmmirror.com/lint-staged/-/lint-staged-12.3.7.tgz - npm-run-all: - specifier: ^4.1.5 - version: https://registry.npmmirror.com/npm-run-all/-/npm-run-all-4.1.5.tgz - picocolors: - specifier: ^1.0.0 - version: https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz - postcss: - specifier: ^8.4.12 - version: https://registry.npmmirror.com/postcss/-/postcss-8.4.12.tgz - postcss-html: - specifier: ^1.4.1 - version: https://registry.npmmirror.com/postcss-html/-/postcss-html-1.4.1.tgz - postcss-less: - specifier: ^6.0.0 - version: https://registry.npmmirror.com/postcss-less/-/postcss-less-6.0.0.tgz(postcss@8.4.12) - prettier: - specifier: ^2.6.2 - version: https://registry.npmmirror.com/prettier/-/prettier-2.6.2.tgz - pretty-quick: - specifier: ^3.1.1 - version: https://registry.npmmirror.com/pretty-quick/-/pretty-quick-3.1.1.tgz(prettier@2.6.2) - rimraf: - specifier: ^3.0.2 - version: https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz - rollup: - specifier: ^2.72.0 - version: https://registry.npmjs.org/rollup/-/rollup-2.72.0.tgz - rollup-plugin-visualizer: - specifier: ^5.6.0 - version: https://registry.npmmirror.com/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.6.0.tgz(rollup@2.72.0) - stylelint: - specifier: ^14.7.1 - version: https://registry.npmmirror.com/stylelint/-/stylelint-14.7.1.tgz - stylelint-config-prettier: - specifier: ^9.0.3 - version: https://registry.npmmirror.com/stylelint-config-prettier/-/stylelint-config-prettier-9.0.3.tgz(stylelint@14.7.1) - stylelint-config-recommended: - specifier: ^7.0.0 - version: https://registry.npmmirror.com/stylelint-config-recommended/-/stylelint-config-recommended-7.0.0.tgz(stylelint@14.7.1) - stylelint-config-recommended-vue: - specifier: ^1.4.0 - version: https://registry.npmmirror.com/stylelint-config-recommended-vue/-/stylelint-config-recommended-vue-1.4.0.tgz(postcss-html@1.4.1)(stylelint@14.7.1) - stylelint-config-standard: - specifier: ^25.0.0 - version: https://registry.npmmirror.com/stylelint-config-standard/-/stylelint-config-standard-25.0.0.tgz(stylelint@14.7.1) - stylelint-order: - specifier: ^5.0.0 - version: https://registry.npmmirror.com/stylelint-order/-/stylelint-order-5.0.0.tgz(stylelint@14.7.1) - ts-jest: - specifier: ^27.0.7 - version: https://registry.npmmirror.com/ts-jest/-/ts-jest-27.0.7.tgz(@babel/core@7.22.10)(@types/jest@27.0.2)(jest@27.3.1)(typescript@4.6.3) - ts-node: - specifier: ^10.7.0 - version: https://registry.npmmirror.com/ts-node/-/ts-node-10.7.0.tgz(@types/node@17.0.25)(typescript@4.6.3) - typescript: - specifier: ^4.6.3 - version: https://registry.npmmirror.com/typescript/-/typescript-4.6.3.tgz - vite: - specifier: ^3.0.2 - version: https://registry.npmmirror.com/vite/-/vite-3.0.2.tgz(less@4.1.2)(terser@5.19.2) - vite-plugin-compression: - specifier: ^0.5.1 - version: https://registry.npmmirror.com/vite-plugin-compression/-/vite-plugin-compression-0.5.1.tgz(vite@3.0.2) - vite-plugin-html: - specifier: ^3.2.0 - version: https://registry.npmmirror.com/vite-plugin-html/-/vite-plugin-html-3.2.0.tgz(vite@3.0.2) - vite-plugin-imagemin: - specifier: ^0.6.1 - version: https://registry.npmmirror.com/vite-plugin-imagemin/-/vite-plugin-imagemin-0.6.1.tgz(vite@3.0.2) - vite-plugin-mkcert: - specifier: ^1.10.1 - version: https://registry.npmmirror.com/vite-plugin-mkcert/-/vite-plugin-mkcert-1.10.1.tgz(vite@3.0.2) - vite-plugin-mock: - specifier: ^2.9.6 - version: https://registry.npmmirror.com/vite-plugin-mock/-/vite-plugin-mock-2.9.6.tgz(mockjs@1.1.0)(rollup@2.72.0)(vite@3.0.2) - vite-plugin-optimize-persist: - specifier: ^0.1.2 - version: https://registry.npmmirror.com/vite-plugin-optimize-persist/-/vite-plugin-optimize-persist-0.1.2.tgz(vite-plugin-package-config@0.1.1)(vite@3.0.2) - vite-plugin-package-config: - specifier: ^0.1.1 - version: https://registry.npmmirror.com/vite-plugin-package-config/-/vite-plugin-package-config-0.1.1.tgz(vite@3.0.2) - vite-plugin-purge-icons: - specifier: ^0.8.2 - version: https://registry.npmmirror.com/vite-plugin-purge-icons/-/vite-plugin-purge-icons-0.8.2.tgz(vite@3.0.2) - vite-plugin-pwa: - specifier: ^0.12.3 - version: https://registry.npmmirror.com/vite-plugin-pwa/-/vite-plugin-pwa-0.12.3.tgz(vite@3.0.2)(workbox-build@6.6.0)(workbox-window@6.6.0) - vite-plugin-style-import: - specifier: ^2.0.0 - version: https://registry.npmmirror.com/vite-plugin-style-import/-/vite-plugin-style-import-2.0.0.tgz(vite@3.0.2) - vite-plugin-svg-icons: - specifier: ^2.0.1 - version: https://registry.npmmirror.com/vite-plugin-svg-icons/-/vite-plugin-svg-icons-2.0.1.tgz(vite@3.0.2) - vite-plugin-vue-setup-extend-plus: - specifier: ^0.1.0 - version: https://registry.npmmirror.com/vite-plugin-vue-setup-extend-plus/-/vite-plugin-vue-setup-extend-plus-0.1.0.tgz - vite-plugin-windicss: - specifier: ^1.8.7 - version: https://registry.npmmirror.com/vite-plugin-windicss/-/vite-plugin-windicss-1.8.7.tgz(vite@3.0.2) - vue-eslint-parser: - specifier: ^8.3.0 - version: https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-8.3.0.tgz(eslint@8.22.0) - vue-tsc: - specifier: ^0.33.9 - version: https://registry.npmmirror.com/vue-tsc/-/vue-tsc-0.33.9.tgz(typescript@4.6.3) - -packages: - - '@aashutoshrathi/word-wrap@https://registry.npmmirror.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz': - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz} - name: '@aashutoshrathi/word-wrap' - version: 1.2.6 - engines: {node: '>=0.10.0'} - - '@aesoper/normal-utils@https://registry.npmmirror.com/@aesoper/normal-utils/-/normal-utils-0.1.5.tgz': - resolution: {integrity: sha512-LFF/6y6h5mfwhnJaWqqxuC8zzDaHCG62kMRkd8xhDtq62TQj9dM17A9DhE87W7DhiARJsHLgcina/9P4eNCN1w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@aesoper/normal-utils/-/normal-utils-0.1.5.tgz} - name: '@aesoper/normal-utils' - version: 0.1.5 - - '@ampproject/remapping@https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz': - resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz} - name: '@ampproject/remapping' - version: 2.2.1 - engines: {node: '>=6.0.0'} - - '@ampproject/remapping@https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.1.tgz': - resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.1.tgz} - name: '@ampproject/remapping' - version: 2.2.1 - engines: {node: '>=6.0.0'} - - '@ant-design/colors@https://registry.npmmirror.com/@ant-design/colors/-/colors-6.0.0.tgz': - resolution: {integrity: sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@ant-design/colors/-/colors-6.0.0.tgz} - name: '@ant-design/colors' - version: 6.0.0 - - '@ant-design/icons-svg@https://registry.npmmirror.com/@ant-design/icons-svg/-/icons-svg-4.3.0.tgz': - resolution: {integrity: sha512-WOgvdH/1Wl8Z7VXigRbCa5djO14zxrNTzvrAQzhWiBQtEKT0uTc8K1ltjKZ8U1gPn/wXhMA8/jE39SJl0WNxSg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@ant-design/icons-svg/-/icons-svg-4.3.0.tgz} - name: '@ant-design/icons-svg' - version: 4.3.0 - - '@ant-design/icons-vue@https://registry.npmmirror.com/@ant-design/icons-vue/-/icons-vue-6.1.0.tgz': - resolution: {integrity: sha512-EX6bYm56V+ZrKN7+3MT/ubDkvJ5rK/O2t380WFRflDcVFgsvl3NLH7Wxeau6R8DbrO5jWR6DSTC3B6gYFp77AA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@ant-design/icons-vue/-/icons-vue-6.1.0.tgz} - name: '@ant-design/icons-vue' - version: 6.1.0 - peerDependencies: - vue: '>=3.0.3' - - '@antfu/utils@https://registry.npmmirror.com/@antfu/utils/-/utils-0.5.2.tgz': - resolution: {integrity: sha512-CQkeV+oJxUazwjlHD0/3ZD08QWKuGQkhnrKo3e6ly5pd48VUpXbb77q0xMU4+vc2CkJnDS02Eq/M9ugyX20XZA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@antfu/utils/-/utils-0.5.2.tgz} - name: '@antfu/utils' - version: 0.5.2 - - '@apideck/better-ajv-errors@https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz': - resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz} - name: '@apideck/better-ajv-errors' - version: 0.3.6 - engines: {node: '>=10'} - peerDependencies: - ajv: '>=8' - - '@babel/code-frame@https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.10.tgz': - resolution: {integrity: sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.10.tgz} - name: '@babel/code-frame' - version: 7.22.10 - engines: {node: '>=6.9.0'} - - '@babel/code-frame@https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.22.10.tgz': - resolution: {integrity: sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.22.10.tgz} - name: '@babel/code-frame' - version: 7.22.10 - engines: {node: '>=6.9.0'} - - '@babel/compat-data@https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz': - resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz} - name: '@babel/compat-data' - version: 7.22.9 - engines: {node: '>=6.9.0'} - - '@babel/compat-data@https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.22.9.tgz': - resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.22.9.tgz} - name: '@babel/compat-data' - version: 7.22.9 - engines: {node: '>=6.9.0'} - - '@babel/core@https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz': - resolution: {integrity: sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz} - name: '@babel/core' - version: 7.22.10 - engines: {node: '>=6.9.0'} - - '@babel/core@https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz': - resolution: {integrity: sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz} - name: '@babel/core' - version: 7.22.10 - engines: {node: '>=6.9.0'} - - '@babel/generator@https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz': - resolution: {integrity: sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz} - name: '@babel/generator' - version: 7.22.10 - engines: {node: '>=6.9.0'} - - '@babel/generator@https://registry.npmmirror.com/@babel/generator/-/generator-7.22.10.tgz': - resolution: {integrity: sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/generator/-/generator-7.22.10.tgz} - name: '@babel/generator' - version: 7.22.10 - engines: {node: '>=6.9.0'} - - '@babel/helper-annotate-as-pure@https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz': - resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz} - name: '@babel/helper-annotate-as-pure' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-annotate-as-pure@https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz': - resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz} - name: '@babel/helper-annotate-as-pure' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-builder-binary-assignment-operator-visitor@https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.10.tgz': - resolution: {integrity: sha512-Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.10.tgz} - name: '@babel/helper-builder-binary-assignment-operator-visitor' - version: 7.22.10 - engines: {node: '>=6.9.0'} - - '@babel/helper-compilation-targets@https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz': - resolution: {integrity: sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz} - name: '@babel/helper-compilation-targets' - version: 7.22.10 - engines: {node: '>=6.9.0'} - - '@babel/helper-compilation-targets@https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz': - resolution: {integrity: sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz} - name: '@babel/helper-compilation-targets' - version: 7.22.10 - engines: {node: '>=6.9.0'} - - '@babel/helper-create-class-features-plugin@https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.10.tgz': - resolution: {integrity: sha512-5IBb77txKYQPpOEdUdIhBx8VrZyDCQ+H82H0+5dX1TmuscP5vJKEE3cKurjtIw/vFwzbVH48VweE78kVDBrqjA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.10.tgz} - name: '@babel/helper-create-class-features-plugin' - version: 7.22.10 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-create-class-features-plugin@https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.10.tgz': - resolution: {integrity: sha512-5IBb77txKYQPpOEdUdIhBx8VrZyDCQ+H82H0+5dX1TmuscP5vJKEE3cKurjtIw/vFwzbVH48VweE78kVDBrqjA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.10.tgz} - name: '@babel/helper-create-class-features-plugin' - version: 7.22.10 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-create-regexp-features-plugin@https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.9.tgz': - resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.9.tgz} - name: '@babel/helper-create-regexp-features-plugin' - version: 7.22.9 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-define-polyfill-provider@https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz': - resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz} - name: '@babel/helper-define-polyfill-provider' - version: 0.4.2 - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - - '@babel/helper-environment-visitor@https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz': - resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz} - name: '@babel/helper-environment-visitor' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-environment-visitor@https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz': - resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz} - name: '@babel/helper-environment-visitor' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-function-name@https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz': - resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz} - name: '@babel/helper-function-name' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-function-name@https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz': - resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz} - name: '@babel/helper-function-name' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-hoist-variables@https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz': - resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz} - name: '@babel/helper-hoist-variables' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-hoist-variables@https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz': - resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz} - name: '@babel/helper-hoist-variables' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-member-expression-to-functions@https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz': - resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz} - name: '@babel/helper-member-expression-to-functions' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-member-expression-to-functions@https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz': - resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz} - name: '@babel/helper-member-expression-to-functions' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-module-imports@https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz': - resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz} - name: '@babel/helper-module-imports' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-module-imports@https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz': - resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz} - name: '@babel/helper-module-imports' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-module-transforms@https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz': - resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz} - name: '@babel/helper-module-transforms' - version: 7.22.9 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-module-transforms@https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz': - resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz} - name: '@babel/helper-module-transforms' - version: 7.22.9 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-optimise-call-expression@https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz': - resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz} - name: '@babel/helper-optimise-call-expression' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-optimise-call-expression@https://registry.npmmirror.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz': - resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz} - name: '@babel/helper-optimise-call-expression' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-plugin-utils@https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz': - resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz} - name: '@babel/helper-plugin-utils' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-plugin-utils@https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz': - resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz} - name: '@babel/helper-plugin-utils' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-remap-async-to-generator@https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.9.tgz': - resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.9.tgz} - name: '@babel/helper-remap-async-to-generator' - version: 7.22.9 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-replace-supers@https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz': - resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz} - name: '@babel/helper-replace-supers' - version: 7.22.9 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-replace-supers@https://registry.npmmirror.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz': - resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz} - name: '@babel/helper-replace-supers' - version: 7.22.9 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-simple-access@https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz': - resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz} - name: '@babel/helper-simple-access' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-simple-access@https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz': - resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz} - name: '@babel/helper-simple-access' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-skip-transparent-expression-wrappers@https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz': - resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz} - name: '@babel/helper-skip-transparent-expression-wrappers' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-skip-transparent-expression-wrappers@https://registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz': - resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz} - name: '@babel/helper-skip-transparent-expression-wrappers' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-split-export-declaration@https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz': - resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz} - name: '@babel/helper-split-export-declaration' - version: 7.22.6 - engines: {node: '>=6.9.0'} - - '@babel/helper-split-export-declaration@https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz': - resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz} - name: '@babel/helper-split-export-declaration' - version: 7.22.6 - engines: {node: '>=6.9.0'} - - '@babel/helper-string-parser@https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz': - resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz} - name: '@babel/helper-string-parser' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-string-parser@https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz': - resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz} - name: '@babel/helper-string-parser' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-validator-identifier@https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz': - resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz} - name: '@babel/helper-validator-identifier' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-validator-identifier@https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz': - resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz} - name: '@babel/helper-validator-identifier' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-validator-option@https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz': - resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz} - name: '@babel/helper-validator-option' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-validator-option@https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz': - resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz} - name: '@babel/helper-validator-option' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/helper-wrap-function@https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.10.tgz': - resolution: {integrity: sha512-OnMhjWjuGYtdoO3FmsEFWvBStBAe2QOgwOLsLNDjN+aaiMD8InJk1/O3HSD8lkqTjCgg5YI34Tz15KNNA3p+nQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.10.tgz} - name: '@babel/helper-wrap-function' - version: 7.22.10 - engines: {node: '>=6.9.0'} - - '@babel/helpers@https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.10.tgz': - resolution: {integrity: sha512-a41J4NW8HyZa1I1vAndrraTlPZ/eZoga2ZgS7fEr0tZJGVU4xqdE80CEm0CcNjha5EZ8fTBYLKHF0kqDUuAwQw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.10.tgz} - name: '@babel/helpers' - version: 7.22.10 - engines: {node: '>=6.9.0'} - - '@babel/helpers@https://registry.npmmirror.com/@babel/helpers/-/helpers-7.22.10.tgz': - resolution: {integrity: sha512-a41J4NW8HyZa1I1vAndrraTlPZ/eZoga2ZgS7fEr0tZJGVU4xqdE80CEm0CcNjha5EZ8fTBYLKHF0kqDUuAwQw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/helpers/-/helpers-7.22.10.tgz} - name: '@babel/helpers' - version: 7.22.10 - engines: {node: '>=6.9.0'} - - '@babel/highlight@https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.10.tgz': - resolution: {integrity: sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.10.tgz} - name: '@babel/highlight' - version: 7.22.10 - engines: {node: '>=6.9.0'} - - '@babel/highlight@https://registry.npmmirror.com/@babel/highlight/-/highlight-7.22.10.tgz': - resolution: {integrity: sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/highlight/-/highlight-7.22.10.tgz} - name: '@babel/highlight' - version: 7.22.10 - engines: {node: '>=6.9.0'} - - '@babel/parser@https://registry.npmjs.org/@babel/parser/-/parser-7.22.10.tgz': - resolution: {integrity: sha512-lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/parser/-/parser-7.22.10.tgz} - name: '@babel/parser' - version: 7.22.10 - engines: {node: '>=6.0.0'} - hasBin: true - - '@babel/parser@https://registry.npmmirror.com/@babel/parser/-/parser-7.22.10.tgz': - resolution: {integrity: sha512-lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.22.10.tgz} - name: '@babel/parser' - version: 7.22.10 - engines: {node: '>=6.0.0'} - hasBin: true - - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz': - resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz} - name: '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz': - resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz} - name: '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.13.0 - - '@babel/plugin-proposal-private-property-in-object@https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz': - resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz} - name: '@babel/plugin-proposal-private-property-in-object' - version: 7.21.0-placeholder-for-preset-env.2 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-async-generators@https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz': - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz} - name: '@babel/plugin-syntax-async-generators' - version: 7.8.4 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-async-generators@https://registry.npmmirror.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz': - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz} - name: '@babel/plugin-syntax-async-generators' - version: 7.8.4 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-bigint@https://registry.npmmirror.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz': - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz} - name: '@babel/plugin-syntax-bigint' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-class-properties@https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz': - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz} - name: '@babel/plugin-syntax-class-properties' - version: 7.12.13 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-class-properties@https://registry.npmmirror.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz': - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz} - name: '@babel/plugin-syntax-class-properties' - version: 7.12.13 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-class-static-block@https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz': - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz} - name: '@babel/plugin-syntax-class-static-block' - version: 7.14.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-dynamic-import@https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz': - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz} - name: '@babel/plugin-syntax-dynamic-import' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-export-namespace-from@https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz': - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz} - name: '@babel/plugin-syntax-export-namespace-from' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-import-assertions@https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz': - resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz} - name: '@babel/plugin-syntax-import-assertions' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-import-attributes@https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz': - resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz} - name: '@babel/plugin-syntax-import-attributes' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-import-meta@https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz': - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz} - name: '@babel/plugin-syntax-import-meta' - version: 7.10.4 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-import-meta@https://registry.npmmirror.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz': - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz} - name: '@babel/plugin-syntax-import-meta' - version: 7.10.4 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-json-strings@https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz': - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz} - name: '@babel/plugin-syntax-json-strings' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-json-strings@https://registry.npmmirror.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz': - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz} - name: '@babel/plugin-syntax-json-strings' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-jsx@https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz': - resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz} - name: '@babel/plugin-syntax-jsx' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-logical-assignment-operators@https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz': - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz} - name: '@babel/plugin-syntax-logical-assignment-operators' - version: 7.10.4 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-logical-assignment-operators@https://registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz': - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz} - name: '@babel/plugin-syntax-logical-assignment-operators' - version: 7.10.4 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-nullish-coalescing-operator@https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz': - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz} - name: '@babel/plugin-syntax-nullish-coalescing-operator' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-nullish-coalescing-operator@https://registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz': - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz} - name: '@babel/plugin-syntax-nullish-coalescing-operator' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-numeric-separator@https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz': - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz} - name: '@babel/plugin-syntax-numeric-separator' - version: 7.10.4 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-numeric-separator@https://registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz': - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz} - name: '@babel/plugin-syntax-numeric-separator' - version: 7.10.4 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-object-rest-spread@https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz': - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz} - name: '@babel/plugin-syntax-object-rest-spread' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-object-rest-spread@https://registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz': - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz} - name: '@babel/plugin-syntax-object-rest-spread' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-optional-catch-binding@https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz': - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz} - name: '@babel/plugin-syntax-optional-catch-binding' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-optional-catch-binding@https://registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz': - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz} - name: '@babel/plugin-syntax-optional-catch-binding' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-optional-chaining@https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz': - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz} - name: '@babel/plugin-syntax-optional-chaining' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-optional-chaining@https://registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz': - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz} - name: '@babel/plugin-syntax-optional-chaining' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-private-property-in-object@https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz': - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz} - name: '@babel/plugin-syntax-private-property-in-object' - version: 7.14.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-top-level-await@https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz': - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz} - name: '@babel/plugin-syntax-top-level-await' - version: 7.14.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-top-level-await@https://registry.npmmirror.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz': - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz} - name: '@babel/plugin-syntax-top-level-await' - version: 7.14.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-typescript@https://registry.npmmirror.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz': - resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz} - name: '@babel/plugin-syntax-typescript' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-unicode-sets-regex@https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz': - resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz} - name: '@babel/plugin-syntax-unicode-sets-regex' - version: 7.18.6 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-transform-arrow-functions@https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz': - resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz} - name: '@babel/plugin-transform-arrow-functions' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-async-generator-functions@https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.10.tgz': - resolution: {integrity: sha512-eueE8lvKVzq5wIObKK/7dvoeKJ+xc6TvRn6aysIjS6pSCeLy7S/eVi7pEQknZqyqvzaNKdDtem8nUNTBgDVR2g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.10.tgz} - name: '@babel/plugin-transform-async-generator-functions' - version: 7.22.10 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-async-to-generator@https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz': - resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz} - name: '@babel/plugin-transform-async-to-generator' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-block-scoped-functions@https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz': - resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz} - name: '@babel/plugin-transform-block-scoped-functions' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-block-scoping@https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.10.tgz': - resolution: {integrity: sha512-1+kVpGAOOI1Albt6Vse7c8pHzcZQdQKW+wJH+g8mCaszOdDVwRXa/slHPqIw+oJAJANTKDMuM2cBdV0Dg618Vg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.10.tgz} - name: '@babel/plugin-transform-block-scoping' - version: 7.22.10 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-class-properties@https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz': - resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz} - name: '@babel/plugin-transform-class-properties' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-class-static-block@https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz': - resolution: {integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz} - name: '@babel/plugin-transform-class-static-block' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 - - '@babel/plugin-transform-classes@https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.6.tgz': - resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.6.tgz} - name: '@babel/plugin-transform-classes' - version: 7.22.6 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-computed-properties@https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz': - resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz} - name: '@babel/plugin-transform-computed-properties' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-destructuring@https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.10.tgz': - resolution: {integrity: sha512-dPJrL0VOyxqLM9sritNbMSGx/teueHF/htMKrPT7DNxccXxRDPYqlgPFFdr8u+F+qUZOkZoXue/6rL5O5GduEw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.10.tgz} - name: '@babel/plugin-transform-destructuring' - version: 7.22.10 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-dotall-regex@https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz': - resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz} - name: '@babel/plugin-transform-dotall-regex' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-duplicate-keys@https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz': - resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz} - name: '@babel/plugin-transform-duplicate-keys' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-dynamic-import@https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz': - resolution: {integrity: sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz} - name: '@babel/plugin-transform-dynamic-import' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-exponentiation-operator@https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz': - resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz} - name: '@babel/plugin-transform-exponentiation-operator' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-export-namespace-from@https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz': - resolution: {integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz} - name: '@babel/plugin-transform-export-namespace-from' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-for-of@https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz': - resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz} - name: '@babel/plugin-transform-for-of' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-function-name@https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz': - resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz} - name: '@babel/plugin-transform-function-name' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-json-strings@https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz': - resolution: {integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz} - name: '@babel/plugin-transform-json-strings' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-literals@https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz': - resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz} - name: '@babel/plugin-transform-literals' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-logical-assignment-operators@https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz': - resolution: {integrity: sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz} - name: '@babel/plugin-transform-logical-assignment-operators' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-member-expression-literals@https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz': - resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz} - name: '@babel/plugin-transform-member-expression-literals' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-amd@https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz': - resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz} - name: '@babel/plugin-transform-modules-amd' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-commonjs@https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz': - resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz} - name: '@babel/plugin-transform-modules-commonjs' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-systemjs@https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz': - resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz} - name: '@babel/plugin-transform-modules-systemjs' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-umd@https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz': - resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz} - name: '@babel/plugin-transform-modules-umd' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-named-capturing-groups-regex@https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz': - resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz} - name: '@babel/plugin-transform-named-capturing-groups-regex' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-transform-new-target@https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz': - resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz} - name: '@babel/plugin-transform-new-target' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-nullish-coalescing-operator@https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz': - resolution: {integrity: sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz} - name: '@babel/plugin-transform-nullish-coalescing-operator' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-numeric-separator@https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz': - resolution: {integrity: sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz} - name: '@babel/plugin-transform-numeric-separator' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-object-rest-spread@https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz': - resolution: {integrity: sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz} - name: '@babel/plugin-transform-object-rest-spread' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-object-super@https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz': - resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz} - name: '@babel/plugin-transform-object-super' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-optional-catch-binding@https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz': - resolution: {integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz} - name: '@babel/plugin-transform-optional-catch-binding' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-optional-chaining@https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.10.tgz': - resolution: {integrity: sha512-MMkQqZAZ+MGj+jGTG3OTuhKeBpNcO+0oCEbrGNEaOmiEn+1MzRyQlYsruGiU8RTK3zV6XwrVJTmwiDOyYK6J9g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.10.tgz} - name: '@babel/plugin-transform-optional-chaining' - version: 7.22.10 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-parameters@https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz': - resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz} - name: '@babel/plugin-transform-parameters' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-private-methods@https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz': - resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz} - name: '@babel/plugin-transform-private-methods' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-private-property-in-object@https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz': - resolution: {integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz} - name: '@babel/plugin-transform-private-property-in-object' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-property-literals@https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz': - resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz} - name: '@babel/plugin-transform-property-literals' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-regenerator@https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz': - resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz} - name: '@babel/plugin-transform-regenerator' - version: 7.22.10 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-reserved-words@https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz': - resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz} - name: '@babel/plugin-transform-reserved-words' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-shorthand-properties@https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz': - resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz} - name: '@babel/plugin-transform-shorthand-properties' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-spread@https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz': - resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz} - name: '@babel/plugin-transform-spread' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-sticky-regex@https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz': - resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz} - name: '@babel/plugin-transform-sticky-regex' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-template-literals@https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz': - resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz} - name: '@babel/plugin-transform-template-literals' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-typeof-symbol@https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz': - resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz} - name: '@babel/plugin-transform-typeof-symbol' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-typescript@https://registry.npmmirror.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.10.tgz': - resolution: {integrity: sha512-7++c8I/ymsDo4QQBAgbraXLzIM6jmfao11KgIBEYZRReWzNWH9NtNgJcyrZiXsOPh523FQm6LfpLyy/U5fn46A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.10.tgz} - name: '@babel/plugin-transform-typescript' - version: 7.22.10 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-escapes@https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz': - resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz} - name: '@babel/plugin-transform-unicode-escapes' - version: 7.22.10 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-property-regex@https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz': - resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz} - name: '@babel/plugin-transform-unicode-property-regex' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-regex@https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz': - resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz} - name: '@babel/plugin-transform-unicode-regex' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-sets-regex@https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz': - resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz} - name: '@babel/plugin-transform-unicode-sets-regex' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/polyfill@https://registry.npmmirror.com/@babel/polyfill/-/polyfill-7.12.1.tgz': - resolution: {integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/polyfill/-/polyfill-7.12.1.tgz} - name: '@babel/polyfill' - version: 7.12.1 - deprecated: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information. - - '@babel/preset-env@https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.10.tgz': - resolution: {integrity: sha512-riHpLb1drNkpLlocmSyEg4oYJIQFeXAK/d7rI6mbD0XsvoTOOweXDmQPG/ErxsEhWk3rl3Q/3F6RFQlVFS8m0A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.10.tgz} - name: '@babel/preset-env' - version: 7.22.10 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/preset-modules@https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz': - resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz} - name: '@babel/preset-modules' - version: 0.1.6-no-external-plugins - peerDependencies: - '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 - - '@babel/regjsgen@https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz': - resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz} - name: '@babel/regjsgen' - version: 0.8.0 - - '@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.10.tgz': - resolution: {integrity: sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.10.tgz} - name: '@babel/runtime' - version: 7.22.10 - engines: {node: '>=6.9.0'} - - '@babel/runtime@https://registry.npmmirror.com/@babel/runtime/-/runtime-7.22.10.tgz': - resolution: {integrity: sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/runtime/-/runtime-7.22.10.tgz} - name: '@babel/runtime' - version: 7.22.10 - engines: {node: '>=6.9.0'} - - '@babel/standalone@https://registry.npmmirror.com/@babel/standalone/-/standalone-7.22.10.tgz': - resolution: {integrity: sha512-VmK2sWxUTfDDh9mPfCtFJPIehZToteqK+Zpwq8oJUjJ+WeeKIFTTQIrDzH7jEdom+cAaaguU7FI/FBsBWFkIeQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/standalone/-/standalone-7.22.10.tgz} - name: '@babel/standalone' - version: 7.22.10 - engines: {node: '>=6.9.0'} - - '@babel/template@https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz': - resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz} - name: '@babel/template' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/template@https://registry.npmmirror.com/@babel/template/-/template-7.22.5.tgz': - resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/template/-/template-7.22.5.tgz} - name: '@babel/template' - version: 7.22.5 - engines: {node: '>=6.9.0'} - - '@babel/traverse@https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.10.tgz': - resolution: {integrity: sha512-Q/urqV4pRByiNNpb/f5OSv28ZlGJiFiiTh+GAHktbIrkPhPbl90+uW6SmpoLyZqutrg9AEaEf3Q/ZBRHBXgxig==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.10.tgz} - name: '@babel/traverse' - version: 7.22.10 - engines: {node: '>=6.9.0'} - - '@babel/traverse@https://registry.npmmirror.com/@babel/traverse/-/traverse-7.22.10.tgz': - resolution: {integrity: sha512-Q/urqV4pRByiNNpb/f5OSv28ZlGJiFiiTh+GAHktbIrkPhPbl90+uW6SmpoLyZqutrg9AEaEf3Q/ZBRHBXgxig==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/traverse/-/traverse-7.22.10.tgz} - name: '@babel/traverse' - version: 7.22.10 - engines: {node: '>=6.9.0'} - - '@babel/types@https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz': - resolution: {integrity: sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz} - name: '@babel/types' - version: 7.22.10 - engines: {node: '>=6.9.0'} - - '@babel/types@https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz': - resolution: {integrity: sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz} - name: '@babel/types' - version: 7.22.10 - engines: {node: '>=6.9.0'} - - '@bcoe/v8-coverage@https://registry.npmmirror.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz': - resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz} - name: '@bcoe/v8-coverage' - version: 0.2.3 - - '@commitlint/cli@https://registry.npmmirror.com/@commitlint/cli/-/cli-16.2.3.tgz': - resolution: {integrity: sha512-VsJBQLvhhlOgEfxs/Z5liYuK0dXqLE5hz1VJzLBxiOxG31kL/X5Q4OvK292BmO7IGZcm1yJE3XQPWSiFaEHbWA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@commitlint/cli/-/cli-16.2.3.tgz} - name: '@commitlint/cli' - version: 16.2.3 - engines: {node: '>=v12'} - hasBin: true - - '@commitlint/config-conventional@https://registry.npmmirror.com/@commitlint/config-conventional/-/config-conventional-16.2.1.tgz': - resolution: {integrity: sha512-cP9gArx7gnaj4IqmtCIcHdRjTYdRUi6lmGE+lOzGGjGe45qGOS8nyQQNvkNy2Ey2VqoSWuXXkD8zCUh6EHf1Ww==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@commitlint/config-conventional/-/config-conventional-16.2.1.tgz} - name: '@commitlint/config-conventional' - version: 16.2.1 - engines: {node: '>=v12'} - - '@commitlint/config-validator@https://registry.npmmirror.com/@commitlint/config-validator/-/config-validator-16.2.1.tgz': - resolution: {integrity: sha512-hogSe0WGg7CKmp4IfNbdNES3Rq3UEI4XRPB8JL4EPgo/ORq5nrGTVzxJh78omibNuB8Ho4501Czb1Er1MoDWpw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@commitlint/config-validator/-/config-validator-16.2.1.tgz} - name: '@commitlint/config-validator' - version: 16.2.1 - engines: {node: '>=v12'} - - '@commitlint/config-validator@https://registry.npmmirror.com/@commitlint/config-validator/-/config-validator-17.6.7.tgz': - resolution: {integrity: sha512-vJSncmnzwMvpr3lIcm0I8YVVDJTzyjy7NZAeXbTXy+MPUdAr9pKyyg7Tx/ebOQ9kqzE6O9WT6jg2164br5UdsQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@commitlint/config-validator/-/config-validator-17.6.7.tgz} - name: '@commitlint/config-validator' - version: 17.6.7 - engines: {node: '>=v14'} - - '@commitlint/ensure@https://registry.npmmirror.com/@commitlint/ensure/-/ensure-16.2.1.tgz': - resolution: {integrity: sha512-/h+lBTgf1r5fhbDNHOViLuej38i3rZqTQnBTk+xEg+ehOwQDXUuissQ5GsYXXqI5uGy+261ew++sT4EA3uBJ+A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@commitlint/ensure/-/ensure-16.2.1.tgz} - name: '@commitlint/ensure' - version: 16.2.1 - engines: {node: '>=v12'} - - '@commitlint/execute-rule@https://registry.npmmirror.com/@commitlint/execute-rule/-/execute-rule-16.2.1.tgz': - resolution: {integrity: sha512-oSls82fmUTLM6cl5V3epdVo4gHhbmBFvCvQGHBRdQ50H/690Uq1Dyd7hXMuKITCIdcnr9umyDkr8r5C6HZDF3g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@commitlint/execute-rule/-/execute-rule-16.2.1.tgz} - name: '@commitlint/execute-rule' - version: 16.2.1 - engines: {node: '>=v12'} - - '@commitlint/execute-rule@https://registry.npmmirror.com/@commitlint/execute-rule/-/execute-rule-17.4.0.tgz': - resolution: {integrity: sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@commitlint/execute-rule/-/execute-rule-17.4.0.tgz} - name: '@commitlint/execute-rule' - version: 17.4.0 - engines: {node: '>=v14'} - - '@commitlint/format@https://registry.npmmirror.com/@commitlint/format/-/format-16.2.1.tgz': - resolution: {integrity: sha512-Yyio9bdHWmNDRlEJrxHKglamIk3d6hC0NkEUW6Ti6ipEh2g0BAhy8Od6t4vLhdZRa1I2n+gY13foy+tUgk0i1Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@commitlint/format/-/format-16.2.1.tgz} - name: '@commitlint/format' - version: 16.2.1 - engines: {node: '>=v12'} - - '@commitlint/is-ignored@https://registry.npmmirror.com/@commitlint/is-ignored/-/is-ignored-16.2.4.tgz': - resolution: {integrity: sha512-Lxdq9aOAYCOOOjKi58ulbwK/oBiiKz+7Sq0+/SpFIEFwhHkIVugvDvWjh2VRBXmRC/x5lNcjDcYEwS/uYUvlYQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@commitlint/is-ignored/-/is-ignored-16.2.4.tgz} - name: '@commitlint/is-ignored' - version: 16.2.4 - engines: {node: '>=v12'} - - '@commitlint/lint@https://registry.npmmirror.com/@commitlint/lint/-/lint-16.2.4.tgz': - resolution: {integrity: sha512-AUDuwOxb2eGqsXbTMON3imUGkc1jRdtXrbbohiLSCSk3jFVXgJLTMaEcr39pR00N8nE9uZ+V2sYaiILByZVmxQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@commitlint/lint/-/lint-16.2.4.tgz} - name: '@commitlint/lint' - version: 16.2.4 - engines: {node: '>=v12'} - - '@commitlint/load@https://registry.npmjs.org/@commitlint/load/-/load-17.7.1.tgz': - resolution: {integrity: sha512-S/QSOjE1ztdogYj61p6n3UbkUvweR17FQ0zDbNtoTLc+Hz7vvfS7ehoTMQ27hPSjVBpp7SzEcOQu081RLjKHJQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@commitlint/load/-/load-17.7.1.tgz} - name: '@commitlint/load' - version: 17.7.1 - engines: {node: '>=v14'} - - '@commitlint/load@https://registry.npmmirror.com/@commitlint/load/-/load-16.3.0.tgz': - resolution: {integrity: sha512-3tykjV/iwbkv2FU9DG+NZ/JqmP0Nm3b7aDwgCNQhhKV5P74JAuByULkafnhn+zsFGypG1qMtI5u+BZoa9APm0A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@commitlint/load/-/load-16.3.0.tgz} - name: '@commitlint/load' - version: 16.3.0 - engines: {node: '>=v12'} - - '@commitlint/message@https://registry.npmmirror.com/@commitlint/message/-/message-16.2.1.tgz': - resolution: {integrity: sha512-2eWX/47rftViYg7a3axYDdrgwKv32mxbycBJT6OQY/MJM7SUfYNYYvbMFOQFaA4xIVZt7t2Alyqslbl6blVwWw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@commitlint/message/-/message-16.2.1.tgz} - name: '@commitlint/message' - version: 16.2.1 - engines: {node: '>=v12'} - - '@commitlint/parse@https://registry.npmmirror.com/@commitlint/parse/-/parse-16.2.1.tgz': - resolution: {integrity: sha512-2NP2dDQNL378VZYioLrgGVZhWdnJO4nAxQl5LXwYb08nEcN+cgxHN1dJV8OLJ5uxlGJtDeR8UZZ1mnQ1gSAD/g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@commitlint/parse/-/parse-16.2.1.tgz} - name: '@commitlint/parse' - version: 16.2.1 - engines: {node: '>=v12'} - - '@commitlint/read@https://registry.npmmirror.com/@commitlint/read/-/read-16.2.1.tgz': - resolution: {integrity: sha512-tViXGuaxLTrw2r7PiYMQOFA2fueZxnnt0lkOWqKyxT+n2XdEMGYcI9ID5ndJKXnfPGPppD0w/IItKsIXlZ+alw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@commitlint/read/-/read-16.2.1.tgz} - name: '@commitlint/read' - version: 16.2.1 - engines: {node: '>=v12'} - - '@commitlint/resolve-extends@https://registry.npmmirror.com/@commitlint/resolve-extends/-/resolve-extends-16.2.1.tgz': - resolution: {integrity: sha512-NbbCMPKTFf2J805kwfP9EO+vV+XvnaHRcBy6ud5dF35dxMsvdJqke54W3XazXF1ZAxC4a3LBy4i/GNVBAthsEg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@commitlint/resolve-extends/-/resolve-extends-16.2.1.tgz} - name: '@commitlint/resolve-extends' - version: 16.2.1 - engines: {node: '>=v12'} - - '@commitlint/resolve-extends@https://registry.npmmirror.com/@commitlint/resolve-extends/-/resolve-extends-17.6.7.tgz': - resolution: {integrity: sha512-PfeoAwLHtbOaC9bGn/FADN156CqkFz6ZKiVDMjuC2N5N0740Ke56rKU7Wxdwya8R8xzLK9vZzHgNbuGhaOVKIg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@commitlint/resolve-extends/-/resolve-extends-17.6.7.tgz} - name: '@commitlint/resolve-extends' - version: 17.6.7 - engines: {node: '>=v14'} - - '@commitlint/rules@https://registry.npmmirror.com/@commitlint/rules/-/rules-16.2.4.tgz': - resolution: {integrity: sha512-rK5rNBIN2ZQNQK+I6trRPK3dWa0MtaTN4xnwOma1qxa4d5wQMQJtScwTZjTJeallFxhOgbNOgr48AMHkdounVg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@commitlint/rules/-/rules-16.2.4.tgz} - name: '@commitlint/rules' - version: 16.2.4 - engines: {node: '>=v12'} - - '@commitlint/to-lines@https://registry.npmmirror.com/@commitlint/to-lines/-/to-lines-16.2.1.tgz': - resolution: {integrity: sha512-9/VjpYj5j1QeY3eiog1zQWY6axsdWAc0AonUUfyZ7B0MVcRI0R56YsHAfzF6uK/g/WwPZaoe4Lb1QCyDVnpVaQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@commitlint/to-lines/-/to-lines-16.2.1.tgz} - name: '@commitlint/to-lines' - version: 16.2.1 - engines: {node: '>=v12'} - - '@commitlint/top-level@https://registry.npmmirror.com/@commitlint/top-level/-/top-level-16.2.1.tgz': - resolution: {integrity: sha512-lS6GSieHW9y6ePL73ied71Z9bOKyK+Ib9hTkRsB8oZFAyQZcyRwq2w6nIa6Fngir1QW51oKzzaXfJL94qwImyw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@commitlint/top-level/-/top-level-16.2.1.tgz} - name: '@commitlint/top-level' - version: 16.2.1 - engines: {node: '>=v12'} - - '@commitlint/types@https://registry.npmmirror.com/@commitlint/types/-/types-16.2.1.tgz': - resolution: {integrity: sha512-7/z7pA7BM0i8XvMSBynO7xsB3mVQPUZbVn6zMIlp/a091XJ3qAXRXc+HwLYhiIdzzS5fuxxNIHZMGHVD4HJxdA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@commitlint/types/-/types-16.2.1.tgz} - name: '@commitlint/types' - version: 16.2.1 - engines: {node: '>=v12'} - - '@commitlint/types@https://registry.npmmirror.com/@commitlint/types/-/types-17.4.4.tgz': - resolution: {integrity: sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@commitlint/types/-/types-17.4.4.tgz} - name: '@commitlint/types' - version: 17.4.4 - engines: {node: '>=v14'} - - '@cspotcode/source-map-consumer@https://registry.npmmirror.com/@cspotcode/source-map-consumer/-/source-map-consumer-0.8.0.tgz': - resolution: {integrity: sha512-41qniHzTU8yAGbCp04ohlmSrZf8bkf/iJsl3V0dRGsQN/5GFfx+LbCSsCpp2gqrqjTVg/K6O8ycoV35JIwAzAg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@cspotcode/source-map-consumer/-/source-map-consumer-0.8.0.tgz} - name: '@cspotcode/source-map-consumer' - version: 0.8.0 - engines: {node: '>= 12'} - - '@cspotcode/source-map-support@https://registry.npmmirror.com/@cspotcode/source-map-support/-/source-map-support-0.7.0.tgz': - resolution: {integrity: sha512-X4xqRHqN8ACt2aHVe51OxeA2HjbcL4MqFqXkrmQszJ1NOUuUu5u6Vqx/0lZSVNku7velL5FC/s5uEAj1lsBMhA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@cspotcode/source-map-support/-/source-map-support-0.7.0.tgz} - name: '@cspotcode/source-map-support' - version: 0.7.0 - engines: {node: '>=12'} - - '@cspotcode/source-map-support@https://registry.npmmirror.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz': - resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz} - name: '@cspotcode/source-map-support' - version: 0.8.1 - engines: {node: '>=12'} - - '@ctrl/tinycolor@https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.6.0.tgz': - resolution: {integrity: sha512-/Z3l6pXthq0JvMYdUFyX9j0MaCltlIn6mfh9jLyQwg5aPKxkyNa0PTHtU1AlFXLNk55ZuAeJRcpvq+tmLfKmaQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.6.0.tgz} - name: '@ctrl/tinycolor' - version: 3.6.0 - engines: {node: '>=10'} - - '@esbuild/android-arm64@https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.1.tgz': - resolution: {integrity: sha512-CqhrKvDSt76I0so/5afqgKrMv41FjbfUKFrcZddMnrZKqJU70I1MWLVJrImJuYMaY4Yb9rn4UKfF7oZ0BOleVw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.1.tgz} - name: '@esbuild/android-arm64' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - - '@esbuild/android-arm@https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.1.tgz': - resolution: {integrity: sha512-yjTucwcOua52z14RL30JMwmCdylsQ5WrErGkAb6VL0MWPbnwJyLejydaRcUqkPO6g0MowlzavdxrR7AcfCW+yA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.1.tgz} - name: '@esbuild/android-arm' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [arm] - os: [android] - - '@esbuild/android-x64@https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.1.tgz': - resolution: {integrity: sha512-VA29h01MrPkymIL1bFtvL2L4WPogiMGW2N/M+vXZHHOv6LgA9vjzVskTt0v5LjeCjx1PFDcR0ASKy8Y7Gm+iIA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.1.tgz} - name: '@esbuild/android-x64' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [x64] - os: [android] - - '@esbuild/darwin-arm64@https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.1.tgz': - resolution: {integrity: sha512-Be4Cf6WDH7QkLHEpfzQOlBOFdqmqYTSqw2yG3SVmzB3++wy3K7wiNGedezL+q6Jb4weqT9tchO5kkLDC08Jnzg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.1.tgz} - name: '@esbuild/darwin-arm64' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - - '@esbuild/darwin-x64@https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.1.tgz': - resolution: {integrity: sha512-SewtenJi6zCEfZRSUchb+LgJ/IQw8QvnKECPu/qHII1fLQKnVPUVR+VH2IuS03DD9WWnAi3yfOvBNwtrp3WXtg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.1.tgz} - name: '@esbuild/darwin-x64' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - - '@esbuild/freebsd-arm64@https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.1.tgz': - resolution: {integrity: sha512-TadKO0AaTDAPV2RyGZQ0AaiDTVYg7RsgNaA6OJjXXmoLbTs++NwHtzAmVFBq8Q/P9A11wgkv36HeyAYhWHbW1w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.1.tgz} - name: '@esbuild/freebsd-arm64' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - - '@esbuild/freebsd-x64@https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.1.tgz': - resolution: {integrity: sha512-DrFMGLF0/aAcZgwhtZr1cby7aHlalpFjLCe5CiI8mm0Kqhhc8gyNZKreaZzvir8CQe0H17p9xx6M9ben5R3r0g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.1.tgz} - name: '@esbuild/freebsd-x64' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - - '@esbuild/linux-arm64@https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.1.tgz': - resolution: {integrity: sha512-6ku/R2EzsdjyBaqQn+xGOPbv+BBYBXQYzlA04/46YQLmXkdApi0GYyUwiCXYBxm578iyywzGmM0rep1/q8tuFQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.1.tgz} - name: '@esbuild/linux-arm64' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - - '@esbuild/linux-arm@https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.1.tgz': - resolution: {integrity: sha512-lCWDVPpQO/Dt5MEqctKujgtUVmwQx7J2Q83EqX/9BejN7BIX4fGJ0QKMiIyy21PFh+/64ArN+Ovh1tzYkTt2wg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.1.tgz} - name: '@esbuild/linux-arm' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - - '@esbuild/linux-ia32@https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.1.tgz': - resolution: {integrity: sha512-8AKFBk9v/zBDsADvK/0BWZUxkjEc0QDwO8rvbHJKqAZx6DF/VSeBxTRmqWeecrJmx+n3kemEwML9z0eD9IHweQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.1.tgz} - name: '@esbuild/linux-ia32' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - - '@esbuild/linux-loong64@https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.14.54.tgz': - resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.14.54.tgz} - name: '@esbuild/linux-loong64' - version: 0.14.54 - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - - '@esbuild/linux-loong64@https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.1.tgz': - resolution: {integrity: sha512-6mOS5CxTGD8qOymp2y4KoM4ir+/REgjdJQFYpwP+WqjrWBo+PUevDGeHHjzCdw/R19PkFqS1bRzv8cTCmB/5kA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.1.tgz} - name: '@esbuild/linux-loong64' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - - '@esbuild/linux-mips64el@https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.1.tgz': - resolution: {integrity: sha512-Bzmv6rRMzR4ErG2k/jwfj5jKNzVMVEI1tThuirFdAoE+duUv+jlDnlwxsN3s1eqMzADTOV2sSIcUUOfgv++Dgg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.1.tgz} - name: '@esbuild/linux-mips64el' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - - '@esbuild/linux-ppc64@https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.1.tgz': - resolution: {integrity: sha512-mPOxA7bd3nmx8TkuO/9M/tE0fnvmuX0wlpwnTL6DPLgkb/Z/KkupexSIw4cLfznn/fPzD89y17VWBjlVNyrpCQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.1.tgz} - name: '@esbuild/linux-ppc64' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - - '@esbuild/linux-riscv64@https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.1.tgz': - resolution: {integrity: sha512-znYb2Mhe9xKIDeIYuTD6vCcUltvYzRT5Yq6sVcdhPrGu8DRdsNZS04B2tSeM+j7T03jL4yY+7/G/jxSJJ9LX2A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.1.tgz} - name: '@esbuild/linux-riscv64' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - - '@esbuild/linux-s390x@https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.1.tgz': - resolution: {integrity: sha512-BBIE32cyqAYhMOQ42/jnecoF5P/S5lMob2vXSUiFpD3xCFbXOFkjP1OjfFKnalSO9+B5emvPTQFfNQXuLeVGEw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.1.tgz} - name: '@esbuild/linux-s390x' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - - '@esbuild/linux-x64@https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.1.tgz': - resolution: {integrity: sha512-PoCvKdHTIbnHmVJ5OEdewGMSw40HDFRTrC/imwh8vrp695RbSUpOqBqNBT45neK0FQleGFbSE/A9X6HlXPDhqA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.1.tgz} - name: '@esbuild/linux-x64' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - - '@esbuild/netbsd-x64@https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.1.tgz': - resolution: {integrity: sha512-4OrGMPorHCq9h52VLtyyyAmPjC2ZlANx54VDYyCrqXUOi+k0qxnPKXKKprVES67w2mE7TZJx9qZmT+jHeiZbHQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.1.tgz} - name: '@esbuild/netbsd-x64' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - - '@esbuild/openbsd-x64@https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.1.tgz': - resolution: {integrity: sha512-3a7ZYMjBC4P3FKdTmUZHJw7Mhzp71m+iSFFhX1PnLZ03qmyaB2K+vJZCk4PjRjAvm5lSupJQQtM/AFMyLgKlxQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.1.tgz} - name: '@esbuild/openbsd-x64' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - - '@esbuild/sunos-x64@https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.1.tgz': - resolution: {integrity: sha512-29yWBN5XfEjXT8yoeVb8cXfN1jAQLB+uskog1vBMhFR+YWOYvsrwPnh4hspETC/JnF95J+iETrvxgOUlICTWIw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.1.tgz} - name: '@esbuild/sunos-x64' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - - '@esbuild/win32-arm64@https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.1.tgz': - resolution: {integrity: sha512-9Hb/WUXgyXlL55w3iNVyLkN9gq9x+agv3kk80foWbfpOwe7Qw4Vx6JGB+XQdsIfvvP1kShVQPIvBgVj0TxLlVw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.1.tgz} - name: '@esbuild/win32-arm64' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - - '@esbuild/win32-ia32@https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.1.tgz': - resolution: {integrity: sha512-VGdtEcXX/f01NgoM8emDnpdOyrZCQ7VTwLv89MOl3mvJ5fbCOBMNCa8t7RZS4lf12RS87qOuJFX7Bh9aLTbSxg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.1.tgz} - name: '@esbuild/win32-ia32' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - - '@esbuild/win32-x64@https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.1.tgz': - resolution: {integrity: sha512-H6u8OHmJkKJubLbukVOyi9yA5lzK8VE4TFEkZj2vgusTUPvFeMQ8YnWviVc9F6PuKS6ZIpOvi2/sfiW8tQZQ2g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.1.tgz} - name: '@esbuild/win32-x64' - version: 0.19.1 - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - - '@eslint-community/eslint-utils@https://registry.npmmirror.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz': - resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz} - name: '@eslint-community/eslint-utils' - version: 4.4.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - - '@eslint/eslintrc@https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-1.4.1.tgz': - resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-1.4.1.tgz} - name: '@eslint/eslintrc' - version: 1.4.1 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@fullcalendar/common@https://registry.npmmirror.com/@fullcalendar/common/-/common-5.10.1.tgz': - resolution: {integrity: sha512-EumKIJcQTvQdTs75/9dmeREFgjcRVWzqHJS1Xvlz5mNsmB+w9EINCHETRjChtAQg1WD/lTQyVj4sHsKO7vCMSw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@fullcalendar/common/-/common-5.10.1.tgz} - name: '@fullcalendar/common' - version: 5.10.1 - - '@fullcalendar/core@https://registry.npmmirror.com/@fullcalendar/core/-/core-5.10.1.tgz': - resolution: {integrity: sha512-8sVuC6ywXV+cxqsqTZaR1hgUqeyjVed20NyZ7lGW9AY0kma1GIEwLgqPS5Q6uVhHyin68lmgecKfJCwhxENE8w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@fullcalendar/core/-/core-5.10.1.tgz} - name: '@fullcalendar/core' - version: 5.10.1 - - '@fullcalendar/daygrid@https://registry.npmmirror.com/@fullcalendar/daygrid/-/daygrid-5.10.1.tgz': - resolution: {integrity: sha512-sfUMP+rew0krsBffgNcWWKhBCiyytGfRKZJoc64E8ohX7VWjPcPZuB1xgO5U4wPLmNkT0rZiHoGeQGTXw1+ZKg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@fullcalendar/daygrid/-/daygrid-5.10.1.tgz} - name: '@fullcalendar/daygrid' - version: 5.10.1 - - '@fullcalendar/interaction@https://registry.npmmirror.com/@fullcalendar/interaction/-/interaction-5.10.1.tgz': - resolution: {integrity: sha512-H1g1QeXg7yXtUcKmVtfg7uzm5R5ElFTvYniiXU+8kJda69IDg7Lee+Y7UDv5dvLb5/HxO86RhPVxRtcOQ8XdXw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@fullcalendar/interaction/-/interaction-5.10.1.tgz} - name: '@fullcalendar/interaction' - version: 5.10.1 - - '@fullcalendar/timegrid@https://registry.npmmirror.com/@fullcalendar/timegrid/-/timegrid-5.10.1.tgz': - resolution: {integrity: sha512-0O0m+JzFBlg8gxYr/rIjZViRlbndCtjZlDjjIylQHFBeWC32e3cpHEavKGbTIBLN8SDilUYAJnE21abSqC2G/w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@fullcalendar/timegrid/-/timegrid-5.10.1.tgz} - name: '@fullcalendar/timegrid' - version: 5.10.1 - - '@fullcalendar/vue3@https://registry.npmmirror.com/@fullcalendar/vue3/-/vue3-5.10.1.tgz': - resolution: {integrity: sha512-Unc0Ya/PBbh1zXc3b8NYV9YlDD2J+V5+DbZ0Hbir4J+8tFgNZbSe94R0iAxvvygvj4RltoJz7cRE0Sp2J47G5Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@fullcalendar/vue3/-/vue3-5.10.1.tgz} - name: '@fullcalendar/vue3' - version: 5.10.1 - peerDependencies: - vue: ^3.0.11 - - '@humanwhocodes/config-array@https://registry.npmmirror.com/@humanwhocodes/config-array/-/config-array-0.10.7.tgz': - resolution: {integrity: sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@humanwhocodes/config-array/-/config-array-0.10.7.tgz} - name: '@humanwhocodes/config-array' - version: 0.10.7 - engines: {node: '>=10.10.0'} - - '@humanwhocodes/gitignore-to-minimatch@https://registry.npmmirror.com/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz': - resolution: {integrity: sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz} - name: '@humanwhocodes/gitignore-to-minimatch' - version: 1.0.2 - - '@humanwhocodes/object-schema@https://registry.npmmirror.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz': - resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz} - name: '@humanwhocodes/object-schema' - version: 1.2.1 - - '@hutson/parse-repository-url@https://registry.npmmirror.com/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz': - resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz} - name: '@hutson/parse-repository-url' - version: 3.0.2 - engines: {node: '>=6.9.0'} - - '@iconify/iconify@https://registry.npmmirror.com/@iconify/iconify/-/iconify-2.1.2.tgz': - resolution: {integrity: sha512-QcUzFeEWkE/mW+BVtEGmcWATClcCOIJFiYUD/PiCWuTcdEA297o8D4oN6Ra44WrNOHu1wqNW4J0ioaDIiqaFOQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@iconify/iconify/-/iconify-2.1.2.tgz} - name: '@iconify/iconify' - version: 2.1.2 - - '@iconify/iconify@https://registry.npmmirror.com/@iconify/iconify/-/iconify-2.2.1.tgz': - resolution: {integrity: sha512-WJzw+3iicrF/tbjbxxRinSgy5FHdJoz/egTqwi3xCDkNRJPq482RX1iyaWrjNuY2vMNSPkQMuqHvZDXgA+WnwQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@iconify/iconify/-/iconify-2.2.1.tgz} - name: '@iconify/iconify' - version: 2.2.1 - - '@iconify/json@https://registry.npmmirror.com/@iconify/json/-/json-2.1.30.tgz': - resolution: {integrity: sha512-mxaB9gr4sSAKUq6GJdXV42YC7tkJ9WOZW6/8zGXciiA1cjLLyHe73GJl6qpnc53G8SDSSXWClQC5RHWNz/HIBQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@iconify/json/-/json-2.1.30.tgz} - name: '@iconify/json' - version: 2.1.30 - - '@iconify/types@https://registry.npmmirror.com/@iconify/types/-/types-1.1.0.tgz': - resolution: {integrity: sha512-Jh0llaK2LRXQoYsorIH8maClebsnzTcve+7U3rQUSnC11X4jtPnFuyatqFLvMxZ8MLG8dB4zfHsbPfuvxluONw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@iconify/types/-/types-1.1.0.tgz} - name: '@iconify/types' - version: 1.1.0 - - '@interactjs/actions@https://registry.npmmirror.com/@interactjs/actions/-/actions-1.10.18.tgz': - resolution: {integrity: sha512-3hsDg87HNZUNE2G3heshSdyrUu4yd2I3b4hb5yz3pLIqvHoPyqZSreOs1l5Rb5NfecS1SNwR0Gygoyy/F3qGZA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@interactjs/actions/-/actions-1.10.18.tgz} - name: '@interactjs/actions' - version: 1.10.18 - peerDependencies: - '@interactjs/core': 1.10.18 - '@interactjs/utils': 1.10.18 - - '@interactjs/auto-scroll@https://registry.npmmirror.com/@interactjs/auto-scroll/-/auto-scroll-1.10.18.tgz': - resolution: {integrity: sha512-1rj8O/0cweCyuwlvULC6fF20uAKwsrWKlhOrWYbuRIl0+IJTJa/vpOuIUFUhppG+ELqkwp0u2vOCtMWfVUMqrA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@interactjs/auto-scroll/-/auto-scroll-1.10.18.tgz} - name: '@interactjs/auto-scroll' - version: 1.10.18 - peerDependencies: - '@interactjs/utils': 1.10.18 - - '@interactjs/auto-start@https://registry.npmmirror.com/@interactjs/auto-start/-/auto-start-1.10.18.tgz': - resolution: {integrity: sha512-LNItRKgMI68P3JGFfwRulkhsDfCjN0AYguKehWNkTlmtzWHtHK4GRwr4rpHoCqSZJHM/GBZOZQSq/0g9d/Hzow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@interactjs/auto-start/-/auto-start-1.10.18.tgz} - name: '@interactjs/auto-start' - version: 1.10.18 - peerDependencies: - '@interactjs/core': 1.10.18 - '@interactjs/utils': 1.10.18 - - '@interactjs/core@https://registry.npmjs.org/@interactjs/core/-/core-1.10.18.tgz': - resolution: {integrity: sha512-shXHL+U5BMLtWMY84Bpo7OCMEueQdj0NgDGZDPzXMrmxriz1Ovn8fw2VmI18xFWryTbKJc2RwRDK/NJ6Vg+tNg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@interactjs/core/-/core-1.10.18.tgz} - name: '@interactjs/core' - version: 1.10.18 - peerDependencies: - '@interactjs/utils': 1.10.18 - - '@interactjs/core@https://registry.npmmirror.com/@interactjs/core/-/core-1.10.18.tgz': - resolution: {integrity: sha512-shXHL+U5BMLtWMY84Bpo7OCMEueQdj0NgDGZDPzXMrmxriz1Ovn8fw2VmI18xFWryTbKJc2RwRDK/NJ6Vg+tNg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@interactjs/core/-/core-1.10.18.tgz} - name: '@interactjs/core' - version: 1.10.18 - peerDependencies: - '@interactjs/utils': 1.10.18 - - '@interactjs/dev-tools@https://registry.npmmirror.com/@interactjs/dev-tools/-/dev-tools-1.10.18.tgz': - resolution: {integrity: sha512-E/VcI8ZA9nwjUCsAyT5dNYmVYH3alCoRhgTmhuNyjMFUgwzw1owEkUSmnS8nzhsW30indlMvtFJVR/9+Onbp0A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@interactjs/dev-tools/-/dev-tools-1.10.18.tgz} - name: '@interactjs/dev-tools' - version: 1.10.18 - peerDependencies: - '@interactjs/modifiers': 1.10.18 - '@interactjs/utils': 1.10.18 - - '@interactjs/inertia@https://registry.npmmirror.com/@interactjs/inertia/-/inertia-1.10.18.tgz': - resolution: {integrity: sha512-68BNYAzRKK2LyhyLKwnX3hyRuVX9FYK4V8HcwGrztwP6fe3nkuUhjHeNRh1T7Lpt9n2P+UIvZZT86ZqYCa7Mew==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@interactjs/inertia/-/inertia-1.10.18.tgz} - name: '@interactjs/inertia' - version: 1.10.18 - peerDependencies: - '@interactjs/core': 1.10.18 - '@interactjs/modifiers': 1.10.18 - '@interactjs/utils': 1.10.18 - - '@interactjs/interact@https://registry.npmjs.org/@interactjs/interact/-/interact-1.10.18.tgz': - resolution: {integrity: sha512-09H1uUK3Ly25+DZAuocYee5TET08LfwcvtFOkr+MvdWETjAED5ZVQwrD+LzyUpJ7pQ1WOFGk03nF/QmnPDO43w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@interactjs/interact/-/interact-1.10.18.tgz} - name: '@interactjs/interact' - version: 1.10.18 - - '@interactjs/interact@https://registry.npmmirror.com/@interactjs/interact/-/interact-1.10.18.tgz': - resolution: {integrity: sha512-09H1uUK3Ly25+DZAuocYee5TET08LfwcvtFOkr+MvdWETjAED5ZVQwrD+LzyUpJ7pQ1WOFGk03nF/QmnPDO43w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@interactjs/interact/-/interact-1.10.18.tgz} - name: '@interactjs/interact' - version: 1.10.18 - - '@interactjs/interactjs@https://registry.npmmirror.com/@interactjs/interactjs/-/interactjs-1.10.18.tgz': - resolution: {integrity: sha512-0Kb6VL9kcum/YP0GjCy8lgQbfgs6KCBaz8AouMwUSN4Owx8D3YSOqxM4pHnYJbStufp4SkHcsspJy5nKGyk28Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@interactjs/interactjs/-/interactjs-1.10.18.tgz} - name: '@interactjs/interactjs' - version: 1.10.18 - - '@interactjs/modifiers@https://registry.npmmirror.com/@interactjs/modifiers/-/modifiers-1.10.18.tgz': - resolution: {integrity: sha512-Ahf/cOfUrpbjSaLzDdOECEITeEZuvA9ImWfGSdZaFmuPP3wDEIaY+oLa1A26y79XxGBMKsbB/2wIrLePcLq3Pg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@interactjs/modifiers/-/modifiers-1.10.18.tgz} - name: '@interactjs/modifiers' - version: 1.10.18 - peerDependencies: - '@interactjs/core': 1.10.18 - '@interactjs/utils': 1.10.18 - - '@interactjs/offset@https://registry.npmmirror.com/@interactjs/offset/-/offset-1.10.18.tgz': - resolution: {integrity: sha512-oM2JbGpwuV67HUBNOx6cb/5iXIE+NRUGkO694/9EhY7C3VnAHusZbFpEMo6IvzoPu0BWhMsss6apE3V6FHMMFQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@interactjs/offset/-/offset-1.10.18.tgz} - name: '@interactjs/offset' - version: 1.10.18 - peerDependencies: - '@interactjs/core': 1.10.18 - '@interactjs/utils': 1.10.18 - - '@interactjs/pointer-events@https://registry.npmmirror.com/@interactjs/pointer-events/-/pointer-events-1.10.18.tgz': - resolution: {integrity: sha512-QPRgNXP5rVuBqFFUxfj3S+ZQ9e5OWIgmhz6lS4+kezqcMoa1p1lZ3c5FIs+Enfn4TvEkUuxKT9cqmJP9oi6YOA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@interactjs/pointer-events/-/pointer-events-1.10.18.tgz} - name: '@interactjs/pointer-events' - version: 1.10.18 - peerDependencies: - '@interactjs/core': 1.10.18 - '@interactjs/utils': 1.10.18 - - '@interactjs/reflow@https://registry.npmmirror.com/@interactjs/reflow/-/reflow-1.10.18.tgz': - resolution: {integrity: sha512-1VpKaWmh5oSjSH6VYpUiFScwK9cX3cu7HvX0vguzI3NjtvvRNrU8cqhPdWr9AE8FQlBf3lQ9ptgVbU9oh/SQyw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@interactjs/reflow/-/reflow-1.10.18.tgz} - name: '@interactjs/reflow' - version: 1.10.18 - peerDependencies: - '@interactjs/core': 1.10.18 - '@interactjs/utils': 1.10.18 - - '@interactjs/snappers@https://registry.npmmirror.com/@interactjs/snappers/-/snappers-1.10.18.tgz': - resolution: {integrity: sha512-FI6FkJCYrMgctZFX1A9YPC+GVaSJPKUsKgcs5lp+AShfhsuNXvXLAmfWV7JecO/GXfoNTbjmEWUqrKLTAyCYWw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@interactjs/snappers/-/snappers-1.10.18.tgz} - name: '@interactjs/snappers' - version: 1.10.18 - peerDependencies: - '@interactjs/utils': 1.10.18 - - '@interactjs/utils@https://registry.npmjs.org/@interactjs/utils/-/utils-1.10.18.tgz': - resolution: {integrity: sha512-nt+uQat9pbjzNeP8I2X7rjBmmuoNwMCgXb+5Vl6zHHlOzM3Y6RATwsciR65E1X8Q/OrKtH2G49C1Zy1RoGw3UQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@interactjs/utils/-/utils-1.10.18.tgz} - name: '@interactjs/utils' - version: 1.10.18 - - '@interactjs/utils@https://registry.npmmirror.com/@interactjs/utils/-/utils-1.10.18.tgz': - resolution: {integrity: sha512-nt+uQat9pbjzNeP8I2X7rjBmmuoNwMCgXb+5Vl6zHHlOzM3Y6RATwsciR65E1X8Q/OrKtH2G49C1Zy1RoGw3UQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@interactjs/utils/-/utils-1.10.18.tgz} - name: '@interactjs/utils' - version: 1.10.18 - - '@intlify/core-base@https://registry.npmmirror.com/@intlify/core-base/-/core-base-9.1.9.tgz': - resolution: {integrity: sha512-x5T0p/Ja0S8hs5xs+ImKyYckVkL4CzcEXykVYYV6rcbXxJTe2o58IquSqX9bdncVKbRZP7GlBU1EcRaQEEJ+vw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@intlify/core-base/-/core-base-9.1.9.tgz} - name: '@intlify/core-base' - version: 9.1.9 - engines: {node: '>= 10'} - - '@intlify/devtools-if@https://registry.npmmirror.com/@intlify/devtools-if/-/devtools-if-9.1.9.tgz': - resolution: {integrity: sha512-oKSMKjttG3Ut/1UGEZjSdghuP3fwA15zpDPcjkf/1FjlOIm6uIBGMNS5jXzsZy593u+P/YcnrZD6cD3IVFz9vQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@intlify/devtools-if/-/devtools-if-9.1.9.tgz} - name: '@intlify/devtools-if' - version: 9.1.9 - engines: {node: '>= 10'} - - '@intlify/message-compiler@https://registry.npmmirror.com/@intlify/message-compiler/-/message-compiler-9.1.9.tgz': - resolution: {integrity: sha512-6YgCMF46Xd0IH2hMRLCssZI3gFG4aywidoWQ3QP4RGYQXQYYfFC54DxhSgfIPpVoPLQ+4AD29eoYmhiHZ+qLFQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@intlify/message-compiler/-/message-compiler-9.1.9.tgz} - name: '@intlify/message-compiler' - version: 9.1.9 - engines: {node: '>= 10'} - - '@intlify/message-resolver@https://registry.npmmirror.com/@intlify/message-resolver/-/message-resolver-9.1.9.tgz': - resolution: {integrity: sha512-Lx/DBpigeK0sz2BBbzv5mu9/dAlt98HxwbG7xLawC3O2xMF9MNWU5FtOziwYG6TDIjNq0O/3ZbOJAxwITIWXEA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@intlify/message-resolver/-/message-resolver-9.1.9.tgz} - name: '@intlify/message-resolver' - version: 9.1.9 - engines: {node: '>= 10'} - - '@intlify/runtime@https://registry.npmmirror.com/@intlify/runtime/-/runtime-9.1.9.tgz': - resolution: {integrity: sha512-XgPw8+UlHCiie3fI41HPVa/VDJb3/aSH7bLhY1hJvlvNV713PFtb4p4Jo+rlE0gAoMsMCGcsiT982fImolSltg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@intlify/runtime/-/runtime-9.1.9.tgz} - name: '@intlify/runtime' - version: 9.1.9 - engines: {node: '>= 10'} - - '@intlify/shared@https://registry.npmmirror.com/@intlify/shared/-/shared-9.1.9.tgz': - resolution: {integrity: sha512-xKGM1d0EAxdDFCWedcYXOm6V5Pfw/TMudd6/qCdEb4tv0hk9EKeg7lwQF1azE0dP2phvx0yXxrt7UQK+IZjNdw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@intlify/shared/-/shared-9.1.9.tgz} - name: '@intlify/shared' - version: 9.1.9 - engines: {node: '>= 10'} - - '@intlify/vue-devtools@https://registry.npmmirror.com/@intlify/vue-devtools/-/vue-devtools-9.1.9.tgz': - resolution: {integrity: sha512-YPehH9uL4vZcGXky4Ev5qQIITnHKIvsD2GKGXgqf+05osMUI6WSEQHaN9USRa318Rs8RyyPCiDfmA0hRu3k7og==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@intlify/vue-devtools/-/vue-devtools-9.1.9.tgz} - name: '@intlify/vue-devtools' - version: 9.1.9 - engines: {node: '>= 10'} - - '@istanbuljs/load-nyc-config@https://registry.npmmirror.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz': - resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz} - name: '@istanbuljs/load-nyc-config' - version: 1.1.0 - engines: {node: '>=8'} - - '@istanbuljs/schema@https://registry.npmmirror.com/@istanbuljs/schema/-/schema-0.1.3.tgz': - resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@istanbuljs/schema/-/schema-0.1.3.tgz} - name: '@istanbuljs/schema' - version: 0.1.3 - engines: {node: '>=8'} - - '@jeecg/online@https://registry.npmmirror.com/@jeecg/online/-/online-3.5.3-beta3.tgz': - resolution: {integrity: sha512-Nx1+zu0+nn+oc3RjlPGtRhxORAq4EWMJbLOOGT17WFYGn4sDXLYinBKzBxv9xrk0JbRouNYrayRf2TQpiU7qCg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@jeecg/online/-/online-3.5.3-beta3.tgz} - name: '@jeecg/online' - version: 3.5.3-beta3 - - '@jest/console@https://registry.npmmirror.com/@jest/console/-/console-27.5.1.tgz': - resolution: {integrity: sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@jest/console/-/console-27.5.1.tgz} - name: '@jest/console' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - '@jest/core@https://registry.npmmirror.com/@jest/core/-/core-27.5.1.tgz': - resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@jest/core/-/core-27.5.1.tgz} - name: '@jest/core' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - - '@jest/environment@https://registry.npmmirror.com/@jest/environment/-/environment-27.5.1.tgz': - resolution: {integrity: sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@jest/environment/-/environment-27.5.1.tgz} - name: '@jest/environment' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - '@jest/fake-timers@https://registry.npmmirror.com/@jest/fake-timers/-/fake-timers-27.5.1.tgz': - resolution: {integrity: sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@jest/fake-timers/-/fake-timers-27.5.1.tgz} - name: '@jest/fake-timers' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - '@jest/globals@https://registry.npmmirror.com/@jest/globals/-/globals-27.5.1.tgz': - resolution: {integrity: sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@jest/globals/-/globals-27.5.1.tgz} - name: '@jest/globals' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - '@jest/reporters@https://registry.npmmirror.com/@jest/reporters/-/reporters-27.5.1.tgz': - resolution: {integrity: sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@jest/reporters/-/reporters-27.5.1.tgz} - name: '@jest/reporters' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - - '@jest/source-map@https://registry.npmmirror.com/@jest/source-map/-/source-map-27.5.1.tgz': - resolution: {integrity: sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@jest/source-map/-/source-map-27.5.1.tgz} - name: '@jest/source-map' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - '@jest/test-result@https://registry.npmmirror.com/@jest/test-result/-/test-result-27.5.1.tgz': - resolution: {integrity: sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@jest/test-result/-/test-result-27.5.1.tgz} - name: '@jest/test-result' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - '@jest/test-sequencer@https://registry.npmmirror.com/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz': - resolution: {integrity: sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz} - name: '@jest/test-sequencer' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - '@jest/transform@https://registry.npmmirror.com/@jest/transform/-/transform-27.5.1.tgz': - resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@jest/transform/-/transform-27.5.1.tgz} - name: '@jest/transform' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - '@jest/types@https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz': - resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz} - name: '@jest/types' - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - '@jridgewell/gen-mapping@https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz': - resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz} - name: '@jridgewell/gen-mapping' - version: 0.3.3 - engines: {node: '>=6.0.0'} - - '@jridgewell/gen-mapping@https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz': - resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz} - name: '@jridgewell/gen-mapping' - version: 0.3.3 - engines: {node: '>=6.0.0'} - - '@jridgewell/resolve-uri@https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz': - resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz} - name: '@jridgewell/resolve-uri' - version: 3.1.1 - engines: {node: '>=6.0.0'} - - '@jridgewell/resolve-uri@https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz': - resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz} - name: '@jridgewell/resolve-uri' - version: 3.1.1 - engines: {node: '>=6.0.0'} - - '@jridgewell/set-array@https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz': - resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz} - name: '@jridgewell/set-array' - version: 1.1.2 - engines: {node: '>=6.0.0'} - - '@jridgewell/set-array@https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.2.tgz': - resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.2.tgz} - name: '@jridgewell/set-array' - version: 1.1.2 - engines: {node: '>=6.0.0'} - - '@jridgewell/source-map@https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz': - resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz} - name: '@jridgewell/source-map' - version: 0.3.5 - - '@jridgewell/source-map@https://registry.npmmirror.com/@jridgewell/source-map/-/source-map-0.3.5.tgz': - resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@jridgewell/source-map/-/source-map-0.3.5.tgz} - name: '@jridgewell/source-map' - version: 0.3.5 - - '@jridgewell/sourcemap-codec@https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz': - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz} - name: '@jridgewell/sourcemap-codec' - version: 1.4.15 - - '@jridgewell/sourcemap-codec@https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz': - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz} - name: '@jridgewell/sourcemap-codec' - version: 1.4.15 - - '@jridgewell/trace-mapping@https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz': - resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz} - name: '@jridgewell/trace-mapping' - version: 0.3.19 - - '@jridgewell/trace-mapping@https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz': - resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz} - name: '@jridgewell/trace-mapping' - version: 0.3.19 - - '@jridgewell/trace-mapping@https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz': - resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz} - name: '@jridgewell/trace-mapping' - version: 0.3.9 - - '@logicflow/core@https://registry.npmmirror.com/@logicflow/core/-/core-1.1.13.tgz': - resolution: {integrity: sha512-BfdzJMJO+qRnVzYYvr5RQsDmw1cYzmgKZ9VehnH1nboFpPowAd6/TNkYxNLlFKNZvwJmZOLvNKqRjShkZO2wWg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@logicflow/core/-/core-1.1.13.tgz} - name: '@logicflow/core' - version: 1.1.13 - - '@logicflow/extension@https://registry.npmmirror.com/@logicflow/extension/-/extension-1.1.13.tgz': - resolution: {integrity: sha512-Iidqm1iu8+N3vsnTYuw6t7PLfSWoTsB6qOuXmNheJtPVsw6edFUN6BG9pUpgChQRbxTIiP12dRfvwZkusCmIZA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@logicflow/extension/-/extension-1.1.13.tgz} - name: '@logicflow/extension' - version: 1.1.13 - - '@nodelib/fs.scandir@https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz': - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz} - name: '@nodelib/fs.scandir' - version: 2.1.5 - engines: {node: '>= 8'} - - '@nodelib/fs.stat@https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz': - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz} - name: '@nodelib/fs.stat' - version: 2.0.5 - engines: {node: '>= 8'} - - '@nodelib/fs.walk@https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz': - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz} - name: '@nodelib/fs.walk' - version: 1.2.8 - engines: {node: '>= 8'} - - '@octokit/auth-token@https://registry.npmmirror.com/@octokit/auth-token/-/auth-token-3.0.4.tgz': - resolution: {integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@octokit/auth-token/-/auth-token-3.0.4.tgz} - name: '@octokit/auth-token' - version: 3.0.4 - engines: {node: '>= 14'} - - '@octokit/core@https://registry.npmmirror.com/@octokit/core/-/core-4.2.4.tgz': - resolution: {integrity: sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@octokit/core/-/core-4.2.4.tgz} - name: '@octokit/core' - version: 4.2.4 - engines: {node: '>= 14'} - - '@octokit/endpoint@https://registry.npmmirror.com/@octokit/endpoint/-/endpoint-7.0.6.tgz': - resolution: {integrity: sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@octokit/endpoint/-/endpoint-7.0.6.tgz} - name: '@octokit/endpoint' - version: 7.0.6 - engines: {node: '>= 14'} - - '@octokit/graphql@https://registry.npmmirror.com/@octokit/graphql/-/graphql-5.0.6.tgz': - resolution: {integrity: sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@octokit/graphql/-/graphql-5.0.6.tgz} - name: '@octokit/graphql' - version: 5.0.6 - engines: {node: '>= 14'} - - '@octokit/openapi-types@https://registry.npmmirror.com/@octokit/openapi-types/-/openapi-types-18.0.0.tgz': - resolution: {integrity: sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@octokit/openapi-types/-/openapi-types-18.0.0.tgz} - name: '@octokit/openapi-types' - version: 18.0.0 - - '@octokit/plugin-paginate-rest@https://registry.npmmirror.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.1.2.tgz': - resolution: {integrity: sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.1.2.tgz} - name: '@octokit/plugin-paginate-rest' - version: 6.1.2 - engines: {node: '>= 14'} - peerDependencies: - '@octokit/core': '>=4' - - '@octokit/plugin-request-log@https://registry.npmmirror.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz': - resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz} - name: '@octokit/plugin-request-log' - version: 1.0.4 - peerDependencies: - '@octokit/core': '>=3' - - '@octokit/plugin-rest-endpoint-methods@https://registry.npmmirror.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.2.3.tgz': - resolution: {integrity: sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.2.3.tgz} - name: '@octokit/plugin-rest-endpoint-methods' - version: 7.2.3 - engines: {node: '>= 14'} - peerDependencies: - '@octokit/core': '>=3' - - '@octokit/request-error@https://registry.npmmirror.com/@octokit/request-error/-/request-error-3.0.3.tgz': - resolution: {integrity: sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@octokit/request-error/-/request-error-3.0.3.tgz} - name: '@octokit/request-error' - version: 3.0.3 - engines: {node: '>= 14'} - - '@octokit/request@https://registry.npmmirror.com/@octokit/request/-/request-6.2.8.tgz': - resolution: {integrity: sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@octokit/request/-/request-6.2.8.tgz} - name: '@octokit/request' - version: 6.2.8 - engines: {node: '>= 14'} - - '@octokit/rest@https://registry.npmmirror.com/@octokit/rest/-/rest-19.0.13.tgz': - resolution: {integrity: sha512-/EzVox5V9gYGdbAI+ovYj3nXQT1TtTHRT+0eZPcuC05UFSWO3mdO9UY1C0i2eLF9Un1ONJkAk+IEtYGAC+TahA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@octokit/rest/-/rest-19.0.13.tgz} - name: '@octokit/rest' - version: 19.0.13 - engines: {node: '>= 14'} - - '@octokit/tsconfig@https://registry.npmmirror.com/@octokit/tsconfig/-/tsconfig-1.0.2.tgz': - resolution: {integrity: sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@octokit/tsconfig/-/tsconfig-1.0.2.tgz} - name: '@octokit/tsconfig' - version: 1.0.2 - - '@octokit/types@https://registry.npmmirror.com/@octokit/types/-/types-10.0.0.tgz': - resolution: {integrity: sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@octokit/types/-/types-10.0.0.tgz} - name: '@octokit/types' - version: 10.0.0 - - '@octokit/types@https://registry.npmmirror.com/@octokit/types/-/types-9.3.2.tgz': - resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@octokit/types/-/types-9.3.2.tgz} - name: '@octokit/types' - version: 9.3.2 - - '@popperjs/core@https://registry.npmmirror.com/@popperjs/core/-/core-2.11.8.tgz': - resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@popperjs/core/-/core-2.11.8.tgz} - name: '@popperjs/core' - version: 2.11.8 - - '@purge-icons/core@https://registry.npmmirror.com/@purge-icons/core/-/core-0.8.0.tgz': - resolution: {integrity: sha512-8L6hP1U9XQO5B7kvquVJ5N7jzFvO0LZLXhBCjUQzzJzi42i6MAUanVKROApqbBuh21o9tmPwvNUg0xPe/uftRA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@purge-icons/core/-/core-0.8.0.tgz} - name: '@purge-icons/core' - version: 0.8.0 - - '@purge-icons/generated@https://registry.npmmirror.com/@purge-icons/generated/-/generated-0.8.1.tgz': - resolution: {integrity: sha512-rIExGA33EGKEToqtc8WfpboaR7or1XRp+KV1Y5v/P0Rq7G5Me95DmP3ow/MpG7ql+XZ9xPzyS2naGRx5358+6Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@purge-icons/generated/-/generated-0.8.1.tgz} - name: '@purge-icons/generated' - version: 0.8.1 - - '@qiaoqiaoyun/drag-free@https://registry.npmmirror.com/@qiaoqiaoyun/drag-free/-/drag-free-1.0.511.tgz': - resolution: {integrity: sha512-FvtIajg0k5XppgvRxo7Ro0a/NL1YCZYpmsRhhADqjBjYvoCKTCAWwSzywxYbe3KdQCiwX0OrAP9N3wVgguSDRw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@qiaoqiaoyun/drag-free/-/drag-free-1.0.511.tgz} - name: '@qiaoqiaoyun/drag-free' - version: 1.0.511 - - '@rollup/plugin-babel@https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz': - resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz} - name: '@rollup/plugin-babel' - version: 5.3.1 - engines: {node: '>= 10.0.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@types/babel__core': ^7.1.9 - rollup: ^1.20.0||^2.0.0 - peerDependenciesMeta: - '@types/babel__core': - optional: true - - '@rollup/plugin-node-resolve@https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz': - resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz} - name: '@rollup/plugin-node-resolve' - version: 11.2.1 - engines: {node: '>= 10.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0 - - '@rollup/plugin-node-resolve@https://registry.npmmirror.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.3.0.tgz': - resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.3.0.tgz} - name: '@rollup/plugin-node-resolve' - version: 13.3.0 - engines: {node: '>= 10.0.0'} - peerDependencies: - rollup: ^2.42.0 - - '@rollup/plugin-replace@https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz': - resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz} - name: '@rollup/plugin-replace' - version: 2.4.2 - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 - - '@rollup/pluginutils@https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz': - resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz} - name: '@rollup/pluginutils' - version: 3.1.0 - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0 - - '@rollup/pluginutils@https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz': - resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz} - name: '@rollup/pluginutils' - version: 3.1.0 - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0 - - '@rollup/pluginutils@https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz': - resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz} - name: '@rollup/pluginutils' - version: 4.2.1 - engines: {node: '>= 8.0.0'} - - '@rys-fe/vite-plugin-theme@https://registry.npmmirror.com/@rys-fe/vite-plugin-theme/-/vite-plugin-theme-0.8.6.tgz': - resolution: {integrity: sha512-9j6yMhNRCDxv4Wpimo0EDZf/KU5FgJtjMPVYBaFv4SPClLOEx5kkpcRuDrVBaB4IzM1qizRlxUK4jd9Klxyqig==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@rys-fe/vite-plugin-theme/-/vite-plugin-theme-0.8.6.tgz} - name: '@rys-fe/vite-plugin-theme' - version: 0.8.6 - peerDependencies: - vite: '>=2.0.0-beta.49' - - '@simonwep/pickr@https://registry.npmmirror.com/@simonwep/pickr/-/pickr-1.8.2.tgz': - resolution: {integrity: sha512-/l5w8BIkrpP6n1xsetx9MWPWlU6OblN5YgZZphxan0Tq4BByTCETL6lyIeY8lagalS2Nbt4F2W034KHLIiunKA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@simonwep/pickr/-/pickr-1.8.2.tgz} - name: '@simonwep/pickr' - version: 1.8.2 - - '@sindresorhus/is@https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz': - resolution: {integrity: sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz} - name: '@sindresorhus/is' - version: 0.7.0 - engines: {node: '>=4'} - - '@sinonjs/commons@https://registry.npmmirror.com/@sinonjs/commons/-/commons-1.8.6.tgz': - resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@sinonjs/commons/-/commons-1.8.6.tgz} - name: '@sinonjs/commons' - version: 1.8.6 - - '@sinonjs/fake-timers@https://registry.npmmirror.com/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz': - resolution: {integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz} - name: '@sinonjs/fake-timers' - version: 8.1.0 - - '@surma/rollup-plugin-off-main-thread@https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz': - resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz} - name: '@surma/rollup-plugin-off-main-thread' - version: 2.2.3 - - '@tootallnate/once@https://registry.npmmirror.com/@tootallnate/once/-/once-1.1.2.tgz': - resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@tootallnate/once/-/once-1.1.2.tgz} - name: '@tootallnate/once' - version: 1.1.2 - engines: {node: '>= 6'} - - '@trysound/sax@https://registry.npmmirror.com/@trysound/sax/-/sax-0.2.0.tgz': - resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@trysound/sax/-/sax-0.2.0.tgz} - name: '@trysound/sax' - version: 0.2.0 - engines: {node: '>=10.13.0'} - - '@tsconfig/node10@https://registry.npmmirror.com/@tsconfig/node10/-/node10-1.0.9.tgz': - resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@tsconfig/node10/-/node10-1.0.9.tgz} - name: '@tsconfig/node10' - version: 1.0.9 - - '@tsconfig/node12@https://registry.npmmirror.com/@tsconfig/node12/-/node12-1.0.11.tgz': - resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@tsconfig/node12/-/node12-1.0.11.tgz} - name: '@tsconfig/node12' - version: 1.0.11 - - '@tsconfig/node14@https://registry.npmmirror.com/@tsconfig/node14/-/node14-1.0.3.tgz': - resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@tsconfig/node14/-/node14-1.0.3.tgz} - name: '@tsconfig/node14' - version: 1.0.3 - - '@tsconfig/node16@https://registry.npmmirror.com/@tsconfig/node16/-/node16-1.0.4.tgz': - resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@tsconfig/node16/-/node16-1.0.4.tgz} - name: '@tsconfig/node16' - version: 1.0.4 - - '@types/babel__core@https://registry.npmmirror.com/@types/babel__core/-/babel__core-7.20.1.tgz': - resolution: {integrity: sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/babel__core/-/babel__core-7.20.1.tgz} - name: '@types/babel__core' - version: 7.20.1 - - '@types/babel__generator@https://registry.npmmirror.com/@types/babel__generator/-/babel__generator-7.6.4.tgz': - resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/babel__generator/-/babel__generator-7.6.4.tgz} - name: '@types/babel__generator' - version: 7.6.4 - - '@types/babel__template@https://registry.npmmirror.com/@types/babel__template/-/babel__template-7.4.1.tgz': - resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/babel__template/-/babel__template-7.4.1.tgz} - name: '@types/babel__template' - version: 7.4.1 - - '@types/babel__traverse@https://registry.npmmirror.com/@types/babel__traverse/-/babel__traverse-7.20.1.tgz': - resolution: {integrity: sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/babel__traverse/-/babel__traverse-7.20.1.tgz} - name: '@types/babel__traverse' - version: 7.20.1 - - '@types/codemirror@https://registry.npmmirror.com/@types/codemirror/-/codemirror-5.60.5.tgz': - resolution: {integrity: sha512-TiECZmm8St5YxjFUp64LK0c8WU5bxMDt9YaAek1UqUb9swrSCoJhh92fWu1p3mTEqlHjhB5sY7OFBhWroJXZVg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/codemirror/-/codemirror-5.60.5.tgz} - name: '@types/codemirror' - version: 5.60.5 - - '@types/crypto-js@https://registry.npmmirror.com/@types/crypto-js/-/crypto-js-4.1.1.tgz': - resolution: {integrity: sha512-BG7fQKZ689HIoc5h+6D2Dgq1fABRa0RbBWKBd9SP/MVRVXROflpm5fhwyATX5duFmbStzyzyycPB8qUYKDH3NA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/crypto-js/-/crypto-js-4.1.1.tgz} - name: '@types/crypto-js' - version: 4.1.1 - - '@types/echarts@https://registry.npmmirror.com/@types/echarts/-/echarts-4.9.18.tgz': - resolution: {integrity: sha512-Qav4M1i1qmPemMywMnDGIbvIBB/9pdrDKLI1dyMho4Yz/ldCB3ry2zGeH0UhAhgmaoPgwYrCDo8xd1UeByz+rw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/echarts/-/echarts-4.9.18.tgz} - name: '@types/echarts' - version: 4.9.18 - - '@types/estree@https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz': - resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz} - name: '@types/estree' - version: 0.0.39 - - '@types/estree@https://registry.npmmirror.com/@types/estree/-/estree-0.0.39.tgz': - resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/estree/-/estree-0.0.39.tgz} - name: '@types/estree' - version: 0.0.39 - - '@types/estree@https://registry.npmmirror.com/@types/estree/-/estree-1.0.1.tgz': - resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/estree/-/estree-1.0.1.tgz} - name: '@types/estree' - version: 1.0.1 - - '@types/fs-extra@https://registry.npmmirror.com/@types/fs-extra/-/fs-extra-9.0.13.tgz': - resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/fs-extra/-/fs-extra-9.0.13.tgz} - name: '@types/fs-extra' - version: 9.0.13 - - '@types/glob@https://registry.npmmirror.com/@types/glob/-/glob-7.2.0.tgz': - resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/glob/-/glob-7.2.0.tgz} - name: '@types/glob' - version: 7.2.0 - - '@types/graceful-fs@https://registry.npmmirror.com/@types/graceful-fs/-/graceful-fs-4.1.6.tgz': - resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/graceful-fs/-/graceful-fs-4.1.6.tgz} - name: '@types/graceful-fs' - version: 4.1.6 - - '@types/imagemin-gifsicle@https://registry.npmmirror.com/@types/imagemin-gifsicle/-/imagemin-gifsicle-7.0.1.tgz': - resolution: {integrity: sha512-kUz6sUh0P95JOS0RGEaaemWUrASuw+dLsWIveK2UZJx74id/B9epgblMkCk/r5MjUWbZ83wFvacG5Rb/f97gyA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/imagemin-gifsicle/-/imagemin-gifsicle-7.0.1.tgz} - name: '@types/imagemin-gifsicle' - version: 7.0.1 - - '@types/imagemin-jpegtran@https://registry.npmmirror.com/@types/imagemin-jpegtran/-/imagemin-jpegtran-5.0.1.tgz': - resolution: {integrity: sha512-Ps8kbm+DUFte/Eln/tUdEvpMWHKFCsQKlV8n+RN50zqWqL/7QhfLxR0ymitP9wa90P6+rkbJlintBNPkVR+B/Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/imagemin-jpegtran/-/imagemin-jpegtran-5.0.1.tgz} - name: '@types/imagemin-jpegtran' - version: 5.0.1 - - '@types/imagemin-mozjpeg@https://registry.npmmirror.com/@types/imagemin-mozjpeg/-/imagemin-mozjpeg-8.0.1.tgz': - resolution: {integrity: sha512-kMQWEoKxxhlnH4POI3qfW9DjXlQfi80ux3l2b3j5R3eudSCoUIzKQLkfMjNJ6eMYnMWBcB+rfQOWqIzdIwFGKw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/imagemin-mozjpeg/-/imagemin-mozjpeg-8.0.1.tgz} - name: '@types/imagemin-mozjpeg' - version: 8.0.1 - - '@types/imagemin-optipng@https://registry.npmmirror.com/@types/imagemin-optipng/-/imagemin-optipng-5.2.1.tgz': - resolution: {integrity: sha512-XCM/3q+HUL7v4zOqMI+dJ5dTxT+MUukY9KU49DSnYb/4yWtSMHJyADP+WHSMVzTR63J2ZvfUOzSilzBNEQW78g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/imagemin-optipng/-/imagemin-optipng-5.2.1.tgz} - name: '@types/imagemin-optipng' - version: 5.2.1 - - '@types/imagemin-svgo@https://registry.npmmirror.com/@types/imagemin-svgo/-/imagemin-svgo-10.0.2.tgz': - resolution: {integrity: sha512-F4enqbl7eE0JhrwGdJSMKFDn1j1Pk8JsCvnjA5iJKSi+IK3sd4CronabzVmOuEkz663tV7FsRQp1f7SP3zmIaA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/imagemin-svgo/-/imagemin-svgo-10.0.2.tgz} - name: '@types/imagemin-svgo' - version: 10.0.2 - - '@types/imagemin-webp@https://registry.npmmirror.com/@types/imagemin-webp/-/imagemin-webp-7.0.0.tgz': - resolution: {integrity: sha512-Lb1tjy2vEU7qYwM5iFB9o5k0J3mIpulw6Yftset5LLLugPu7+C16rLYRP1WEwr4QM8AeJZRjC2BGBLd9lGvRhQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/imagemin-webp/-/imagemin-webp-7.0.0.tgz} - name: '@types/imagemin-webp' - version: 7.0.0 - - '@types/imagemin@https://registry.npmmirror.com/@types/imagemin/-/imagemin-7.0.1.tgz': - resolution: {integrity: sha512-xEn5+M3lDBtI3JxLy6eU3ksoVurygnlG7OYhTqJfGGP4PcvYnfn+IABCmMve7ziM/SneHDm5xgJFKC8hCYPicw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/imagemin/-/imagemin-7.0.1.tgz} - name: '@types/imagemin' - version: 7.0.1 - - '@types/inquirer@https://registry.npmmirror.com/@types/inquirer/-/inquirer-8.2.1.tgz': - resolution: {integrity: sha512-wKW3SKIUMmltbykg4I5JzCVzUhkuD9trD6efAmYgN2MrSntY0SMRQzEnD3mkyJ/rv9NLbTC7g3hKKE86YwEDLw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/inquirer/-/inquirer-8.2.1.tgz} - name: '@types/inquirer' - version: 8.2.1 - - '@types/intro.js@https://registry.npmmirror.com/@types/intro.js/-/intro.js-3.0.2.tgz': - resolution: {integrity: sha512-kow8REgIIG42atN9vAaIdpEqVzj6WzV9m0PII8oce+an4Lc3eyfQF32/FbabbGmfWuF7TceTdd+gh74kOrXkPw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/intro.js/-/intro.js-3.0.2.tgz} - name: '@types/intro.js' - version: 3.0.2 - - '@types/istanbul-lib-coverage@https://registry.npmmirror.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz': - resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz} - name: '@types/istanbul-lib-coverage' - version: 2.0.4 - - '@types/istanbul-lib-report@https://registry.npmmirror.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz': - resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz} - name: '@types/istanbul-lib-report' - version: 3.0.0 - - '@types/istanbul-reports@https://registry.npmmirror.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz': - resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz} - name: '@types/istanbul-reports' - version: 3.0.1 - - '@types/jest@https://registry.npmmirror.com/@types/jest/-/jest-27.0.2.tgz': - resolution: {integrity: sha512-4dRxkS/AFX0c5XW6IPMNOydLn2tEhNhJV7DnYK+0bjoJZ+QTmfucBlihX7aoEsh/ocYtkLC73UbnBXBXIxsULA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/jest/-/jest-27.0.2.tgz} - name: '@types/jest' - version: 27.0.2 - - '@types/json-schema@https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.12.tgz': - resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.12.tgz} - name: '@types/json-schema' - version: 7.0.12 - - '@types/keyv@https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz': - resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz} - name: '@types/keyv' - version: 3.1.4 - - '@types/keyv@https://registry.npmmirror.com/@types/keyv/-/keyv-3.1.4.tgz': - resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/keyv/-/keyv-3.1.4.tgz} - name: '@types/keyv' - version: 3.1.4 - - '@types/lodash-es@https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.6.tgz': - resolution: {integrity: sha512-R+zTeVUKDdfoRxpAryaQNRKk3105Rrgx2CFRClIgRGaqDTdjsm8h6IYA8ir584W3ePzkZfst5xIgDwYrlh9HLg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.6.tgz} - name: '@types/lodash-es' - version: 4.17.6 - - '@types/lodash@https://registry.npmmirror.com/@types/lodash/-/lodash-4.14.197.tgz': - resolution: {integrity: sha512-BMVOiWs0uNxHVlHBgzTIqJYmj+PgCo4euloGF+5m4okL3rEYzM2EEv78mw8zWSMM57dM7kVIgJ2QDvwHSoCI5g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/lodash/-/lodash-4.14.197.tgz} - name: '@types/lodash' - version: 4.14.197 - - '@types/minimatch@https://registry.npmmirror.com/@types/minimatch/-/minimatch-3.0.5.tgz': - resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/minimatch/-/minimatch-3.0.5.tgz} - name: '@types/minimatch' - version: 3.0.5 - - '@types/minimatch@https://registry.npmmirror.com/@types/minimatch/-/minimatch-5.1.2.tgz': - resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/minimatch/-/minimatch-5.1.2.tgz} - name: '@types/minimatch' - version: 5.1.2 - - '@types/minimist@https://registry.npmmirror.com/@types/minimist/-/minimist-1.2.2.tgz': - resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/minimist/-/minimist-1.2.2.tgz} - name: '@types/minimist' - version: 1.2.2 - - '@types/mockjs@https://registry.npmmirror.com/@types/mockjs/-/mockjs-1.0.6.tgz': - resolution: {integrity: sha512-Yu5YlqbYZyqsd6LjO4e8ONJDN9pTSnciHDcRP4teNOh/au2b8helFhgRx+3w8xsTFEnwr9jtfTVJbAx+eYmlHA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/mockjs/-/mockjs-1.0.6.tgz} - name: '@types/mockjs' - version: 1.0.6 - - '@types/mousetrap@https://registry.npmmirror.com/@types/mousetrap/-/mousetrap-1.6.11.tgz': - resolution: {integrity: sha512-F0oAily9Q9QQpv9JKxKn0zMKfOo36KHCW7myYsmUyf2t0g+sBTbG3UleTPoguHdE1z3GLFr3p7/wiOio52QFjQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/mousetrap/-/mousetrap-1.6.11.tgz} - name: '@types/mousetrap' - version: 1.6.11 - - '@types/node@https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz': - resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz} - name: '@types/node' - version: 17.0.45 - - '@types/node@https://registry.npmmirror.com/@types/node/-/node-14.18.54.tgz': - resolution: {integrity: sha512-uq7O52wvo2Lggsx1x21tKZgqkJpvwCseBBPtX/nKQfpVlEsLOb11zZ1CRsWUKvJF0+lzuA9jwvA7Pr2Wt7i3xw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/node/-/node-14.18.54.tgz} - name: '@types/node' - version: 14.18.54 - - '@types/node@https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz': - resolution: {integrity: sha512-wANk6fBrUwdpY4isjWrKTufkrXdu1D2YHCot2fD/DfWxF5sMrVSA+KN7ydckvaTCh0HiqX9IVl0L5/ZoXg5M7w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz} - name: '@types/node' - version: 17.0.25 - - '@types/node@https://registry.npmmirror.com/@types/node/-/node-20.4.7.tgz': - resolution: {integrity: sha512-bUBrPjEry2QUTsnuEjzjbS7voGWCc30W0qzgMf90GPeDGFRakvrz47ju+oqDAKCXLUCe39u57/ORMl/O/04/9g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/node/-/node-20.4.7.tgz} - name: '@types/node' - version: 20.4.7 - - '@types/normalize-package-data@https://registry.npmmirror.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz': - resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz} - name: '@types/normalize-package-data' - version: 2.4.1 - - '@types/nprogress@https://registry.npmmirror.com/@types/nprogress/-/nprogress-0.2.0.tgz': - resolution: {integrity: sha512-1cYJrqq9GezNFPsWTZpFut/d4CjpZqA0vhqDUPFWYKF1oIyBz5qnoYMzR+0C/T96t3ebLAC1SSnwrVOm5/j74A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/nprogress/-/nprogress-0.2.0.tgz} - name: '@types/nprogress' - version: 0.2.0 - - '@types/parse-json@https://registry.npmmirror.com/@types/parse-json/-/parse-json-4.0.0.tgz': - resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/parse-json/-/parse-json-4.0.0.tgz} - name: '@types/parse-json' - version: 4.0.0 - - '@types/pinyin@https://registry.npmmirror.com/@types/pinyin/-/pinyin-2.10.0.tgz': - resolution: {integrity: sha512-YLty6FPYiBgxNbQNaTRJquvflRdG026jjOpjNXR7HdGEJPGtmPBp1x9LkWePCNA/ClaTT0hYem080TbRCMLbew==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/pinyin/-/pinyin-2.10.0.tgz} - name: '@types/pinyin' - version: 2.10.0 - - '@types/prettier@https://registry.npmmirror.com/@types/prettier/-/prettier-2.7.3.tgz': - resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/prettier/-/prettier-2.7.3.tgz} - name: '@types/prettier' - version: 2.7.3 - - '@types/qrcode@https://registry.npmmirror.com/@types/qrcode/-/qrcode-1.4.2.tgz': - resolution: {integrity: sha512-7uNT9L4WQTNJejHTSTdaJhfBSCN73xtXaHFyBJ8TSwiLhe4PRuTue7Iph0s2nG9R/ifUaSnGhLUOZavlBEqDWQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/qrcode/-/qrcode-1.4.2.tgz} - name: '@types/qrcode' - version: 1.4.2 - - '@types/qs@https://registry.npmmirror.com/@types/qs/-/qs-6.9.7.tgz': - resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/qs/-/qs-6.9.7.tgz} - name: '@types/qs' - version: 6.9.7 - - '@types/raf@https://registry.npmmirror.com/@types/raf/-/raf-3.4.0.tgz': - resolution: {integrity: sha512-taW5/WYqo36N7V39oYyHP9Ipfd5pNFvGTIQsNGj86xV88YQ7GnI30/yMfKDF7Zgin0m3e+ikX88FvImnK4RjGw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/raf/-/raf-3.4.0.tgz} - name: '@types/raf' - version: 3.4.0 - - '@types/resolve@https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz': - resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz} - name: '@types/resolve' - version: 1.17.1 - - '@types/resolve@https://registry.npmmirror.com/@types/resolve/-/resolve-1.17.1.tgz': - resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/resolve/-/resolve-1.17.1.tgz} - name: '@types/resolve' - version: 1.17.1 - - '@types/responselike@https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz': - resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz} - name: '@types/responselike' - version: 1.0.0 - - '@types/responselike@https://registry.npmmirror.com/@types/responselike/-/responselike-1.0.0.tgz': - resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/responselike/-/responselike-1.0.0.tgz} - name: '@types/responselike' - version: 1.0.0 - - '@types/semver@https://registry.npmmirror.com/@types/semver/-/semver-7.5.0.tgz': - resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/semver/-/semver-7.5.0.tgz} - name: '@types/semver' - version: 7.5.0 - - '@types/showdown@https://registry.npmmirror.com/@types/showdown/-/showdown-1.9.4.tgz': - resolution: {integrity: sha512-50ehC3IAijfkvoNqmQ+VL73S7orOxmAK8ljQAFBv8o7G66lAZyxQj1L3BAv2dD86myLXI+sgKP1kcxAaxW356w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/showdown/-/showdown-1.9.4.tgz} - name: '@types/showdown' - version: 1.9.4 - - '@types/sortablejs@https://registry.npmmirror.com/@types/sortablejs/-/sortablejs-1.10.7.tgz': - resolution: {integrity: sha512-lGCwwgpj8zW/ZmaueoPVSP7nnc9t8VqVWXS+ASX3eoUUENmiazv0rlXyTRludXzuX9ALjPsMqBu85TgJNWbTOg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/sortablejs/-/sortablejs-1.10.7.tgz} - name: '@types/sortablejs' - version: 1.10.7 - - '@types/stack-utils@https://registry.npmmirror.com/@types/stack-utils/-/stack-utils-2.0.1.tgz': - resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/stack-utils/-/stack-utils-2.0.1.tgz} - name: '@types/stack-utils' - version: 2.0.1 - - '@types/svgo@https://registry.npmmirror.com/@types/svgo/-/svgo-2.6.4.tgz': - resolution: {integrity: sha512-l4cmyPEckf8moNYHdJ+4wkHvFxjyW6ulm9l4YGaOxeyBWPhBOT0gvni1InpFPdzx1dKf/2s62qGITwxNWnPQng==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/svgo/-/svgo-2.6.4.tgz} - name: '@types/svgo' - version: 2.6.4 - - '@types/tern@https://registry.npmmirror.com/@types/tern/-/tern-0.23.4.tgz': - resolution: {integrity: sha512-JAUw1iXGO1qaWwEOzxTKJZ/5JxVeON9kvGZ/osgZaJImBnyjyn0cjovPsf6FNLmyGY8Vw9DoXZCMlfMkMwHRWg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/tern/-/tern-0.23.4.tgz} - name: '@types/tern' - version: 0.23.4 - - '@types/through@https://registry.npmmirror.com/@types/through/-/through-0.0.30.tgz': - resolution: {integrity: sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/through/-/through-0.0.30.tgz} - name: '@types/through' - version: 0.0.30 - - '@types/tinycolor2@https://registry.npmmirror.com/@types/tinycolor2/-/tinycolor2-1.4.3.tgz': - resolution: {integrity: sha512-Kf1w9NE5HEgGxCRyIcRXR/ZYtDv0V8FVPtYHwLxl0O+maGX0erE77pQlD0gpP+/KByMZ87mOA79SjifhSB3PjQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/tinycolor2/-/tinycolor2-1.4.3.tgz} - name: '@types/tinycolor2' - version: 1.4.3 - - '@types/trusted-types@https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.3.tgz': - resolution: {integrity: sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.3.tgz} - name: '@types/trusted-types' - version: 2.0.3 - - '@types/web-bluetooth@https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.17.tgz': - resolution: {integrity: sha512-4p9vcSmxAayx72yn70joFoL44c9MO/0+iVEBIQXe3v2h2SiAsEIo/G5v6ObFWvNKRFjbrVadNf9LqEEZeQPzdA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.17.tgz} - name: '@types/web-bluetooth' - version: 0.0.17 - - '@types/yargs-parser@https://registry.npmmirror.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz': - resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz} - name: '@types/yargs-parser' - version: 21.0.0 - - '@types/yargs@https://registry.npmmirror.com/@types/yargs/-/yargs-16.0.5.tgz': - resolution: {integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/yargs/-/yargs-16.0.5.tgz} - name: '@types/yargs' - version: 16.0.5 - - '@types/zrender@https://registry.npmmirror.com/@types/zrender/-/zrender-4.0.3.tgz': - resolution: {integrity: sha512-EPI269lkHNsObwILJ1k1z7znLjKyePuWRy/XKK0shSGpBb9cIX307arcwJV4+2NeZj5wEjN06r4D8yFv7sI06g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@types/zrender/-/zrender-4.0.3.tgz} - name: '@types/zrender' - version: 4.0.3 - - '@typescript-eslint/eslint-plugin@https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.20.0.tgz': - resolution: {integrity: sha512-fapGzoxilCn3sBtC6NtXZX6+P/Hef7VDbyfGqTTpzYydwhlkevB+0vE0EnmHPVTVSy68GUncyJ/2PcrFBeCo5Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.20.0.tgz} - name: '@typescript-eslint/eslint-plugin' - version: 5.20.0 - 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 - - '@typescript-eslint/parser@https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-5.20.0.tgz': - resolution: {integrity: sha512-UWKibrCZQCYvobmu3/N8TWbEeo/EPQbS41Ux1F9XqPzGuV7pfg6n50ZrFo6hryynD8qOTTfLHtHjjdQtxJ0h/w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-5.20.0.tgz} - name: '@typescript-eslint/parser' - version: 5.20.0 - 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 - - '@typescript-eslint/scope-manager@https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.20.0.tgz': - resolution: {integrity: sha512-h9KtuPZ4D/JuX7rpp1iKg3zOH0WNEa+ZIXwpW/KWmEFDxlA/HSfCMhiyF1HS/drTICjIbpA6OqkAhrP/zkCStg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.20.0.tgz} - name: '@typescript-eslint/scope-manager' - version: 5.20.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@typescript-eslint/scope-manager@https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz': - resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz} - name: '@typescript-eslint/scope-manager' - version: 5.62.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@typescript-eslint/type-utils@https://registry.npmmirror.com/@typescript-eslint/type-utils/-/type-utils-5.20.0.tgz': - resolution: {integrity: sha512-WxNrCwYB3N/m8ceyoGCgbLmuZwupvzN0rE8NBuwnl7APgjv24ZJIjkNzoFBXPRCGzLNkoU/WfanW0exvp/+3Iw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@typescript-eslint/type-utils/-/type-utils-5.20.0.tgz} - name: '@typescript-eslint/type-utils' - version: 5.20.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '*' - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/types@https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.20.0.tgz': - resolution: {integrity: sha512-+d8wprF9GyvPwtoB4CxBAR/s0rpP25XKgnOvMf/gMXYDvlUC3rPFHupdTQ/ow9vn7UDe5rX02ovGYQbv/IUCbg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.20.0.tgz} - name: '@typescript-eslint/types' - version: 5.20.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@typescript-eslint/types@https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.62.0.tgz': - resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.62.0.tgz} - name: '@typescript-eslint/types' - version: 5.62.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@typescript-eslint/typescript-estree@https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.20.0.tgz': - resolution: {integrity: sha512-36xLjP/+bXusLMrT9fMMYy1KJAGgHhlER2TqpUVDYUQg4w0q/NW/sg4UGAgVwAqb8V4zYg43KMUpM8vV2lve6w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.20.0.tgz} - name: '@typescript-eslint/typescript-estree' - version: 5.20.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/typescript-estree@https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz': - resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz} - name: '@typescript-eslint/typescript-estree' - version: 5.62.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/utils@https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-5.20.0.tgz': - resolution: {integrity: sha512-lHONGJL1LIO12Ujyx8L8xKbwWSkoUKFSO+0wDAqGXiudWB2EO7WEUT+YZLtVbmOmSllAjLb9tpoIPwpRe5Tn6w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-5.20.0.tgz} - name: '@typescript-eslint/utils' - version: 5.20.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - - '@typescript-eslint/utils@https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-5.62.0.tgz': - resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-5.62.0.tgz} - name: '@typescript-eslint/utils' - version: 5.62.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - - '@typescript-eslint/visitor-keys@https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.20.0.tgz': - resolution: {integrity: sha512-1flRpNF+0CAQkMNlTJ6L/Z5jiODG/e5+7mk6XwtPOUS3UrTz3UOiAg9jG2VtKsWI6rZQfy4C6a232QNRZTRGlg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.20.0.tgz} - name: '@typescript-eslint/visitor-keys' - version: 5.20.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@typescript-eslint/visitor-keys@https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz': - resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz} - name: '@typescript-eslint/visitor-keys' - version: 5.62.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@vitejs/plugin-legacy@https://registry.npmmirror.com/@vitejs/plugin-legacy/-/plugin-legacy-2.0.0.tgz': - resolution: {integrity: sha512-cuc45C4BQo2VlOsHZML4fc3MPfSjOEFeezHxr+WWlOOmi+muy1rz2snnFiePtyjVc1CYGTsnxk13cXpzQvMZaw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vitejs/plugin-legacy/-/plugin-legacy-2.0.0.tgz} - name: '@vitejs/plugin-legacy' - version: 2.0.0 - engines: {node: '>=14.18.0'} - peerDependencies: - terser: ^5.4.0 - vite: ^3.0.0 - - '@vitejs/plugin-vue-jsx@https://registry.npmmirror.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-1.3.10.tgz': - resolution: {integrity: sha512-Cf5zznh4yNMiEMBfTOztaDVDmK1XXfgxClzOSUVUc8WAmHzogrCUeM8B05ABzuGtg0D1amfng+mUmSIOFGP3Pw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-1.3.10.tgz} - name: '@vitejs/plugin-vue-jsx' - version: 1.3.10 - engines: {node: '>=12.0.0'} - - '@vitejs/plugin-vue@https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-3.0.1.tgz': - resolution: {integrity: sha512-Ll9JgxG7ONIz/XZv3dssfoMUDu9qAnlJ+km+pBA0teYSXzwPCIzS/e1bmwNYl5dcQGs677D21amgfYAnzMl17A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-3.0.1.tgz} - name: '@vitejs/plugin-vue' - version: 3.0.1 - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - vite: ^3.0.0 - vue: ^3.2.25 - - '@volar/code-gen@https://registry.npmmirror.com/@volar/code-gen/-/code-gen-0.33.9.tgz': - resolution: {integrity: sha512-HI+XemEjvOv9uSjqaNXIL1brSTaBy9vRTcXqz9787nL5VKktI8aU1Zk4w9yJR88eTqw7mlPIdMaib7Ps/QPq8Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@volar/code-gen/-/code-gen-0.33.9.tgz} - name: '@volar/code-gen' - version: 0.33.9 - - '@volar/pug-language-service@https://registry.npmmirror.com/@volar/pug-language-service/-/pug-language-service-0.33.9.tgz': - resolution: {integrity: sha512-3oOV0HmoqkCyPAiHXSMoDzbLrSEQQv3d1dY/Lfo4H8hGoS8kUYJ958328TuLFc90yzsSmYnuvIux5AUok138pg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@volar/pug-language-service/-/pug-language-service-0.33.9.tgz} - name: '@volar/pug-language-service' - version: 0.33.9 - - '@volar/shared@https://registry.npmmirror.com/@volar/shared/-/shared-0.33.9.tgz': - resolution: {integrity: sha512-YqEBYT1SjyO+/W73lyKZlftumimsrYGvd98pHrIyvgc6HNhFnCcthRbyHskstjU6P8Bgj90mRl+7Sb29J+Z5ng==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@volar/shared/-/shared-0.33.9.tgz} - name: '@volar/shared' - version: 0.33.9 - - '@volar/source-map@https://registry.npmmirror.com/@volar/source-map/-/source-map-0.33.9.tgz': - resolution: {integrity: sha512-SE7dfumZ8pLsbj4DtiSDTg2/d/JT45nF51rUnuz1UNSBPEeXBexlzvz5EQ2AyrX0FjAAd2ijrRtirTk1a0SFhQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@volar/source-map/-/source-map-0.33.9.tgz} - name: '@volar/source-map' - version: 0.33.9 - - '@volar/transforms@https://registry.npmmirror.com/@volar/transforms/-/transforms-0.33.9.tgz': - resolution: {integrity: sha512-qdc2d0ZW/G6jCx1pBmoMjMJTY245pZJjpPL/OCT3zgbDLGvLvqhowXxQYQd2YiNXqxJvbadEKviH5LiZL3sU9g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@volar/transforms/-/transforms-0.33.9.tgz} - name: '@volar/transforms' - version: 0.33.9 - - '@volar/vue-code-gen@https://registry.npmmirror.com/@volar/vue-code-gen/-/vue-code-gen-0.33.9.tgz': - resolution: {integrity: sha512-qRCXcBhm1kUlI06sW5zolavn8gqZdSC2eIWw7jgbW68K/cGlTyXHGGZgJPM9P22cF9pcrjV1ByehO18ke2u+aA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@volar/vue-code-gen/-/vue-code-gen-0.33.9.tgz} - name: '@volar/vue-code-gen' - version: 0.33.9 - - '@volar/vue-typescript@https://registry.npmmirror.com/@volar/vue-typescript/-/vue-typescript-0.33.9.tgz': - resolution: {integrity: sha512-UUViaQfzAV7z49TB+IsGCT6ls7zdEUib2N0L4k8U9nZbd2BQA4kcR9nyS/8oDOU5fK3ErP+pPlC+XzGGamKhcw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@volar/vue-typescript/-/vue-typescript-0.33.9.tgz} - name: '@volar/vue-typescript' - version: 0.33.9 - deprecated: 'WARNING: This project has been renamed to @vue/typescript. Install using @vue/typescript instead.' - - '@vue/babel-helper-vue-transform-on@https://registry.npmmirror.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.1.5.tgz': - resolution: {integrity: sha512-SgUymFpMoAyWeYWLAY+MkCK3QEROsiUnfaw5zxOVD/M64KQs8D/4oK6Q5omVA2hnvEOE0SCkH2TZxs/jnnUj7w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.1.5.tgz} - name: '@vue/babel-helper-vue-transform-on' - version: 1.1.5 - - '@vue/babel-plugin-jsx@https://registry.npmmirror.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.1.5.tgz': - resolution: {integrity: sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.1.5.tgz} - name: '@vue/babel-plugin-jsx' - version: 1.1.5 - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@vue/compiler-core@https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.2.33.tgz': - resolution: {integrity: sha512-AAmr52ji3Zhk7IKIuigX2osWWsb2nQE5xsdFYjdnmtQ4gymmqXbjLvkSE174+fF3A3kstYrTgGkqgOEbsdLDpw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.2.33.tgz} - name: '@vue/compiler-core' - version: 3.2.33 - - '@vue/compiler-core@https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz': - resolution: {integrity: sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz} - name: '@vue/compiler-core' - version: 3.3.4 - - '@vue/compiler-dom@https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.2.33.tgz': - resolution: {integrity: sha512-GhiG1C8X98Xz9QUX/RlA6/kgPBWJkjq0Rq6//5XTAGSYrTMBgcLpP9+CnlUg1TFxnnCVughAG+KZl28XJqw8uQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.2.33.tgz} - name: '@vue/compiler-dom' - version: 3.2.33 - - '@vue/compiler-dom@https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz': - resolution: {integrity: sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz} - name: '@vue/compiler-dom' - version: 3.3.4 - - '@vue/compiler-sfc@https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.2.33.tgz': - resolution: {integrity: sha512-H8D0WqagCr295pQjUYyO8P3IejM3vEzeCO1apzByAEaAR/WimhMYczHfZVvlCE/9yBaEu/eu9RdiWr0kF8b71Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.2.33.tgz} - name: '@vue/compiler-sfc' - version: 3.2.33 - - '@vue/compiler-sfc@https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz': - resolution: {integrity: sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz} - name: '@vue/compiler-sfc' - version: 3.3.4 - - '@vue/compiler-ssr@https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.2.33.tgz': - resolution: {integrity: sha512-XQh1Xdk3VquDpXsnoCd7JnMoWec9CfAzQDQsaMcSU79OrrO2PNR0ErlIjm/mGq3GmBfkQjzZACV+7GhfRB8xMQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.2.33.tgz} - name: '@vue/compiler-ssr' - version: 3.2.33 - - '@vue/compiler-ssr@https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz': - resolution: {integrity: sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz} - name: '@vue/compiler-ssr' - version: 3.3.4 - - '@vue/devtools-api@https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz': - resolution: {integrity: sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz} - name: '@vue/devtools-api' - version: 6.5.0 - - '@vue/reactivity-transform@https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.2.33.tgz': - resolution: {integrity: sha512-4UL5KOIvSQb254aqenW4q34qMXbfZcmEsV/yVidLUgvwYQQ/D21bGX3DlgPUGI3c4C+iOnNmDCkIxkILoX/Pyw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.2.33.tgz} - name: '@vue/reactivity-transform' - version: 3.2.33 - - '@vue/reactivity-transform@https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz': - resolution: {integrity: sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz} - name: '@vue/reactivity-transform' - version: 3.3.4 - - '@vue/reactivity@https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.2.33.tgz': - resolution: {integrity: sha512-62Sq0mp9/0bLmDuxuLD5CIaMG2susFAGARLuZ/5jkU1FCf9EDbwUuF+BO8Ub3Rbodx0ziIecM/NsmyjardBxfQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.2.33.tgz} - name: '@vue/reactivity' - version: 3.2.33 - - '@vue/reactivity@https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.3.4.tgz': - resolution: {integrity: sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.3.4.tgz} - name: '@vue/reactivity' - version: 3.3.4 - - '@vue/runtime-core@https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.2.33.tgz': - resolution: {integrity: sha512-N2D2vfaXsBPhzCV3JsXQa2NECjxP3eXgZlFqKh4tgakp3iX6LCGv76DLlc+IfFZq+TW10Y8QUfeihXOupJ1dGw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.2.33.tgz} - name: '@vue/runtime-core' - version: 3.2.33 - - '@vue/runtime-core@https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.3.4.tgz': - resolution: {integrity: sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.3.4.tgz} - name: '@vue/runtime-core' - version: 3.3.4 - - '@vue/runtime-dom@https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.2.33.tgz': - resolution: {integrity: sha512-LSrJ6W7CZTSUygX5s8aFkraDWlO6K4geOwA3quFF2O+hC3QuAMZt/0Xb7JKE3C4JD4pFwCSO7oCrZmZ0BIJUnw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.2.33.tgz} - name: '@vue/runtime-dom' - version: 3.2.33 - - '@vue/runtime-dom@https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz': - resolution: {integrity: sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz} - name: '@vue/runtime-dom' - version: 3.3.4 - - '@vue/server-renderer@https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.2.33.tgz': - resolution: {integrity: sha512-4jpJHRD4ORv8PlbYi+/MfP8ec1okz6rybe36MdpkDrGIdEItHEUyaHSKvz+ptNEyQpALmmVfRteHkU9F8vxOew==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.2.33.tgz} - name: '@vue/server-renderer' - version: 3.2.33 - peerDependencies: - vue: 3.2.33 - - '@vue/server-renderer@https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.3.4.tgz': - resolution: {integrity: sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.3.4.tgz} - name: '@vue/server-renderer' - version: 3.3.4 - peerDependencies: - vue: 3.3.4 - - '@vue/shared@https://registry.npmmirror.com/@vue/shared/-/shared-3.2.33.tgz': - resolution: {integrity: sha512-UBc1Pg1T3yZ97vsA2ueER0F6GbJebLHYlEi4ou1H5YL4KWvMOOWwpYo9/QpWq93wxKG6Wo13IY74Hcn/f7c7Bg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/shared/-/shared-3.2.33.tgz} - name: '@vue/shared' - version: 3.2.33 - - '@vue/shared@https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz': - resolution: {integrity: sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz} - name: '@vue/shared' - version: 3.3.4 - - '@vue/test-utils@https://registry.npmmirror.com/@vue/test-utils/-/test-utils-2.0.0-rc.21.tgz': - resolution: {integrity: sha512-wIJR4e/jISBKVKfiod3DV32BlDsoD744WVCuCaGtaSKvhvTL9gI5vl2AYSy00V51YaM8dCOFi3zcpCON8G1WqA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vue/test-utils/-/test-utils-2.0.0-rc.21.tgz} - name: '@vue/test-utils' - version: 2.0.0-rc.21 - peerDependencies: - vue: ^3.0.1 - - '@vueuse/core@https://registry.npmmirror.com/@vueuse/core/-/core-10.3.0.tgz': - resolution: {integrity: sha512-BEM5yxcFKb5btFjTSAFjTu5jmwoW66fyV9uJIP4wUXXU8aR5Hl44gndaaXp7dC5HSObmgbnR2RN+Un1p68Mf5Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vueuse/core/-/core-10.3.0.tgz} - name: '@vueuse/core' - version: 10.3.0 - - '@vueuse/core@https://registry.npmmirror.com/@vueuse/core/-/core-6.9.2.tgz': - resolution: {integrity: sha512-FRwl4ccSFuHZBHLGgS9TMv/+Dd6XFaL4o9nph2qtgQIV+z29RBFokw08XjHfykiENRzB01MjYHJ7iRUnsIFQXg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vueuse/core/-/core-6.9.2.tgz} - name: '@vueuse/core' - version: 6.9.2 - peerDependencies: - '@vue/composition-api': ^1.1.0 - vue: ^2.6.0 || ^3.2.0 - peerDependenciesMeta: - '@vue/composition-api': - optional: true - vue: - optional: true - - '@vueuse/core@https://registry.npmmirror.com/@vueuse/core/-/core-8.3.0.tgz': - resolution: {integrity: sha512-GDHM0vr/E3mw1fbh3yj4DJCJ/KvTXtOtT0OR2kCKuEUOo0Btk45MDGI6MdIqsHMjI0OXBJl8jH8WFv64KU2mOQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vueuse/core/-/core-8.3.0.tgz} - name: '@vueuse/core' - version: 8.3.0 - peerDependencies: - '@vue/composition-api': ^1.1.0 - vue: ^2.6.0 || ^3.2.0 - peerDependenciesMeta: - '@vue/composition-api': - optional: true - vue: - optional: true - - '@vueuse/metadata@https://registry.npmmirror.com/@vueuse/metadata/-/metadata-10.3.0.tgz': - resolution: {integrity: sha512-Ema3YhNOa4swDsV0V7CEY5JXvK19JI/o1szFO1iWxdFg3vhdFtCtSTP26PCvbUpnUtNHBY2wx5y3WDXND5Pvnw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vueuse/metadata/-/metadata-10.3.0.tgz} - name: '@vueuse/metadata' - version: 10.3.0 - - '@vueuse/metadata@https://registry.npmmirror.com/@vueuse/metadata/-/metadata-8.3.0.tgz': - resolution: {integrity: sha512-7R/LNPQWp1r/owa2e71l3dFlJ21p89YE3ks14ZclP2VOTvhC6AzDRcpk+ChISNetv8spsFbWZj/Z7sFjbFZfuw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vueuse/metadata/-/metadata-8.3.0.tgz} - name: '@vueuse/metadata' - version: 8.3.0 - - '@vueuse/shared@https://registry.npmmirror.com/@vueuse/shared/-/shared-10.3.0.tgz': - resolution: {integrity: sha512-kGqCTEuFPMK4+fNWy6dUOiYmxGcUbtznMwBZLC1PubidF4VZY05B+Oht7Jh7/6x4VOWGpvu3R37WHi81cKpiqg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vueuse/shared/-/shared-10.3.0.tgz} - name: '@vueuse/shared' - version: 10.3.0 - - '@vueuse/shared@https://registry.npmmirror.com/@vueuse/shared/-/shared-6.9.2.tgz': - resolution: {integrity: sha512-lAiMh6XROs0kSKVd0Yb/6GKoQMxC1fYrFDi6opvQWISPtcqRNluRrQxLUZ3WTI78ovtoKRLktjhkFAtydcfFDg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vueuse/shared/-/shared-6.9.2.tgz} - name: '@vueuse/shared' - version: 6.9.2 - peerDependencies: - '@vue/composition-api': ^1.1.0 - vue: ^2.6.0 || ^3.2.0 - peerDependenciesMeta: - '@vue/composition-api': - optional: true - vue: - optional: true - - '@vueuse/shared@https://registry.npmmirror.com/@vueuse/shared/-/shared-8.3.0.tgz': - resolution: {integrity: sha512-xehtLfevPw9nsVIGFe/tWMtFvbvZjeAfXh7DT9Fptt/6/C5rLwpJtxsVguIBtPybjwobO4KCpQYS78aa9fg5Sw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@vueuse/shared/-/shared-8.3.0.tgz} - name: '@vueuse/shared' - version: 8.3.0 - peerDependencies: - '@vue/composition-api': ^1.1.0 - vue: ^2.6.0 || ^3.2.0 - peerDependenciesMeta: - '@vue/composition-api': - optional: true - vue: - optional: true - - '@windicss/config@https://registry.npmmirror.com/@windicss/config/-/config-1.8.7.tgz': - resolution: {integrity: sha512-8n+/Y36j5L3rw2tgMdLjeGRuNV7VYfKoHoraLK6Bk9OJ1MTPd5vv7pekof/uOPWVV7WWjVeZ6CTO8SDbDDW3iw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@windicss/config/-/config-1.8.7.tgz} - name: '@windicss/config' - version: 1.8.7 - - '@windicss/plugin-utils@https://registry.npmmirror.com/@windicss/plugin-utils/-/plugin-utils-1.8.7.tgz': - resolution: {integrity: sha512-dfj95olNZyGFDPFMBvE5oq8hA5f0ooUJZjVdWlthS4ek4W1/xNOHDxB6ygWR8LE9zCOXZykApjt1LOhy9Ky2QA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@windicss/plugin-utils/-/plugin-utils-1.8.7.tgz} - name: '@windicss/plugin-utils' - version: 1.8.7 - - '@zxcvbn-ts/core@https://registry.npmmirror.com/@zxcvbn-ts/core/-/core-2.0.1.tgz': - resolution: {integrity: sha512-i3viYattwORK5liqS/d9WaIWSLki75oKVog5Elg9Ls9d8L6zKLwpAkj6PT/P4LZqJHIVRPnKjgajpP6SLerr6Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/@zxcvbn-ts/core/-/core-2.0.1.tgz} - name: '@zxcvbn-ts/core' - version: 2.0.1 - - JSONStream@https://registry.npmmirror.com/JSONStream/-/JSONStream-1.3.5.tgz: - resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/JSONStream/-/JSONStream-1.3.5.tgz} - name: JSONStream - version: 1.3.5 - hasBin: true - - abab@https://registry.npmmirror.com/abab/-/abab-2.0.6.tgz: - resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/abab/-/abab-2.0.6.tgz} - name: abab - version: 2.0.6 - - acorn-globals@https://registry.npmmirror.com/acorn-globals/-/acorn-globals-6.0.0.tgz: - resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/acorn-globals/-/acorn-globals-6.0.0.tgz} - name: acorn-globals - version: 6.0.0 - - acorn-jsx@https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz: - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz} - name: acorn-jsx - version: 5.3.2 - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - - acorn-walk@https://registry.npmmirror.com/acorn-walk/-/acorn-walk-7.2.0.tgz: - resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/acorn-walk/-/acorn-walk-7.2.0.tgz} - name: acorn-walk - version: 7.2.0 - engines: {node: '>=0.4.0'} - - acorn-walk@https://registry.npmmirror.com/acorn-walk/-/acorn-walk-8.2.0.tgz: - resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/acorn-walk/-/acorn-walk-8.2.0.tgz} - name: acorn-walk - version: 8.2.0 - engines: {node: '>=0.4.0'} - - acorn@https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz: - resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz} - name: acorn - version: 8.10.0 - engines: {node: '>=0.4.0'} - hasBin: true - - acorn@https://registry.npmmirror.com/acorn/-/acorn-7.4.1.tgz: - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/acorn/-/acorn-7.4.1.tgz} - name: acorn - version: 7.4.1 - engines: {node: '>=0.4.0'} - hasBin: true - - acorn@https://registry.npmmirror.com/acorn/-/acorn-8.10.0.tgz: - resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/acorn/-/acorn-8.10.0.tgz} - name: acorn - version: 8.10.0 - engines: {node: '>=0.4.0'} - hasBin: true - - add-stream@https://registry.npmmirror.com/add-stream/-/add-stream-1.0.0.tgz: - resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/add-stream/-/add-stream-1.0.0.tgz} - name: add-stream - version: 1.0.0 - - adler-32@https://registry.npmmirror.com/adler-32/-/adler-32-1.2.0.tgz: - resolution: {integrity: sha512-/vUqU/UY4MVeFsg+SsK6c+/05RZXIHZMGJA+PX5JyWI0ZRcBpupnRuPLU/NXXoFwMYCPCoxIfElM2eS+DUXCqQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/adler-32/-/adler-32-1.2.0.tgz} - name: adler-32 - version: 1.2.0 - engines: {node: '>=0.8'} - hasBin: true - - adler-32@https://registry.npmmirror.com/adler-32/-/adler-32-1.3.1.tgz: - resolution: {integrity: sha512-ynZ4w/nUUv5rrsR8UUGoe1VC9hZj6V5hU9Qw1HlMDJGEJw5S7TfTErWTjMys6M7vr0YWcPqs3qAr4ss0nDfP+A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/adler-32/-/adler-32-1.3.1.tgz} - name: adler-32 - version: 1.3.1 - engines: {node: '>=0.8'} - - agent-base@https://registry.npmmirror.com/agent-base/-/agent-base-6.0.2.tgz: - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/agent-base/-/agent-base-6.0.2.tgz} - name: agent-base - version: 6.0.2 - engines: {node: '>= 6.0.0'} - - aggregate-error@https://registry.npmmirror.com/aggregate-error/-/aggregate-error-3.1.0.tgz: - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/aggregate-error/-/aggregate-error-3.1.0.tgz} - name: aggregate-error - version: 3.1.0 - engines: {node: '>=8'} - - ajv@https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz: - resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz} - name: ajv - version: 8.12.0 - - ajv@https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz} - name: ajv - version: 6.12.6 - - ajv@https://registry.npmmirror.com/ajv/-/ajv-8.12.0.tgz: - resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ajv/-/ajv-8.12.0.tgz} - name: ajv - version: 8.12.0 - - ansi-escapes@https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz: - resolution: {integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz} - name: ansi-escapes - version: 3.2.0 - engines: {node: '>=4'} - - ansi-escapes@https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz: - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz} - name: ansi-escapes - version: 4.3.2 - engines: {node: '>=8'} - - ansi-regex@https://registry.npmmirror.com/ansi-regex/-/ansi-regex-2.1.1.tgz: - resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ansi-regex/-/ansi-regex-2.1.1.tgz} - name: ansi-regex - version: 2.1.1 - engines: {node: '>=0.10.0'} - - ansi-regex@https://registry.npmmirror.com/ansi-regex/-/ansi-regex-3.0.1.tgz: - resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ansi-regex/-/ansi-regex-3.0.1.tgz} - name: ansi-regex - version: 3.0.1 - engines: {node: '>=4'} - - ansi-regex@https://registry.npmmirror.com/ansi-regex/-/ansi-regex-4.1.1.tgz: - resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ansi-regex/-/ansi-regex-4.1.1.tgz} - name: ansi-regex - version: 4.1.1 - engines: {node: '>=6'} - - ansi-regex@https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz} - name: ansi-regex - version: 5.0.1 - engines: {node: '>=8'} - - ansi-regex@https://registry.npmmirror.com/ansi-regex/-/ansi-regex-6.0.1.tgz: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ansi-regex/-/ansi-regex-6.0.1.tgz} - name: ansi-regex - version: 6.0.1 - engines: {node: '>=12'} - - ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz} - name: ansi-styles - version: 3.2.1 - engines: {node: '>=4'} - - ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz} - name: ansi-styles - version: 4.3.0 - engines: {node: '>=8'} - - ansi-styles@https://registry.npmmirror.com/ansi-styles/-/ansi-styles-2.2.1.tgz: - resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-2.2.1.tgz} - name: ansi-styles - version: 2.2.1 - engines: {node: '>=0.10.0'} - - ansi-styles@https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz} - name: ansi-styles - version: 3.2.1 - engines: {node: '>=4'} - - ansi-styles@https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz} - name: ansi-styles - version: 4.3.0 - engines: {node: '>=8'} - - ansi-styles@https://registry.npmmirror.com/ansi-styles/-/ansi-styles-5.2.0.tgz: - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-5.2.0.tgz} - name: ansi-styles - version: 5.2.0 - engines: {node: '>=10'} - - ansi-styles@https://registry.npmmirror.com/ansi-styles/-/ansi-styles-6.2.1.tgz: - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-6.2.1.tgz} - name: ansi-styles - version: 6.2.1 - engines: {node: '>=12'} - - ant-design-vue@https://registry.npmmirror.com/ant-design-vue/-/ant-design-vue-3.2.12.tgz: - resolution: {integrity: sha512-CPsoWJ3t+sqq/EPINPXb4fC5/9iKkUdYOfK9M9kLKbXlRN3MAoVwWUbaFnUqc+ngtbEpn/d69hTF/Eh7MeWMhQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ant-design-vue/-/ant-design-vue-3.2.12.tgz} - name: ant-design-vue - version: 3.2.12 - engines: {node: '>=12.22.0'} - peerDependencies: - vue: '>=3.2.0' - - anymatch@https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz} - name: anymatch - version: 3.1.3 - engines: {node: '>= 8'} - - arch@https://registry.npmjs.org/arch/-/arch-2.2.0.tgz: - resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/arch/-/arch-2.2.0.tgz} - name: arch - version: 2.2.0 - - archive-type@https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz: - resolution: {integrity: sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz} - name: archive-type - version: 4.0.0 - engines: {node: '>=4'} - - arg@https://registry.npmmirror.com/arg/-/arg-4.1.3.tgz: - resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/arg/-/arg-4.1.3.tgz} - name: arg - version: 4.1.3 - - argparse@https://registry.npmmirror.com/argparse/-/argparse-1.0.10.tgz: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/argparse/-/argparse-1.0.10.tgz} - name: argparse - version: 1.0.10 - - argparse@https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz} - name: argparse - version: 2.0.1 - - arr-diff@https://registry.npmmirror.com/arr-diff/-/arr-diff-4.0.0.tgz: - resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/arr-diff/-/arr-diff-4.0.0.tgz} - name: arr-diff - version: 4.0.0 - engines: {node: '>=0.10.0'} - - arr-flatten@https://registry.npmmirror.com/arr-flatten/-/arr-flatten-1.1.0.tgz: - resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/arr-flatten/-/arr-flatten-1.1.0.tgz} - name: arr-flatten - version: 1.1.0 - engines: {node: '>=0.10.0'} - - arr-union@https://registry.npmmirror.com/arr-union/-/arr-union-3.1.0.tgz: - resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/arr-union/-/arr-union-3.1.0.tgz} - name: arr-union - version: 3.1.0 - engines: {node: '>=0.10.0'} - - array-buffer-byte-length@https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz: - resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz} - name: array-buffer-byte-length - version: 1.0.0 - - array-buffer-byte-length@https://registry.npmmirror.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz: - resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz} - name: array-buffer-byte-length - version: 1.0.0 - - array-differ@https://registry.npmmirror.com/array-differ/-/array-differ-3.0.0.tgz: - resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/array-differ/-/array-differ-3.0.0.tgz} - name: array-differ - version: 3.0.0 - engines: {node: '>=8'} - - array-find-index@https://registry.npmmirror.com/array-find-index/-/array-find-index-1.0.2.tgz: - resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/array-find-index/-/array-find-index-1.0.2.tgz} - name: array-find-index - version: 1.0.2 - engines: {node: '>=0.10.0'} - - array-ify@https://registry.npmmirror.com/array-ify/-/array-ify-1.0.0.tgz: - resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/array-ify/-/array-ify-1.0.0.tgz} - name: array-ify - version: 1.0.0 - - array-tree-filter@https://registry.npmmirror.com/array-tree-filter/-/array-tree-filter-2.1.0.tgz: - resolution: {integrity: sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/array-tree-filter/-/array-tree-filter-2.1.0.tgz} - name: array-tree-filter - version: 2.1.0 - - array-union@https://registry.npmmirror.com/array-union/-/array-union-2.1.0.tgz: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/array-union/-/array-union-2.1.0.tgz} - name: array-union - version: 2.1.0 - engines: {node: '>=8'} - - array-unique@https://registry.npmmirror.com/array-unique/-/array-unique-0.3.2.tgz: - resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/array-unique/-/array-unique-0.3.2.tgz} - name: array-unique - version: 0.3.2 - engines: {node: '>=0.10.0'} - - arraybuffer.prototype.slice@https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz: - resolution: {integrity: sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz} - name: arraybuffer.prototype.slice - version: 1.0.1 - engines: {node: '>= 0.4'} - - arraybuffer.prototype.slice@https://registry.npmmirror.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz: - resolution: {integrity: sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz} - name: arraybuffer.prototype.slice - version: 1.0.1 - engines: {node: '>= 0.4'} - - arrify@https://registry.npmmirror.com/arrify/-/arrify-1.0.1.tgz: - resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/arrify/-/arrify-1.0.1.tgz} - name: arrify - version: 1.0.1 - engines: {node: '>=0.10.0'} - - arrify@https://registry.npmmirror.com/arrify/-/arrify-2.0.1.tgz: - resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/arrify/-/arrify-2.0.1.tgz} - name: arrify - version: 2.0.1 - engines: {node: '>=8'} - - assign-symbols@https://registry.npmmirror.com/assign-symbols/-/assign-symbols-1.0.0.tgz: - resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/assign-symbols/-/assign-symbols-1.0.0.tgz} - name: assign-symbols - version: 1.0.0 - engines: {node: '>=0.10.0'} - - astral-regex@https://registry.npmmirror.com/astral-regex/-/astral-regex-2.0.0.tgz: - resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/astral-regex/-/astral-regex-2.0.0.tgz} - name: astral-regex - version: 2.0.0 - engines: {node: '>=8'} - - async-validator@https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz: - resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz} - name: async-validator - version: 4.2.5 - - async@https://registry.npmjs.org/async/-/async-3.2.4.tgz: - resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/async/-/async-3.2.4.tgz} - name: async - version: 3.2.4 - - async@https://registry.npmmirror.com/async/-/async-2.6.4.tgz: - resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/async/-/async-2.6.4.tgz} - name: async - version: 2.6.4 - - async@https://registry.npmmirror.com/async/-/async-3.2.4.tgz: - resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/async/-/async-3.2.4.tgz} - name: async - version: 3.2.4 - - asynckit@https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz} - name: asynckit - version: 0.4.0 - - at-least-node@https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz: - resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz} - name: at-least-node - version: 1.0.0 - engines: {node: '>= 4.0.0'} - - atob@https://registry.npmmirror.com/atob/-/atob-2.1.2.tgz: - resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/atob/-/atob-2.1.2.tgz} - name: atob - version: 2.1.2 - engines: {node: '>= 4.5.0'} - hasBin: true - - autoprefixer@https://registry.npmmirror.com/autoprefixer/-/autoprefixer-10.4.4.tgz: - resolution: {integrity: sha512-Tm8JxsB286VweiZ5F0anmbyGiNI3v3wGv3mz9W+cxEDYB/6jbnj6GM9H9mK3wIL8ftgl+C07Lcwb8PG5PCCPzA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/autoprefixer/-/autoprefixer-10.4.4.tgz} - name: autoprefixer - version: 10.4.4 - engines: {node: ^10 || ^12 || >=14} - hasBin: true - peerDependencies: - postcss: ^8.1.0 - - available-typed-arrays@https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz: - resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz} - name: available-typed-arrays - version: 1.0.5 - engines: {node: '>= 0.4'} - - available-typed-arrays@https://registry.npmmirror.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz: - resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz} - name: available-typed-arrays - version: 1.0.5 - engines: {node: '>= 0.4'} - - axios@https://registry.npmmirror.com/axios/-/axios-0.21.4.tgz: - resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/axios/-/axios-0.21.4.tgz} - name: axios - version: 0.21.4 - - axios@https://registry.npmmirror.com/axios/-/axios-0.24.0.tgz: - resolution: {integrity: sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/axios/-/axios-0.24.0.tgz} - name: axios - version: 0.24.0 - - axios@https://registry.npmmirror.com/axios/-/axios-0.26.1.tgz: - resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/axios/-/axios-0.26.1.tgz} - name: axios - version: 0.26.1 - - babel-jest@https://registry.npmmirror.com/babel-jest/-/babel-jest-27.5.1.tgz: - resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/babel-jest/-/babel-jest-27.5.1.tgz} - name: babel-jest - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - peerDependencies: - '@babel/core': ^7.8.0 - - babel-plugin-istanbul@https://registry.npmmirror.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz: - resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz} - name: babel-plugin-istanbul - version: 6.1.1 - engines: {node: '>=8'} - - babel-plugin-jest-hoist@https://registry.npmmirror.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz: - resolution: {integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz} - name: babel-plugin-jest-hoist - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - babel-plugin-polyfill-corejs2@https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz: - resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz} - name: babel-plugin-polyfill-corejs2 - version: 0.4.5 - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - - babel-plugin-polyfill-corejs3@https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.3.tgz: - resolution: {integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.3.tgz} - name: babel-plugin-polyfill-corejs3 - version: 0.8.3 - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - - babel-plugin-polyfill-regenerator@https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz: - resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz} - name: babel-plugin-polyfill-regenerator - version: 0.5.2 - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - - babel-plugin-transform-runtime@https://registry.npmmirror.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz: - resolution: {integrity: sha512-cpGMVC1vt/772y3jx1gwSaTitQVZuFDlllgreMsZ+rTYC6jlYXRyf5FQOgSnckOiA5QmzbXTyBY2A5AmZXF1fA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz} - name: babel-plugin-transform-runtime - version: 6.23.0 - - babel-preset-current-node-syntax@https://registry.npmmirror.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz: - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz} - name: babel-preset-current-node-syntax - version: 1.0.1 - peerDependencies: - '@babel/core': ^7.0.0 - - babel-preset-jest@https://registry.npmmirror.com/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz: - resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz} - name: babel-preset-jest - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - peerDependencies: - '@babel/core': ^7.0.0 - - babel-runtime@https://registry.npmmirror.com/babel-runtime/-/babel-runtime-6.26.0.tgz: - resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/babel-runtime/-/babel-runtime-6.26.0.tgz} - name: babel-runtime - version: 6.26.0 - - balanced-match@https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz} - name: balanced-match - version: 1.0.2 - - balanced-match@https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz} - name: balanced-match - version: 1.0.2 - - balanced-match@https://registry.npmmirror.com/balanced-match/-/balanced-match-2.0.0.tgz: - resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/balanced-match/-/balanced-match-2.0.0.tgz} - name: balanced-match - version: 2.0.0 - - base64-arraybuffer@https://registry.npmmirror.com/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz: - resolution: {integrity: sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz} - name: base64-arraybuffer - version: 1.0.2 - engines: {node: '>= 0.6.0'} - - base64-js@https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz} - name: base64-js - version: 1.5.1 - - base64-js@https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz} - name: base64-js - version: 1.5.1 - - base@https://registry.npmmirror.com/base/-/base-0.11.2.tgz: - resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/base/-/base-0.11.2.tgz} - name: base - version: 0.11.2 - engines: {node: '>=0.10.0'} - - basic-auth@https://registry.npmmirror.com/basic-auth/-/basic-auth-2.0.1.tgz: - resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/basic-auth/-/basic-auth-2.0.1.tgz} - name: basic-auth - version: 2.0.1 - engines: {node: '>= 0.8'} - - batch-processor@https://registry.npmmirror.com/batch-processor/-/batch-processor-1.0.0.tgz: - resolution: {integrity: sha512-xoLQD8gmmR32MeuBHgH0Tzd5PuSZx71ZsbhVxOCRbgktZEPe4SQy7s9Z50uPp0F/f7iw2XmkHN2xkgbMfckMDA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/batch-processor/-/batch-processor-1.0.0.tgz} - name: batch-processor - version: 1.0.0 - - before-after-hook@https://registry.npmmirror.com/before-after-hook/-/before-after-hook-2.2.3.tgz: - resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/before-after-hook/-/before-after-hook-2.2.3.tgz} - name: before-after-hook - version: 2.2.3 - - big.js@https://registry.npmmirror.com/big.js/-/big.js-5.2.2.tgz: - resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/big.js/-/big.js-5.2.2.tgz} - name: big.js - version: 5.2.2 - - bin-build@https://registry.npmmirror.com/bin-build/-/bin-build-3.0.0.tgz: - resolution: {integrity: sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/bin-build/-/bin-build-3.0.0.tgz} - name: bin-build - version: 3.0.0 - engines: {node: '>=4'} - - bin-check@https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz: - resolution: {integrity: sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz} - name: bin-check - version: 4.1.0 - engines: {node: '>=4'} - - bin-version-check@https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz: - resolution: {integrity: sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz} - name: bin-version-check - version: 4.0.0 - engines: {node: '>=6'} - - bin-version@https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz: - resolution: {integrity: sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz} - name: bin-version - version: 3.1.0 - engines: {node: '>=6'} - - bin-wrapper-china@https://registry.npmjs.org/bin-wrapper-china/-/bin-wrapper-china-0.1.0.tgz: - resolution: {integrity: sha512-1UCm17WYEbgry50tup+AQN+JGVEVzoW4f8HMl899k1lvuFxWKGZXl/G2fgxQxAckRjnloO3ijLVVEsv8zescUg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/bin-wrapper-china/-/bin-wrapper-china-0.1.0.tgz} - name: bin-wrapper-china - version: 0.1.0 - engines: {node: '>=8.3'} - hasBin: true - - binary-extensions@https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz: - resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz} - name: binary-extensions - version: 2.2.0 - engines: {node: '>=8'} - - binary-mirror-config@https://registry.npmjs.org/binary-mirror-config/-/binary-mirror-config-1.41.0.tgz: - resolution: {integrity: sha512-ZiIhR1s6Sv1Fv6qCQqfPjx0Cj86BgFlhqNxZgHkQOWcxJcMbO3mj1iqsuVjowYqJqeZL8e52+IEv7IRnSX6T6w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/binary-mirror-config/-/binary-mirror-config-1.41.0.tgz} - name: binary-mirror-config - version: 1.41.0 - - bl@https://registry.npmjs.org/bl/-/bl-1.2.3.tgz: - resolution: {integrity: sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/bl/-/bl-1.2.3.tgz} - name: bl - version: 1.2.3 - - bl@https://registry.npmmirror.com/bl/-/bl-1.2.3.tgz: - resolution: {integrity: sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/bl/-/bl-1.2.3.tgz} - name: bl - version: 1.2.3 - - bl@https://registry.npmmirror.com/bl/-/bl-4.1.0.tgz: - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/bl/-/bl-4.1.0.tgz} - name: bl - version: 4.1.0 - - bluebird@https://registry.npmmirror.com/bluebird/-/bluebird-3.7.2.tgz: - resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/bluebird/-/bluebird-3.7.2.tgz} - name: bluebird - version: 3.7.2 - - boolbase@https://registry.npmmirror.com/boolbase/-/boolbase-1.0.0.tgz: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/boolbase/-/boolbase-1.0.0.tgz} - name: boolbase - version: 1.0.0 - - brace-expansion@https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz} - name: brace-expansion - version: 1.1.11 - - brace-expansion@https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz} - name: brace-expansion - version: 2.0.1 - - brace-expansion@https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz} - name: brace-expansion - version: 1.1.11 - - brace-expansion@https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz} - name: brace-expansion - version: 2.0.1 - - braces@https://registry.npmmirror.com/braces/-/braces-2.3.2.tgz: - resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/braces/-/braces-2.3.2.tgz} - name: braces - version: 2.3.2 - engines: {node: '>=0.10.0'} - - braces@https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz: - resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz} - name: braces - version: 3.0.2 - engines: {node: '>=8'} - - browser-process-hrtime@https://registry.npmmirror.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz: - resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz} - name: browser-process-hrtime - version: 1.0.0 - - browserslist@https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz: - resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz} - name: browserslist - version: 4.21.10 - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - - browserslist@https://registry.npmmirror.com/browserslist/-/browserslist-4.21.10.tgz: - resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/browserslist/-/browserslist-4.21.10.tgz} - name: browserslist - version: 4.21.10 - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - - bs-logger@https://registry.npmmirror.com/bs-logger/-/bs-logger-0.2.6.tgz: - resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/bs-logger/-/bs-logger-0.2.6.tgz} - name: bs-logger - version: 0.2.6 - engines: {node: '>= 6'} - - bser@https://registry.npmmirror.com/bser/-/bser-2.1.1.tgz: - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/bser/-/bser-2.1.1.tgz} - name: bser - version: 2.1.1 - - btoa@https://registry.npmmirror.com/btoa/-/btoa-1.2.1.tgz: - resolution: {integrity: sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/btoa/-/btoa-1.2.1.tgz} - name: btoa - version: 1.2.1 - engines: {node: '>= 0.4.0'} - hasBin: true - - buffer-alloc-unsafe@https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz: - resolution: {integrity: sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz} - name: buffer-alloc-unsafe - version: 1.1.0 - - buffer-alloc-unsafe@https://registry.npmmirror.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz: - resolution: {integrity: sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz} - name: buffer-alloc-unsafe - version: 1.1.0 - - buffer-alloc@https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz: - resolution: {integrity: sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz} - name: buffer-alloc - version: 1.2.0 - - buffer-alloc@https://registry.npmmirror.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz: - resolution: {integrity: sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz} - name: buffer-alloc - version: 1.2.0 - - buffer-crc32@https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz: - resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz} - name: buffer-crc32 - version: 0.2.13 - - buffer-crc32@https://registry.npmmirror.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz: - resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz} - name: buffer-crc32 - version: 0.2.13 - - buffer-fill@https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz: - resolution: {integrity: sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz} - name: buffer-fill - version: 1.0.0 - - buffer-fill@https://registry.npmmirror.com/buffer-fill/-/buffer-fill-1.0.0.tgz: - resolution: {integrity: sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/buffer-fill/-/buffer-fill-1.0.0.tgz} - name: buffer-fill - version: 1.0.0 - - buffer-from@https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz} - name: buffer-from - version: 1.1.2 - - buffer-from@https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz} - name: buffer-from - version: 1.1.2 - - buffer@https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz} - name: buffer - version: 5.7.1 - - buffer@https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz} - name: buffer - version: 5.7.1 - - builtin-modules@https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz: - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz} - name: builtin-modules - version: 3.3.0 - engines: {node: '>=6'} - - builtin-modules@https://registry.npmmirror.com/builtin-modules/-/builtin-modules-3.3.0.tgz: - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/builtin-modules/-/builtin-modules-3.3.0.tgz} - name: builtin-modules - version: 3.3.0 - engines: {node: '>=6'} - - builtins@https://registry.npmmirror.com/builtins/-/builtins-4.1.0.tgz: - resolution: {integrity: sha512-1bPRZQtmKaO6h7qV1YHXNtr6nCK28k0Zo95KM4dXfILcZZwoHJBN1m3lfLv9LPkcOZlrSr+J1bzMaZFO98Yq0w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/builtins/-/builtins-4.1.0.tgz} - name: builtins - version: 4.1.0 - - cache-base@https://registry.npmmirror.com/cache-base/-/cache-base-1.0.1.tgz: - resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cache-base/-/cache-base-1.0.1.tgz} - name: cache-base - version: 1.0.1 - engines: {node: '>=0.10.0'} - - cacheable-request@https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz: - resolution: {integrity: sha512-vag0O2LKZ/najSoUwDbVlnlCFvhBE/7mGTY2B5FgCBDcRD+oVV1HYTOwM6JZfMg/hIcM6IwnTZ1uQQL5/X3xIQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz} - name: cacheable-request - version: 2.1.4 - - cachedir@https://registry.npmmirror.com/cachedir/-/cachedir-2.2.0.tgz: - resolution: {integrity: sha512-VvxA0xhNqIIfg0V9AmJkDg91DaJwryutH5rVEZAhcNi4iJFj9f+QxmAjgK1LT9I8OgToX27fypX6/MeCXVbBjQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cachedir/-/cachedir-2.2.0.tgz} - name: cachedir - version: 2.2.0 - engines: {node: '>=6'} - - call-bind@https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz: - resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz} - name: call-bind - version: 1.0.2 - - call-bind@https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz: - resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz} - name: call-bind - version: 1.0.2 - - callsites@https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz} - name: callsites - version: 3.1.0 - engines: {node: '>=6'} - - camel-case@https://registry.npmmirror.com/camel-case/-/camel-case-4.1.2.tgz: - resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/camel-case/-/camel-case-4.1.2.tgz} - name: camel-case - version: 4.1.2 - - camelcase-keys@https://registry.npmmirror.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz: - resolution: {integrity: sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz} - name: camelcase-keys - version: 2.1.0 - engines: {node: '>=0.10.0'} - - camelcase-keys@https://registry.npmmirror.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz: - resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz} - name: camelcase-keys - version: 6.2.2 - engines: {node: '>=8'} - - camelcase@https://registry.npmmirror.com/camelcase/-/camelcase-2.1.1.tgz: - resolution: {integrity: sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/camelcase/-/camelcase-2.1.1.tgz} - name: camelcase - version: 2.1.1 - engines: {node: '>=0.10.0'} - - camelcase@https://registry.npmmirror.com/camelcase/-/camelcase-5.3.1.tgz: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/camelcase/-/camelcase-5.3.1.tgz} - name: camelcase - version: 5.3.1 - engines: {node: '>=6'} - - camelcase@https://registry.npmmirror.com/camelcase/-/camelcase-6.3.0.tgz: - resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/camelcase/-/camelcase-6.3.0.tgz} - name: camelcase - version: 6.3.0 - engines: {node: '>=10'} - - caniuse-lite@https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001520.tgz: - resolution: {integrity: sha512-tahF5O9EiiTzwTUqAeFjIZbn4Dnqxzz7ktrgGlMYNLH43Ul26IgTMH/zvL3DG0lZxBYnlT04axvInszUsZULdA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001520.tgz} - name: caniuse-lite - version: 1.0.30001520 - - caniuse-lite@https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001520.tgz: - resolution: {integrity: sha512-tahF5O9EiiTzwTUqAeFjIZbn4Dnqxzz7ktrgGlMYNLH43Ul26IgTMH/zvL3DG0lZxBYnlT04axvInszUsZULdA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001520.tgz} - name: caniuse-lite - version: 1.0.30001520 - - canvg@https://registry.npmjs.org/canvg/-/canvg-3.0.10.tgz: - resolution: {integrity: sha512-qwR2FRNO9NlzTeKIPIKpnTY6fqwuYSequ8Ru8c0YkYU7U0oW+hLUvWadLvAu1Rl72OMNiFhoLu4f8eUjQ7l/+Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/canvg/-/canvg-3.0.10.tgz} - name: canvg - version: 3.0.10 - engines: {node: '>=10.0.0'} - - capital-case@https://registry.npmmirror.com/capital-case/-/capital-case-1.0.4.tgz: - resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/capital-case/-/capital-case-1.0.4.tgz} - name: capital-case - version: 1.0.4 - - caw@https://registry.npmjs.org/caw/-/caw-2.0.1.tgz: - resolution: {integrity: sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/caw/-/caw-2.0.1.tgz} - name: caw - version: 2.0.1 - engines: {node: '>=4'} - - caw@https://registry.npmmirror.com/caw/-/caw-2.0.1.tgz: - resolution: {integrity: sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/caw/-/caw-2.0.1.tgz} - name: caw - version: 2.0.1 - engines: {node: '>=4'} - - cfb@https://registry.npmmirror.com/cfb/-/cfb-1.2.2.tgz: - resolution: {integrity: sha512-KfdUZsSOw19/ObEWasvBP/Ac4reZvAGauZhs6S/gqNhXhI7cKwvlH7ulj+dOEYnca4bm4SGo8C1bTAQvnTjgQA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cfb/-/cfb-1.2.2.tgz} - name: cfb - version: 1.2.2 - engines: {node: '>=0.8'} - - chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz} - name: chalk - version: 2.4.2 - engines: {node: '>=4'} - - chalk@https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz} - name: chalk - version: 4.1.2 - engines: {node: '>=10'} - - chalk@https://registry.npmmirror.com/chalk/-/chalk-1.1.3.tgz: - resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/chalk/-/chalk-1.1.3.tgz} - name: chalk - version: 1.1.3 - engines: {node: '>=0.10.0'} - - chalk@https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz} - name: chalk - version: 2.4.2 - engines: {node: '>=4'} - - chalk@https://registry.npmmirror.com/chalk/-/chalk-3.0.0.tgz: - resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/chalk/-/chalk-3.0.0.tgz} - name: chalk - version: 3.0.0 - engines: {node: '>=8'} - - chalk@https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz} - name: chalk - version: 4.1.2 - engines: {node: '>=10'} - - change-case@https://registry.npmmirror.com/change-case/-/change-case-4.1.2.tgz: - resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/change-case/-/change-case-4.1.2.tgz} - name: change-case - version: 4.1.2 - - char-regex@https://registry.npmmirror.com/char-regex/-/char-regex-1.0.2.tgz: - resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/char-regex/-/char-regex-1.0.2.tgz} - name: char-regex - version: 1.0.2 - engines: {node: '>=10'} - - character-parser@https://registry.npmmirror.com/character-parser/-/character-parser-2.2.0.tgz: - resolution: {integrity: sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/character-parser/-/character-parser-2.2.0.tgz} - name: character-parser - version: 2.2.0 - - chardet@https://registry.npmmirror.com/chardet/-/chardet-0.7.0.tgz: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/chardet/-/chardet-0.7.0.tgz} - name: chardet - version: 0.7.0 - - charenc@https://registry.npmmirror.com/charenc/-/charenc-0.0.2.tgz: - resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/charenc/-/charenc-0.0.2.tgz} - name: charenc - version: 0.0.2 - - china-area-data@https://registry.npmmirror.com/china-area-data/-/china-area-data-5.0.1.tgz: - resolution: {integrity: sha512-BQDPpiv5Nn+018ekcJK2oSD9PAD+E1bvXB0wgabc//dFVS/KvRqCgg0QOEUt3vBkx9XzB5a9BmkJCEZDBxVjVw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/china-area-data/-/china-area-data-5.0.1.tgz} - name: china-area-data - version: 5.0.1 - - chokidar@https://registry.npmmirror.com/chokidar/-/chokidar-3.5.3.tgz: - resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/chokidar/-/chokidar-3.5.3.tgz} - name: chokidar - version: 3.5.3 - engines: {node: '>= 8.10.0'} - - ci-info@https://registry.npmmirror.com/ci-info/-/ci-info-3.8.0.tgz: - resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ci-info/-/ci-info-3.8.0.tgz} - name: ci-info - version: 3.8.0 - engines: {node: '>=8'} - - cjs-module-lexer@https://registry.npmmirror.com/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz: - resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz} - name: cjs-module-lexer - version: 1.2.3 - - class-utils@https://registry.npmmirror.com/class-utils/-/class-utils-0.3.6.tgz: - resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/class-utils/-/class-utils-0.3.6.tgz} - name: class-utils - version: 0.3.6 - engines: {node: '>=0.10.0'} - - claygl@https://registry.npmmirror.com/claygl/-/claygl-1.3.0.tgz: - resolution: {integrity: sha512-+gGtJjT6SSHD2l2yC3MCubW/sCV40tZuSs5opdtn79vFSGUgp/lH139RNEQ6Jy078/L0aV8odCw8RSrUcMfLaQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/claygl/-/claygl-1.3.0.tgz} - name: claygl - version: 1.3.0 - - clean-css@https://registry.npmmirror.com/clean-css/-/clean-css-5.3.2.tgz: - resolution: {integrity: sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/clean-css/-/clean-css-5.3.2.tgz} - name: clean-css - version: 5.3.2 - engines: {node: '>= 10.0'} - - clean-stack@https://registry.npmmirror.com/clean-stack/-/clean-stack-2.2.0.tgz: - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/clean-stack/-/clean-stack-2.2.0.tgz} - name: clean-stack - version: 2.2.0 - engines: {node: '>=6'} - - cli-cursor@https://registry.npmmirror.com/cli-cursor/-/cli-cursor-2.1.0.tgz: - resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cli-cursor/-/cli-cursor-2.1.0.tgz} - name: cli-cursor - version: 2.1.0 - engines: {node: '>=4'} - - cli-cursor@https://registry.npmmirror.com/cli-cursor/-/cli-cursor-3.1.0.tgz: - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cli-cursor/-/cli-cursor-3.1.0.tgz} - name: cli-cursor - version: 3.1.0 - engines: {node: '>=8'} - - cli-spinners@https://registry.npmmirror.com/cli-spinners/-/cli-spinners-2.9.0.tgz: - resolution: {integrity: sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cli-spinners/-/cli-spinners-2.9.0.tgz} - name: cli-spinners - version: 2.9.0 - engines: {node: '>=6'} - - cli-truncate@https://registry.npmmirror.com/cli-truncate/-/cli-truncate-2.1.0.tgz: - resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cli-truncate/-/cli-truncate-2.1.0.tgz} - name: cli-truncate - version: 2.1.0 - engines: {node: '>=8'} - - cli-truncate@https://registry.npmmirror.com/cli-truncate/-/cli-truncate-3.1.0.tgz: - resolution: {integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cli-truncate/-/cli-truncate-3.1.0.tgz} - name: cli-truncate - version: 3.1.0 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - cli-width@https://registry.npmmirror.com/cli-width/-/cli-width-2.2.1.tgz: - resolution: {integrity: sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cli-width/-/cli-width-2.2.1.tgz} - name: cli-width - version: 2.2.1 - - cli-width@https://registry.npmmirror.com/cli-width/-/cli-width-3.0.0.tgz: - resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cli-width/-/cli-width-3.0.0.tgz} - name: cli-width - version: 3.0.0 - engines: {node: '>= 10'} - - clipboard@https://registry.npmmirror.com/clipboard/-/clipboard-2.0.8.tgz: - resolution: {integrity: sha512-Y6WO0unAIQp5bLmk1zdThRhgJt/x3ks6f30s3oE3H1mgIEU33XyQjEf8gsf6DxC7NPX8Y1SsNWjUjL/ywLnnbQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/clipboard/-/clipboard-2.0.8.tgz} - name: clipboard - version: 2.0.8 - - cliui@https://registry.npmmirror.com/cliui/-/cliui-6.0.0.tgz: - resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cliui/-/cliui-6.0.0.tgz} - name: cliui - version: 6.0.0 - - cliui@https://registry.npmmirror.com/cliui/-/cliui-7.0.4.tgz: - resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cliui/-/cliui-7.0.4.tgz} - name: cliui - version: 7.0.4 - - cliui@https://registry.npmmirror.com/cliui/-/cliui-8.0.1.tgz: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cliui/-/cliui-8.0.1.tgz} - name: cliui - version: 8.0.1 - engines: {node: '>=12'} - - clone-regexp@https://registry.npmmirror.com/clone-regexp/-/clone-regexp-2.2.0.tgz: - resolution: {integrity: sha512-beMpP7BOtTipFuW8hrJvREQ2DrRu3BE7by0ZpibtfBA+qfHYvMGTc2Yb1JMYPKg/JUw0CHYvpg796aNTSW9z7Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/clone-regexp/-/clone-regexp-2.2.0.tgz} - name: clone-regexp - version: 2.2.0 - engines: {node: '>=6'} - - clone-response@https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz: - resolution: {integrity: sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz} - name: clone-response - version: 1.0.2 - - clone@https://registry.npmmirror.com/clone/-/clone-1.0.4.tgz: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/clone/-/clone-1.0.4.tgz} - name: clone - version: 1.0.4 - engines: {node: '>=0.8'} - - clone@https://registry.npmmirror.com/clone/-/clone-2.1.2.tgz: - resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/clone/-/clone-2.1.2.tgz} - name: clone - version: 2.1.2 - engines: {node: '>=0.8'} - - co@https://registry.npmmirror.com/co/-/co-4.6.0.tgz: - resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/co/-/co-4.6.0.tgz} - name: co - version: 4.6.0 - engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} - - codemirror@https://registry.npmmirror.com/codemirror/-/codemirror-5.65.3.tgz: - resolution: {integrity: sha512-kCC0iwGZOVZXHEKW3NDTObvM7pTIyowjty4BUqeREROc/3I6bWbgZDA3fGDwlA+rbgRjvnRnfqs9SfXynel1AQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/codemirror/-/codemirror-5.65.3.tgz} - name: codemirror - version: 5.65.3 - - codepage@https://registry.npmmirror.com/codepage/-/codepage-1.15.0.tgz: - resolution: {integrity: sha512-3g6NUTPd/YtuuGrhMnOMRjFc+LJw/bnMp3+0r/Wcz3IXUuCosKRJvMphm5+Q+bvTVGcJJuRvVLuYba+WojaFaA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/codepage/-/codepage-1.15.0.tgz} - name: codepage - version: 1.15.0 - engines: {node: '>=0.8'} - - collect-v8-coverage@https://registry.npmmirror.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz: - resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz} - name: collect-v8-coverage - version: 1.0.2 - - collection-visit@https://registry.npmmirror.com/collection-visit/-/collection-visit-1.0.0.tgz: - resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/collection-visit/-/collection-visit-1.0.0.tgz} - name: collection-visit - version: 1.0.0 - engines: {node: '>=0.10.0'} - - color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz} - name: color-convert - version: 1.9.3 - - color-convert@https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz} - name: color-convert - version: 2.0.1 - engines: {node: '>=7.0.0'} - - color-convert@https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz} - name: color-convert - version: 1.9.3 - - color-convert@https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz} - name: color-convert - version: 2.0.1 - engines: {node: '>=7.0.0'} - - color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz} - name: color-name - version: 1.1.3 - - color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz} - name: color-name - version: 1.1.4 - - color-name@https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz} - name: color-name - version: 1.1.3 - - color-name@https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz} - name: color-name - version: 1.1.4 - - colord@https://registry.npmmirror.com/colord/-/colord-2.9.3.tgz: - resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/colord/-/colord-2.9.3.tgz} - name: colord - version: 2.9.3 - - colorette@https://registry.npmmirror.com/colorette/-/colorette-2.0.20.tgz: - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/colorette/-/colorette-2.0.20.tgz} - name: colorette - version: 2.0.20 - - colors@https://registry.npmmirror.com/colors/-/colors-1.4.0.tgz: - resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/colors/-/colors-1.4.0.tgz} - name: colors - version: 1.4.0 - engines: {node: '>=0.1.90'} - - combined-stream@https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz} - name: combined-stream - version: 1.0.8 - engines: {node: '>= 0.8'} - - commander@https://registry.npmjs.org/commander/-/commander-2.20.3.tgz: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/commander/-/commander-2.20.3.tgz} - name: commander - version: 2.20.3 - - commander@https://registry.npmmirror.com/commander/-/commander-11.0.0.tgz: - resolution: {integrity: sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/commander/-/commander-11.0.0.tgz} - name: commander - version: 11.0.0 - engines: {node: '>=16'} - - commander@https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz} - name: commander - version: 2.20.3 - - commander@https://registry.npmmirror.com/commander/-/commander-7.2.0.tgz: - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/commander/-/commander-7.2.0.tgz} - name: commander - version: 7.2.0 - engines: {node: '>= 10'} - - commander@https://registry.npmmirror.com/commander/-/commander-8.3.0.tgz: - resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/commander/-/commander-8.3.0.tgz} - name: commander - version: 8.3.0 - engines: {node: '>= 12'} - - commander@https://registry.npmmirror.com/commander/-/commander-9.5.0.tgz: - resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/commander/-/commander-9.5.0.tgz} - name: commander - version: 9.5.0 - engines: {node: ^12.20.0 || >=14} - - commitizen@https://registry.npmmirror.com/commitizen/-/commitizen-4.2.4.tgz: - resolution: {integrity: sha512-LlZChbDzg3Ir3O2S7jSo/cgWp5/QwylQVr59K4xayVq8S4/RdKzSyJkghAiZZHfhh5t4pxunUoyeg0ml1q/7aw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/commitizen/-/commitizen-4.2.4.tgz} - name: commitizen - version: 4.2.4 - engines: {node: '>= 10'} - hasBin: true - - common-tags@https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz: - resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz} - name: common-tags - version: 1.8.2 - engines: {node: '>=4.0.0'} - - compare-func@https://registry.npmmirror.com/compare-func/-/compare-func-2.0.0.tgz: - resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/compare-func/-/compare-func-2.0.0.tgz} - name: compare-func - version: 2.0.0 - - component-emitter@https://registry.npmmirror.com/component-emitter/-/component-emitter-1.3.0.tgz: - resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/component-emitter/-/component-emitter-1.3.0.tgz} - name: component-emitter - version: 1.3.0 - - compute-scroll-into-view@https://registry.npmmirror.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.20.tgz: - resolution: {integrity: sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.20.tgz} - name: compute-scroll-into-view - version: 1.0.20 - - concat-map@https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz} - name: concat-map - version: 0.0.1 - - concat-map@https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz} - name: concat-map - version: 0.0.1 - - config-chain@https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz: - resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz} - name: config-chain - version: 1.1.13 - - config-chain@https://registry.npmmirror.com/config-chain/-/config-chain-1.1.13.tgz: - resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/config-chain/-/config-chain-1.1.13.tgz} - name: config-chain - version: 1.1.13 - - connect-history-api-fallback@https://registry.npmmirror.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz: - resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz} - name: connect-history-api-fallback - version: 1.6.0 - engines: {node: '>=0.8'} - - connect@https://registry.npmmirror.com/connect/-/connect-3.7.0.tgz: - resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/connect/-/connect-3.7.0.tgz} - name: connect - version: 3.7.0 - engines: {node: '>= 0.10.0'} - - consola@https://registry.npmmirror.com/consola/-/consola-2.15.3.tgz: - resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/consola/-/consola-2.15.3.tgz} - name: consola - version: 2.15.3 - - console-stream@https://registry.npmmirror.com/console-stream/-/console-stream-0.1.1.tgz: - resolution: {integrity: sha512-QC/8l9e6ofi6nqZ5PawlDgzmMw3OxIXtvolBzap/F4UDBJlDaZRSNbL/lb41C29FcbSJncBFlJFj2WJoNyZRfQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/console-stream/-/console-stream-0.1.1.tgz} - name: console-stream - version: 0.1.1 - - console@https://registry.npmmirror.com/console/-/console-0.7.2.tgz: - resolution: {integrity: sha512-+JSDwGunA4MTEgAV/4VBKwUHonP8CzJ/6GIuwPi6acKFqFfHUdSGCm89ZxZ5FfGWdZfkdgAroy5bJ5FSeN/t4g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/console/-/console-0.7.2.tgz} - name: console - version: 0.7.2 - - constant-case@https://registry.npmmirror.com/constant-case/-/constant-case-3.0.4.tgz: - resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/constant-case/-/constant-case-3.0.4.tgz} - name: constant-case - version: 3.0.4 - - content-disposition@https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz: - resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz} - name: content-disposition - version: 0.5.4 - engines: {node: '>= 0.6'} - - content-disposition@https://registry.npmmirror.com/content-disposition/-/content-disposition-0.5.4.tgz: - resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/content-disposition/-/content-disposition-0.5.4.tgz} - name: content-disposition - version: 0.5.4 - engines: {node: '>= 0.6'} - - conventional-changelog-angular@https://registry.npmmirror.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz: - resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz} - name: conventional-changelog-angular - version: 5.0.13 - engines: {node: '>=10'} - - conventional-changelog-atom@https://registry.npmmirror.com/conventional-changelog-atom/-/conventional-changelog-atom-2.0.8.tgz: - resolution: {integrity: sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/conventional-changelog-atom/-/conventional-changelog-atom-2.0.8.tgz} - name: conventional-changelog-atom - version: 2.0.8 - engines: {node: '>=10'} - - conventional-changelog-cli@https://registry.npmmirror.com/conventional-changelog-cli/-/conventional-changelog-cli-2.2.2.tgz: - resolution: {integrity: sha512-8grMV5Jo8S0kP3yoMeJxV2P5R6VJOqK72IiSV9t/4H5r/HiRqEBQ83bYGuz4Yzfdj4bjaAEhZN/FFbsFXr5bOA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/conventional-changelog-cli/-/conventional-changelog-cli-2.2.2.tgz} - name: conventional-changelog-cli - version: 2.2.2 - engines: {node: '>=10'} - hasBin: true - - conventional-changelog-codemirror@https://registry.npmmirror.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.8.tgz: - resolution: {integrity: sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.8.tgz} - name: conventional-changelog-codemirror - version: 2.0.8 - engines: {node: '>=10'} - - conventional-changelog-conventionalcommits@https://registry.npmmirror.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.3.tgz: - resolution: {integrity: sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.3.tgz} - name: conventional-changelog-conventionalcommits - version: 4.6.3 - engines: {node: '>=10'} - - conventional-changelog-core@https://registry.npmmirror.com/conventional-changelog-core/-/conventional-changelog-core-4.2.4.tgz: - resolution: {integrity: sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/conventional-changelog-core/-/conventional-changelog-core-4.2.4.tgz} - name: conventional-changelog-core - version: 4.2.4 - engines: {node: '>=10'} - - conventional-changelog-ember@https://registry.npmmirror.com/conventional-changelog-ember/-/conventional-changelog-ember-2.0.9.tgz: - resolution: {integrity: sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/conventional-changelog-ember/-/conventional-changelog-ember-2.0.9.tgz} - name: conventional-changelog-ember - version: 2.0.9 - engines: {node: '>=10'} - - conventional-changelog-eslint@https://registry.npmmirror.com/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.9.tgz: - resolution: {integrity: sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.9.tgz} - name: conventional-changelog-eslint - version: 3.0.9 - engines: {node: '>=10'} - - conventional-changelog-express@https://registry.npmmirror.com/conventional-changelog-express/-/conventional-changelog-express-2.0.6.tgz: - resolution: {integrity: sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/conventional-changelog-express/-/conventional-changelog-express-2.0.6.tgz} - name: conventional-changelog-express - version: 2.0.6 - engines: {node: '>=10'} - - conventional-changelog-jquery@https://registry.npmmirror.com/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.11.tgz: - resolution: {integrity: sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.11.tgz} - name: conventional-changelog-jquery - version: 3.0.11 - engines: {node: '>=10'} - - conventional-changelog-jshint@https://registry.npmmirror.com/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.9.tgz: - resolution: {integrity: sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.9.tgz} - name: conventional-changelog-jshint - version: 2.0.9 - engines: {node: '>=10'} - - conventional-changelog-preset-loader@https://registry.npmmirror.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz: - resolution: {integrity: sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz} - name: conventional-changelog-preset-loader - version: 2.3.4 - engines: {node: '>=10'} - - conventional-changelog-writer@https://registry.npmmirror.com/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz: - resolution: {integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz} - name: conventional-changelog-writer - version: 5.0.1 - engines: {node: '>=10'} - hasBin: true - - conventional-changelog@https://registry.npmmirror.com/conventional-changelog/-/conventional-changelog-3.1.25.tgz: - resolution: {integrity: sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/conventional-changelog/-/conventional-changelog-3.1.25.tgz} - name: conventional-changelog - version: 3.1.25 - engines: {node: '>=10'} - - conventional-commit-types@https://registry.npmmirror.com/conventional-commit-types/-/conventional-commit-types-3.0.0.tgz: - resolution: {integrity: sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/conventional-commit-types/-/conventional-commit-types-3.0.0.tgz} - name: conventional-commit-types - version: 3.0.0 - - conventional-commits-filter@https://registry.npmmirror.com/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz: - resolution: {integrity: sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz} - name: conventional-commits-filter - version: 2.0.7 - engines: {node: '>=10'} - - conventional-commits-parser@https://registry.npmmirror.com/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz: - resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz} - name: conventional-commits-parser - version: 3.2.4 - engines: {node: '>=10'} - hasBin: true - - convert-source-map@https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz: - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz} - name: convert-source-map - version: 1.9.0 - - convert-source-map@https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz: - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz} - name: convert-source-map - version: 1.9.0 - - copy-anything@https://registry.npmmirror.com/copy-anything/-/copy-anything-2.0.6.tgz: - resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/copy-anything/-/copy-anything-2.0.6.tgz} - name: copy-anything - version: 2.0.6 - - copy-descriptor@https://registry.npmmirror.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz: - resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz} - name: copy-descriptor - version: 0.1.1 - engines: {node: '>=0.10.0'} - - core-js-compat@https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.32.0.tgz: - resolution: {integrity: sha512-7a9a3D1k4UCVKnLhrgALyFcP7YCsLOQIxPd0dKjf/6GuPcgyiGP70ewWdCGrSK7evyhymi0qO4EqCmSJofDeYw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.32.0.tgz} - name: core-js-compat - version: 3.32.0 - - core-js@https://registry.npmjs.org/core-js/-/core-js-3.32.0.tgz: - resolution: {integrity: sha512-rd4rYZNlF3WuoYuRIDEmbR/ga9CeuWX9U05umAvgrrZoHY4Z++cp/xwPQMvUpBB4Ag6J8KfD80G0zwCyaSxDww==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/core-js/-/core-js-3.32.0.tgz} - name: core-js - version: 3.32.0 - - core-js@https://registry.npmmirror.com/core-js/-/core-js-2.6.12.tgz: - resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/core-js/-/core-js-2.6.12.tgz} - name: core-js - version: 2.6.12 - deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. - - core-js@https://registry.npmmirror.com/core-js/-/core-js-3.32.0.tgz: - resolution: {integrity: sha512-rd4rYZNlF3WuoYuRIDEmbR/ga9CeuWX9U05umAvgrrZoHY4Z++cp/xwPQMvUpBB4Ag6J8KfD80G0zwCyaSxDww==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/core-js/-/core-js-3.32.0.tgz} - name: core-js - version: 3.32.0 - - core-util-is@https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz} - name: core-util-is - version: 1.0.3 - - core-util-is@https://registry.npmmirror.com/core-util-is/-/core-util-is-1.0.3.tgz: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/core-util-is/-/core-util-is-1.0.3.tgz} - name: core-util-is - version: 1.0.3 - - cors@https://registry.npmmirror.com/cors/-/cors-2.8.5.tgz: - resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cors/-/cors-2.8.5.tgz} - name: cors - version: 2.8.5 - engines: {node: '>= 0.10'} - - corser@https://registry.npmmirror.com/corser/-/corser-2.0.1.tgz: - resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/corser/-/corser-2.0.1.tgz} - name: corser - version: 2.0.1 - engines: {node: '>= 0.4.0'} - - cosmiconfig-typescript-loader@https://registry.npmmirror.com/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-2.0.2.tgz: - resolution: {integrity: sha512-KmE+bMjWMXJbkWCeY4FJX/npHuZPNr9XF9q9CIQ/bpFwi1qHfCmSiKarrCcRa0LO4fWjk93pVoeRtJAkTGcYNw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-2.0.2.tgz} - name: cosmiconfig-typescript-loader - version: 2.0.2 - engines: {node: '>=12', npm: '>=6'} - peerDependencies: - '@types/node': '*' - cosmiconfig: '>=7' - typescript: '>=3' - - cosmiconfig-typescript-loader@https://registry.npmmirror.com/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.4.0.tgz: - resolution: {integrity: sha512-BabizFdC3wBHhbI4kJh0VkQP9GkBfoHPydD0COMce1nJ1kJAB3F2TmJ/I7diULBKtmEWSwEbuN/KDtgnmUUVmw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.4.0.tgz} - name: cosmiconfig-typescript-loader - version: 4.4.0 - engines: {node: '>=v14.21.3'} - peerDependencies: - '@types/node': '*' - cosmiconfig: '>=7' - ts-node: '>=10' - typescript: '>=4' - - cosmiconfig@https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz: - resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz} - name: cosmiconfig - version: 7.1.0 - engines: {node: '>=10'} - - cosmiconfig@https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-8.2.0.tgz: - resolution: {integrity: sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-8.2.0.tgz} - name: cosmiconfig - version: 8.2.0 - engines: {node: '>=14'} - - crc-32@https://registry.npmmirror.com/crc-32/-/crc-32-1.2.2.tgz: - resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/crc-32/-/crc-32-1.2.2.tgz} - name: crc-32 - version: 1.2.2 - engines: {node: '>=0.8'} - hasBin: true - - create-require@https://registry.npmmirror.com/create-require/-/create-require-1.1.1.tgz: - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/create-require/-/create-require-1.1.1.tgz} - name: create-require - version: 1.1.1 - - cron-parser@https://registry.npmmirror.com/cron-parser/-/cron-parser-3.5.0.tgz: - resolution: {integrity: sha512-wyVZtbRs6qDfFd8ap457w3XVntdvqcwBGxBoTvJQH9KGVKL/fB+h2k3C8AqiVxvUQKN1Ps/Ns46CNViOpVDhfQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cron-parser/-/cron-parser-3.5.0.tgz} - name: cron-parser - version: 3.5.0 - engines: {node: '>=0.8'} - - cropperjs@https://registry.npmmirror.com/cropperjs/-/cropperjs-1.5.12.tgz: - resolution: {integrity: sha512-re7UdjE5UnwdrovyhNzZ6gathI4Rs3KGCBSc8HCIjUo5hO42CtzyblmWLj6QWVw7huHyDMfpKxhiO2II77nhDw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cropperjs/-/cropperjs-1.5.12.tgz} - name: cropperjs - version: 1.5.12 - - cross-env@https://registry.npmmirror.com/cross-env/-/cross-env-7.0.3.tgz: - resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cross-env/-/cross-env-7.0.3.tgz} - name: cross-env - version: 7.0.3 - engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'} - hasBin: true - - cross-fetch@https://registry.npmmirror.com/cross-fetch/-/cross-fetch-3.1.8.tgz: - resolution: {integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cross-fetch/-/cross-fetch-3.1.8.tgz} - name: cross-fetch - version: 3.1.8 - - cross-spawn@https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz: - resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz} - name: cross-spawn - version: 5.1.0 - - cross-spawn@https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz: - resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz} - name: cross-spawn - version: 6.0.5 - engines: {node: '>=4.8'} - - cross-spawn@https://registry.npmmirror.com/cross-spawn/-/cross-spawn-5.1.0.tgz: - resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cross-spawn/-/cross-spawn-5.1.0.tgz} - name: cross-spawn - version: 5.1.0 - - cross-spawn@https://registry.npmmirror.com/cross-spawn/-/cross-spawn-6.0.5.tgz: - resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cross-spawn/-/cross-spawn-6.0.5.tgz} - name: cross-spawn - version: 6.0.5 - engines: {node: '>=4.8'} - - cross-spawn@https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz} - name: cross-spawn - version: 7.0.3 - engines: {node: '>= 8'} - - crypt@https://registry.npmmirror.com/crypt/-/crypt-0.0.2.tgz: - resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/crypt/-/crypt-0.0.2.tgz} - name: crypt - version: 0.0.2 - - crypto-js@https://registry.npmmirror.com/crypto-js/-/crypto-js-4.1.1.tgz: - resolution: {integrity: sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/crypto-js/-/crypto-js-4.1.1.tgz} - name: crypto-js - version: 4.1.1 - - crypto-random-string@https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz: - resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz} - name: crypto-random-string - version: 2.0.0 - engines: {node: '>=8'} - - css-functions-list@https://registry.npmmirror.com/css-functions-list/-/css-functions-list-3.2.0.tgz: - resolution: {integrity: sha512-d/jBMPyYybkkLVypgtGv12R+pIFw4/f/IHtCTxWpZc8ofTYOPigIgmA6vu5rMHartZC+WuXhBUHfnyNUIQSYrg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/css-functions-list/-/css-functions-list-3.2.0.tgz} - name: css-functions-list - version: 3.2.0 - engines: {node: '>=12.22'} - - css-line-break@https://registry.npmmirror.com/css-line-break/-/css-line-break-2.1.0.tgz: - resolution: {integrity: sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/css-line-break/-/css-line-break-2.1.0.tgz} - name: css-line-break - version: 2.1.0 - - css-select@https://registry.npmmirror.com/css-select/-/css-select-4.3.0.tgz: - resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/css-select/-/css-select-4.3.0.tgz} - name: css-select - version: 4.3.0 - - css-tree@https://registry.npmmirror.com/css-tree/-/css-tree-1.1.3.tgz: - resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/css-tree/-/css-tree-1.1.3.tgz} - name: css-tree - version: 1.1.3 - engines: {node: '>=8.0.0'} - - css-what@https://registry.npmmirror.com/css-what/-/css-what-6.1.0.tgz: - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/css-what/-/css-what-6.1.0.tgz} - name: css-what - version: 6.1.0 - engines: {node: '>= 6'} - - cssesc@https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz} - name: cssesc - version: 3.0.0 - engines: {node: '>=4'} - hasBin: true - - cssfilter@https://registry.npmmirror.com/cssfilter/-/cssfilter-0.0.10.tgz: - resolution: {integrity: sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cssfilter/-/cssfilter-0.0.10.tgz} - name: cssfilter - version: 0.0.10 - - csso@https://registry.npmmirror.com/csso/-/csso-4.2.0.tgz: - resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/csso/-/csso-4.2.0.tgz} - name: csso - version: 4.2.0 - engines: {node: '>=8.0.0'} - - cssom@https://registry.npmmirror.com/cssom/-/cssom-0.3.8.tgz: - resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cssom/-/cssom-0.3.8.tgz} - name: cssom - version: 0.3.8 - - cssom@https://registry.npmmirror.com/cssom/-/cssom-0.4.4.tgz: - resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cssom/-/cssom-0.4.4.tgz} - name: cssom - version: 0.4.4 - - cssstyle@https://registry.npmmirror.com/cssstyle/-/cssstyle-2.3.0.tgz: - resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cssstyle/-/cssstyle-2.3.0.tgz} - name: cssstyle - version: 2.3.0 - engines: {node: '>=8'} - - csstype@https://registry.npmmirror.com/csstype/-/csstype-2.6.21.tgz: - resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/csstype/-/csstype-2.6.21.tgz} - name: csstype - version: 2.6.21 - - csstype@https://registry.npmmirror.com/csstype/-/csstype-3.1.2.tgz: - resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/csstype/-/csstype-3.1.2.tgz} - name: csstype - version: 3.1.2 - - currently-unhandled@https://registry.npmmirror.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz: - resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz} - name: currently-unhandled - version: 0.4.1 - engines: {node: '>=0.10.0'} - - cwebp-bin@https://registry.npmmirror.com/cwebp-bin/-/cwebp-bin-6.1.2.tgz: - resolution: {integrity: sha512-NLEZ/BVAl9g426hwUX/qrQ7b/EfQH7BS1tr+CzPo2EgDQbcdzmUVE+fIfsi64lsL638lWgzTEViMAL4pxV1GOg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cwebp-bin/-/cwebp-bin-6.1.2.tgz} - name: cwebp-bin - version: 6.1.2 - engines: {node: '>=10'} - hasBin: true - - cz-conventional-changelog@https://registry.npmmirror.com/cz-conventional-changelog/-/cz-conventional-changelog-3.2.0.tgz: - resolution: {integrity: sha512-yAYxeGpVi27hqIilG1nh4A9Bnx4J3Ov+eXy4koL3drrR+IO9GaWPsKjik20ht608Asqi8TQPf0mczhEeyAtMzg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cz-conventional-changelog/-/cz-conventional-changelog-3.2.0.tgz} - name: cz-conventional-changelog - version: 3.2.0 - engines: {node: '>= 10'} - - cz-git@https://registry.npmmirror.com/cz-git/-/cz-git-1.3.9.tgz: - resolution: {integrity: sha512-S7XpI+XtJ/foh9MYB1pBB+YGsQyzhQpUzmNaN3Y17KeYf0EvRQt0OR7GVf3xZ5clLEdQh2nY5TjdGZ4ctXUTuA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/cz-git/-/cz-git-1.3.9.tgz} - name: cz-git - version: 1.3.9 - - czg@https://registry.npmmirror.com/czg/-/czg-1.3.9.tgz: - resolution: {integrity: sha512-8VD7wNXlnkY9ZfHDkGBKQupR9wQAeblIzk9qB3LeijlrnI7YBp5wVShR3z0SMRDL+Zg/NYYuC5fopxu0fG8WrQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/czg/-/czg-1.3.9.tgz} - name: czg - version: 1.3.9 - hasBin: true - - dargs@https://registry.npmmirror.com/dargs/-/dargs-7.0.0.tgz: - resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/dargs/-/dargs-7.0.0.tgz} - name: dargs - version: 7.0.0 - engines: {node: '>=8'} - - data-urls@https://registry.npmmirror.com/data-urls/-/data-urls-2.0.0.tgz: - resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/data-urls/-/data-urls-2.0.0.tgz} - name: data-urls - version: 2.0.0 - engines: {node: '>=10'} - - dateformat@https://registry.npmmirror.com/dateformat/-/dateformat-3.0.3.tgz: - resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/dateformat/-/dateformat-3.0.3.tgz} - name: dateformat - version: 3.0.3 - - dayjs@https://registry.npmmirror.com/dayjs/-/dayjs-1.11.1.tgz: - resolution: {integrity: sha512-ER7EjqVAMkRRsxNCC5YqJ9d9VQYuWdGt7aiH2qA5R5wt8ZmWaP2dLUSIK6y/kVzLMlmh1Tvu5xUf4M/wdGJ5KA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/dayjs/-/dayjs-1.11.1.tgz} - name: dayjs - version: 1.11.1 - - debug@https://registry.npmjs.org/debug/-/debug-4.3.4.tgz: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/debug/-/debug-4.3.4.tgz} - name: debug - version: 4.3.4 - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - debug@https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz: - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz} - name: debug - version: 2.6.9 - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - debug@https://registry.npmmirror.com/debug/-/debug-3.2.7.tgz: - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/debug/-/debug-3.2.7.tgz} - name: debug - version: 3.2.7 - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - debug@https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz} - name: debug - version: 4.3.4 - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - decamelize-keys@https://registry.npmmirror.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz: - resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz} - name: decamelize-keys - version: 1.1.1 - engines: {node: '>=0.10.0'} - - decamelize@https://registry.npmmirror.com/decamelize/-/decamelize-1.2.0.tgz: - resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/decamelize/-/decamelize-1.2.0.tgz} - name: decamelize - version: 1.2.0 - engines: {node: '>=0.10.0'} - - decimal.js@https://registry.npmmirror.com/decimal.js/-/decimal.js-10.4.3.tgz: - resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/decimal.js/-/decimal.js-10.4.3.tgz} - name: decimal.js - version: 10.4.3 - - decode-uri-component@https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz: - resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz} - name: decode-uri-component - version: 0.2.2 - engines: {node: '>=0.10'} - - decode-uri-component@https://registry.npmmirror.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz: - resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz} - name: decode-uri-component - version: 0.2.2 - engines: {node: '>=0.10'} - - decompress-response@https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz: - resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz} - name: decompress-response - version: 3.3.0 - engines: {node: '>=4'} - - decompress-response@https://registry.npmmirror.com/decompress-response/-/decompress-response-3.3.0.tgz: - resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/decompress-response/-/decompress-response-3.3.0.tgz} - name: decompress-response - version: 3.3.0 - engines: {node: '>=4'} - - decompress-tar@https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz: - resolution: {integrity: sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz} - name: decompress-tar - version: 4.1.1 - engines: {node: '>=4'} - - decompress-tar@https://registry.npmmirror.com/decompress-tar/-/decompress-tar-4.1.1.tgz: - resolution: {integrity: sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/decompress-tar/-/decompress-tar-4.1.1.tgz} - name: decompress-tar - version: 4.1.1 - engines: {node: '>=4'} - - decompress-tarbz2@https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz: - resolution: {integrity: sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz} - name: decompress-tarbz2 - version: 4.1.1 - engines: {node: '>=4'} - - decompress-tarbz2@https://registry.npmmirror.com/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz: - resolution: {integrity: sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz} - name: decompress-tarbz2 - version: 4.1.1 - engines: {node: '>=4'} - - decompress-targz@https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz: - resolution: {integrity: sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz} - name: decompress-targz - version: 4.1.1 - engines: {node: '>=4'} - - decompress-targz@https://registry.npmmirror.com/decompress-targz/-/decompress-targz-4.1.1.tgz: - resolution: {integrity: sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/decompress-targz/-/decompress-targz-4.1.1.tgz} - name: decompress-targz - version: 4.1.1 - engines: {node: '>=4'} - - decompress-unzip@https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz: - resolution: {integrity: sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz} - name: decompress-unzip - version: 4.0.1 - engines: {node: '>=4'} - - decompress-unzip@https://registry.npmmirror.com/decompress-unzip/-/decompress-unzip-4.0.1.tgz: - resolution: {integrity: sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/decompress-unzip/-/decompress-unzip-4.0.1.tgz} - name: decompress-unzip - version: 4.0.1 - engines: {node: '>=4'} - - decompress@https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz: - resolution: {integrity: sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz} - name: decompress - version: 4.2.1 - engines: {node: '>=4'} - - decompress@https://registry.npmmirror.com/decompress/-/decompress-4.2.1.tgz: - resolution: {integrity: sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/decompress/-/decompress-4.2.1.tgz} - name: decompress - version: 4.2.1 - engines: {node: '>=4'} - - dedent@https://registry.npmmirror.com/dedent/-/dedent-0.7.0.tgz: - resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/dedent/-/dedent-0.7.0.tgz} - name: dedent - version: 0.7.0 - - deep-is@https://registry.npmmirror.com/deep-is/-/deep-is-0.1.4.tgz: - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/deep-is/-/deep-is-0.1.4.tgz} - name: deep-is - version: 0.1.4 - - deepmerge@https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz} - name: deepmerge - version: 4.3.1 - engines: {node: '>=0.10.0'} - - deepmerge@https://registry.npmmirror.com/deepmerge/-/deepmerge-4.3.1.tgz: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/deepmerge/-/deepmerge-4.3.1.tgz} - name: deepmerge - version: 4.3.1 - engines: {node: '>=0.10.0'} - - defaults@https://registry.npmmirror.com/defaults/-/defaults-1.0.4.tgz: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/defaults/-/defaults-1.0.4.tgz} - name: defaults - version: 1.0.4 - - define-lazy-prop@https://registry.npmmirror.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz: - resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz} - name: define-lazy-prop - version: 2.0.0 - engines: {node: '>=8'} - - define-properties@https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz: - resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz} - name: define-properties - version: 1.2.0 - engines: {node: '>= 0.4'} - - define-properties@https://registry.npmmirror.com/define-properties/-/define-properties-1.2.0.tgz: - resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/define-properties/-/define-properties-1.2.0.tgz} - name: define-properties - version: 1.2.0 - engines: {node: '>= 0.4'} - - define-property@https://registry.npmmirror.com/define-property/-/define-property-0.2.5.tgz: - resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/define-property/-/define-property-0.2.5.tgz} - name: define-property - version: 0.2.5 - engines: {node: '>=0.10.0'} - - define-property@https://registry.npmmirror.com/define-property/-/define-property-1.0.0.tgz: - resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/define-property/-/define-property-1.0.0.tgz} - name: define-property - version: 1.0.0 - engines: {node: '>=0.10.0'} - - define-property@https://registry.npmmirror.com/define-property/-/define-property-2.0.2.tgz: - resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/define-property/-/define-property-2.0.2.tgz} - name: define-property - version: 2.0.2 - engines: {node: '>=0.10.0'} - - delayed-stream@https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz} - name: delayed-stream - version: 1.0.0 - engines: {node: '>=0.4.0'} - - delegate@https://registry.npmmirror.com/delegate/-/delegate-3.2.0.tgz: - resolution: {integrity: sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/delegate/-/delegate-3.2.0.tgz} - name: delegate - version: 3.2.0 - - deprecation@https://registry.npmmirror.com/deprecation/-/deprecation-2.3.1.tgz: - resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/deprecation/-/deprecation-2.3.1.tgz} - name: deprecation - version: 2.3.1 - - detect-file@https://registry.npmmirror.com/detect-file/-/detect-file-1.0.0.tgz: - resolution: {integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/detect-file/-/detect-file-1.0.0.tgz} - name: detect-file - version: 1.0.0 - engines: {node: '>=0.10.0'} - - detect-indent@https://registry.npmmirror.com/detect-indent/-/detect-indent-6.0.0.tgz: - resolution: {integrity: sha512-oSyFlqaTHCItVRGK5RmrmjB+CmaMOW7IaNA/kdxqhoa6d17j/5ce9O9eWXmV/KEdRwqpQA+Vqe8a8Bsybu4YnA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/detect-indent/-/detect-indent-6.0.0.tgz} - name: detect-indent - version: 6.0.0 - engines: {node: '>=8'} - - detect-newline@https://registry.npmmirror.com/detect-newline/-/detect-newline-3.1.0.tgz: - resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/detect-newline/-/detect-newline-3.1.0.tgz} - name: detect-newline - version: 3.1.0 - engines: {node: '>=8'} - - diff-match-patch@https://registry.npmmirror.com/diff-match-patch/-/diff-match-patch-1.0.5.tgz: - resolution: {integrity: sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/diff-match-patch/-/diff-match-patch-1.0.5.tgz} - name: diff-match-patch - version: 1.0.5 - - diff-sequences@https://registry.npmmirror.com/diff-sequences/-/diff-sequences-27.5.1.tgz: - resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/diff-sequences/-/diff-sequences-27.5.1.tgz} - name: diff-sequences - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - diff@https://registry.npmmirror.com/diff/-/diff-4.0.2.tgz: - resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/diff/-/diff-4.0.2.tgz} - name: diff - version: 4.0.2 - engines: {node: '>=0.3.1'} - - dijkstrajs@https://registry.npmmirror.com/dijkstrajs/-/dijkstrajs-1.0.3.tgz: - resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/dijkstrajs/-/dijkstrajs-1.0.3.tgz} - name: dijkstrajs - version: 1.0.3 - - dir-glob@https://registry.npmmirror.com/dir-glob/-/dir-glob-3.0.1.tgz: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/dir-glob/-/dir-glob-3.0.1.tgz} - name: dir-glob - version: 3.0.1 - engines: {node: '>=8'} - - doctrine@https://registry.npmmirror.com/doctrine/-/doctrine-3.0.0.tgz: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/doctrine/-/doctrine-3.0.0.tgz} - name: doctrine - version: 3.0.0 - engines: {node: '>=6.0.0'} - - dom-align@https://registry.npmmirror.com/dom-align/-/dom-align-1.12.2.tgz: - resolution: {integrity: sha512-pHuazgqrsTFrGU2WLDdXxCFabkdQDx72ddkraZNih1KsMcN5qsRSTR9O4VJRlwTPCPb5COYg3LOfiMHHcPInHg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/dom-align/-/dom-align-1.12.2.tgz} - name: dom-align - version: 1.12.2 - - dom-scroll-into-view@https://registry.npmmirror.com/dom-scroll-into-view/-/dom-scroll-into-view-2.0.1.tgz: - resolution: {integrity: sha512-bvVTQe1lfaUr1oFzZX80ce9KLDlZ3iU+XGNE/bz9HnGdklTieqsbmsLHe+rT2XWqopvL0PckkYqN7ksmm5pe3w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/dom-scroll-into-view/-/dom-scroll-into-view-2.0.1.tgz} - name: dom-scroll-into-view - version: 2.0.1 - - dom-serializer@https://registry.npmmirror.com/dom-serializer/-/dom-serializer-0.2.2.tgz: - resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/dom-serializer/-/dom-serializer-0.2.2.tgz} - name: dom-serializer - version: 0.2.2 - - dom-serializer@https://registry.npmmirror.com/dom-serializer/-/dom-serializer-1.4.1.tgz: - resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/dom-serializer/-/dom-serializer-1.4.1.tgz} - name: dom-serializer - version: 1.4.1 - - domelementtype@https://registry.npmmirror.com/domelementtype/-/domelementtype-1.3.1.tgz: - resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/domelementtype/-/domelementtype-1.3.1.tgz} - name: domelementtype - version: 1.3.1 - - domelementtype@https://registry.npmmirror.com/domelementtype/-/domelementtype-2.3.0.tgz: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/domelementtype/-/domelementtype-2.3.0.tgz} - name: domelementtype - version: 2.3.0 - - domexception@https://registry.npmmirror.com/domexception/-/domexception-2.0.1.tgz: - resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/domexception/-/domexception-2.0.1.tgz} - name: domexception - version: 2.0.1 - engines: {node: '>=8'} - - domhandler@https://registry.npmmirror.com/domhandler/-/domhandler-2.4.2.tgz: - resolution: {integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/domhandler/-/domhandler-2.4.2.tgz} - name: domhandler - version: 2.4.2 - - domhandler@https://registry.npmmirror.com/domhandler/-/domhandler-4.3.1.tgz: - resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/domhandler/-/domhandler-4.3.1.tgz} - name: domhandler - version: 4.3.1 - engines: {node: '>= 4'} - - dompurify@https://registry.npmjs.org/dompurify/-/dompurify-2.4.7.tgz: - resolution: {integrity: sha512-kxxKlPEDa6Nc5WJi+qRgPbOAbgTpSULL+vI3NUXsZMlkJxTqYI9wg5ZTay2sFrdZRWHPWNi+EdAhcJf81WtoMQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/dompurify/-/dompurify-2.4.7.tgz} - name: dompurify - version: 2.4.7 - - domutils@https://registry.npmmirror.com/domutils/-/domutils-1.7.0.tgz: - resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/domutils/-/domutils-1.7.0.tgz} - name: domutils - version: 1.7.0 - - domutils@https://registry.npmmirror.com/domutils/-/domutils-2.8.0.tgz: - resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/domutils/-/domutils-2.8.0.tgz} - name: domutils - version: 2.8.0 - - dot-case@https://registry.npmmirror.com/dot-case/-/dot-case-3.0.4.tgz: - resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/dot-case/-/dot-case-3.0.4.tgz} - name: dot-case - version: 3.0.4 - - dot-prop@https://registry.npmmirror.com/dot-prop/-/dot-prop-5.3.0.tgz: - resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/dot-prop/-/dot-prop-5.3.0.tgz} - name: dot-prop - version: 5.3.0 - engines: {node: '>=8'} - - dotenv-expand@https://registry.npmmirror.com/dotenv-expand/-/dotenv-expand-8.0.3.tgz: - resolution: {integrity: sha512-SErOMvge0ZUyWd5B0NXMQlDkN+8r+HhVUsxgOO7IoPDOdDRD2JjExpN6y3KnFR66jsJMwSn1pqIivhU5rcJiNg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/dotenv-expand/-/dotenv-expand-8.0.3.tgz} - name: dotenv-expand - version: 8.0.3 - engines: {node: '>=12'} - - dotenv@https://registry.npmmirror.com/dotenv/-/dotenv-16.0.0.tgz: - resolution: {integrity: sha512-qD9WU0MPM4SWLPJy/r2Be+2WgQj8plChsyrCNQzW/0WjvcJQiKQJ9mH3ZgB3fxbUUxgc/11ZJ0Fi5KiimWGz2Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/dotenv/-/dotenv-16.0.0.tgz} - name: dotenv - version: 16.0.0 - engines: {node: '>=12'} - - download@https://registry.npmjs.org/download/-/download-7.1.0.tgz: - resolution: {integrity: sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/download/-/download-7.1.0.tgz} - name: download - version: 7.1.0 - engines: {node: '>=6'} - - download@https://registry.npmmirror.com/download/-/download-6.2.5.tgz: - resolution: {integrity: sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/download/-/download-6.2.5.tgz} - name: download - version: 6.2.5 - engines: {node: '>=4'} - - duplexer3@https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz: - resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz} - name: duplexer3 - version: 0.1.5 - - duplexer3@https://registry.npmmirror.com/duplexer3/-/duplexer3-0.1.5.tgz: - resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/duplexer3/-/duplexer3-0.1.5.tgz} - name: duplexer3 - version: 0.1.5 - - eastasianwidth@https://registry.npmmirror.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz} - name: eastasianwidth - version: 0.2.0 - - echarts-gl@https://registry.npmmirror.com/echarts-gl/-/echarts-gl-2.0.9.tgz: - resolution: {integrity: sha512-oKeMdkkkpJGWOzjgZUsF41DOh6cMsyrGGXimbjK2l6Xeq/dBQu4ShG2w2Dzrs/1bD27b2pLTGSaUzouY191gzA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/echarts-gl/-/echarts-gl-2.0.9.tgz} - name: echarts-gl - version: 2.0.9 - peerDependencies: - echarts: ^5.1.2 - - echarts-liquidfill@https://registry.npmmirror.com/echarts-liquidfill/-/echarts-liquidfill-3.1.0.tgz: - resolution: {integrity: sha512-5Dlqs/jTsdTUAsd+K5LPLLTgrbbNORUSBQyk8PSy1Mg2zgHDWm83FmvA4s0ooNepCJojFYRITTQ4GU1UUSKYLw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/echarts-liquidfill/-/echarts-liquidfill-3.1.0.tgz} - name: echarts-liquidfill - version: 3.1.0 - peerDependencies: - echarts: ^5.0.1 - - echarts@https://registry.npmmirror.com/echarts/-/echarts-5.3.2.tgz: - resolution: {integrity: sha512-LWCt7ohOKdJqyiBJ0OGBmE9szLdfA9sGcsMEi+GGoc6+Xo75C+BkcT/6NNGRHAWtnQl2fNow05AQjznpap28TQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/echarts/-/echarts-5.3.2.tgz} - name: echarts - version: 5.3.2 - - ee-first@https://registry.npmmirror.com/ee-first/-/ee-first-1.1.1.tgz: - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ee-first/-/ee-first-1.1.1.tgz} - name: ee-first - version: 1.1.1 - - ejs@https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz: - resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz} - name: ejs - version: 3.1.9 - engines: {node: '>=0.10.0'} - hasBin: true - - ejs@https://registry.npmmirror.com/ejs/-/ejs-3.1.9.tgz: - resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ejs/-/ejs-3.1.9.tgz} - name: ejs - version: 3.1.9 - engines: {node: '>=0.10.0'} - hasBin: true - - electron-to-chromium@https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.490.tgz: - resolution: {integrity: sha512-6s7NVJz+sATdYnIwhdshx/N/9O6rvMxmhVoDSDFdj6iA45gHR8EQje70+RYsF4GeB+k0IeNSBnP7yG9ZXJFr7A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.490.tgz} - name: electron-to-chromium - version: 1.4.490 - - electron-to-chromium@https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.490.tgz: - resolution: {integrity: sha512-6s7NVJz+sATdYnIwhdshx/N/9O6rvMxmhVoDSDFdj6iA45gHR8EQje70+RYsF4GeB+k0IeNSBnP7yG9ZXJFr7A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.490.tgz} - name: electron-to-chromium - version: 1.4.490 - - element-resize-detector@https://registry.npmmirror.com/element-resize-detector/-/element-resize-detector-1.2.4.tgz: - resolution: {integrity: sha512-Fl5Ftk6WwXE0wqCgNoseKWndjzZlDCwuPTcoVZfCP9R3EHQF8qUtr3YUPNETegRBOKqQKPW3n4kiIWngGi8tKg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/element-resize-detector/-/element-resize-detector-1.2.4.tgz} - name: element-resize-detector - version: 1.2.4 - - emittery@https://registry.npmmirror.com/emittery/-/emittery-0.8.1.tgz: - resolution: {integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/emittery/-/emittery-0.8.1.tgz} - name: emittery - version: 0.8.1 - engines: {node: '>=10'} - - emoji-mart-vue-fast@https://registry.npmmirror.com/emoji-mart-vue-fast/-/emoji-mart-vue-fast-11.1.1.tgz: - resolution: {integrity: sha512-mMN49N2lCQCjanSzLYBS1PlBO+7Do092FnrsWwogwmOo4p+L8N3L8TjcDk30ByXMCjSEcCDsjupCxIcaBpVNKg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/emoji-mart-vue-fast/-/emoji-mart-vue-fast-11.1.1.tgz} - name: emoji-mart-vue-fast - version: 11.1.1 - peerDependencies: - vue: '>2.0.0' - - emoji-regex@https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz} - name: emoji-regex - version: 8.0.0 - - emoji-regex@https://registry.npmmirror.com/emoji-regex/-/emoji-regex-9.2.2.tgz: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/emoji-regex/-/emoji-regex-9.2.2.tgz} - name: emoji-regex - version: 9.2.2 - - emojis-list@https://registry.npmmirror.com/emojis-list/-/emojis-list-3.0.0.tgz: - resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/emojis-list/-/emojis-list-3.0.0.tgz} - name: emojis-list - version: 3.0.0 - engines: {node: '>= 4'} - - encode-utf8@https://registry.npmmirror.com/encode-utf8/-/encode-utf8-1.0.3.tgz: - resolution: {integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/encode-utf8/-/encode-utf8-1.0.3.tgz} - name: encode-utf8 - version: 1.0.3 - - encodeurl@https://registry.npmmirror.com/encodeurl/-/encodeurl-1.0.2.tgz: - resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/encodeurl/-/encodeurl-1.0.2.tgz} - name: encodeurl - version: 1.0.2 - engines: {node: '>= 0.8'} - - end-of-stream@https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz: - resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz} - name: end-of-stream - version: 1.4.4 - - end-of-stream@https://registry.npmmirror.com/end-of-stream/-/end-of-stream-1.4.4.tgz: - resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/end-of-stream/-/end-of-stream-1.4.4.tgz} - name: end-of-stream - version: 1.4.4 - - enquire.js@https://registry.npmmirror.com/enquire.js/-/enquire.js-2.1.6.tgz: - resolution: {integrity: sha512-/KujNpO+PT63F7Hlpu4h3pE3TokKRHN26JYmQpPyjkRD/N57R7bPDNojMXdi7uveAKjYB7yQnartCxZnFWr0Xw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/enquire.js/-/enquire.js-2.1.6.tgz} - name: enquire.js - version: 2.1.6 - - entities@https://registry.npmmirror.com/entities/-/entities-1.1.2.tgz: - resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/entities/-/entities-1.1.2.tgz} - name: entities - version: 1.1.2 - - entities@https://registry.npmmirror.com/entities/-/entities-2.2.0.tgz: - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/entities/-/entities-2.2.0.tgz} - name: entities - version: 2.2.0 - - entities@https://registry.npmmirror.com/entities/-/entities-3.0.1.tgz: - resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/entities/-/entities-3.0.1.tgz} - name: entities - version: 3.0.1 - engines: {node: '>=0.12'} - - errno@https://registry.npmjs.org/errno/-/errno-0.1.8.tgz: - resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/errno/-/errno-0.1.8.tgz} - name: errno - version: 0.1.8 - hasBin: true - - error-ex@https://registry.npmmirror.com/error-ex/-/error-ex-1.3.2.tgz: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/error-ex/-/error-ex-1.3.2.tgz} - name: error-ex - version: 1.3.2 - - es-abstract@https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz: - resolution: {integrity: sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz} - name: es-abstract - version: 1.22.1 - engines: {node: '>= 0.4'} - - es-abstract@https://registry.npmmirror.com/es-abstract/-/es-abstract-1.22.1.tgz: - resolution: {integrity: sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/es-abstract/-/es-abstract-1.22.1.tgz} - name: es-abstract - version: 1.22.1 - engines: {node: '>= 0.4'} - - es-module-lexer@https://registry.npmmirror.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz: - resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz} - name: es-module-lexer - version: 0.9.3 - - es-set-tostringtag@https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz: - resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz} - name: es-set-tostringtag - version: 2.0.1 - engines: {node: '>= 0.4'} - - es-set-tostringtag@https://registry.npmmirror.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz: - resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz} - name: es-set-tostringtag - version: 2.0.1 - engines: {node: '>= 0.4'} - - es-to-primitive@https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz} - name: es-to-primitive - version: 1.2.1 - engines: {node: '>= 0.4'} - - es-to-primitive@https://registry.npmmirror.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz} - name: es-to-primitive - version: 1.2.1 - engines: {node: '>= 0.4'} - - esbuild-android-64@https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.54.tgz: - resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.54.tgz} - name: esbuild-android-64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [x64] - os: [android] - - esbuild-android-arm64@https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.54.tgz: - resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.54.tgz} - name: esbuild-android-arm64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - - esbuild-darwin-64@https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.54.tgz: - resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.54.tgz} - name: esbuild-darwin-64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - - esbuild-darwin-arm64@https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.54.tgz: - resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.54.tgz} - name: esbuild-darwin-arm64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - - esbuild-freebsd-64@https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.54.tgz: - resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.54.tgz} - name: esbuild-freebsd-64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - - esbuild-freebsd-arm64@https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.54.tgz: - resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.54.tgz} - name: esbuild-freebsd-arm64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - - esbuild-linux-32@https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.54.tgz: - resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.54.tgz} - name: esbuild-linux-32 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - - esbuild-linux-64@https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.54.tgz: - resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.54.tgz} - name: esbuild-linux-64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - - esbuild-linux-arm64@https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.54.tgz: - resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.54.tgz} - name: esbuild-linux-arm64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - - esbuild-linux-arm@https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.54.tgz: - resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.54.tgz} - name: esbuild-linux-arm - version: 0.14.54 - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - - esbuild-linux-mips64le@https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.54.tgz: - resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.54.tgz} - name: esbuild-linux-mips64le - version: 0.14.54 - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - - esbuild-linux-ppc64le@https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.54.tgz: - resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.54.tgz} - name: esbuild-linux-ppc64le - version: 0.14.54 - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - - esbuild-linux-riscv64@https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.54.tgz: - resolution: {integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.54.tgz} - name: esbuild-linux-riscv64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - - esbuild-linux-s390x@https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.54.tgz: - resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.54.tgz} - name: esbuild-linux-s390x - version: 0.14.54 - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - - esbuild-netbsd-64@https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.54.tgz: - resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.54.tgz} - name: esbuild-netbsd-64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - - esbuild-node-loader@https://registry.npmmirror.com/esbuild-node-loader/-/esbuild-node-loader-0.6.5.tgz: - resolution: {integrity: sha512-uPP+dllWm38cFvDysdocutN3lfe5pTIbddAHp1ENyLzpHYqE2r+3Wo+pfg9X3p8DFWwzIisft5YkeBIthIcixw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/esbuild-node-loader/-/esbuild-node-loader-0.6.5.tgz} - name: esbuild-node-loader - version: 0.6.5 - - esbuild-openbsd-64@https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.54.tgz: - resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.54.tgz} - name: esbuild-openbsd-64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - - esbuild-plugin-alias@https://registry.npmmirror.com/esbuild-plugin-alias/-/esbuild-plugin-alias-0.1.2.tgz: - resolution: {integrity: sha512-WsX0OJy8IGOsGZV+4oHEU5B6XQUpxOsZN1iSoYf9COTDbY7WXcOwd1oCLYNWUIWCExyGXSghIGq2k7sXBldxwQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/esbuild-plugin-alias/-/esbuild-plugin-alias-0.1.2.tgz} - name: esbuild-plugin-alias - version: 0.1.2 - - esbuild-register@https://registry.npmmirror.com/esbuild-register/-/esbuild-register-3.4.2.tgz: - resolution: {integrity: sha512-kG/XyTDyz6+YDuyfB9ZoSIOOmgyFCH+xPRtsCa8W85HLRV5Csp+o3jWVbOSHgSLfyLc5DmP+KFDNwty4mEjC+Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/esbuild-register/-/esbuild-register-3.4.2.tgz} - name: esbuild-register - version: 3.4.2 - peerDependencies: - esbuild: '>=0.12 <1' - - esbuild-sunos-64@https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.54.tgz: - resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.54.tgz} - name: esbuild-sunos-64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - - esbuild-windows-32@https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.54.tgz: - resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.54.tgz} - name: esbuild-windows-32 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - - esbuild-windows-64@https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.54.tgz: - resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.54.tgz} - name: esbuild-windows-64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - - esbuild-windows-arm64@https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.54.tgz: - resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.54.tgz} - name: esbuild-windows-arm64 - version: 0.14.54 - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - - esbuild@https://registry.npmmirror.com/esbuild/-/esbuild-0.11.23.tgz: - resolution: {integrity: sha512-iaiZZ9vUF5wJV8ob1tl+5aJTrwDczlvGP0JoMmnpC2B0ppiMCu8n8gmy5ZTGl5bcG081XBVn+U+jP+mPFm5T5Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/esbuild/-/esbuild-0.11.23.tgz} - name: esbuild - version: 0.11.23 - hasBin: true - - esbuild@https://registry.npmmirror.com/esbuild/-/esbuild-0.11.3.tgz: - resolution: {integrity: sha512-BzVRHcCtFepjS9WcqRjqoIxLqgpK21a8J4Zi4msSGxDxiXVO1IbcqT1KjhdDDnJxKfe7bvzZrvMEX+bVO0Elcw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/esbuild/-/esbuild-0.11.3.tgz} - name: esbuild - version: 0.11.3 - hasBin: true - - esbuild@https://registry.npmmirror.com/esbuild/-/esbuild-0.14.54.tgz: - resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/esbuild/-/esbuild-0.14.54.tgz} - name: esbuild - version: 0.14.54 - engines: {node: '>=12'} - hasBin: true - - esbuild@https://registry.npmmirror.com/esbuild/-/esbuild-0.19.1.tgz: - resolution: {integrity: sha512-IknHHwV4B/H4imOAu+416fuCvPfRjdncoyGi7eunhSvHuHkdNs50sLWan2LEG2Mym07TuW6gJUIyRS9G1miHEg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/esbuild/-/esbuild-0.19.1.tgz} - name: esbuild - version: 0.19.1 - engines: {node: '>=12'} - hasBin: true - - escalade@https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz: - resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz} - name: escalade - version: 3.1.1 - engines: {node: '>=6'} - - escalade@https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz: - resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz} - name: escalade - version: 3.1.1 - engines: {node: '>=6'} - - escape-html@https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz: - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz} - name: escape-html - version: 1.0.3 - - escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz} - name: escape-string-regexp - version: 1.0.5 - engines: {node: '>=0.8.0'} - - escape-string-regexp@https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz} - name: escape-string-regexp - version: 1.0.5 - engines: {node: '>=0.8.0'} - - escape-string-regexp@https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz: - resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz} - name: escape-string-regexp - version: 2.0.0 - engines: {node: '>=8'} - - escape-string-regexp@https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz} - name: escape-string-regexp - version: 4.0.0 - engines: {node: '>=10'} - - escodegen@https://registry.npmmirror.com/escodegen/-/escodegen-2.1.0.tgz: - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/escodegen/-/escodegen-2.1.0.tgz} - name: escodegen - version: 2.1.0 - engines: {node: '>=6.0'} - hasBin: true - - eslint-config-prettier@https://registry.npmmirror.com/eslint-config-prettier/-/eslint-config-prettier-8.6.0.tgz: - resolution: {integrity: sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/eslint-config-prettier/-/eslint-config-prettier-8.6.0.tgz} - name: eslint-config-prettier - version: 8.6.0 - hasBin: true - peerDependencies: - eslint: '>=7.0.0' - - eslint-define-config@https://registry.npmmirror.com/eslint-define-config/-/eslint-define-config-1.14.0.tgz: - resolution: {integrity: sha512-NREt5SzMwKmLAY28YdaqIiTSJxfPpuZ+1ZLJxY2Wbj02dYF4QX81z0q9MPMjZB8C+SlCu66qAhcPpFJyhXOiuA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/eslint-define-config/-/eslint-define-config-1.14.0.tgz} - name: eslint-define-config - version: 1.14.0 - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0, npm: '>=6.14.13', pnpm: '>= 7.0.0'} - - eslint-plugin-jest@https://registry.npmmirror.com/eslint-plugin-jest/-/eslint-plugin-jest-27.2.1.tgz: - resolution: {integrity: sha512-l067Uxx7ZT8cO9NJuf+eJHvt6bqJyz2Z29wykyEdz/OtmcELQl2MQGQLX8J94O1cSJWAwUSEvCjwjA7KEK3Hmg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/eslint-plugin-jest/-/eslint-plugin-jest-27.2.1.tgz} - name: eslint-plugin-jest - version: 27.2.1 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@typescript-eslint/eslint-plugin': ^5.0.0 - eslint: ^7.0.0 || ^8.0.0 - jest: '*' - peerDependenciesMeta: - '@typescript-eslint/eslint-plugin': - optional: true - jest: - optional: true - - eslint-plugin-prettier@https://registry.npmmirror.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz: - resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz} - name: eslint-plugin-prettier - version: 4.2.1 - engines: {node: '>=12.0.0'} - peerDependencies: - eslint: '>=7.28.0' - eslint-config-prettier: '*' - prettier: '>=2.0.0' - peerDependenciesMeta: - eslint-config-prettier: - optional: true - - eslint-plugin-vue@https://registry.npmmirror.com/eslint-plugin-vue/-/eslint-plugin-vue-9.9.0.tgz: - resolution: {integrity: sha512-YbubS7eK0J7DCf0U2LxvVP7LMfs6rC6UltihIgval3azO3gyDwEGVgsCMe1TmDiEkl6GdMKfRpaME6QxIYtzDQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/eslint-plugin-vue/-/eslint-plugin-vue-9.9.0.tgz} - name: eslint-plugin-vue - version: 9.9.0 - engines: {node: ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 - - eslint-scope@https://registry.npmmirror.com/eslint-scope/-/eslint-scope-5.1.1.tgz: - resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/eslint-scope/-/eslint-scope-5.1.1.tgz} - name: eslint-scope - version: 5.1.1 - engines: {node: '>=8.0.0'} - - eslint-scope@https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.2.2.tgz: - resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.2.2.tgz} - name: eslint-scope - version: 7.2.2 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - eslint-utils@https://registry.npmmirror.com/eslint-utils/-/eslint-utils-3.0.0.tgz: - resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/eslint-utils/-/eslint-utils-3.0.0.tgz} - name: eslint-utils - version: 3.0.0 - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} - peerDependencies: - eslint: '>=5' - - eslint-visitor-keys@https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz: - resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz} - name: eslint-visitor-keys - version: 2.1.0 - engines: {node: '>=10'} - - eslint-visitor-keys@https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz: - resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz} - name: eslint-visitor-keys - version: 3.4.3 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - eslint@https://registry.npmmirror.com/eslint/-/eslint-8.22.0.tgz: - resolution: {integrity: sha512-ci4t0sz6vSRKdmkOGmprBo6fmI4PrphDFMy5JEq/fNS0gQkJM3rLmrqcp8ipMcdobH3KtUP40KniAE9W19S4wA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/eslint/-/eslint-8.22.0.tgz} - name: eslint - version: 8.22.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - hasBin: true - - esno@https://registry.npmmirror.com/esno/-/esno-0.14.1.tgz: - resolution: {integrity: sha512-yDFYw6dGUjCT1qKsdG7WOc/RzIh/qwxUEVZ+ohCltaxBxEFMNqeqbQL9xjRl6Yvdwrfc5OCjUA9JbFmuu/8BKg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/esno/-/esno-0.14.1.tgz} - name: esno - version: 0.14.1 - hasBin: true - - espree@https://registry.npmmirror.com/espree/-/espree-9.6.1.tgz: - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/espree/-/espree-9.6.1.tgz} - name: espree - version: 9.6.1 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - esprima@https://registry.npmmirror.com/esprima/-/esprima-4.0.1.tgz: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/esprima/-/esprima-4.0.1.tgz} - name: esprima - version: 4.0.1 - engines: {node: '>=4'} - hasBin: true - - esquery@https://registry.npmmirror.com/esquery/-/esquery-1.5.0.tgz: - resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/esquery/-/esquery-1.5.0.tgz} - name: esquery - version: 1.5.0 - engines: {node: '>=0.10'} - - esrecurse@https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz} - name: esrecurse - version: 4.3.0 - engines: {node: '>=4.0'} - - estraverse@https://registry.npmmirror.com/estraverse/-/estraverse-4.3.0.tgz: - resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/estraverse/-/estraverse-4.3.0.tgz} - name: estraverse - version: 4.3.0 - engines: {node: '>=4.0'} - - estraverse@https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz} - name: estraverse - version: 5.3.0 - engines: {node: '>=4.0'} - - estree-walker@https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz: - resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz} - name: estree-walker - version: 1.0.1 - - estree-walker@https://registry.npmmirror.com/estree-walker/-/estree-walker-1.0.1.tgz: - resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/estree-walker/-/estree-walker-1.0.1.tgz} - name: estree-walker - version: 1.0.1 - - estree-walker@https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz} - name: estree-walker - version: 2.0.2 - - esutils@https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz} - name: esutils - version: 2.0.3 - engines: {node: '>=0.10.0'} - - esutils@https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz} - name: esutils - version: 2.0.3 - engines: {node: '>=0.10.0'} - - etag@https://registry.npmmirror.com/etag/-/etag-1.8.1.tgz: - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/etag/-/etag-1.8.1.tgz} - name: etag - version: 1.8.1 - engines: {node: '>= 0.6'} - - eventemitter3@https://registry.npmmirror.com/eventemitter3/-/eventemitter3-4.0.7.tgz: - resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/eventemitter3/-/eventemitter3-4.0.7.tgz} - name: eventemitter3 - version: 4.0.7 - - exec-buffer@https://registry.npmmirror.com/exec-buffer/-/exec-buffer-3.2.0.tgz: - resolution: {integrity: sha512-wsiD+2Tp6BWHoVv3B+5Dcx6E7u5zky+hUwOHjuH2hKSLR3dvRmX8fk8UD8uqQixHs4Wk6eDmiegVrMPjKj7wpA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/exec-buffer/-/exec-buffer-3.2.0.tgz} - name: exec-buffer - version: 3.2.0 - engines: {node: '>=4'} - - execa@https://registry.npmjs.org/execa/-/execa-0.7.0.tgz: - resolution: {integrity: sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/execa/-/execa-0.7.0.tgz} - name: execa - version: 0.7.0 - engines: {node: '>=4'} - - execa@https://registry.npmjs.org/execa/-/execa-1.0.0.tgz: - resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/execa/-/execa-1.0.0.tgz} - name: execa - version: 1.0.0 - engines: {node: '>=6'} - - execa@https://registry.npmmirror.com/execa/-/execa-0.7.0.tgz: - resolution: {integrity: sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/execa/-/execa-0.7.0.tgz} - name: execa - version: 0.7.0 - engines: {node: '>=4'} - - execa@https://registry.npmmirror.com/execa/-/execa-1.0.0.tgz: - resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/execa/-/execa-1.0.0.tgz} - name: execa - version: 1.0.0 - engines: {node: '>=6'} - - execa@https://registry.npmmirror.com/execa/-/execa-4.1.0.tgz: - resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/execa/-/execa-4.1.0.tgz} - name: execa - version: 4.1.0 - engines: {node: '>=10'} - - execa@https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz} - name: execa - version: 5.1.1 - engines: {node: '>=10'} - - execall@https://registry.npmmirror.com/execall/-/execall-2.0.0.tgz: - resolution: {integrity: sha512-0FU2hZ5Hh6iQnarpRtQurM/aAvp3RIbfvgLHrcqJYzhXyV2KFruhuChf9NC6waAhiUR7FFtlugkI4p7f2Fqlow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/execall/-/execall-2.0.0.tgz} - name: execall - version: 2.0.0 - engines: {node: '>=8'} - - executable@https://registry.npmjs.org/executable/-/executable-4.1.1.tgz: - resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/executable/-/executable-4.1.1.tgz} - name: executable - version: 4.1.1 - engines: {node: '>=4'} - - exit-on-epipe@https://registry.npmmirror.com/exit-on-epipe/-/exit-on-epipe-1.0.1.tgz: - resolution: {integrity: sha512-h2z5mrROTxce56S+pnvAV890uu7ls7f1kEvVGJbw1OlFH3/mlJ5bkXu0KRyW94v37zzHPiUd55iLn3DA7TjWpw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/exit-on-epipe/-/exit-on-epipe-1.0.1.tgz} - name: exit-on-epipe - version: 1.0.1 - engines: {node: '>=0.8'} - - exit@https://registry.npmmirror.com/exit/-/exit-0.1.2.tgz: - resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/exit/-/exit-0.1.2.tgz} - name: exit - version: 0.1.2 - engines: {node: '>= 0.8.0'} - - expand-brackets@https://registry.npmmirror.com/expand-brackets/-/expand-brackets-2.1.4.tgz: - resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/expand-brackets/-/expand-brackets-2.1.4.tgz} - name: expand-brackets - version: 2.1.4 - engines: {node: '>=0.10.0'} - - expand-tilde@https://registry.npmmirror.com/expand-tilde/-/expand-tilde-2.0.2.tgz: - resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/expand-tilde/-/expand-tilde-2.0.2.tgz} - name: expand-tilde - version: 2.0.2 - engines: {node: '>=0.10.0'} - - expect@https://registry.npmmirror.com/expect/-/expect-27.5.1.tgz: - resolution: {integrity: sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/expect/-/expect-27.5.1.tgz} - name: expect - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - ext-list@https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz: - resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz} - name: ext-list - version: 2.2.2 - engines: {node: '>=0.10.0'} - - ext-list@https://registry.npmmirror.com/ext-list/-/ext-list-2.2.2.tgz: - resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ext-list/-/ext-list-2.2.2.tgz} - name: ext-list - version: 2.2.2 - engines: {node: '>=0.10.0'} - - ext-name@https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz: - resolution: {integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz} - name: ext-name - version: 5.0.0 - engines: {node: '>=4'} - - ext-name@https://registry.npmmirror.com/ext-name/-/ext-name-5.0.0.tgz: - resolution: {integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ext-name/-/ext-name-5.0.0.tgz} - name: ext-name - version: 5.0.0 - engines: {node: '>=4'} - - extend-shallow@https://registry.npmmirror.com/extend-shallow/-/extend-shallow-2.0.1.tgz: - resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/extend-shallow/-/extend-shallow-2.0.1.tgz} - name: extend-shallow - version: 2.0.1 - engines: {node: '>=0.10.0'} - - extend-shallow@https://registry.npmmirror.com/extend-shallow/-/extend-shallow-3.0.2.tgz: - resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/extend-shallow/-/extend-shallow-3.0.2.tgz} - name: extend-shallow - version: 3.0.2 - engines: {node: '>=0.10.0'} - - external-editor@https://registry.npmmirror.com/external-editor/-/external-editor-3.1.0.tgz: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/external-editor/-/external-editor-3.1.0.tgz} - name: external-editor - version: 3.1.0 - engines: {node: '>=4'} - - extglob@https://registry.npmmirror.com/extglob/-/extglob-2.0.4.tgz: - resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/extglob/-/extglob-2.0.4.tgz} - name: extglob - version: 2.0.4 - engines: {node: '>=0.10.0'} - - fast-deep-equal@https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz} - name: fast-deep-equal - version: 3.1.3 - - fast-deep-equal@https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz} - name: fast-deep-equal - version: 3.1.3 - - fast-diff@https://registry.npmmirror.com/fast-diff/-/fast-diff-1.3.0.tgz: - resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/fast-diff/-/fast-diff-1.3.0.tgz} - name: fast-diff - version: 1.3.0 - - fast-glob@https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.1.tgz: - resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.1.tgz} - name: fast-glob - version: 3.3.1 - engines: {node: '>=8.6.0'} - - fast-json-stable-stringify@https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz} - name: fast-json-stable-stringify - version: 2.1.0 - - fast-json-stable-stringify@https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz} - name: fast-json-stable-stringify - version: 2.1.0 - - fast-levenshtein@https://registry.npmmirror.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz: - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz} - name: fast-levenshtein - version: 2.0.6 - - fast-xml-parser@https://registry.npmmirror.com/fast-xml-parser/-/fast-xml-parser-4.2.7.tgz: - resolution: {integrity: sha512-J8r6BriSLO1uj2miOk1NW0YVm8AGOOu3Si2HQp/cSmo6EA4m3fcwu2WKjJ4RK9wMLBtg69y1kS8baDiQBR41Ig==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/fast-xml-parser/-/fast-xml-parser-4.2.7.tgz} - name: fast-xml-parser - version: 4.2.7 - hasBin: true - - fastest-levenshtein@https://registry.npmmirror.com/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz: - resolution: {integrity: sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz} - name: fastest-levenshtein - version: 1.0.12 - - fastest-levenshtein@https://registry.npmmirror.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz: - resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz} - name: fastest-levenshtein - version: 1.0.16 - engines: {node: '>= 4.9.1'} - - fastq@https://registry.npmmirror.com/fastq/-/fastq-1.15.0.tgz: - resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/fastq/-/fastq-1.15.0.tgz} - name: fastq - version: 1.15.0 - - fb-watchman@https://registry.npmmirror.com/fb-watchman/-/fb-watchman-2.0.2.tgz: - resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/fb-watchman/-/fb-watchman-2.0.2.tgz} - name: fb-watchman - version: 2.0.2 - - fd-slicer@https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz: - resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz} - name: fd-slicer - version: 1.1.0 - - fd-slicer@https://registry.npmmirror.com/fd-slicer/-/fd-slicer-1.1.0.tgz: - resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/fd-slicer/-/fd-slicer-1.1.0.tgz} - name: fd-slicer - version: 1.1.0 - - fflate@https://registry.npmmirror.com/fflate/-/fflate-0.4.8.tgz: - resolution: {integrity: sha512-FJqqoDBR00Mdj9ppamLa/Y7vxm+PRmNWA67N846RvsoYVMKB4q3y/de5PA7gUmRMYK/8CMz2GDZQmCRN1wBcWA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/fflate/-/fflate-0.4.8.tgz} - name: fflate - version: 0.4.8 - - figures@https://registry.npmmirror.com/figures/-/figures-1.7.0.tgz: - resolution: {integrity: sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/figures/-/figures-1.7.0.tgz} - name: figures - version: 1.7.0 - engines: {node: '>=0.10.0'} - - figures@https://registry.npmmirror.com/figures/-/figures-2.0.0.tgz: - resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/figures/-/figures-2.0.0.tgz} - name: figures - version: 2.0.0 - engines: {node: '>=4'} - - figures@https://registry.npmmirror.com/figures/-/figures-3.2.0.tgz: - resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/figures/-/figures-3.2.0.tgz} - name: figures - version: 3.2.0 - engines: {node: '>=8'} - - file-entry-cache@https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz: - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz} - name: file-entry-cache - version: 6.0.1 - engines: {node: ^10.12.0 || >=12.0.0} - - file-type@https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz: - resolution: {integrity: sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz} - name: file-type - version: 3.9.0 - engines: {node: '>=0.10.0'} - - file-type@https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz: - resolution: {integrity: sha512-f2UbFQEk7LXgWpi5ntcO86OeA/cC80fuDDDaX/fZ2ZGel+AF7leRQqBBW1eJNiiQkrZlAoM6P+VYP5P6bOlDEQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz} - name: file-type - version: 4.4.0 - engines: {node: '>=4'} - - file-type@https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz: - resolution: {integrity: sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz} - name: file-type - version: 5.2.0 - engines: {node: '>=4'} - - file-type@https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz: - resolution: {integrity: sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz} - name: file-type - version: 6.2.0 - engines: {node: '>=4'} - - file-type@https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz: - resolution: {integrity: sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz} - name: file-type - version: 8.1.0 - engines: {node: '>=6'} - - file-type@https://registry.npmmirror.com/file-type/-/file-type-10.11.0.tgz: - resolution: {integrity: sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/file-type/-/file-type-10.11.0.tgz} - name: file-type - version: 10.11.0 - engines: {node: '>=6'} - - file-type@https://registry.npmmirror.com/file-type/-/file-type-12.4.2.tgz: - resolution: {integrity: sha512-UssQP5ZgIOKelfsaB5CuGAL+Y+q7EmONuiwF3N5HAH0t27rvrttgi6Ra9k/+DVaY9UF6+ybxu5pOXLUdA8N7Vg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/file-type/-/file-type-12.4.2.tgz} - name: file-type - version: 12.4.2 - engines: {node: '>=8'} - - file-type@https://registry.npmmirror.com/file-type/-/file-type-3.9.0.tgz: - resolution: {integrity: sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/file-type/-/file-type-3.9.0.tgz} - name: file-type - version: 3.9.0 - engines: {node: '>=0.10.0'} - - file-type@https://registry.npmmirror.com/file-type/-/file-type-5.2.0.tgz: - resolution: {integrity: sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/file-type/-/file-type-5.2.0.tgz} - name: file-type - version: 5.2.0 - engines: {node: '>=4'} - - file-type@https://registry.npmmirror.com/file-type/-/file-type-6.2.0.tgz: - resolution: {integrity: sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/file-type/-/file-type-6.2.0.tgz} - name: file-type - version: 6.2.0 - engines: {node: '>=4'} - - filelist@https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz: - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz} - name: filelist - version: 1.0.4 - - filelist@https://registry.npmmirror.com/filelist/-/filelist-1.0.4.tgz: - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/filelist/-/filelist-1.0.4.tgz} - name: filelist - version: 1.0.4 - - filename-reserved-regex@https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz: - resolution: {integrity: sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz} - name: filename-reserved-regex - version: 2.0.0 - engines: {node: '>=4'} - - filename-reserved-regex@https://registry.npmmirror.com/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz: - resolution: {integrity: sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz} - name: filename-reserved-regex - version: 2.0.0 - engines: {node: '>=4'} - - filenamify@https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz: - resolution: {integrity: sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz} - name: filenamify - version: 2.1.0 - engines: {node: '>=4'} - - filenamify@https://registry.npmmirror.com/filenamify/-/filenamify-2.1.0.tgz: - resolution: {integrity: sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/filenamify/-/filenamify-2.1.0.tgz} - name: filenamify - version: 2.1.0 - engines: {node: '>=4'} - - fill-range@https://registry.npmmirror.com/fill-range/-/fill-range-4.0.0.tgz: - resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/fill-range/-/fill-range-4.0.0.tgz} - name: fill-range - version: 4.0.0 - engines: {node: '>=0.10.0'} - - fill-range@https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz: - resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz} - name: fill-range - version: 7.0.1 - engines: {node: '>=8'} - - finalhandler@https://registry.npmmirror.com/finalhandler/-/finalhandler-1.1.2.tgz: - resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/finalhandler/-/finalhandler-1.1.2.tgz} - name: finalhandler - version: 1.1.2 - engines: {node: '>= 0.8'} - - find-node-modules@https://registry.npmmirror.com/find-node-modules/-/find-node-modules-2.1.3.tgz: - resolution: {integrity: sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/find-node-modules/-/find-node-modules-2.1.3.tgz} - name: find-node-modules - version: 2.1.3 - - find-root@https://registry.npmmirror.com/find-root/-/find-root-1.1.0.tgz: - resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/find-root/-/find-root-1.1.0.tgz} - name: find-root - version: 1.1.0 - - find-up@https://registry.npmmirror.com/find-up/-/find-up-1.1.2.tgz: - resolution: {integrity: sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/find-up/-/find-up-1.1.2.tgz} - name: find-up - version: 1.1.2 - engines: {node: '>=0.10.0'} - - find-up@https://registry.npmmirror.com/find-up/-/find-up-2.1.0.tgz: - resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/find-up/-/find-up-2.1.0.tgz} - name: find-up - version: 2.1.0 - engines: {node: '>=4'} - - find-up@https://registry.npmmirror.com/find-up/-/find-up-4.1.0.tgz: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/find-up/-/find-up-4.1.0.tgz} - name: find-up - version: 4.1.0 - engines: {node: '>=8'} - - find-up@https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz} - name: find-up - version: 5.0.0 - engines: {node: '>=10'} - - find-versions@https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz: - resolution: {integrity: sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz} - name: find-versions - version: 3.2.0 - engines: {node: '>=6'} - - findup-sync@https://registry.npmmirror.com/findup-sync/-/findup-sync-4.0.0.tgz: - resolution: {integrity: sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/findup-sync/-/findup-sync-4.0.0.tgz} - name: findup-sync - version: 4.0.0 - engines: {node: '>= 8'} - - flat-cache@https://registry.npmmirror.com/flat-cache/-/flat-cache-3.0.4.tgz: - resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/flat-cache/-/flat-cache-3.0.4.tgz} - name: flat-cache - version: 3.0.4 - engines: {node: ^10.12.0 || >=12.0.0} - - flatted@https://registry.npmmirror.com/flatted/-/flatted-3.2.7.tgz: - resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/flatted/-/flatted-3.2.7.tgz} - name: flatted - version: 3.2.7 - - follow-redirects@https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.2.tgz: - resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.2.tgz} - name: follow-redirects - version: 1.15.2 - engines: {node: '>=4.0'} - peerDependencies: - debug: '*' - peerDependenciesMeta: - debug: - optional: true - - for-each@https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz} - name: for-each - version: 0.3.3 - - for-each@https://registry.npmmirror.com/for-each/-/for-each-0.3.3.tgz: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/for-each/-/for-each-0.3.3.tgz} - name: for-each - version: 0.3.3 - - for-in@https://registry.npmmirror.com/for-in/-/for-in-1.0.2.tgz: - resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/for-in/-/for-in-1.0.2.tgz} - name: for-in - version: 1.0.2 - engines: {node: '>=0.10.0'} - - form-data@https://registry.npmmirror.com/form-data/-/form-data-3.0.1.tgz: - resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/form-data/-/form-data-3.0.1.tgz} - name: form-data - version: 3.0.1 - engines: {node: '>= 6'} - - frac@https://registry.npmmirror.com/frac/-/frac-1.1.2.tgz: - resolution: {integrity: sha512-w/XBfkibaTl3YDqASwfDUqkna4Z2p9cFSr1aHDt0WoMTECnRfBOv2WArlZILlqgWlmdIlALXGpM2AOhEk5W3IA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/frac/-/frac-1.1.2.tgz} - name: frac - version: 1.1.2 - engines: {node: '>=0.8'} - - fraction.js@https://registry.npmmirror.com/fraction.js/-/fraction.js-4.2.0.tgz: - resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/fraction.js/-/fraction.js-4.2.0.tgz} - name: fraction.js - version: 4.2.0 - - fragment-cache@https://registry.npmmirror.com/fragment-cache/-/fragment-cache-0.2.1.tgz: - resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/fragment-cache/-/fragment-cache-0.2.1.tgz} - name: fragment-cache - version: 0.2.1 - engines: {node: '>=0.10.0'} - - from2@https://registry.npmjs.org/from2/-/from2-2.3.0.tgz: - resolution: {integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/from2/-/from2-2.3.0.tgz} - name: from2 - version: 2.3.0 - - fs-constants@https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz: - resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz} - name: fs-constants - version: 1.0.0 - - fs-constants@https://registry.npmmirror.com/fs-constants/-/fs-constants-1.0.0.tgz: - resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/fs-constants/-/fs-constants-1.0.0.tgz} - name: fs-constants - version: 1.0.0 - - fs-extra@https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz: - resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz} - name: fs-extra - version: 9.1.0 - engines: {node: '>=10'} - - fs-extra@https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz: - resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz} - name: fs-extra - version: 10.1.0 - engines: {node: '>=12'} - - fs-extra@https://registry.npmmirror.com/fs-extra/-/fs-extra-8.1.0.tgz: - resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/fs-extra/-/fs-extra-8.1.0.tgz} - name: fs-extra - version: 8.1.0 - engines: {node: '>=6 <7 || >=8'} - - fs.realpath@https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz} - name: fs.realpath - version: 1.0.0 - - fs.realpath@https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz} - name: fs.realpath - version: 1.0.0 - - fsevents@https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz: - resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz} - name: fsevents - version: 2.3.2 - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - - function-bind@https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz: - resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz} - name: function-bind - version: 1.1.1 - - function-bind@https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz: - resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz} - name: function-bind - version: 1.1.1 - - function.prototype.name@https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz: - resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz} - name: function.prototype.name - version: 1.1.5 - engines: {node: '>= 0.4'} - - function.prototype.name@https://registry.npmmirror.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz: - resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz} - name: function.prototype.name - version: 1.1.5 - engines: {node: '>= 0.4'} - - functional-red-black-tree@https://registry.npmmirror.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz: - resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz} - name: functional-red-black-tree - version: 1.0.1 - - functions-have-names@https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz} - name: functions-have-names - version: 1.2.3 - - functions-have-names@https://registry.npmmirror.com/functions-have-names/-/functions-have-names-1.2.3.tgz: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/functions-have-names/-/functions-have-names-1.2.3.tgz} - name: functions-have-names - version: 1.2.3 - - gensync@https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz} - name: gensync - version: 1.0.0-beta.2 - engines: {node: '>=6.9.0'} - - gensync@https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz} - name: gensync - version: 1.0.0-beta.2 - engines: {node: '>=6.9.0'} - - get-caller-file@https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz} - name: get-caller-file - version: 2.0.5 - engines: {node: 6.* || 8.* || >= 10.*} - - get-intrinsic@https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz: - resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz} - name: get-intrinsic - version: 1.2.1 - - get-intrinsic@https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz: - resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz} - name: get-intrinsic - version: 1.2.1 - - get-own-enumerable-property-symbols@https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz: - resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz} - name: get-own-enumerable-property-symbols - version: 3.0.2 - - get-package-type@https://registry.npmmirror.com/get-package-type/-/get-package-type-0.1.0.tgz: - resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/get-package-type/-/get-package-type-0.1.0.tgz} - name: get-package-type - version: 0.1.0 - engines: {node: '>=8.0.0'} - - get-pkg-repo@https://registry.npmmirror.com/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz: - resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz} - name: get-pkg-repo - version: 4.2.1 - engines: {node: '>=6.9.0'} - hasBin: true - - get-proxy@https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz: - resolution: {integrity: sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz} - name: get-proxy - version: 2.1.0 - engines: {node: '>=4'} - - get-proxy@https://registry.npmmirror.com/get-proxy/-/get-proxy-2.1.0.tgz: - resolution: {integrity: sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/get-proxy/-/get-proxy-2.1.0.tgz} - name: get-proxy - version: 2.1.0 - engines: {node: '>=4'} - - get-stdin@https://registry.npmmirror.com/get-stdin/-/get-stdin-4.0.1.tgz: - resolution: {integrity: sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/get-stdin/-/get-stdin-4.0.1.tgz} - name: get-stdin - version: 4.0.1 - engines: {node: '>=0.10.0'} - - get-stdin@https://registry.npmmirror.com/get-stdin/-/get-stdin-8.0.0.tgz: - resolution: {integrity: sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/get-stdin/-/get-stdin-8.0.0.tgz} - name: get-stdin - version: 8.0.0 - engines: {node: '>=10'} - - get-stream@https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz: - resolution: {integrity: sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz} - name: get-stream - version: 2.3.1 - engines: {node: '>=0.10.0'} - - get-stream@https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz: - resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz} - name: get-stream - version: 3.0.0 - engines: {node: '>=4'} - - get-stream@https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz: - resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz} - name: get-stream - version: 4.1.0 - engines: {node: '>=6'} - - get-stream@https://registry.npmmirror.com/get-stream/-/get-stream-2.3.1.tgz: - resolution: {integrity: sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/get-stream/-/get-stream-2.3.1.tgz} - name: get-stream - version: 2.3.1 - engines: {node: '>=0.10.0'} - - get-stream@https://registry.npmmirror.com/get-stream/-/get-stream-3.0.0.tgz: - resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/get-stream/-/get-stream-3.0.0.tgz} - name: get-stream - version: 3.0.0 - engines: {node: '>=4'} - - get-stream@https://registry.npmmirror.com/get-stream/-/get-stream-4.1.0.tgz: - resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/get-stream/-/get-stream-4.1.0.tgz} - name: get-stream - version: 4.1.0 - engines: {node: '>=6'} - - get-stream@https://registry.npmmirror.com/get-stream/-/get-stream-5.2.0.tgz: - resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/get-stream/-/get-stream-5.2.0.tgz} - name: get-stream - version: 5.2.0 - engines: {node: '>=8'} - - get-stream@https://registry.npmmirror.com/get-stream/-/get-stream-6.0.1.tgz: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/get-stream/-/get-stream-6.0.1.tgz} - name: get-stream - version: 6.0.1 - engines: {node: '>=10'} - - get-symbol-description@https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz: - resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz} - name: get-symbol-description - version: 1.0.0 - engines: {node: '>= 0.4'} - - get-symbol-description@https://registry.npmmirror.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz: - resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz} - name: get-symbol-description - version: 1.0.0 - engines: {node: '>= 0.4'} - - get-value@https://registry.npmmirror.com/get-value/-/get-value-2.0.6.tgz: - resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/get-value/-/get-value-2.0.6.tgz} - name: get-value - version: 2.0.6 - engines: {node: '>=0.10.0'} - - gifsicle@https://registry.npmmirror.com/gifsicle/-/gifsicle-5.2.0.tgz: - resolution: {integrity: sha512-vOIS3j0XoTCxq9pkGj43gEix82RkI5FveNgaFZutjbaui/HH+4fR8Y56dwXDuxYo8hR4xOo6/j2h1WHoQW6XLw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/gifsicle/-/gifsicle-5.2.0.tgz} - name: gifsicle - version: 5.2.0 - engines: {node: '>=10'} - hasBin: true - - git-raw-commits@https://registry.npmmirror.com/git-raw-commits/-/git-raw-commits-2.0.11.tgz: - resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/git-raw-commits/-/git-raw-commits-2.0.11.tgz} - name: git-raw-commits - version: 2.0.11 - engines: {node: '>=10'} - hasBin: true - - git-remote-origin-url@https://registry.npmmirror.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz: - resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz} - name: git-remote-origin-url - version: 2.0.0 - engines: {node: '>=4'} - - git-semver-tags@https://registry.npmmirror.com/git-semver-tags/-/git-semver-tags-4.1.1.tgz: - resolution: {integrity: sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/git-semver-tags/-/git-semver-tags-4.1.1.tgz} - name: git-semver-tags - version: 4.1.1 - engines: {node: '>=10'} - hasBin: true - - gitconfiglocal@https://registry.npmmirror.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz: - resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz} - name: gitconfiglocal - version: 1.0.0 - - glob-parent@https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz} - name: glob-parent - version: 5.1.2 - engines: {node: '>= 6'} - - glob-parent@https://registry.npmmirror.com/glob-parent/-/glob-parent-6.0.2.tgz: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/glob-parent/-/glob-parent-6.0.2.tgz} - name: glob-parent - version: 6.0.2 - engines: {node: '>=10.13.0'} - - glob@https://registry.npmjs.org/glob/-/glob-7.2.3.tgz: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/glob/-/glob-7.2.3.tgz} - name: glob - version: 7.2.3 - - glob@https://registry.npmmirror.com/glob/-/glob-7.1.4.tgz: - resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/glob/-/glob-7.1.4.tgz} - name: glob - version: 7.1.4 - - glob@https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz} - name: glob - version: 7.2.3 - - global-dirs@https://registry.npmmirror.com/global-dirs/-/global-dirs-0.1.1.tgz: - resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/global-dirs/-/global-dirs-0.1.1.tgz} - name: global-dirs - version: 0.1.1 - engines: {node: '>=4'} - - global-modules@https://registry.npmmirror.com/global-modules/-/global-modules-1.0.0.tgz: - resolution: {integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/global-modules/-/global-modules-1.0.0.tgz} - name: global-modules - version: 1.0.0 - engines: {node: '>=0.10.0'} - - global-modules@https://registry.npmmirror.com/global-modules/-/global-modules-2.0.0.tgz: - resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/global-modules/-/global-modules-2.0.0.tgz} - name: global-modules - version: 2.0.0 - engines: {node: '>=6'} - - global-prefix@https://registry.npmmirror.com/global-prefix/-/global-prefix-1.0.2.tgz: - resolution: {integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/global-prefix/-/global-prefix-1.0.2.tgz} - name: global-prefix - version: 1.0.2 - engines: {node: '>=0.10.0'} - - global-prefix@https://registry.npmmirror.com/global-prefix/-/global-prefix-3.0.0.tgz: - resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/global-prefix/-/global-prefix-3.0.0.tgz} - name: global-prefix - version: 3.0.0 - engines: {node: '>=6'} - - globals@https://registry.npmjs.org/globals/-/globals-11.12.0.tgz: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/globals/-/globals-11.12.0.tgz} - name: globals - version: 11.12.0 - engines: {node: '>=4'} - - globals@https://registry.npmmirror.com/globals/-/globals-11.12.0.tgz: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/globals/-/globals-11.12.0.tgz} - name: globals - version: 11.12.0 - engines: {node: '>=4'} - - globals@https://registry.npmmirror.com/globals/-/globals-13.21.0.tgz: - resolution: {integrity: sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/globals/-/globals-13.21.0.tgz} - name: globals - version: 13.21.0 - engines: {node: '>=8'} - - globalthis@https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz: - resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz} - name: globalthis - version: 1.0.3 - engines: {node: '>= 0.4'} - - globalthis@https://registry.npmmirror.com/globalthis/-/globalthis-1.0.3.tgz: - resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/globalthis/-/globalthis-1.0.3.tgz} - name: globalthis - version: 1.0.3 - engines: {node: '>= 0.4'} - - globby@https://registry.npmmirror.com/globby/-/globby-10.0.2.tgz: - resolution: {integrity: sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/globby/-/globby-10.0.2.tgz} - name: globby - version: 10.0.2 - engines: {node: '>=8'} - - globby@https://registry.npmmirror.com/globby/-/globby-11.1.0.tgz: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/globby/-/globby-11.1.0.tgz} - name: globby - version: 11.1.0 - engines: {node: '>=10'} - - globjoin@https://registry.npmmirror.com/globjoin/-/globjoin-0.1.4.tgz: - resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/globjoin/-/globjoin-0.1.4.tgz} - name: globjoin - version: 0.1.4 - - good-listener@https://registry.npmmirror.com/good-listener/-/good-listener-1.2.2.tgz: - resolution: {integrity: sha512-goW1b+d9q/HIwbVYZzZ6SsTr4IgE+WA44A0GmPIQstuOrgsFcT7VEJ48nmr9GaRtNu0XTKacFLGnBPAM6Afouw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/good-listener/-/good-listener-1.2.2.tgz} - name: good-listener - version: 1.2.2 - - gopd@https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz} - name: gopd - version: 1.0.1 - - gopd@https://registry.npmmirror.com/gopd/-/gopd-1.0.1.tgz: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/gopd/-/gopd-1.0.1.tgz} - name: gopd - version: 1.0.1 - - got@https://registry.npmjs.org/got/-/got-8.3.2.tgz: - resolution: {integrity: sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/got/-/got-8.3.2.tgz} - name: got - version: 8.3.2 - engines: {node: '>=4'} - - got@https://registry.npmmirror.com/got/-/got-7.1.0.tgz: - resolution: {integrity: sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/got/-/got-7.1.0.tgz} - name: got - version: 7.1.0 - engines: {node: '>=4'} - - graceful-fs@https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz} - name: graceful-fs - version: 4.2.11 - - graceful-fs@https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz} - name: graceful-fs - version: 4.2.11 - - gradient-parser@https://registry.npmmirror.com/gradient-parser/-/gradient-parser-1.0.2.tgz: - resolution: {integrity: sha512-gR6nY33xC9yJoH4wGLQtZQMXDi6RI3H37ERu7kQCVUzlXjNedpZM7xcA489Opwbq0BSGohtWGsWsntupmxelMg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/gradient-parser/-/gradient-parser-1.0.2.tgz} - name: gradient-parser - version: 1.0.2 - engines: {node: '>=0.10.0'} - - grapheme-splitter@https://registry.npmmirror.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz: - resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz} - name: grapheme-splitter - version: 1.0.4 - - handlebars@https://registry.npmmirror.com/handlebars/-/handlebars-4.7.8.tgz: - resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/handlebars/-/handlebars-4.7.8.tgz} - name: handlebars - version: 4.7.8 - engines: {node: '>=0.4.7'} - hasBin: true - - hard-rejection@https://registry.npmmirror.com/hard-rejection/-/hard-rejection-2.1.0.tgz: - resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/hard-rejection/-/hard-rejection-2.1.0.tgz} - name: hard-rejection - version: 2.1.0 - engines: {node: '>=6'} - - has-ansi@https://registry.npmmirror.com/has-ansi/-/has-ansi-2.0.0.tgz: - resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/has-ansi/-/has-ansi-2.0.0.tgz} - name: has-ansi - version: 2.0.0 - engines: {node: '>=0.10.0'} - - has-bigints@https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz} - name: has-bigints - version: 1.0.2 - - has-bigints@https://registry.npmmirror.com/has-bigints/-/has-bigints-1.0.2.tgz: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/has-bigints/-/has-bigints-1.0.2.tgz} - name: has-bigints - version: 1.0.2 - - has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz} - name: has-flag - version: 3.0.0 - engines: {node: '>=4'} - - has-flag@https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz} - name: has-flag - version: 4.0.0 - engines: {node: '>=8'} - - has-flag@https://registry.npmmirror.com/has-flag/-/has-flag-1.0.0.tgz: - resolution: {integrity: sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/has-flag/-/has-flag-1.0.0.tgz} - name: has-flag - version: 1.0.0 - engines: {node: '>=0.10.0'} - - has-flag@https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz} - name: has-flag - version: 3.0.0 - engines: {node: '>=4'} - - has-flag@https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz} - name: has-flag - version: 4.0.0 - engines: {node: '>=8'} - - has-property-descriptors@https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz: - resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz} - name: has-property-descriptors - version: 1.0.0 - - has-property-descriptors@https://registry.npmmirror.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz: - resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz} - name: has-property-descriptors - version: 1.0.0 - - has-proto@https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz: - resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz} - name: has-proto - version: 1.0.1 - engines: {node: '>= 0.4'} - - has-proto@https://registry.npmmirror.com/has-proto/-/has-proto-1.0.1.tgz: - resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/has-proto/-/has-proto-1.0.1.tgz} - name: has-proto - version: 1.0.1 - engines: {node: '>= 0.4'} - - has-symbol-support-x@https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz: - resolution: {integrity: sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz} - name: has-symbol-support-x - version: 1.4.2 - - has-symbol-support-x@https://registry.npmmirror.com/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz: - resolution: {integrity: sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz} - name: has-symbol-support-x - version: 1.4.2 - - has-symbols@https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz} - name: has-symbols - version: 1.0.3 - engines: {node: '>= 0.4'} - - has-symbols@https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz} - name: has-symbols - version: 1.0.3 - engines: {node: '>= 0.4'} - - has-to-string-tag-x@https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz: - resolution: {integrity: sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz} - name: has-to-string-tag-x - version: 1.4.1 - - has-to-string-tag-x@https://registry.npmmirror.com/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz: - resolution: {integrity: sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz} - name: has-to-string-tag-x - version: 1.4.1 - - has-tostringtag@https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz: - resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz} - name: has-tostringtag - version: 1.0.0 - engines: {node: '>= 0.4'} - - has-tostringtag@https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz: - resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz} - name: has-tostringtag - version: 1.0.0 - engines: {node: '>= 0.4'} - - has-value@https://registry.npmmirror.com/has-value/-/has-value-0.3.1.tgz: - resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/has-value/-/has-value-0.3.1.tgz} - name: has-value - version: 0.3.1 - engines: {node: '>=0.10.0'} - - has-value@https://registry.npmmirror.com/has-value/-/has-value-1.0.0.tgz: - resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/has-value/-/has-value-1.0.0.tgz} - name: has-value - version: 1.0.0 - engines: {node: '>=0.10.0'} - - has-values@https://registry.npmmirror.com/has-values/-/has-values-0.1.4.tgz: - resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/has-values/-/has-values-0.1.4.tgz} - name: has-values - version: 0.1.4 - engines: {node: '>=0.10.0'} - - has-values@https://registry.npmmirror.com/has-values/-/has-values-1.0.0.tgz: - resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/has-values/-/has-values-1.0.0.tgz} - name: has-values - version: 1.0.0 - engines: {node: '>=0.10.0'} - - has@https://registry.npmjs.org/has/-/has-1.0.3.tgz: - resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/has/-/has-1.0.3.tgz} - name: has - version: 1.0.3 - engines: {node: '>= 0.4.0'} - - has@https://registry.npmmirror.com/has/-/has-1.0.3.tgz: - resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/has/-/has-1.0.3.tgz} - name: has - version: 1.0.3 - engines: {node: '>= 0.4.0'} - - hash-sum@https://registry.npmmirror.com/hash-sum/-/hash-sum-2.0.0.tgz: - resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/hash-sum/-/hash-sum-2.0.0.tgz} - name: hash-sum - version: 2.0.0 - - he@https://registry.npmmirror.com/he/-/he-1.2.0.tgz: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/he/-/he-1.2.0.tgz} - name: he - version: 1.2.0 - hasBin: true - - header-case@https://registry.npmmirror.com/header-case/-/header-case-2.0.4.tgz: - resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/header-case/-/header-case-2.0.4.tgz} - name: header-case - version: 2.0.4 - - homedir-polyfill@https://registry.npmmirror.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz: - resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz} - name: homedir-polyfill - version: 1.0.3 - engines: {node: '>=0.10.0'} - - hosted-git-info@https://registry.npmmirror.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz: - resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz} - name: hosted-git-info - version: 2.8.9 - - hosted-git-info@https://registry.npmmirror.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz: - resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz} - name: hosted-git-info - version: 4.1.0 - engines: {node: '>=10'} - - html-encoding-sniffer@https://registry.npmmirror.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz: - resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz} - name: html-encoding-sniffer - version: 2.0.1 - engines: {node: '>=10'} - - html-encoding-sniffer@https://registry.npmmirror.com/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz: - resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz} - name: html-encoding-sniffer - version: 3.0.0 - engines: {node: '>=12'} - - html-escaper@https://registry.npmmirror.com/html-escaper/-/html-escaper-2.0.2.tgz: - resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/html-escaper/-/html-escaper-2.0.2.tgz} - name: html-escaper - version: 2.0.2 - - html-minifier-terser@https://registry.npmmirror.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz: - resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz} - name: html-minifier-terser - version: 6.1.0 - engines: {node: '>=12'} - hasBin: true - - html-tags@https://registry.npmmirror.com/html-tags/-/html-tags-3.3.1.tgz: - resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/html-tags/-/html-tags-3.3.1.tgz} - name: html-tags - version: 3.3.1 - engines: {node: '>=8'} - - html2canvas@https://registry.npmjs.org/html2canvas/-/html2canvas-1.4.1.tgz: - resolution: {integrity: sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/html2canvas/-/html2canvas-1.4.1.tgz} - name: html2canvas - version: 1.4.1 - engines: {node: '>=8.0.0'} - - html2canvas@https://registry.npmmirror.com/html2canvas/-/html2canvas-1.4.1.tgz: - resolution: {integrity: sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/html2canvas/-/html2canvas-1.4.1.tgz} - name: html2canvas - version: 1.4.1 - engines: {node: '>=8.0.0'} - - htmlparser2@https://registry.npmmirror.com/htmlparser2/-/htmlparser2-3.10.1.tgz: - resolution: {integrity: sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/htmlparser2/-/htmlparser2-3.10.1.tgz} - name: htmlparser2 - version: 3.10.1 - - htmlparser2@https://registry.npmmirror.com/htmlparser2/-/htmlparser2-7.2.0.tgz: - resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/htmlparser2/-/htmlparser2-7.2.0.tgz} - name: htmlparser2 - version: 7.2.0 - - http-cache-semantics@https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz: - resolution: {integrity: sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz} - name: http-cache-semantics - version: 3.8.1 - - http-proxy-agent@https://registry.npmmirror.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz: - resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz} - name: http-proxy-agent - version: 4.0.1 - engines: {node: '>= 6'} - - http-proxy@https://registry.npmmirror.com/http-proxy/-/http-proxy-1.18.1.tgz: - resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/http-proxy/-/http-proxy-1.18.1.tgz} - name: http-proxy - version: 1.18.1 - engines: {node: '>=8.0.0'} - - http-server@https://registry.npmmirror.com/http-server/-/http-server-14.0.0.tgz: - resolution: {integrity: sha512-XTePIXAo5x72bI8SlKFSqsg7UuSHwsOa4+RJIe56YeMUvfTvGDy7TxFkTEhfIRmM/Dnf6x29ut541ythSBZdkQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/http-server/-/http-server-14.0.0.tgz} - name: http-server - version: 14.0.0 - engines: {node: '>=12'} - hasBin: true - - https-proxy-agent@https://registry.npmmirror.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz: - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz} - name: https-proxy-agent - version: 5.0.1 - engines: {node: '>= 6'} - - human-signals@https://registry.npmmirror.com/human-signals/-/human-signals-1.1.1.tgz: - resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/human-signals/-/human-signals-1.1.1.tgz} - name: human-signals - version: 1.1.1 - engines: {node: '>=8.12.0'} - - human-signals@https://registry.npmmirror.com/human-signals/-/human-signals-2.1.0.tgz: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/human-signals/-/human-signals-2.1.0.tgz} - name: human-signals - version: 2.1.0 - engines: {node: '>=10.17.0'} - - husky@https://registry.npmmirror.com/husky/-/husky-7.0.4.tgz: - resolution: {integrity: sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/husky/-/husky-7.0.4.tgz} - name: husky - version: 7.0.4 - engines: {node: '>=12'} - hasBin: true - - iconv-lite@https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz} - name: iconv-lite - version: 0.4.24 - engines: {node: '>=0.10.0'} - - iconv-lite@https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.6.3.tgz: - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.6.3.tgz} - name: iconv-lite - version: 0.6.3 - engines: {node: '>=0.10.0'} - - idb@https://registry.npmjs.org/idb/-/idb-7.1.1.tgz: - resolution: {integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/idb/-/idb-7.1.1.tgz} - name: idb - version: 7.1.1 - - ids@https://registry.npmmirror.com/ids/-/ids-1.0.5.tgz: - resolution: {integrity: sha512-XQ0yom/4KWTL29sLG+tyuycy7UmeaM/79GRtSJq6IG9cJGIPeBz5kwDCguie3TwxaMNIc3WtPi0cTa1XYHicpw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ids/-/ids-1.0.5.tgz} - name: ids - version: 1.0.5 - - ieee754@https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz} - name: ieee754 - version: 1.2.1 - - ieee754@https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz} - name: ieee754 - version: 1.2.1 - - ignore@https://registry.npmmirror.com/ignore/-/ignore-5.2.4.tgz: - resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ignore/-/ignore-5.2.4.tgz} - name: ignore - version: 5.2.4 - engines: {node: '>= 4'} - - image-size@https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz: - resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz} - name: image-size - version: 0.5.5 - engines: {node: '>=0.10.0'} - hasBin: true - - image-size@https://registry.npmmirror.com/image-size/-/image-size-0.5.5.tgz: - resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/image-size/-/image-size-0.5.5.tgz} - name: image-size - version: 0.5.5 - engines: {node: '>=0.10.0'} - hasBin: true - - imagemin-gifsicle@https://registry.npmmirror.com/imagemin-gifsicle/-/imagemin-gifsicle-7.0.0.tgz: - resolution: {integrity: sha512-LaP38xhxAwS3W8PFh4y5iQ6feoTSF+dTAXFRUEYQWYst6Xd+9L/iPk34QGgK/VO/objmIlmq9TStGfVY2IcHIA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/imagemin-gifsicle/-/imagemin-gifsicle-7.0.0.tgz} - name: imagemin-gifsicle - version: 7.0.0 - engines: {node: '>=10'} - - imagemin-jpegtran@https://registry.npmmirror.com/imagemin-jpegtran/-/imagemin-jpegtran-7.0.0.tgz: - resolution: {integrity: sha512-MJoyTCW8YjMJf56NorFE41SR/WkaGA3IYk4JgvMlRwguJEEd3PnP9UxA8Y2UWjquz8d+On3Ds/03ZfiiLS8xTQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/imagemin-jpegtran/-/imagemin-jpegtran-7.0.0.tgz} - name: imagemin-jpegtran - version: 7.0.0 - engines: {node: '>=10'} - - imagemin-mozjpeg@https://registry.npmmirror.com/imagemin-mozjpeg/-/imagemin-mozjpeg-9.0.0.tgz: - resolution: {integrity: sha512-TwOjTzYqCFRgROTWpVSt5UTT0JeCuzF1jswPLKALDd89+PmrJ2PdMMYeDLYZ1fs9cTovI9GJd68mRSnuVt691w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/imagemin-mozjpeg/-/imagemin-mozjpeg-9.0.0.tgz} - name: imagemin-mozjpeg - version: 9.0.0 - engines: {node: '>=10'} - - imagemin-optipng@https://registry.npmmirror.com/imagemin-optipng/-/imagemin-optipng-8.0.0.tgz: - resolution: {integrity: sha512-CUGfhfwqlPjAC0rm8Fy+R2DJDBGjzy2SkfyT09L8rasnF9jSoHFqJ1xxSZWK6HVPZBMhGPMxCTL70OgTHlLF5A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/imagemin-optipng/-/imagemin-optipng-8.0.0.tgz} - name: imagemin-optipng - version: 8.0.0 - engines: {node: '>=10'} - - imagemin-pngquant@https://registry.npmmirror.com/imagemin-pngquant/-/imagemin-pngquant-9.0.2.tgz: - resolution: {integrity: sha512-cj//bKo8+Frd/DM8l6Pg9pws1pnDUjgb7ae++sUX1kUVdv2nrngPykhiUOgFeE0LGY/LmUbCf4egCHC4YUcZSg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/imagemin-pngquant/-/imagemin-pngquant-9.0.2.tgz} - name: imagemin-pngquant - version: 9.0.2 - engines: {node: '>=10'} - - imagemin-svgo@https://registry.npmmirror.com/imagemin-svgo/-/imagemin-svgo-9.0.0.tgz: - resolution: {integrity: sha512-uNgXpKHd99C0WODkrJ8OO/3zW3qjgS4pW7hcuII0RcHN3tnKxDjJWcitdVC/TZyfIqSricU8WfrHn26bdSW62g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/imagemin-svgo/-/imagemin-svgo-9.0.0.tgz} - name: imagemin-svgo - version: 9.0.0 - engines: {node: '>=10'} - - imagemin-webp@https://registry.npmmirror.com/imagemin-webp/-/imagemin-webp-6.1.0.tgz: - resolution: {integrity: sha512-i8ZluZV1pfQX9aVzmZ/VZh9KBSdPwUlp5VruAa9c30GZnX/nMl5n7h+oUMnI7Mg7+SUpu9mYBsw2nsYGUEllWQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/imagemin-webp/-/imagemin-webp-6.1.0.tgz} - name: imagemin-webp - version: 6.1.0 - engines: {node: '>=10'} - - imagemin@https://registry.npmmirror.com/imagemin/-/imagemin-7.0.1.tgz: - resolution: {integrity: sha512-33AmZ+xjZhg2JMCe+vDf6a9mzWukE7l+wAtesjE7KyteqqKjzxv7aVQeWnul1Ve26mWvEQqyPwl0OctNBfSR9w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/imagemin/-/imagemin-7.0.1.tgz} - name: imagemin - version: 7.0.1 - engines: {node: '>=8'} - - import-fresh@https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz} - name: import-fresh - version: 3.3.0 - engines: {node: '>=6'} - - import-lazy@https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz: - resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz} - name: import-lazy - version: 4.0.0 - engines: {node: '>=8'} - - import-lazy@https://registry.npmmirror.com/import-lazy/-/import-lazy-4.0.0.tgz: - resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/import-lazy/-/import-lazy-4.0.0.tgz} - name: import-lazy - version: 4.0.0 - engines: {node: '>=8'} - - import-local@https://registry.npmmirror.com/import-local/-/import-local-3.1.0.tgz: - resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/import-local/-/import-local-3.1.0.tgz} - name: import-local - version: 3.1.0 - engines: {node: '>=8'} - hasBin: true - - import-meta-resolve@https://registry.npmmirror.com/import-meta-resolve/-/import-meta-resolve-1.1.1.tgz: - resolution: {integrity: sha512-JiTuIvVyPaUg11eTrNDx5bgQ/yMKMZffc7YSjvQeSMXy58DO2SQ8BtAf3xteZvmzvjYh14wnqNjL8XVeDy2o9A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/import-meta-resolve/-/import-meta-resolve-1.1.1.tgz} - name: import-meta-resolve - version: 1.1.1 - - imurmurhash@https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz} - name: imurmurhash - version: 0.1.4 - engines: {node: '>=0.8.19'} - - indent-string@https://registry.npmmirror.com/indent-string/-/indent-string-2.1.0.tgz: - resolution: {integrity: sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/indent-string/-/indent-string-2.1.0.tgz} - name: indent-string - version: 2.1.0 - engines: {node: '>=0.10.0'} - - indent-string@https://registry.npmmirror.com/indent-string/-/indent-string-4.0.0.tgz: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/indent-string/-/indent-string-4.0.0.tgz} - name: indent-string - version: 4.0.0 - engines: {node: '>=8'} - - inflight@https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz} - name: inflight - version: 1.0.6 - - inflight@https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz} - name: inflight - version: 1.0.6 - - inherits@https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz} - name: inherits - version: 2.0.4 - - inherits@https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz} - name: inherits - version: 2.0.4 - - ini@https://registry.npmjs.org/ini/-/ini-1.3.8.tgz: - resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/ini/-/ini-1.3.8.tgz} - name: ini - version: 1.3.8 - - ini@https://registry.npmmirror.com/ini/-/ini-1.3.8.tgz: - resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ini/-/ini-1.3.8.tgz} - name: ini - version: 1.3.8 - - inquirer@https://registry.npmmirror.com/inquirer/-/inquirer-6.5.2.tgz: - resolution: {integrity: sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/inquirer/-/inquirer-6.5.2.tgz} - name: inquirer - version: 6.5.2 - engines: {node: '>=6.0.0'} - - inquirer@https://registry.npmmirror.com/inquirer/-/inquirer-8.2.2.tgz: - resolution: {integrity: sha512-pG7I/si6K/0X7p1qU+rfWnpTE1UIkTONN1wxtzh0d+dHXtT/JG6qBgLxoyHVsQa8cFABxAPh0pD6uUUHiAoaow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/inquirer/-/inquirer-8.2.2.tgz} - name: inquirer - version: 8.2.2 - engines: {node: '>=12.0.0'} - - internal-slot@https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz: - resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz} - name: internal-slot - version: 1.0.5 - engines: {node: '>= 0.4'} - - internal-slot@https://registry.npmmirror.com/internal-slot/-/internal-slot-1.0.5.tgz: - resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/internal-slot/-/internal-slot-1.0.5.tgz} - name: internal-slot - version: 1.0.5 - engines: {node: '>= 0.4'} - - into-stream@https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz: - resolution: {integrity: sha512-TcdjPibTksa1NQximqep2r17ISRiNE9fwlfbg3F8ANdvP5/yrFTew86VcO//jk4QTaMlbjypPBq76HN2zaKfZQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz} - name: into-stream - version: 3.1.0 - engines: {node: '>=4'} - - intro.js@https://registry.npmmirror.com/intro.js/-/intro.js-5.1.0.tgz: - resolution: {integrity: sha512-zwWl/duTh00eeNcZRU4o4/xxloNYPFKs4n4lMRDNx59jZr+qRI0jSOnzqYMOuVftD4beGrmxBHz4k8qp9/dCMA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/intro.js/-/intro.js-5.1.0.tgz} - name: intro.js - version: 5.1.0 - - is-accessor-descriptor@https://registry.npmmirror.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz: - resolution: {integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz} - name: is-accessor-descriptor - version: 0.1.6 - engines: {node: '>=0.10.0'} - - is-accessor-descriptor@https://registry.npmmirror.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz: - resolution: {integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz} - name: is-accessor-descriptor - version: 1.0.0 - engines: {node: '>=0.10.0'} - - is-array-buffer@https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz: - resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz} - name: is-array-buffer - version: 3.0.2 - - is-array-buffer@https://registry.npmmirror.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz: - resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz} - name: is-array-buffer - version: 3.0.2 - - is-arrayish@https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.2.1.tgz: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.2.1.tgz} - name: is-arrayish - version: 0.2.1 - - is-bigint@https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz} - name: is-bigint - version: 1.0.4 - - is-bigint@https://registry.npmmirror.com/is-bigint/-/is-bigint-1.0.4.tgz: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-bigint/-/is-bigint-1.0.4.tgz} - name: is-bigint - version: 1.0.4 - - is-binary-path@https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz} - name: is-binary-path - version: 2.1.0 - engines: {node: '>=8'} - - is-boolean-object@https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz} - name: is-boolean-object - version: 1.1.2 - engines: {node: '>= 0.4'} - - is-boolean-object@https://registry.npmmirror.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz} - name: is-boolean-object - version: 1.1.2 - engines: {node: '>= 0.4'} - - is-buffer@https://registry.npmmirror.com/is-buffer/-/is-buffer-1.1.6.tgz: - resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-buffer/-/is-buffer-1.1.6.tgz} - name: is-buffer - version: 1.1.6 - - is-builtin-module@https://registry.npmmirror.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz: - resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz} - name: is-builtin-module - version: 3.2.1 - engines: {node: '>=6'} - - is-callable@https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz} - name: is-callable - version: 1.2.7 - engines: {node: '>= 0.4'} - - is-callable@https://registry.npmmirror.com/is-callable/-/is-callable-1.2.7.tgz: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-callable/-/is-callable-1.2.7.tgz} - name: is-callable - version: 1.2.7 - engines: {node: '>= 0.4'} - - is-ci@https://registry.npmmirror.com/is-ci/-/is-ci-3.0.0.tgz: - resolution: {integrity: sha512-kDXyttuLeslKAHYL/K28F2YkM3x5jvFPEw3yXbRptXydjD9rpLEz+C5K5iutY9ZiUu6AP41JdvRQwF4Iqs4ZCQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-ci/-/is-ci-3.0.0.tgz} - name: is-ci - version: 3.0.0 - hasBin: true - - is-core-module@https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz: - resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz} - name: is-core-module - version: 2.13.0 - - is-core-module@https://registry.npmmirror.com/is-core-module/-/is-core-module-2.13.0.tgz: - resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-core-module/-/is-core-module-2.13.0.tgz} - name: is-core-module - version: 2.13.0 - - is-cwebp-readable@https://registry.npmmirror.com/is-cwebp-readable/-/is-cwebp-readable-3.0.0.tgz: - resolution: {integrity: sha512-bpELc7/Q1/U5MWHn4NdHI44R3jxk0h9ew9ljzabiRl70/UIjL/ZAqRMb52F5+eke/VC8yTiv4Ewryo1fPWidvA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-cwebp-readable/-/is-cwebp-readable-3.0.0.tgz} - name: is-cwebp-readable - version: 3.0.0 - - is-data-descriptor@https://registry.npmmirror.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz: - resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz} - name: is-data-descriptor - version: 0.1.4 - engines: {node: '>=0.10.0'} - - is-data-descriptor@https://registry.npmmirror.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz: - resolution: {integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz} - name: is-data-descriptor - version: 1.0.0 - engines: {node: '>=0.10.0'} - - is-date-object@https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz} - name: is-date-object - version: 1.0.5 - engines: {node: '>= 0.4'} - - is-date-object@https://registry.npmmirror.com/is-date-object/-/is-date-object-1.0.5.tgz: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-date-object/-/is-date-object-1.0.5.tgz} - name: is-date-object - version: 1.0.5 - engines: {node: '>= 0.4'} - - is-descriptor@https://registry.npmmirror.com/is-descriptor/-/is-descriptor-0.1.6.tgz: - resolution: {integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-descriptor/-/is-descriptor-0.1.6.tgz} - name: is-descriptor - version: 0.1.6 - engines: {node: '>=0.10.0'} - - is-descriptor@https://registry.npmmirror.com/is-descriptor/-/is-descriptor-1.0.2.tgz: - resolution: {integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-descriptor/-/is-descriptor-1.0.2.tgz} - name: is-descriptor - version: 1.0.2 - engines: {node: '>=0.10.0'} - - is-docker@https://registry.npmmirror.com/is-docker/-/is-docker-2.2.1.tgz: - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-docker/-/is-docker-2.2.1.tgz} - name: is-docker - version: 2.2.1 - engines: {node: '>=8'} - hasBin: true - - is-expression@https://registry.npmmirror.com/is-expression/-/is-expression-4.0.0.tgz: - resolution: {integrity: sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-expression/-/is-expression-4.0.0.tgz} - name: is-expression - version: 4.0.0 - - is-extendable@https://registry.npmmirror.com/is-extendable/-/is-extendable-0.1.1.tgz: - resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-extendable/-/is-extendable-0.1.1.tgz} - name: is-extendable - version: 0.1.1 - engines: {node: '>=0.10.0'} - - is-extendable@https://registry.npmmirror.com/is-extendable/-/is-extendable-1.0.1.tgz: - resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-extendable/-/is-extendable-1.0.1.tgz} - name: is-extendable - version: 1.0.1 - engines: {node: '>=0.10.0'} - - is-extglob@https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz} - name: is-extglob - version: 2.1.1 - engines: {node: '>=0.10.0'} - - is-finite@https://registry.npmmirror.com/is-finite/-/is-finite-1.1.0.tgz: - resolution: {integrity: sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-finite/-/is-finite-1.1.0.tgz} - name: is-finite - version: 1.1.0 - engines: {node: '>=0.10.0'} - - is-fullwidth-code-point@https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz: - resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz} - name: is-fullwidth-code-point - version: 2.0.0 - engines: {node: '>=4'} - - is-fullwidth-code-point@https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz} - name: is-fullwidth-code-point - version: 3.0.0 - engines: {node: '>=8'} - - is-fullwidth-code-point@https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz: - resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz} - name: is-fullwidth-code-point - version: 4.0.0 - engines: {node: '>=12'} - - is-generator-fn@https://registry.npmmirror.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz: - resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz} - name: is-generator-fn - version: 2.1.0 - engines: {node: '>=6'} - - is-gif@https://registry.npmmirror.com/is-gif/-/is-gif-3.0.0.tgz: - resolution: {integrity: sha512-IqJ/jlbw5WJSNfwQ/lHEDXF8rxhRgF6ythk2oiEvhpG29F704eX9NO6TvPfMiq9DrbwgcEDnETYNcZDPewQoVw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-gif/-/is-gif-3.0.0.tgz} - name: is-gif - version: 3.0.0 - engines: {node: '>=6'} - - is-glob@https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz} - name: is-glob - version: 4.0.3 - engines: {node: '>=0.10.0'} - - is-interactive@https://registry.npmmirror.com/is-interactive/-/is-interactive-1.0.0.tgz: - resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-interactive/-/is-interactive-1.0.0.tgz} - name: is-interactive - version: 1.0.0 - engines: {node: '>=8'} - - is-jpg@https://registry.npmmirror.com/is-jpg/-/is-jpg-2.0.0.tgz: - resolution: {integrity: sha512-ODlO0ruzhkzD3sdynIainVP5eoOFNN85rxA1+cwwnPe4dKyX0r5+hxNO5XpCrxlHcmb9vkOit9mhRD2JVuimHg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-jpg/-/is-jpg-2.0.0.tgz} - name: is-jpg - version: 2.0.0 - engines: {node: '>=6'} - - is-module@https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz: - resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz} - name: is-module - version: 1.0.0 - - is-module@https://registry.npmmirror.com/is-module/-/is-module-1.0.0.tgz: - resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-module/-/is-module-1.0.0.tgz} - name: is-module - version: 1.0.0 - - is-nan@https://registry.npmmirror.com/is-nan/-/is-nan-1.3.2.tgz: - resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-nan/-/is-nan-1.3.2.tgz} - name: is-nan - version: 1.3.2 - engines: {node: '>= 0.4'} - - is-natural-number@https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz: - resolution: {integrity: sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz} - name: is-natural-number - version: 4.0.1 - - is-natural-number@https://registry.npmmirror.com/is-natural-number/-/is-natural-number-4.0.1.tgz: - resolution: {integrity: sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-natural-number/-/is-natural-number-4.0.1.tgz} - name: is-natural-number - version: 4.0.1 - - is-negative-zero@https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz: - resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz} - name: is-negative-zero - version: 2.0.2 - engines: {node: '>= 0.4'} - - is-negative-zero@https://registry.npmmirror.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz: - resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz} - name: is-negative-zero - version: 2.0.2 - engines: {node: '>= 0.4'} - - is-number-object@https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz} - name: is-number-object - version: 1.0.7 - engines: {node: '>= 0.4'} - - is-number-object@https://registry.npmmirror.com/is-number-object/-/is-number-object-1.0.7.tgz: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-number-object/-/is-number-object-1.0.7.tgz} - name: is-number-object - version: 1.0.7 - engines: {node: '>= 0.4'} - - is-number@https://registry.npmmirror.com/is-number/-/is-number-3.0.0.tgz: - resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-number/-/is-number-3.0.0.tgz} - name: is-number - version: 3.0.0 - engines: {node: '>=0.10.0'} - - is-number@https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz} - name: is-number - version: 7.0.0 - engines: {node: '>=0.12.0'} - - is-obj@https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz: - resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz} - name: is-obj - version: 1.0.1 - engines: {node: '>=0.10.0'} - - is-obj@https://registry.npmmirror.com/is-obj/-/is-obj-2.0.0.tgz: - resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-obj/-/is-obj-2.0.0.tgz} - name: is-obj - version: 2.0.0 - engines: {node: '>=8'} - - is-object@https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz: - resolution: {integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz} - name: is-object - version: 1.0.2 - - is-object@https://registry.npmmirror.com/is-object/-/is-object-1.0.2.tgz: - resolution: {integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-object/-/is-object-1.0.2.tgz} - name: is-object - version: 1.0.2 - - is-plain-obj@https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz} - name: is-plain-obj - version: 1.1.0 - engines: {node: '>=0.10.0'} - - is-plain-obj@https://registry.npmmirror.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz} - name: is-plain-obj - version: 1.1.0 - engines: {node: '>=0.10.0'} - - is-plain-object@https://registry.npmmirror.com/is-plain-object/-/is-plain-object-2.0.4.tgz: - resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-plain-object/-/is-plain-object-2.0.4.tgz} - name: is-plain-object - version: 2.0.4 - engines: {node: '>=0.10.0'} - - is-plain-object@https://registry.npmmirror.com/is-plain-object/-/is-plain-object-3.0.1.tgz: - resolution: {integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-plain-object/-/is-plain-object-3.0.1.tgz} - name: is-plain-object - version: 3.0.1 - engines: {node: '>=0.10.0'} - - is-plain-object@https://registry.npmmirror.com/is-plain-object/-/is-plain-object-5.0.0.tgz: - resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-plain-object/-/is-plain-object-5.0.0.tgz} - name: is-plain-object - version: 5.0.0 - engines: {node: '>=0.10.0'} - - is-png@https://registry.npmmirror.com/is-png/-/is-png-2.0.0.tgz: - resolution: {integrity: sha512-4KPGizaVGj2LK7xwJIz8o5B2ubu1D/vcQsgOGFEDlpcvgZHto4gBnyd0ig7Ws+67ixmwKoNmu0hYnpo6AaKb5g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-png/-/is-png-2.0.0.tgz} - name: is-png - version: 2.0.0 - engines: {node: '>=8'} - - is-potential-custom-element-name@https://registry.npmmirror.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz: - resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz} - name: is-potential-custom-element-name - version: 1.0.1 - - is-regex@https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz} - name: is-regex - version: 1.1.4 - engines: {node: '>= 0.4'} - - is-regex@https://registry.npmmirror.com/is-regex/-/is-regex-1.1.4.tgz: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-regex/-/is-regex-1.1.4.tgz} - name: is-regex - version: 1.1.4 - engines: {node: '>= 0.4'} - - is-regexp@https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz: - resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz} - name: is-regexp - version: 1.0.0 - engines: {node: '>=0.10.0'} - - is-regexp@https://registry.npmmirror.com/is-regexp/-/is-regexp-2.1.0.tgz: - resolution: {integrity: sha512-OZ4IlER3zmRIoB9AqNhEggVxqIH4ofDns5nRrPS6yQxXE1TPCUpFznBfRQmQa8uC+pXqjMnukiJBxCisIxiLGA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-regexp/-/is-regexp-2.1.0.tgz} - name: is-regexp - version: 2.1.0 - engines: {node: '>=6'} - - is-retry-allowed@https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz: - resolution: {integrity: sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz} - name: is-retry-allowed - version: 1.2.0 - engines: {node: '>=0.10.0'} - - is-retry-allowed@https://registry.npmmirror.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz: - resolution: {integrity: sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz} - name: is-retry-allowed - version: 1.2.0 - engines: {node: '>=0.10.0'} - - is-shared-array-buffer@https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz: - resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz} - name: is-shared-array-buffer - version: 1.0.2 - - is-shared-array-buffer@https://registry.npmmirror.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz: - resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz} - name: is-shared-array-buffer - version: 1.0.2 - - is-stream@https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz: - resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz} - name: is-stream - version: 1.1.0 - engines: {node: '>=0.10.0'} - - is-stream@https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz} - name: is-stream - version: 2.0.1 - engines: {node: '>=8'} - - is-stream@https://registry.npmmirror.com/is-stream/-/is-stream-1.1.0.tgz: - resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-stream/-/is-stream-1.1.0.tgz} - name: is-stream - version: 1.1.0 - engines: {node: '>=0.10.0'} - - is-stream@https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz} - name: is-stream - version: 2.0.1 - engines: {node: '>=8'} - - is-string@https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz} - name: is-string - version: 1.0.7 - engines: {node: '>= 0.4'} - - is-string@https://registry.npmmirror.com/is-string/-/is-string-1.0.7.tgz: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-string/-/is-string-1.0.7.tgz} - name: is-string - version: 1.0.7 - engines: {node: '>= 0.4'} - - is-svg@https://registry.npmmirror.com/is-svg/-/is-svg-4.4.0.tgz: - resolution: {integrity: sha512-v+AgVwiK5DsGtT9ng+m4mClp6zDAmwrW8nZi6Gg15qzvBnRWWdfWA1TGaXyCDnWq5g5asofIgMVl3PjKxvk1ug==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-svg/-/is-svg-4.4.0.tgz} - name: is-svg - version: 4.4.0 - engines: {node: '>=6'} - - is-symbol@https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz} - name: is-symbol - version: 1.0.4 - engines: {node: '>= 0.4'} - - is-symbol@https://registry.npmmirror.com/is-symbol/-/is-symbol-1.0.4.tgz: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-symbol/-/is-symbol-1.0.4.tgz} - name: is-symbol - version: 1.0.4 - engines: {node: '>= 0.4'} - - is-text-path@https://registry.npmmirror.com/is-text-path/-/is-text-path-1.0.1.tgz: - resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-text-path/-/is-text-path-1.0.1.tgz} - name: is-text-path - version: 1.0.1 - engines: {node: '>=0.10.0'} - - is-typed-array@https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz: - resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz} - name: is-typed-array - version: 1.1.12 - engines: {node: '>= 0.4'} - - is-typed-array@https://registry.npmmirror.com/is-typed-array/-/is-typed-array-1.1.12.tgz: - resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-typed-array/-/is-typed-array-1.1.12.tgz} - name: is-typed-array - version: 1.1.12 - engines: {node: '>= 0.4'} - - is-typedarray@https://registry.npmmirror.com/is-typedarray/-/is-typedarray-1.0.0.tgz: - resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-typedarray/-/is-typedarray-1.0.0.tgz} - name: is-typedarray - version: 1.0.0 - - is-unicode-supported@https://registry.npmmirror.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz: - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz} - name: is-unicode-supported - version: 0.1.0 - engines: {node: '>=10'} - - is-utf8@https://registry.npmmirror.com/is-utf8/-/is-utf8-0.2.1.tgz: - resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-utf8/-/is-utf8-0.2.1.tgz} - name: is-utf8 - version: 0.2.1 - - is-weakref@https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz} - name: is-weakref - version: 1.0.2 - - is-weakref@https://registry.npmmirror.com/is-weakref/-/is-weakref-1.0.2.tgz: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-weakref/-/is-weakref-1.0.2.tgz} - name: is-weakref - version: 1.0.2 - - is-what@https://registry.npmmirror.com/is-what/-/is-what-3.14.1.tgz: - resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-what/-/is-what-3.14.1.tgz} - name: is-what - version: 3.14.1 - - is-windows@https://registry.npmmirror.com/is-windows/-/is-windows-1.0.2.tgz: - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-windows/-/is-windows-1.0.2.tgz} - name: is-windows - version: 1.0.2 - engines: {node: '>=0.10.0'} - - is-wsl@https://registry.npmmirror.com/is-wsl/-/is-wsl-2.2.0.tgz: - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/is-wsl/-/is-wsl-2.2.0.tgz} - name: is-wsl - version: 2.2.0 - engines: {node: '>=8'} - - isarray@https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz} - name: isarray - version: 1.0.0 - - isarray@https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz} - name: isarray - version: 2.0.5 - - isarray@https://registry.npmmirror.com/isarray/-/isarray-1.0.0.tgz: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/isarray/-/isarray-1.0.0.tgz} - name: isarray - version: 1.0.0 - - isarray@https://registry.npmmirror.com/isarray/-/isarray-2.0.5.tgz: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/isarray/-/isarray-2.0.5.tgz} - name: isarray - version: 2.0.5 - - isexe@https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz} - name: isexe - version: 2.0.0 - - isexe@https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz} - name: isexe - version: 2.0.0 - - isobject@https://registry.npmmirror.com/isobject/-/isobject-2.1.0.tgz: - resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/isobject/-/isobject-2.1.0.tgz} - name: isobject - version: 2.1.0 - engines: {node: '>=0.10.0'} - - isobject@https://registry.npmmirror.com/isobject/-/isobject-3.0.1.tgz: - resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/isobject/-/isobject-3.0.1.tgz} - name: isobject - version: 3.0.1 - engines: {node: '>=0.10.0'} - - istanbul-lib-coverage@https://registry.npmmirror.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz: - resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz} - name: istanbul-lib-coverage - version: 3.2.0 - engines: {node: '>=8'} - - istanbul-lib-instrument@https://registry.npmmirror.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz: - resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz} - name: istanbul-lib-instrument - version: 5.2.1 - engines: {node: '>=8'} - - istanbul-lib-report@https://registry.npmmirror.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz: - resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz} - name: istanbul-lib-report - version: 3.0.1 - engines: {node: '>=10'} - - istanbul-lib-source-maps@https://registry.npmmirror.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz: - resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz} - name: istanbul-lib-source-maps - version: 4.0.1 - engines: {node: '>=10'} - - istanbul-reports@https://registry.npmmirror.com/istanbul-reports/-/istanbul-reports-3.1.6.tgz: - resolution: {integrity: sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/istanbul-reports/-/istanbul-reports-3.1.6.tgz} - name: istanbul-reports - version: 3.1.6 - engines: {node: '>=8'} - - isurl@https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz: - resolution: {integrity: sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz} - name: isurl - version: 1.0.0 - engines: {node: '>= 4'} - - isurl@https://registry.npmmirror.com/isurl/-/isurl-1.0.0.tgz: - resolution: {integrity: sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/isurl/-/isurl-1.0.0.tgz} - name: isurl - version: 1.0.0 - engines: {node: '>= 4'} - - jake@https://registry.npmjs.org/jake/-/jake-10.8.7.tgz: - resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/jake/-/jake-10.8.7.tgz} - name: jake - version: 10.8.7 - engines: {node: '>=10'} - hasBin: true - - jake@https://registry.npmmirror.com/jake/-/jake-10.8.7.tgz: - resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jake/-/jake-10.8.7.tgz} - name: jake - version: 10.8.7 - engines: {node: '>=10'} - hasBin: true - - jest-changed-files@https://registry.npmmirror.com/jest-changed-files/-/jest-changed-files-27.5.1.tgz: - resolution: {integrity: sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-changed-files/-/jest-changed-files-27.5.1.tgz} - name: jest-changed-files - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-circus@https://registry.npmmirror.com/jest-circus/-/jest-circus-27.5.1.tgz: - resolution: {integrity: sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-circus/-/jest-circus-27.5.1.tgz} - name: jest-circus - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-cli@https://registry.npmmirror.com/jest-cli/-/jest-cli-27.5.1.tgz: - resolution: {integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-cli/-/jest-cli-27.5.1.tgz} - name: jest-cli - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - - jest-config@https://registry.npmmirror.com/jest-config/-/jest-config-27.5.1.tgz: - resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-config/-/jest-config-27.5.1.tgz} - name: jest-config - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - peerDependencies: - ts-node: '>=9.0.0' - peerDependenciesMeta: - ts-node: - optional: true - - jest-diff@https://registry.npmmirror.com/jest-diff/-/jest-diff-27.5.1.tgz: - resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-diff/-/jest-diff-27.5.1.tgz} - name: jest-diff - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-docblock@https://registry.npmmirror.com/jest-docblock/-/jest-docblock-27.5.1.tgz: - resolution: {integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-docblock/-/jest-docblock-27.5.1.tgz} - name: jest-docblock - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-each@https://registry.npmmirror.com/jest-each/-/jest-each-27.5.1.tgz: - resolution: {integrity: sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-each/-/jest-each-27.5.1.tgz} - name: jest-each - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-environment-jsdom@https://registry.npmmirror.com/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz: - resolution: {integrity: sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz} - name: jest-environment-jsdom - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-environment-node@https://registry.npmmirror.com/jest-environment-node/-/jest-environment-node-27.5.1.tgz: - resolution: {integrity: sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-environment-node/-/jest-environment-node-27.5.1.tgz} - name: jest-environment-node - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-get-type@https://registry.npmmirror.com/jest-get-type/-/jest-get-type-27.5.1.tgz: - resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-get-type/-/jest-get-type-27.5.1.tgz} - name: jest-get-type - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-haste-map@https://registry.npmmirror.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz: - resolution: {integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz} - name: jest-haste-map - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-jasmine2@https://registry.npmmirror.com/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz: - resolution: {integrity: sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz} - name: jest-jasmine2 - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-leak-detector@https://registry.npmmirror.com/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz: - resolution: {integrity: sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz} - name: jest-leak-detector - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-matcher-utils@https://registry.npmmirror.com/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz: - resolution: {integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz} - name: jest-matcher-utils - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-message-util@https://registry.npmmirror.com/jest-message-util/-/jest-message-util-27.5.1.tgz: - resolution: {integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-message-util/-/jest-message-util-27.5.1.tgz} - name: jest-message-util - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-mock@https://registry.npmmirror.com/jest-mock/-/jest-mock-27.5.1.tgz: - resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-mock/-/jest-mock-27.5.1.tgz} - name: jest-mock - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-pnp-resolver@https://registry.npmmirror.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz: - resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz} - name: jest-pnp-resolver - version: 1.2.3 - engines: {node: '>=6'} - peerDependencies: - jest-resolve: '*' - peerDependenciesMeta: - jest-resolve: - optional: true - - jest-regex-util@https://registry.npmmirror.com/jest-regex-util/-/jest-regex-util-27.5.1.tgz: - resolution: {integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-regex-util/-/jest-regex-util-27.5.1.tgz} - name: jest-regex-util - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-resolve-dependencies@https://registry.npmmirror.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz: - resolution: {integrity: sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz} - name: jest-resolve-dependencies - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-resolve@https://registry.npmmirror.com/jest-resolve/-/jest-resolve-27.5.1.tgz: - resolution: {integrity: sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-resolve/-/jest-resolve-27.5.1.tgz} - name: jest-resolve - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-runner@https://registry.npmmirror.com/jest-runner/-/jest-runner-27.5.1.tgz: - resolution: {integrity: sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-runner/-/jest-runner-27.5.1.tgz} - name: jest-runner - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-runtime@https://registry.npmmirror.com/jest-runtime/-/jest-runtime-27.5.1.tgz: - resolution: {integrity: sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-runtime/-/jest-runtime-27.5.1.tgz} - name: jest-runtime - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-serializer@https://registry.npmmirror.com/jest-serializer/-/jest-serializer-27.5.1.tgz: - resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-serializer/-/jest-serializer-27.5.1.tgz} - name: jest-serializer - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-snapshot@https://registry.npmmirror.com/jest-snapshot/-/jest-snapshot-27.5.1.tgz: - resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-snapshot/-/jest-snapshot-27.5.1.tgz} - name: jest-snapshot - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-util@https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz: - resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz} - name: jest-util - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-validate@https://registry.npmmirror.com/jest-validate/-/jest-validate-27.5.1.tgz: - resolution: {integrity: sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-validate/-/jest-validate-27.5.1.tgz} - name: jest-validate - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-watcher@https://registry.npmmirror.com/jest-watcher/-/jest-watcher-27.5.1.tgz: - resolution: {integrity: sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-watcher/-/jest-watcher-27.5.1.tgz} - name: jest-watcher - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - jest-worker@https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz: - resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz} - name: jest-worker - version: 26.6.2 - engines: {node: '>= 10.13.0'} - - jest-worker@https://registry.npmmirror.com/jest-worker/-/jest-worker-27.5.1.tgz: - resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest-worker/-/jest-worker-27.5.1.tgz} - name: jest-worker - version: 27.5.1 - engines: {node: '>= 10.13.0'} - - jest@https://registry.npmmirror.com/jest/-/jest-27.3.1.tgz: - resolution: {integrity: sha512-U2AX0AgQGd5EzMsiZpYt8HyZ+nSVIh5ujQ9CPp9EQZJMjXIiSZpJNweZl0swatKRoqHWgGKM3zaSwm4Zaz87ng==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jest/-/jest-27.3.1.tgz} - name: jest - version: 27.3.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - - jiti@https://registry.npmmirror.com/jiti/-/jiti-1.19.1.tgz: - resolution: {integrity: sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jiti/-/jiti-1.19.1.tgz} - name: jiti - version: 1.19.1 - hasBin: true - - jpegtran-bin@https://registry.npmmirror.com/jpegtran-bin/-/jpegtran-bin-5.0.2.tgz: - resolution: {integrity: sha512-4FSmgIcr8d5+V6T1+dHbPZjaFH0ogVyP4UVsE+zri7S9YLO4qAT2our4IN3sW3STVgNTbqPermdIgt2XuAJ4EA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jpegtran-bin/-/jpegtran-bin-5.0.2.tgz} - name: jpegtran-bin - version: 5.0.2 - engines: {node: '>=10'} - hasBin: true - - jpegtran-bin@https://registry.npmmirror.com/jpegtran-bin/-/jpegtran-bin-6.0.1.tgz: - resolution: {integrity: sha512-WohhhHhqe22de7PU8hXs6Sr5d4BAvkrfA93NR5tGlHyPnFLgvEW/bH+q7fv65JgoiQDsd7SBwwQ/OGRBivU3Mw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jpegtran-bin/-/jpegtran-bin-6.0.1.tgz} - name: jpegtran-bin - version: 6.0.1 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - hasBin: true - - js-base64@https://registry.npmmirror.com/js-base64/-/js-base64-2.6.4.tgz: - resolution: {integrity: sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/js-base64/-/js-base64-2.6.4.tgz} - name: js-base64 - version: 2.6.4 - - js-tokens@https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz} - name: js-tokens - version: 4.0.0 - - js-tokens@https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz} - name: js-tokens - version: 4.0.0 - - js-yaml@https://registry.npmmirror.com/js-yaml/-/js-yaml-3.14.1.tgz: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/js-yaml/-/js-yaml-3.14.1.tgz} - name: js-yaml - version: 3.14.1 - hasBin: true - - js-yaml@https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz} - name: js-yaml - version: 4.1.0 - hasBin: true - - jsdom@https://registry.npmmirror.com/jsdom/-/jsdom-16.7.0.tgz: - resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jsdom/-/jsdom-16.7.0.tgz} - name: jsdom - version: 16.7.0 - engines: {node: '>=10'} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true - - jsesc@https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz} - name: jsesc - version: 0.5.0 - hasBin: true - - jsesc@https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz} - name: jsesc - version: 2.5.2 - engines: {node: '>=4'} - hasBin: true - - jsesc@https://registry.npmmirror.com/jsesc/-/jsesc-2.5.2.tgz: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jsesc/-/jsesc-2.5.2.tgz} - name: jsesc - version: 2.5.2 - engines: {node: '>=4'} - hasBin: true - - json-buffer@https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz: - resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz} - name: json-buffer - version: 3.0.0 - - json-parse-better-errors@https://registry.npmmirror.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz: - resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz} - name: json-parse-better-errors - version: 1.0.2 - - json-parse-even-better-errors@https://registry.npmmirror.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz} - name: json-parse-even-better-errors - version: 2.3.1 - - json-schema-traverse@https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz} - name: json-schema-traverse - version: 1.0.0 - - json-schema-traverse@https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz} - name: json-schema-traverse - version: 0.4.1 - - json-schema-traverse@https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz} - name: json-schema-traverse - version: 1.0.0 - - json-schema@https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz: - resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz} - name: json-schema - version: 0.4.0 - - json-stable-stringify-without-jsonify@https://registry.npmmirror.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz: - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz} - name: json-stable-stringify-without-jsonify - version: 1.0.1 - - json-stringify-safe@https://registry.npmmirror.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz: - resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz} - name: json-stringify-safe - version: 5.0.1 - - json5@https://registry.npmjs.org/json5/-/json5-2.2.3.tgz: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/json5/-/json5-2.2.3.tgz} - name: json5 - version: 2.2.3 - engines: {node: '>=6'} - hasBin: true - - json5@https://registry.npmmirror.com/json5/-/json5-1.0.2.tgz: - resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/json5/-/json5-1.0.2.tgz} - name: json5 - version: 1.0.2 - hasBin: true - - json5@https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz} - name: json5 - version: 2.2.3 - engines: {node: '>=6'} - hasBin: true - - jsonfile@https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz} - name: jsonfile - version: 6.1.0 - - jsonfile@https://registry.npmmirror.com/jsonfile/-/jsonfile-4.0.0.tgz: - resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jsonfile/-/jsonfile-4.0.0.tgz} - name: jsonfile - version: 4.0.0 - - jsonfile@https://registry.npmmirror.com/jsonfile/-/jsonfile-6.1.0.tgz: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jsonfile/-/jsonfile-6.1.0.tgz} - name: jsonfile - version: 6.1.0 - - jsonparse@https://registry.npmmirror.com/jsonparse/-/jsonparse-1.3.1.tgz: - resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jsonparse/-/jsonparse-1.3.1.tgz} - name: jsonparse - version: 1.3.1 - engines: {'0': node >= 0.2.0} - - jsonpointer@https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz: - resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz} - name: jsonpointer - version: 5.0.1 - engines: {node: '>=0.10.0'} - - jspdf@https://registry.npmmirror.com/jspdf/-/jspdf-2.5.1.tgz: - resolution: {integrity: sha512-hXObxz7ZqoyhxET78+XR34Xu2qFGrJJ2I2bE5w4SM8eFaFEkW2xcGRVUss360fYelwRSid/jT078kbNvmoW0QA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/jspdf/-/jspdf-2.5.1.tgz} - name: jspdf - version: 2.5.1 - - junk@https://registry.npmmirror.com/junk/-/junk-3.1.0.tgz: - resolution: {integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/junk/-/junk-3.1.0.tgz} - name: junk - version: 3.1.0 - engines: {node: '>=8'} - - keyv@https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz: - resolution: {integrity: sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz} - name: keyv - version: 3.0.0 - - kind-of@https://registry.npmmirror.com/kind-of/-/kind-of-3.2.2.tgz: - resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/kind-of/-/kind-of-3.2.2.tgz} - name: kind-of - version: 3.2.2 - engines: {node: '>=0.10.0'} - - kind-of@https://registry.npmmirror.com/kind-of/-/kind-of-4.0.0.tgz: - resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/kind-of/-/kind-of-4.0.0.tgz} - name: kind-of - version: 4.0.0 - engines: {node: '>=0.10.0'} - - kind-of@https://registry.npmmirror.com/kind-of/-/kind-of-5.1.0.tgz: - resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/kind-of/-/kind-of-5.1.0.tgz} - name: kind-of - version: 5.1.0 - engines: {node: '>=0.10.0'} - - kind-of@https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz} - name: kind-of - version: 6.0.3 - engines: {node: '>=0.10.0'} - - kleur@https://registry.npmmirror.com/kleur/-/kleur-3.0.3.tgz: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/kleur/-/kleur-3.0.3.tgz} - name: kleur - version: 3.0.3 - engines: {node: '>=6'} - - known-css-properties@https://registry.npmmirror.com/known-css-properties/-/known-css-properties-0.24.0.tgz: - resolution: {integrity: sha512-RTSoaUAfLvpR357vWzAz/50Q/BmHfmE6ETSWfutT0AJiw10e6CmcdYRQJlLRd95B53D0Y2aD1jSxD3V3ySF+PA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/known-css-properties/-/known-css-properties-0.24.0.tgz} - name: known-css-properties - version: 0.24.0 - - kolorist@https://registry.npmmirror.com/kolorist/-/kolorist-1.8.0.tgz: - resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/kolorist/-/kolorist-1.8.0.tgz} - name: kolorist - version: 1.8.0 - - less@https://registry.npmmirror.com/less/-/less-4.1.2.tgz: - resolution: {integrity: sha512-EoQp/Et7OSOVu0aJknJOtlXZsnr8XE8KwuzTHOLeVSEx8pVWUICc8Q0VYRHgzyjX78nMEyC/oztWFbgyhtNfDA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/less/-/less-4.1.2.tgz} - name: less - version: 4.1.2 - engines: {node: '>=6'} - hasBin: true - - leven@https://registry.npmjs.org/leven/-/leven-3.1.0.tgz: - resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/leven/-/leven-3.1.0.tgz} - name: leven - version: 3.1.0 - engines: {node: '>=6'} - - leven@https://registry.npmmirror.com/leven/-/leven-3.1.0.tgz: - resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/leven/-/leven-3.1.0.tgz} - name: leven - version: 3.1.0 - engines: {node: '>=6'} - - levn@https://registry.npmmirror.com/levn/-/levn-0.4.1.tgz: - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/levn/-/levn-0.4.1.tgz} - name: levn - version: 0.4.1 - engines: {node: '>= 0.8.0'} - - lilconfig@https://registry.npmmirror.com/lilconfig/-/lilconfig-2.0.4.tgz: - resolution: {integrity: sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/lilconfig/-/lilconfig-2.0.4.tgz} - name: lilconfig - version: 2.0.4 - engines: {node: '>=10'} - - lines-and-columns@https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz} - name: lines-and-columns - version: 1.2.4 - - lint-staged@https://registry.npmmirror.com/lint-staged/-/lint-staged-12.3.7.tgz: - resolution: {integrity: sha512-/S4D726e2GIsDVWIk1XGvheCaDm1SJRQp8efamZFWJxQMVEbOwSysp7xb49Oo73KYCdy97mIWinhlxcoNqIfIQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/lint-staged/-/lint-staged-12.3.7.tgz} - name: lint-staged - version: 12.3.7 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - hasBin: true - - listr2@https://registry.npmmirror.com/listr2/-/listr2-4.0.5.tgz: - resolution: {integrity: sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/listr2/-/listr2-4.0.5.tgz} - name: listr2 - version: 4.0.5 - engines: {node: '>=12'} - peerDependencies: - enquirer: '>= 2.3.0 < 3' - peerDependenciesMeta: - enquirer: - optional: true - - load-json-file@https://registry.npmmirror.com/load-json-file/-/load-json-file-1.1.0.tgz: - resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/load-json-file/-/load-json-file-1.1.0.tgz} - name: load-json-file - version: 1.1.0 - engines: {node: '>=0.10.0'} - - load-json-file@https://registry.npmmirror.com/load-json-file/-/load-json-file-4.0.0.tgz: - resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/load-json-file/-/load-json-file-4.0.0.tgz} - name: load-json-file - version: 4.0.0 - engines: {node: '>=4'} - - loader-utils@https://registry.npmmirror.com/loader-utils/-/loader-utils-1.4.2.tgz: - resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/loader-utils/-/loader-utils-1.4.2.tgz} - name: loader-utils - version: 1.4.2 - engines: {node: '>=4.0.0'} - - locate-path@https://registry.npmmirror.com/locate-path/-/locate-path-2.0.0.tgz: - resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/locate-path/-/locate-path-2.0.0.tgz} - name: locate-path - version: 2.0.0 - engines: {node: '>=4'} - - locate-path@https://registry.npmmirror.com/locate-path/-/locate-path-5.0.0.tgz: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/locate-path/-/locate-path-5.0.0.tgz} - name: locate-path - version: 5.0.0 - engines: {node: '>=8'} - - locate-path@https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz} - name: locate-path - version: 6.0.0 - engines: {node: '>=10'} - - lodash-es@https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz: - resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz} - name: lodash-es - version: 4.17.21 - - lodash.debounce@https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz} - name: lodash.debounce - version: 4.0.8 - - lodash.get@https://registry.npmmirror.com/lodash.get/-/lodash.get-4.4.2.tgz: - resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/lodash.get/-/lodash.get-4.4.2.tgz} - name: lodash.get - version: 4.4.2 - - lodash.ismatch@https://registry.npmmirror.com/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz: - resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz} - name: lodash.ismatch - version: 4.4.0 - - lodash.isplainobject@https://registry.npmmirror.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz: - resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz} - name: lodash.isplainobject - version: 4.0.6 - - lodash.map@https://registry.npmmirror.com/lodash.map/-/lodash.map-4.6.0.tgz: - resolution: {integrity: sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/lodash.map/-/lodash.map-4.6.0.tgz} - name: lodash.map - version: 4.6.0 - - lodash.memoize@https://registry.npmmirror.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz: - resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz} - name: lodash.memoize - version: 4.1.2 - - lodash.merge@https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz} - name: lodash.merge - version: 4.6.2 - - lodash.mergewith@https://registry.npmmirror.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz: - resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz} - name: lodash.mergewith - version: 4.6.2 - - lodash.sortby@https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz: - resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz} - name: lodash.sortby - version: 4.7.0 - - lodash.truncate@https://registry.npmmirror.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz: - resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz} - name: lodash.truncate - version: 4.4.2 - - lodash.uniq@https://registry.npmmirror.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz: - resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz} - name: lodash.uniq - version: 4.5.0 - - lodash@https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz} - name: lodash - version: 4.17.21 - - lodash@https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz} - name: lodash - version: 4.17.21 - - log-symbols@https://registry.npmmirror.com/log-symbols/-/log-symbols-4.1.0.tgz: - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/log-symbols/-/log-symbols-4.1.0.tgz} - name: log-symbols - version: 4.1.0 - engines: {node: '>=10'} - - log-update@https://registry.npmmirror.com/log-update/-/log-update-4.0.0.tgz: - resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/log-update/-/log-update-4.0.0.tgz} - name: log-update - version: 4.0.0 - engines: {node: '>=10'} - - logalot@https://registry.npmmirror.com/logalot/-/logalot-2.1.0.tgz: - resolution: {integrity: sha512-Ah4CgdSRfeCJagxQhcVNMi9BfGYyEKLa6d7OA6xSbld/Hg3Cf2QiOa1mDpmG7Ve8LOH6DN3mdttzjQAvWTyVkw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/logalot/-/logalot-2.1.0.tgz} - name: logalot - version: 2.1.0 - engines: {node: '>=0.10.0'} - - longest@https://registry.npmmirror.com/longest/-/longest-1.0.1.tgz: - resolution: {integrity: sha512-k+yt5n3l48JU4k8ftnKG6V7u32wyH2NfKzeMto9F/QRE0amxy/LayxwlvjjkZEIzqR+19IrtFO8p5kB9QaYUFg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/longest/-/longest-1.0.1.tgz} - name: longest - version: 1.0.1 - engines: {node: '>=0.10.0'} - - longest@https://registry.npmmirror.com/longest/-/longest-2.0.1.tgz: - resolution: {integrity: sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/longest/-/longest-2.0.1.tgz} - name: longest - version: 2.0.1 - engines: {node: '>=0.10.0'} - - loose-envify@https://registry.npmmirror.com/loose-envify/-/loose-envify-1.4.0.tgz: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/loose-envify/-/loose-envify-1.4.0.tgz} - name: loose-envify - version: 1.4.0 - hasBin: true - - loud-rejection@https://registry.npmmirror.com/loud-rejection/-/loud-rejection-1.6.0.tgz: - resolution: {integrity: sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/loud-rejection/-/loud-rejection-1.6.0.tgz} - name: loud-rejection - version: 1.6.0 - engines: {node: '>=0.10.0'} - - lower-case@https://registry.npmmirror.com/lower-case/-/lower-case-2.0.2.tgz: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/lower-case/-/lower-case-2.0.2.tgz} - name: lower-case - version: 2.0.2 - - lowercase-keys@https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz: - resolution: {integrity: sha512-RPlX0+PHuvxVDZ7xX+EBVAp4RsVxP/TdDSN2mJYdiq1Lc4Hz7EUSjUI7RZrKKlmrIzVhf6Jo2stj7++gVarS0A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz} - name: lowercase-keys - version: 1.0.0 - engines: {node: '>=0.10.0'} - - lowercase-keys@https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz: - resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz} - name: lowercase-keys - version: 1.0.1 - engines: {node: '>=0.10.0'} - - lowercase-keys@https://registry.npmmirror.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz: - resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz} - name: lowercase-keys - version: 1.0.1 - engines: {node: '>=0.10.0'} - - lpad-align@https://registry.npmmirror.com/lpad-align/-/lpad-align-1.1.2.tgz: - resolution: {integrity: sha512-MMIcFmmR9zlGZtBcFOows6c2COMekHCIFJz3ew/rRpKZ1wR4mXDPzvcVqLarux8M33X4TPSq2Jdw8WJj0q0KbQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/lpad-align/-/lpad-align-1.1.2.tgz} - name: lpad-align - version: 1.1.2 - engines: {node: '>=0.10.0'} - hasBin: true - - lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz: - resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz} - name: lru-cache - version: 4.1.5 - - lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz} - name: lru-cache - version: 5.1.1 - - lru-cache@https://registry.npmmirror.com/lru-cache/-/lru-cache-4.1.5.tgz: - resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/lru-cache/-/lru-cache-4.1.5.tgz} - name: lru-cache - version: 4.1.5 - - lru-cache@https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz} - name: lru-cache - version: 5.1.1 - - lru-cache@https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz} - name: lru-cache - version: 6.0.0 - engines: {node: '>=10'} - - luxon@https://registry.npmmirror.com/luxon/-/luxon-1.28.1.tgz: - resolution: {integrity: sha512-gYHAa180mKrNIUJCbwpmD0aTu9kV0dREDrwNnuyFAsO1Wt0EVYSZelPnJlbj9HplzXX/YWXHFTL45kvZ53M0pw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/luxon/-/luxon-1.28.1.tgz} - name: luxon - version: 1.28.1 - - magic-string@https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz: - resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz} - name: magic-string - version: 0.25.9 - - magic-string@https://registry.npmmirror.com/magic-string/-/magic-string-0.25.9.tgz: - resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/magic-string/-/magic-string-0.25.9.tgz} - name: magic-string - version: 0.25.9 - - magic-string@https://registry.npmmirror.com/magic-string/-/magic-string-0.26.7.tgz: - resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/magic-string/-/magic-string-0.26.7.tgz} - name: magic-string - version: 0.26.7 - engines: {node: '>=12'} - - magic-string@https://registry.npmmirror.com/magic-string/-/magic-string-0.30.2.tgz: - resolution: {integrity: sha512-lNZdu7pewtq/ZvWUp9Wpf/x7WzMTsR26TWV03BRZrXFsv+BI6dy8RAiKgm1uM/kyR0rCfUcqvOlXKG66KhIGug==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/magic-string/-/magic-string-0.30.2.tgz} - name: magic-string - version: 0.30.2 - engines: {node: '>=12'} - - make-dir@https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz: - resolution: {integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz} - name: make-dir - version: 1.3.0 - engines: {node: '>=4'} - - make-dir@https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz: - resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz} - name: make-dir - version: 2.1.0 - engines: {node: '>=6'} - - make-dir@https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz: - resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz} - name: make-dir - version: 3.1.0 - engines: {node: '>=8'} - - make-dir@https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz: - resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz} - name: make-dir - version: 4.0.0 - engines: {node: '>=10'} - - make-error@https://registry.npmmirror.com/make-error/-/make-error-1.3.6.tgz: - resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/make-error/-/make-error-1.3.6.tgz} - name: make-error - version: 1.3.6 - - makeerror@https://registry.npmmirror.com/makeerror/-/makeerror-1.0.12.tgz: - resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/makeerror/-/makeerror-1.0.12.tgz} - name: makeerror - version: 1.0.12 - - map-cache@https://registry.npmmirror.com/map-cache/-/map-cache-0.2.2.tgz: - resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/map-cache/-/map-cache-0.2.2.tgz} - name: map-cache - version: 0.2.2 - engines: {node: '>=0.10.0'} - - map-obj@https://registry.npmmirror.com/map-obj/-/map-obj-1.0.1.tgz: - resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/map-obj/-/map-obj-1.0.1.tgz} - name: map-obj - version: 1.0.1 - engines: {node: '>=0.10.0'} - - map-obj@https://registry.npmmirror.com/map-obj/-/map-obj-4.3.0.tgz: - resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/map-obj/-/map-obj-4.3.0.tgz} - name: map-obj - version: 4.3.0 - engines: {node: '>=8'} - - map-visit@https://registry.npmmirror.com/map-visit/-/map-visit-1.0.0.tgz: - resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/map-visit/-/map-visit-1.0.0.tgz} - name: map-visit - version: 1.0.0 - engines: {node: '>=0.10.0'} - - mathml-tag-names@https://registry.npmmirror.com/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz: - resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz} - name: mathml-tag-names - version: 2.1.3 - - md5@https://registry.npmmirror.com/md5/-/md5-2.3.0.tgz: - resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/md5/-/md5-2.3.0.tgz} - name: md5 - version: 2.3.0 - - mdn-data@https://registry.npmmirror.com/mdn-data/-/mdn-data-2.0.14.tgz: - resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/mdn-data/-/mdn-data-2.0.14.tgz} - name: mdn-data - version: 2.0.14 - - memorystream@https://registry.npmmirror.com/memorystream/-/memorystream-0.3.1.tgz: - resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/memorystream/-/memorystream-0.3.1.tgz} - name: memorystream - version: 0.3.1 - engines: {node: '>= 0.10.0'} - - meow@https://registry.npmmirror.com/meow/-/meow-3.7.0.tgz: - resolution: {integrity: sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/meow/-/meow-3.7.0.tgz} - name: meow - version: 3.7.0 - engines: {node: '>=0.10.0'} - - meow@https://registry.npmmirror.com/meow/-/meow-8.1.2.tgz: - resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/meow/-/meow-8.1.2.tgz} - name: meow - version: 8.1.2 - engines: {node: '>=10'} - - meow@https://registry.npmmirror.com/meow/-/meow-9.0.0.tgz: - resolution: {integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/meow/-/meow-9.0.0.tgz} - name: meow - version: 9.0.0 - engines: {node: '>=10'} - - merge-options@https://registry.npmmirror.com/merge-options/-/merge-options-1.0.1.tgz: - resolution: {integrity: sha512-iuPV41VWKWBIOpBsjoxjDZw8/GbSfZ2mk7N1453bwMrfzdrIk7EzBd+8UVR6rkw67th7xnk9Dytl3J+lHPdxvg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/merge-options/-/merge-options-1.0.1.tgz} - name: merge-options - version: 1.0.1 - engines: {node: '>=4'} - - merge-stream@https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz} - name: merge-stream - version: 2.0.0 - - merge-stream@https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz} - name: merge-stream - version: 2.0.0 - - merge2@https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz} - name: merge2 - version: 1.4.1 - engines: {node: '>= 8'} - - merge@https://registry.npmmirror.com/merge/-/merge-2.1.1.tgz: - resolution: {integrity: sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/merge/-/merge-2.1.1.tgz} - name: merge - version: 2.1.1 - - micromatch@https://registry.npmmirror.com/micromatch/-/micromatch-3.1.0.tgz: - resolution: {integrity: sha512-3StSelAE+hnRvMs8IdVW7Uhk8CVed5tp+kLLGlBP6WiRAXS21GPGu/Nat4WNPXj2Eoc24B02SaeoyozPMfj0/g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/micromatch/-/micromatch-3.1.0.tgz} - name: micromatch - version: 3.1.0 - engines: {node: '>=0.10.0'} - - micromatch@https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz: - resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz} - name: micromatch - version: 4.0.5 - engines: {node: '>=8.6'} - - mime-db@https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz} - name: mime-db - version: 1.52.0 - engines: {node: '>= 0.6'} - - mime-db@https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz} - name: mime-db - version: 1.52.0 - engines: {node: '>= 0.6'} - - mime-types@https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz} - name: mime-types - version: 2.1.35 - engines: {node: '>= 0.6'} - - mime@https://registry.npmjs.org/mime/-/mime-1.6.0.tgz: - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/mime/-/mime-1.6.0.tgz} - name: mime - version: 1.6.0 - engines: {node: '>=4'} - hasBin: true - - mime@https://registry.npmmirror.com/mime/-/mime-1.6.0.tgz: - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/mime/-/mime-1.6.0.tgz} - name: mime - version: 1.6.0 - engines: {node: '>=4'} - hasBin: true - - mimic-fn@https://registry.npmmirror.com/mimic-fn/-/mimic-fn-1.2.0.tgz: - resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/mimic-fn/-/mimic-fn-1.2.0.tgz} - name: mimic-fn - version: 1.2.0 - engines: {node: '>=4'} - - mimic-fn@https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz} - name: mimic-fn - version: 2.1.0 - engines: {node: '>=6'} - - mimic-response@https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz: - resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz} - name: mimic-response - version: 1.0.1 - engines: {node: '>=4'} - - mimic-response@https://registry.npmmirror.com/mimic-response/-/mimic-response-1.0.1.tgz: - resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/mimic-response/-/mimic-response-1.0.1.tgz} - name: mimic-response - version: 1.0.1 - engines: {node: '>=4'} - - min-indent@https://registry.npmmirror.com/min-indent/-/min-indent-1.0.1.tgz: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/min-indent/-/min-indent-1.0.1.tgz} - name: min-indent - version: 1.0.1 - engines: {node: '>=4'} - - minimatch@https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz} - name: minimatch - version: 3.1.2 - - minimatch@https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz} - name: minimatch - version: 5.1.6 - engines: {node: '>=10'} - - minimatch@https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz} - name: minimatch - version: 3.1.2 - - minimatch@https://registry.npmmirror.com/minimatch/-/minimatch-5.1.6.tgz: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/minimatch/-/minimatch-5.1.6.tgz} - name: minimatch - version: 5.1.6 - engines: {node: '>=10'} - - minimist-options@https://registry.npmmirror.com/minimist-options/-/minimist-options-4.1.0.tgz: - resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/minimist-options/-/minimist-options-4.1.0.tgz} - name: minimist-options - version: 4.1.0 - engines: {node: '>= 6'} - - minimist@https://registry.npmmirror.com/minimist/-/minimist-1.2.5.tgz: - resolution: {integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/minimist/-/minimist-1.2.5.tgz} - name: minimist - version: 1.2.5 - - minimist@https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz} - name: minimist - version: 1.2.8 - - mitt@https://registry.npmmirror.com/mitt/-/mitt-2.1.0.tgz: - resolution: {integrity: sha512-ILj2TpLiysu2wkBbWjAmww7TkZb65aiQO+DkVdUTBpBXq+MHYiETENkKFMtsJZX1Lf4pe4QOrTSjIfUwN5lRdg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/mitt/-/mitt-2.1.0.tgz} - name: mitt - version: 2.1.0 - - mitt@https://registry.npmmirror.com/mitt/-/mitt-3.0.1.tgz: - resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/mitt/-/mitt-3.0.1.tgz} - name: mitt - version: 3.0.1 - - mixin-deep@https://registry.npmmirror.com/mixin-deep/-/mixin-deep-1.3.2.tgz: - resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/mixin-deep/-/mixin-deep-1.3.2.tgz} - name: mixin-deep - version: 1.3.2 - engines: {node: '>=0.10.0'} - - mkdirp@https://registry.npmmirror.com/mkdirp/-/mkdirp-0.5.6.tgz: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/mkdirp/-/mkdirp-0.5.6.tgz} - name: mkdirp - version: 0.5.6 - hasBin: true - - mockjs@https://registry.npmmirror.com/mockjs/-/mockjs-1.1.0.tgz: - resolution: {integrity: sha512-eQsKcWzIaZzEZ07NuEyO4Nw65g0hdWAyurVol1IPl1gahRwY+svqzfgfey8U8dahLwG44d6/RwEzuK52rSa/JQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/mockjs/-/mockjs-1.1.0.tgz} - name: mockjs - version: 1.1.0 - hasBin: true - - modify-values@https://registry.npmmirror.com/modify-values/-/modify-values-1.0.1.tgz: - resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/modify-values/-/modify-values-1.0.1.tgz} - name: modify-values - version: 1.0.1 - engines: {node: '>=0.10.0'} - - mousetrap@https://registry.npmmirror.com/mousetrap/-/mousetrap-1.6.5.tgz: - resolution: {integrity: sha512-QNo4kEepaIBwiT8CDhP98umTetp+JNfQYBWvC1pc6/OAibuXtRcxZ58Qz8skvEHYvURne/7R8T5VoOI7rDsEUA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/mousetrap/-/mousetrap-1.6.5.tgz} - name: mousetrap - version: 1.6.5 - - mozjpeg@https://registry.npmmirror.com/mozjpeg/-/mozjpeg-7.1.1.tgz: - resolution: {integrity: sha512-iIDxWvzhWvLC9mcRJ1uSkiKaj4drF58oCqK2bITm5c2Jt6cJ8qQjSSru2PCaysG+hLIinryj8mgz5ZJzOYTv1A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/mozjpeg/-/mozjpeg-7.1.1.tgz} - name: mozjpeg - version: 7.1.1 - engines: {node: '>=10'} - hasBin: true - - mri@https://registry.npmmirror.com/mri/-/mri-1.2.0.tgz: - resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/mri/-/mri-1.2.0.tgz} - name: mri - version: 1.2.0 - engines: {node: '>=4'} - - ms@https://registry.npmjs.org/ms/-/ms-2.1.2.tgz: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/ms/-/ms-2.1.2.tgz} - name: ms - version: 2.1.2 - - ms@https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz: - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz} - name: ms - version: 2.0.0 - - ms@https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz} - name: ms - version: 2.1.2 - - ms@https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz} - name: ms - version: 2.1.3 - - multimatch@https://registry.npmmirror.com/multimatch/-/multimatch-4.0.0.tgz: - resolution: {integrity: sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/multimatch/-/multimatch-4.0.0.tgz} - name: multimatch - version: 4.0.0 - engines: {node: '>=8'} - - mute-stream@https://registry.npmmirror.com/mute-stream/-/mute-stream-0.0.7.tgz: - resolution: {integrity: sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/mute-stream/-/mute-stream-0.0.7.tgz} - name: mute-stream - version: 0.0.7 - - mute-stream@https://registry.npmmirror.com/mute-stream/-/mute-stream-0.0.8.tgz: - resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/mute-stream/-/mute-stream-0.0.8.tgz} - name: mute-stream - version: 0.0.8 - - nanoid@https://registry.npmmirror.com/nanoid/-/nanoid-3.3.6.tgz: - resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/nanoid/-/nanoid-3.3.6.tgz} - name: nanoid - version: 3.3.6 - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - - nanomatch@https://registry.npmmirror.com/nanomatch/-/nanomatch-1.2.13.tgz: - resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/nanomatch/-/nanomatch-1.2.13.tgz} - name: nanomatch - version: 1.2.13 - engines: {node: '>=0.10.0'} - - nanopop@https://registry.npmmirror.com/nanopop/-/nanopop-2.3.0.tgz: - resolution: {integrity: sha512-fzN+T2K7/Ah25XU02MJkPZ5q4Tj5FpjmIYq4rvoHX4yb16HzFdCO6JxFFn5Y/oBhQ8no8fUZavnyIv9/+xkBBw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/nanopop/-/nanopop-2.3.0.tgz} - name: nanopop - version: 2.3.0 - - natural-compare@https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz} - name: natural-compare - version: 1.4.0 - - needle@https://registry.npmjs.org/needle/-/needle-2.9.1.tgz: - resolution: {integrity: sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/needle/-/needle-2.9.1.tgz} - name: needle - version: 2.9.1 - engines: {node: '>= 4.4.x'} - hasBin: true - - neo-async@https://registry.npmmirror.com/neo-async/-/neo-async-2.6.2.tgz: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/neo-async/-/neo-async-2.6.2.tgz} - name: neo-async - version: 2.6.2 - - nice-try@https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz: - resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz} - name: nice-try - version: 1.0.5 - - nice-try@https://registry.npmmirror.com/nice-try/-/nice-try-1.0.5.tgz: - resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/nice-try/-/nice-try-1.0.5.tgz} - name: nice-try - version: 1.0.5 - - no-case@https://registry.npmmirror.com/no-case/-/no-case-3.0.4.tgz: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/no-case/-/no-case-3.0.4.tgz} - name: no-case - version: 3.0.4 - - node-fetch@https://registry.npmmirror.com/node-fetch/-/node-fetch-2.6.12.tgz: - resolution: {integrity: sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/node-fetch/-/node-fetch-2.6.12.tgz} - name: node-fetch - version: 2.6.12 - engines: {node: 4.x || >=6.0.0} - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true - - node-html-parser@https://registry.npmmirror.com/node-html-parser/-/node-html-parser-5.4.2.tgz: - resolution: {integrity: sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/node-html-parser/-/node-html-parser-5.4.2.tgz} - name: node-html-parser - version: 5.4.2 - - node-int64@https://registry.npmmirror.com/node-int64/-/node-int64-0.4.0.tgz: - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/node-int64/-/node-int64-0.4.0.tgz} - name: node-int64 - version: 0.4.0 - - node-releases@https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz: - resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz} - name: node-releases - version: 2.0.13 - - node-releases@https://registry.npmmirror.com/node-releases/-/node-releases-2.0.13.tgz: - resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/node-releases/-/node-releases-2.0.13.tgz} - name: node-releases - version: 2.0.13 - - normalize-package-data@https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz: - resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz} - name: normalize-package-data - version: 2.5.0 - - normalize-package-data@https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz: - resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz} - name: normalize-package-data - version: 3.0.3 - engines: {node: '>=10'} - - normalize-path@https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz} - name: normalize-path - version: 3.0.0 - engines: {node: '>=0.10.0'} - - normalize-range@https://registry.npmmirror.com/normalize-range/-/normalize-range-0.1.2.tgz: - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/normalize-range/-/normalize-range-0.1.2.tgz} - name: normalize-range - version: 0.1.2 - engines: {node: '>=0.10.0'} - - normalize-selector@https://registry.npmmirror.com/normalize-selector/-/normalize-selector-0.2.0.tgz: - resolution: {integrity: sha512-dxvWdI8gw6eAvk9BlPffgEoGfM7AdijoCwOEJge3e3ulT2XLgmU7KvvxprOaCu05Q1uGRHmOhHe1r6emZoKyFw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/normalize-selector/-/normalize-selector-0.2.0.tgz} - name: normalize-selector - version: 0.2.0 - - normalize-url@https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz: - resolution: {integrity: sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz} - name: normalize-url - version: 2.0.1 - engines: {node: '>=4'} - - npm-conf@https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz: - resolution: {integrity: sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz} - name: npm-conf - version: 1.1.3 - engines: {node: '>=4'} - - npm-conf@https://registry.npmmirror.com/npm-conf/-/npm-conf-1.1.3.tgz: - resolution: {integrity: sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/npm-conf/-/npm-conf-1.1.3.tgz} - name: npm-conf - version: 1.1.3 - engines: {node: '>=4'} - - npm-run-all@https://registry.npmmirror.com/npm-run-all/-/npm-run-all-4.1.5.tgz: - resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/npm-run-all/-/npm-run-all-4.1.5.tgz} - name: npm-run-all - version: 4.1.5 - engines: {node: '>= 4'} - hasBin: true - - npm-run-path@https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz: - resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz} - name: npm-run-path - version: 2.0.2 - engines: {node: '>=4'} - - npm-run-path@https://registry.npmmirror.com/npm-run-path/-/npm-run-path-2.0.2.tgz: - resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/npm-run-path/-/npm-run-path-2.0.2.tgz} - name: npm-run-path - version: 2.0.2 - engines: {node: '>=4'} - - npm-run-path@https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz} - name: npm-run-path - version: 4.0.1 - engines: {node: '>=8'} - - nprogress@https://registry.npmmirror.com/nprogress/-/nprogress-0.2.0.tgz: - resolution: {integrity: sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/nprogress/-/nprogress-0.2.0.tgz} - name: nprogress - version: 0.2.0 - - nth-check@https://registry.npmmirror.com/nth-check/-/nth-check-2.1.1.tgz: - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/nth-check/-/nth-check-2.1.1.tgz} - name: nth-check - version: 2.1.1 - - nwsapi@https://registry.npmmirror.com/nwsapi/-/nwsapi-2.2.7.tgz: - resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/nwsapi/-/nwsapi-2.2.7.tgz} - name: nwsapi - version: 2.2.7 - - object-assign@https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz} - name: object-assign - version: 4.1.1 - engines: {node: '>=0.10.0'} - - object-assign@https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz} - name: object-assign - version: 4.1.1 - engines: {node: '>=0.10.0'} - - object-copy@https://registry.npmmirror.com/object-copy/-/object-copy-0.1.0.tgz: - resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/object-copy/-/object-copy-0.1.0.tgz} - name: object-copy - version: 0.1.0 - engines: {node: '>=0.10.0'} - - object-inspect@https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz: - resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz} - name: object-inspect - version: 1.12.3 - - object-inspect@https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.3.tgz: - resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.3.tgz} - name: object-inspect - version: 1.12.3 - - object-keys@https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz} - name: object-keys - version: 1.1.1 - engines: {node: '>= 0.4'} - - object-keys@https://registry.npmmirror.com/object-keys/-/object-keys-1.1.1.tgz: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/object-keys/-/object-keys-1.1.1.tgz} - name: object-keys - version: 1.1.1 - engines: {node: '>= 0.4'} - - object-visit@https://registry.npmmirror.com/object-visit/-/object-visit-1.0.1.tgz: - resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/object-visit/-/object-visit-1.0.1.tgz} - name: object-visit - version: 1.0.1 - engines: {node: '>=0.10.0'} - - object.assign@https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz: - resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz} - name: object.assign - version: 4.1.4 - engines: {node: '>= 0.4'} - - object.assign@https://registry.npmmirror.com/object.assign/-/object.assign-4.1.4.tgz: - resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/object.assign/-/object.assign-4.1.4.tgz} - name: object.assign - version: 4.1.4 - engines: {node: '>= 0.4'} - - object.pick@https://registry.npmmirror.com/object.pick/-/object.pick-1.3.0.tgz: - resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/object.pick/-/object.pick-1.3.0.tgz} - name: object.pick - version: 1.3.0 - engines: {node: '>=0.10.0'} - - on-finished@https://registry.npmmirror.com/on-finished/-/on-finished-2.3.0.tgz: - resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/on-finished/-/on-finished-2.3.0.tgz} - name: on-finished - version: 2.3.0 - engines: {node: '>= 0.8'} - - once@https://registry.npmjs.org/once/-/once-1.4.0.tgz: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/once/-/once-1.4.0.tgz} - name: once - version: 1.4.0 - - once@https://registry.npmmirror.com/once/-/once-1.4.0.tgz: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/once/-/once-1.4.0.tgz} - name: once - version: 1.4.0 - - onetime@https://registry.npmmirror.com/onetime/-/onetime-2.0.1.tgz: - resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/onetime/-/onetime-2.0.1.tgz} - name: onetime - version: 2.0.1 - engines: {node: '>=4'} - - onetime@https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz} - name: onetime - version: 5.1.2 - engines: {node: '>=6'} - - open@https://registry.npmmirror.com/open/-/open-8.4.2.tgz: - resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/open/-/open-8.4.2.tgz} - name: open - version: 8.4.2 - engines: {node: '>=12'} - - opener@https://registry.npmmirror.com/opener/-/opener-1.5.2.tgz: - resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/opener/-/opener-1.5.2.tgz} - name: opener - version: 1.5.2 - hasBin: true - - optionator@https://registry.npmmirror.com/optionator/-/optionator-0.9.3.tgz: - resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/optionator/-/optionator-0.9.3.tgz} - name: optionator - version: 0.9.3 - engines: {node: '>= 0.8.0'} - - optipng-bin@https://registry.npmmirror.com/optipng-bin/-/optipng-bin-7.0.1.tgz: - resolution: {integrity: sha512-W99mpdW7Nt2PpFiaO+74pkht7KEqkXkeRomdWXfEz3SALZ6hns81y/pm1dsGZ6ItUIfchiNIP6ORDr1zETU1jA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/optipng-bin/-/optipng-bin-7.0.1.tgz} - name: optipng-bin - version: 7.0.1 - engines: {node: '>=10'} - hasBin: true - - ora@https://registry.npmmirror.com/ora/-/ora-5.4.1.tgz: - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ora/-/ora-5.4.1.tgz} - name: ora - version: 5.4.1 - engines: {node: '>=10'} - - os-filter-obj@https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz: - resolution: {integrity: sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz} - name: os-filter-obj - version: 2.0.0 - engines: {node: '>=4'} - - os-tmpdir@https://registry.npmmirror.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz} - name: os-tmpdir - version: 1.0.2 - engines: {node: '>=0.10.0'} - - ow@https://registry.npmmirror.com/ow/-/ow-0.17.0.tgz: - resolution: {integrity: sha512-i3keDzDQP5lWIe4oODyDFey1qVrq2hXKTuTH2VpqwpYtzPiKZt2ziRI4NBQmgW40AnV5Euz17OyWweCb+bNEQA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ow/-/ow-0.17.0.tgz} - name: ow - version: 0.17.0 - engines: {node: '>=10'} - - p-cancelable@https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz: - resolution: {integrity: sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz} - name: p-cancelable - version: 0.4.1 - engines: {node: '>=4'} - - p-cancelable@https://registry.npmmirror.com/p-cancelable/-/p-cancelable-0.3.0.tgz: - resolution: {integrity: sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/p-cancelable/-/p-cancelable-0.3.0.tgz} - name: p-cancelable - version: 0.3.0 - engines: {node: '>=4'} - - p-event@https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz: - resolution: {integrity: sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz} - name: p-event - version: 2.3.1 - engines: {node: '>=6'} - - p-event@https://registry.npmmirror.com/p-event/-/p-event-1.3.0.tgz: - resolution: {integrity: sha512-hV1zbA7gwqPVFcapfeATaNjQ3J0NuzorHPyG8GPL9g/Y/TplWVBVoCKCXL6Ej2zscrCEv195QNWJXuBH6XZuzA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/p-event/-/p-event-1.3.0.tgz} - name: p-event - version: 1.3.0 - engines: {node: '>=4'} - - p-finally@https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz: - resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz} - name: p-finally - version: 1.0.0 - engines: {node: '>=4'} - - p-finally@https://registry.npmmirror.com/p-finally/-/p-finally-1.0.0.tgz: - resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/p-finally/-/p-finally-1.0.0.tgz} - name: p-finally - version: 1.0.0 - engines: {node: '>=4'} - - p-is-promise@https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz: - resolution: {integrity: sha512-zL7VE4JVS2IFSkR2GQKDSPEVxkoH43/p7oEnwpdCndKYJO0HVeRB7fA8TJwuLOTBREtK0ea8eHaxdwcpob5dmg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz} - name: p-is-promise - version: 1.1.0 - engines: {node: '>=4'} - - p-limit@https://registry.npmmirror.com/p-limit/-/p-limit-1.3.0.tgz: - resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/p-limit/-/p-limit-1.3.0.tgz} - name: p-limit - version: 1.3.0 - engines: {node: '>=4'} - - p-limit@https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz} - name: p-limit - version: 2.3.0 - engines: {node: '>=6'} - - p-limit@https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz} - name: p-limit - version: 3.1.0 - engines: {node: '>=10'} - - p-locate@https://registry.npmmirror.com/p-locate/-/p-locate-2.0.0.tgz: - resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/p-locate/-/p-locate-2.0.0.tgz} - name: p-locate - version: 2.0.0 - engines: {node: '>=4'} - - p-locate@https://registry.npmmirror.com/p-locate/-/p-locate-4.1.0.tgz: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/p-locate/-/p-locate-4.1.0.tgz} - name: p-locate - version: 4.1.0 - engines: {node: '>=8'} - - p-locate@https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz} - name: p-locate - version: 5.0.0 - engines: {node: '>=10'} - - p-map-series@https://registry.npmmirror.com/p-map-series/-/p-map-series-1.0.0.tgz: - resolution: {integrity: sha512-4k9LlvY6Bo/1FcIdV33wqZQES0Py+iKISU9Uc8p8AjWoZPnFKMpVIVD3s0EYn4jzLh1I+WeUZkJ0Yoa4Qfw3Kg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/p-map-series/-/p-map-series-1.0.0.tgz} - name: p-map-series - version: 1.0.0 - engines: {node: '>=4'} - - p-map@https://registry.npmmirror.com/p-map/-/p-map-4.0.0.tgz: - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/p-map/-/p-map-4.0.0.tgz} - name: p-map - version: 4.0.0 - engines: {node: '>=10'} - - p-pipe@https://registry.npmmirror.com/p-pipe/-/p-pipe-3.1.0.tgz: - resolution: {integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/p-pipe/-/p-pipe-3.1.0.tgz} - name: p-pipe - version: 3.1.0 - engines: {node: '>=8'} - - p-reduce@https://registry.npmmirror.com/p-reduce/-/p-reduce-1.0.0.tgz: - resolution: {integrity: sha512-3Tx1T3oM1xO/Y8Gj0sWyE78EIJZ+t+aEmXUdvQgvGmSMri7aPTHoovbXEreWKkL5j21Er60XAWLTzKbAKYOujQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/p-reduce/-/p-reduce-1.0.0.tgz} - name: p-reduce - version: 1.0.0 - engines: {node: '>=4'} - - p-timeout@https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz: - resolution: {integrity: sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz} - name: p-timeout - version: 2.0.1 - engines: {node: '>=4'} - - p-timeout@https://registry.npmmirror.com/p-timeout/-/p-timeout-1.2.1.tgz: - resolution: {integrity: sha512-gb0ryzr+K2qFqFv6qi3khoeqMZF/+ajxQipEF6NteZVnvz9tzdsfAVj3lYtn1gAXvH5lfLwfxEII799gt/mRIA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/p-timeout/-/p-timeout-1.2.1.tgz} - name: p-timeout - version: 1.2.1 - engines: {node: '>=4'} - - p-try@https://registry.npmmirror.com/p-try/-/p-try-1.0.0.tgz: - resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/p-try/-/p-try-1.0.0.tgz} - name: p-try - version: 1.0.0 - engines: {node: '>=4'} - - p-try@https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz} - name: p-try - version: 2.2.0 - engines: {node: '>=6'} - - param-case@https://registry.npmmirror.com/param-case/-/param-case-3.0.4.tgz: - resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/param-case/-/param-case-3.0.4.tgz} - name: param-case - version: 3.0.4 - - parent-module@https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz} - name: parent-module - version: 1.0.1 - engines: {node: '>=6'} - - parse-json@https://registry.npmmirror.com/parse-json/-/parse-json-2.2.0.tgz: - resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/parse-json/-/parse-json-2.2.0.tgz} - name: parse-json - version: 2.2.0 - engines: {node: '>=0.10.0'} - - parse-json@https://registry.npmmirror.com/parse-json/-/parse-json-4.0.0.tgz: - resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/parse-json/-/parse-json-4.0.0.tgz} - name: parse-json - version: 4.0.0 - engines: {node: '>=4'} - - parse-json@https://registry.npmmirror.com/parse-json/-/parse-json-5.2.0.tgz: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/parse-json/-/parse-json-5.2.0.tgz} - name: parse-json - version: 5.2.0 - engines: {node: '>=8'} - - parse-node-version@https://registry.npmmirror.com/parse-node-version/-/parse-node-version-1.0.1.tgz: - resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/parse-node-version/-/parse-node-version-1.0.1.tgz} - name: parse-node-version - version: 1.0.1 - engines: {node: '>= 0.10'} - - parse-passwd@https://registry.npmmirror.com/parse-passwd/-/parse-passwd-1.0.0.tgz: - resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/parse-passwd/-/parse-passwd-1.0.0.tgz} - name: parse-passwd - version: 1.0.0 - engines: {node: '>=0.10.0'} - - parse5@https://registry.npmmirror.com/parse5/-/parse5-6.0.1.tgz: - resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/parse5/-/parse5-6.0.1.tgz} - name: parse5 - version: 6.0.1 - - parseurl@https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz: - resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz} - name: parseurl - version: 1.3.3 - engines: {node: '>= 0.8'} - - pascal-case@https://registry.npmmirror.com/pascal-case/-/pascal-case-3.1.2.tgz: - resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pascal-case/-/pascal-case-3.1.2.tgz} - name: pascal-case - version: 3.1.2 - - pascalcase@https://registry.npmmirror.com/pascalcase/-/pascalcase-0.1.1.tgz: - resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pascalcase/-/pascalcase-0.1.1.tgz} - name: pascalcase - version: 0.1.1 - engines: {node: '>=0.10.0'} - - path-case@https://registry.npmmirror.com/path-case/-/path-case-3.0.4.tgz: - resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/path-case/-/path-case-3.0.4.tgz} - name: path-case - version: 3.0.4 - - path-exists@https://registry.npmmirror.com/path-exists/-/path-exists-2.1.0.tgz: - resolution: {integrity: sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/path-exists/-/path-exists-2.1.0.tgz} - name: path-exists - version: 2.1.0 - engines: {node: '>=0.10.0'} - - path-exists@https://registry.npmmirror.com/path-exists/-/path-exists-3.0.0.tgz: - resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/path-exists/-/path-exists-3.0.0.tgz} - name: path-exists - version: 3.0.0 - engines: {node: '>=4'} - - path-exists@https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz} - name: path-exists - version: 4.0.0 - engines: {node: '>=8'} - - path-is-absolute@https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz} - name: path-is-absolute - version: 1.0.1 - engines: {node: '>=0.10.0'} - - path-is-absolute@https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz} - name: path-is-absolute - version: 1.0.1 - engines: {node: '>=0.10.0'} - - path-key@https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz: - resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz} - name: path-key - version: 2.0.1 - engines: {node: '>=4'} - - path-key@https://registry.npmmirror.com/path-key/-/path-key-2.0.1.tgz: - resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/path-key/-/path-key-2.0.1.tgz} - name: path-key - version: 2.0.1 - engines: {node: '>=4'} - - path-key@https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz} - name: path-key - version: 3.1.1 - engines: {node: '>=8'} - - path-parse@https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz} - name: path-parse - version: 1.0.7 - - path-parse@https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz} - name: path-parse - version: 1.0.7 - - path-to-regexp@https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-6.2.0.tgz: - resolution: {integrity: sha512-f66KywYG6+43afgE/8j/GoiNyygk/bnoCbps++3ErRKsIYkGGupyv07R2Ok5m9i67Iqc+T2g1eAUGUPzWhYTyg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-6.2.0.tgz} - name: path-to-regexp - version: 6.2.0 - - path-type@https://registry.npmmirror.com/path-type/-/path-type-1.1.0.tgz: - resolution: {integrity: sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/path-type/-/path-type-1.1.0.tgz} - name: path-type - version: 1.1.0 - engines: {node: '>=0.10.0'} - - path-type@https://registry.npmmirror.com/path-type/-/path-type-3.0.0.tgz: - resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/path-type/-/path-type-3.0.0.tgz} - name: path-type - version: 3.0.0 - engines: {node: '>=4'} - - path-type@https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz} - name: path-type - version: 4.0.0 - engines: {node: '>=8'} - - pathe@https://registry.npmmirror.com/pathe/-/pathe-0.2.0.tgz: - resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pathe/-/pathe-0.2.0.tgz} - name: pathe - version: 0.2.0 - - pend@https://registry.npmjs.org/pend/-/pend-1.2.0.tgz: - resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/pend/-/pend-1.2.0.tgz} - name: pend - version: 1.2.0 - - pend@https://registry.npmmirror.com/pend/-/pend-1.2.0.tgz: - resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pend/-/pend-1.2.0.tgz} - name: pend - version: 1.2.0 - - performance-now@https://registry.npmmirror.com/performance-now/-/performance-now-2.1.0.tgz: - resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/performance-now/-/performance-now-2.1.0.tgz} - name: performance-now - version: 2.1.0 - - picocolors@https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz} - name: picocolors - version: 1.0.0 - - picocolors@https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz} - name: picocolors - version: 1.0.0 - - picomatch@https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz} - name: picomatch - version: 2.3.1 - engines: {node: '>=8.6'} - - picomatch@https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz} - name: picomatch - version: 2.3.1 - engines: {node: '>=8.6'} - - pidtree@https://registry.npmmirror.com/pidtree/-/pidtree-0.3.1.tgz: - resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pidtree/-/pidtree-0.3.1.tgz} - name: pidtree - version: 0.3.1 - engines: {node: '>=0.10'} - hasBin: true - - pidtree@https://registry.npmmirror.com/pidtree/-/pidtree-0.5.0.tgz: - resolution: {integrity: sha512-9nxspIM7OpZuhBxPg73Zvyq7j1QMPMPsGKTqRc2XOaFQauDvoNz9fM1Wdkjmeo7l9GXOZiRs97sPkuayl39wjA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pidtree/-/pidtree-0.5.0.tgz} - name: pidtree - version: 0.5.0 - engines: {node: '>=0.10'} - hasBin: true - - pify@https://registry.npmjs.org/pify/-/pify-2.3.0.tgz: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/pify/-/pify-2.3.0.tgz} - name: pify - version: 2.3.0 - engines: {node: '>=0.10.0'} - - pify@https://registry.npmjs.org/pify/-/pify-3.0.0.tgz: - resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/pify/-/pify-3.0.0.tgz} - name: pify - version: 3.0.0 - engines: {node: '>=4'} - - pify@https://registry.npmjs.org/pify/-/pify-4.0.1.tgz: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/pify/-/pify-4.0.1.tgz} - name: pify - version: 4.0.1 - engines: {node: '>=6'} - - pify@https://registry.npmmirror.com/pify/-/pify-2.3.0.tgz: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pify/-/pify-2.3.0.tgz} - name: pify - version: 2.3.0 - engines: {node: '>=0.10.0'} - - pify@https://registry.npmmirror.com/pify/-/pify-3.0.0.tgz: - resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pify/-/pify-3.0.0.tgz} - name: pify - version: 3.0.0 - engines: {node: '>=4'} - - pify@https://registry.npmmirror.com/pify/-/pify-4.0.1.tgz: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pify/-/pify-4.0.1.tgz} - name: pify - version: 4.0.1 - engines: {node: '>=6'} - - pinia@https://registry.npmmirror.com/pinia/-/pinia-2.0.12.tgz: - resolution: {integrity: sha512-tUeuYGFrLU5irmGyRAIxp35q1OTcZ8sKpGT4XkPeVcG35W4R6cfXDbCGexzmVqH5lTQJJTXXbNGutIu9yS5yew==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pinia/-/pinia-2.0.12.tgz} - name: pinia - version: 2.0.12 - peerDependencies: - '@vue/composition-api': ^1.4.0 - typescript: '>=4.4.4' - vue: ^2.6.14 || ^3.2.0 - peerDependenciesMeta: - '@vue/composition-api': - optional: true - typescript: - optional: true - - pinkie-promise@https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz: - resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz} - name: pinkie-promise - version: 2.0.1 - engines: {node: '>=0.10.0'} - - pinkie-promise@https://registry.npmmirror.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz: - resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz} - name: pinkie-promise - version: 2.0.1 - engines: {node: '>=0.10.0'} - - pinkie@https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz: - resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz} - name: pinkie - version: 2.0.4 - engines: {node: '>=0.10.0'} - - pinkie@https://registry.npmmirror.com/pinkie/-/pinkie-2.0.4.tgz: - resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pinkie/-/pinkie-2.0.4.tgz} - name: pinkie - version: 2.0.4 - engines: {node: '>=0.10.0'} - - pinyin-pro@https://registry.npmmirror.com/pinyin-pro/-/pinyin-pro-3.11.0.tgz: - resolution: {integrity: sha512-l2JDFyEIMdTIyff3OkuoSIJCpYTwrxrR2KuMyGMjdNEcHGcEVSKIEb7mvKEKOhJaZLp2FB++Jax+MD0BWafbhg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pinyin-pro/-/pinyin-pro-3.11.0.tgz} - name: pinyin-pro - version: 3.11.0 - - pirates@https://registry.npmmirror.com/pirates/-/pirates-4.0.6.tgz: - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pirates/-/pirates-4.0.6.tgz} - name: pirates - version: 4.0.6 - engines: {node: '>= 6'} - - pkg-dir@https://registry.npmmirror.com/pkg-dir/-/pkg-dir-4.2.0.tgz: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pkg-dir/-/pkg-dir-4.2.0.tgz} - name: pkg-dir - version: 4.2.0 - engines: {node: '>=8'} - - pngjs@https://registry.npmmirror.com/pngjs/-/pngjs-5.0.0.tgz: - resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pngjs/-/pngjs-5.0.0.tgz} - name: pngjs - version: 5.0.0 - engines: {node: '>=10.13.0'} - - pngquant-bin@https://registry.npmmirror.com/pngquant-bin/-/pngquant-bin-6.0.1.tgz: - resolution: {integrity: sha512-Q3PUyolfktf+hYio6wsg3SanQzEU/v8aICg/WpzxXcuCMRb7H2Q81okfpcEztbMvw25ILjd3a87doj2N9kvbpQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pngquant-bin/-/pngquant-bin-6.0.1.tgz} - name: pngquant-bin - version: 6.0.1 - engines: {node: '>=10'} - hasBin: true - - portfinder@https://registry.npmmirror.com/portfinder/-/portfinder-1.0.32.tgz: - resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/portfinder/-/portfinder-1.0.32.tgz} - name: portfinder - version: 1.0.32 - engines: {node: '>= 0.12.0'} - - posix-character-classes@https://registry.npmmirror.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz: - resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz} - name: posix-character-classes - version: 0.1.1 - engines: {node: '>=0.10.0'} - - postcss-html@https://registry.npmmirror.com/postcss-html/-/postcss-html-1.4.1.tgz: - resolution: {integrity: sha512-OKihuWxPuBQrQeLNsavP7ytJ9IYNj/ViAXB2v7Qjh56LnfESKrkahKA9si4VfPN8xtz6oqUE6KdL0bTPrHJr6g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/postcss-html/-/postcss-html-1.4.1.tgz} - name: postcss-html - version: 1.4.1 - engines: {node: ^12 || >=14} - - postcss-less@https://registry.npmmirror.com/postcss-less/-/postcss-less-6.0.0.tgz: - resolution: {integrity: sha512-FPX16mQLyEjLzEuuJtxA8X3ejDLNGGEG503d2YGZR5Ask1SpDN8KmZUMpzCvyalWRywAn1n1VOA5dcqfCLo5rg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/postcss-less/-/postcss-less-6.0.0.tgz} - name: postcss-less - version: 6.0.0 - engines: {node: '>=12'} - peerDependencies: - postcss: ^8.3.5 - - postcss-media-query-parser@https://registry.npmmirror.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz: - resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz} - name: postcss-media-query-parser - version: 0.2.3 - - postcss-prefix-selector@https://registry.npmmirror.com/postcss-prefix-selector/-/postcss-prefix-selector-1.16.0.tgz: - resolution: {integrity: sha512-rdVMIi7Q4B0XbXqNUEI+Z4E+pueiu/CS5E6vRCQommzdQ/sgsS4dK42U7GX8oJR+TJOtT+Qv3GkNo6iijUMp3Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/postcss-prefix-selector/-/postcss-prefix-selector-1.16.0.tgz} - name: postcss-prefix-selector - version: 1.16.0 - peerDependencies: - postcss: '>4 <9' - - postcss-resolve-nested-selector@https://registry.npmmirror.com/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz: - resolution: {integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz} - name: postcss-resolve-nested-selector - version: 0.1.1 - - postcss-safe-parser@https://registry.npmmirror.com/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz: - resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz} - name: postcss-safe-parser - version: 6.0.0 - engines: {node: '>=12.0'} - peerDependencies: - postcss: ^8.3.3 - - postcss-selector-parser@https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz: - resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz} - name: postcss-selector-parser - version: 6.0.13 - engines: {node: '>=4'} - - postcss-sorting@https://registry.npmmirror.com/postcss-sorting/-/postcss-sorting-7.0.1.tgz: - resolution: {integrity: sha512-iLBFYz6VRYyLJEJsBJ8M3TCqNcckVzz4wFounSc5Oez35ogE/X+aoC5fFu103Ot7NyvjU3/xqIXn93Gp3kJk4g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/postcss-sorting/-/postcss-sorting-7.0.1.tgz} - name: postcss-sorting - version: 7.0.1 - peerDependencies: - postcss: ^8.3.9 - - postcss-value-parser@https://registry.npmmirror.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz} - name: postcss-value-parser - version: 4.2.0 - - postcss@https://registry.npmmirror.com/postcss/-/postcss-5.2.18.tgz: - resolution: {integrity: sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/postcss/-/postcss-5.2.18.tgz} - name: postcss - version: 5.2.18 - engines: {node: '>=0.12'} - - postcss@https://registry.npmmirror.com/postcss/-/postcss-8.4.12.tgz: - resolution: {integrity: sha512-lg6eITwYe9v6Hr5CncVbK70SoioNQIq81nsaG86ev5hAidQvmOeETBqs7jm43K2F5/Ley3ytDtriImV6TpNiSg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/postcss/-/postcss-8.4.12.tgz} - name: postcss - version: 8.4.12 - engines: {node: ^10 || ^12 || >=14} - - postcss@https://registry.npmmirror.com/postcss/-/postcss-8.4.27.tgz: - resolution: {integrity: sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/postcss/-/postcss-8.4.27.tgz} - name: postcss - version: 8.4.27 - engines: {node: ^10 || ^12 || >=14} - - posthtml-parser@https://registry.npmmirror.com/posthtml-parser/-/posthtml-parser-0.2.1.tgz: - resolution: {integrity: sha512-nPC53YMqJnc/+1x4fRYFfm81KV2V+G9NZY+hTohpYg64Ay7NemWWcV4UWuy/SgMupqQ3kJ88M/iRfZmSnxT+pw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/posthtml-parser/-/posthtml-parser-0.2.1.tgz} - name: posthtml-parser - version: 0.2.1 - - posthtml-rename-id@https://registry.npmmirror.com/posthtml-rename-id/-/posthtml-rename-id-1.0.12.tgz: - resolution: {integrity: sha512-UKXf9OF/no8WZo9edRzvuMenb6AD5hDLzIepJW+a4oJT+T/Lx7vfMYWT4aWlGNQh0WMhnUx1ipN9OkZ9q+ddEw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/posthtml-rename-id/-/posthtml-rename-id-1.0.12.tgz} - name: posthtml-rename-id - version: 1.0.12 - - posthtml-render@https://registry.npmmirror.com/posthtml-render/-/posthtml-render-1.4.0.tgz: - resolution: {integrity: sha512-W1779iVHGfq0Fvh2PROhCe2QhB8mEErgqzo1wpIt36tCgChafP+hbXIhLDOM8ePJrZcFs0vkNEtdibEWVqChqw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/posthtml-render/-/posthtml-render-1.4.0.tgz} - name: posthtml-render - version: 1.4.0 - engines: {node: '>=10'} - - posthtml-svg-mode@https://registry.npmmirror.com/posthtml-svg-mode/-/posthtml-svg-mode-1.0.3.tgz: - resolution: {integrity: sha512-hEqw9NHZ9YgJ2/0G7CECOeuLQKZi8HjWLkBaSVtOWjygQ9ZD8P7tqeowYs7WrFdKsWEKG7o+IlsPY8jrr0CJpQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/posthtml-svg-mode/-/posthtml-svg-mode-1.0.3.tgz} - name: posthtml-svg-mode - version: 1.0.3 - - posthtml@https://registry.npmmirror.com/posthtml/-/posthtml-0.9.2.tgz: - resolution: {integrity: sha512-spBB5sgC4cv2YcW03f/IAUN1pgDJWNWD8FzkyY4mArLUMJW+KlQhlmUdKAHQuPfb00Jl5xIfImeOsf6YL8QK7Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/posthtml/-/posthtml-0.9.2.tgz} - name: posthtml - version: 0.9.2 - engines: {node: '>=0.10.0'} - - preact@https://registry.npmmirror.com/preact/-/preact-10.16.0.tgz: - resolution: {integrity: sha512-XTSj3dJ4roKIC93pald6rWuB2qQJO9gO2iLLyTe87MrjQN+HklueLsmskbywEWqCHlclgz3/M4YLL2iBr9UmMA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/preact/-/preact-10.16.0.tgz} - name: preact - version: 10.16.0 - - prelude-ls@https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz: - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz} - name: prelude-ls - version: 1.2.1 - engines: {node: '>= 0.8.0'} - - prepend-http@https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz: - resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz} - name: prepend-http - version: 2.0.0 - engines: {node: '>=4'} - - prepend-http@https://registry.npmmirror.com/prepend-http/-/prepend-http-1.0.4.tgz: - resolution: {integrity: sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/prepend-http/-/prepend-http-1.0.4.tgz} - name: prepend-http - version: 1.0.4 - engines: {node: '>=0.10.0'} - - prettier-linter-helpers@https://registry.npmmirror.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz: - resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz} - name: prettier-linter-helpers - version: 1.0.0 - engines: {node: '>=6.0.0'} - - prettier@https://registry.npmmirror.com/prettier/-/prettier-2.6.2.tgz: - resolution: {integrity: sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/prettier/-/prettier-2.6.2.tgz} - name: prettier - version: 2.6.2 - engines: {node: '>=10.13.0'} - hasBin: true - - pretty-bytes@https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz: - resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz} - name: pretty-bytes - version: 5.6.0 - engines: {node: '>=6'} - - pretty-bytes@https://registry.npmmirror.com/pretty-bytes/-/pretty-bytes-6.1.1.tgz: - resolution: {integrity: sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pretty-bytes/-/pretty-bytes-6.1.1.tgz} - name: pretty-bytes - version: 6.1.1 - engines: {node: ^14.13.1 || >=16.0.0} - - pretty-format@https://registry.npmmirror.com/pretty-format/-/pretty-format-27.5.1.tgz: - resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pretty-format/-/pretty-format-27.5.1.tgz} - name: pretty-format - version: 27.5.1 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - pretty-quick@https://registry.npmmirror.com/pretty-quick/-/pretty-quick-3.1.1.tgz: - resolution: {integrity: sha512-ZYLGiMoV2jcaas3vTJrLvKAYsxDoXQBUn8OSTxkl67Fyov9lyXivJTl0+2WVh+y6EovGcw7Lm5ThYpH+Sh3XxQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pretty-quick/-/pretty-quick-3.1.1.tgz} - name: pretty-quick - version: 3.1.1 - engines: {node: '>=10.13'} - hasBin: true - peerDependencies: - prettier: '>=2.0.0' - - print-js@https://registry.npmmirror.com/print-js/-/print-js-1.6.0.tgz: - resolution: {integrity: sha512-BfnOIzSKbqGRtO4o0rnj/K3681BSd2QUrsIZy/+WdCIugjIswjmx3lDEZpXB2ruGf9d4b3YNINri81+J0FsBWg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/print-js/-/print-js-1.6.0.tgz} - name: print-js - version: 1.6.0 - - printj@https://registry.npmmirror.com/printj/-/printj-1.1.2.tgz: - resolution: {integrity: sha512-zA2SmoLaxZyArQTOPj5LXecR+RagfPSU5Kw1qP+jkWeNlrq+eJZyY2oS68SU1Z/7/myXM4lo9716laOFAVStCQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/printj/-/printj-1.1.2.tgz} - name: printj - version: 1.1.2 - engines: {node: '>=0.8'} - hasBin: true - - process-nextick-args@https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz} - name: process-nextick-args - version: 2.0.1 - - process-nextick-args@https://registry.npmmirror.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz} - name: process-nextick-args - version: 2.0.1 - - prompts@https://registry.npmmirror.com/prompts/-/prompts-2.4.2.tgz: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/prompts/-/prompts-2.4.2.tgz} - name: prompts - version: 2.4.2 - engines: {node: '>= 6'} - - proto-list@https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz: - resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz} - name: proto-list - version: 1.2.4 - - proto-list@https://registry.npmmirror.com/proto-list/-/proto-list-1.2.4.tgz: - resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/proto-list/-/proto-list-1.2.4.tgz} - name: proto-list - version: 1.2.4 - - prr@https://registry.npmmirror.com/prr/-/prr-1.0.1.tgz: - resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/prr/-/prr-1.0.1.tgz} - name: prr - version: 1.0.1 - - pseudomap@https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz: - resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz} - name: pseudomap - version: 1.0.2 - - pseudomap@https://registry.npmmirror.com/pseudomap/-/pseudomap-1.0.2.tgz: - resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pseudomap/-/pseudomap-1.0.2.tgz} - name: pseudomap - version: 1.0.2 - - psl@https://registry.npmmirror.com/psl/-/psl-1.9.0.tgz: - resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/psl/-/psl-1.9.0.tgz} - name: psl - version: 1.9.0 - - pug-error@https://registry.npmmirror.com/pug-error/-/pug-error-2.0.0.tgz: - resolution: {integrity: sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pug-error/-/pug-error-2.0.0.tgz} - name: pug-error - version: 2.0.0 - - pug-lexer@https://registry.npmmirror.com/pug-lexer/-/pug-lexer-5.0.1.tgz: - resolution: {integrity: sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pug-lexer/-/pug-lexer-5.0.1.tgz} - name: pug-lexer - version: 5.0.1 - - pug-parser@https://registry.npmmirror.com/pug-parser/-/pug-parser-6.0.0.tgz: - resolution: {integrity: sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pug-parser/-/pug-parser-6.0.0.tgz} - name: pug-parser - version: 6.0.0 - - pump@https://registry.npmjs.org/pump/-/pump-3.0.0.tgz: - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/pump/-/pump-3.0.0.tgz} - name: pump - version: 3.0.0 - - pump@https://registry.npmmirror.com/pump/-/pump-3.0.0.tgz: - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/pump/-/pump-3.0.0.tgz} - name: pump - version: 3.0.0 - - punycode@https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz: - resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz} - name: punycode - version: 2.3.0 - engines: {node: '>=6'} - - punycode@https://registry.npmmirror.com/punycode/-/punycode-2.3.0.tgz: - resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/punycode/-/punycode-2.3.0.tgz} - name: punycode - version: 2.3.0 - engines: {node: '>=6'} - - q@https://registry.npmmirror.com/q/-/q-1.5.1.tgz: - resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/q/-/q-1.5.1.tgz} - name: q - version: 1.5.1 - engines: {node: '>=0.6.0', teleport: '>=0.2.0'} - - qrcode@https://registry.npmmirror.com/qrcode/-/qrcode-1.5.0.tgz: - resolution: {integrity: sha512-9MgRpgVc+/+47dFvQeD6U2s0Z92EsKzcHogtum4QB+UNd025WOJSHvn/hjk9xmzj7Stj95CyUAs31mrjxliEsQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/qrcode/-/qrcode-1.5.0.tgz} - name: qrcode - version: 1.5.0 - engines: {node: '>=10.13.0'} - hasBin: true - - qrcodejs2@https://registry.npmmirror.com/qrcodejs2/-/qrcodejs2-0.0.2.tgz: - resolution: {integrity: sha512-+Y4HA+cb6qUzdgvI3KML8GYpMFwB24dFwzMkS/yXq6hwtUGNUnZQdUnksrV1XGMc2mid5ROw5SAuY9XhI3ValA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/qrcodejs2/-/qrcodejs2-0.0.2.tgz} - name: qrcodejs2 - version: 0.0.2 - - qs@https://registry.npmmirror.com/qs/-/qs-6.10.3.tgz: - resolution: {integrity: sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/qs/-/qs-6.10.3.tgz} - name: qs - version: 6.10.3 - engines: {node: '>=0.6'} - - qs@https://registry.npmmirror.com/qs/-/qs-6.11.2.tgz: - resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/qs/-/qs-6.11.2.tgz} - name: qs - version: 6.11.2 - engines: {node: '>=0.6'} - - query-string@https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz: - resolution: {integrity: sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz} - name: query-string - version: 5.1.1 - engines: {node: '>=0.10.0'} - - query-string@https://registry.npmmirror.com/query-string/-/query-string-4.3.4.tgz: - resolution: {integrity: sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/query-string/-/query-string-4.3.4.tgz} - name: query-string - version: 4.3.4 - engines: {node: '>=0.10.0'} - - querystringify@https://registry.npmmirror.com/querystringify/-/querystringify-2.2.0.tgz: - resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/querystringify/-/querystringify-2.2.0.tgz} - name: querystringify - version: 2.2.0 - - queue-microtask@https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz} - name: queue-microtask - version: 1.2.3 - - quick-lru@https://registry.npmmirror.com/quick-lru/-/quick-lru-4.0.1.tgz: - resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/quick-lru/-/quick-lru-4.0.1.tgz} - name: quick-lru - version: 4.0.1 - engines: {node: '>=8'} - - raf@https://registry.npmmirror.com/raf/-/raf-3.4.1.tgz: - resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/raf/-/raf-3.4.1.tgz} - name: raf - version: 3.4.1 - - randombytes@https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz} - name: randombytes - version: 2.1.0 - - react-is@https://registry.npmmirror.com/react-is/-/react-is-17.0.2.tgz: - resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/react-is/-/react-is-17.0.2.tgz} - name: react-is - version: 17.0.2 - - read-pkg-up@https://registry.npmmirror.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz: - resolution: {integrity: sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz} - name: read-pkg-up - version: 1.0.1 - engines: {node: '>=0.10.0'} - - read-pkg-up@https://registry.npmmirror.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz: - resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz} - name: read-pkg-up - version: 3.0.0 - engines: {node: '>=4'} - - read-pkg-up@https://registry.npmmirror.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz: - resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz} - name: read-pkg-up - version: 7.0.1 - engines: {node: '>=8'} - - read-pkg@https://registry.npmmirror.com/read-pkg/-/read-pkg-1.1.0.tgz: - resolution: {integrity: sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/read-pkg/-/read-pkg-1.1.0.tgz} - name: read-pkg - version: 1.1.0 - engines: {node: '>=0.10.0'} - - read-pkg@https://registry.npmmirror.com/read-pkg/-/read-pkg-3.0.0.tgz: - resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/read-pkg/-/read-pkg-3.0.0.tgz} - name: read-pkg - version: 3.0.0 - engines: {node: '>=4'} - - read-pkg@https://registry.npmmirror.com/read-pkg/-/read-pkg-5.2.0.tgz: - resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/read-pkg/-/read-pkg-5.2.0.tgz} - name: read-pkg - version: 5.2.0 - engines: {node: '>=8'} - - readable-stream@https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz: - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz} - name: readable-stream - version: 2.3.8 - - readable-stream@https://registry.npmmirror.com/readable-stream/-/readable-stream-2.3.8.tgz: - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/readable-stream/-/readable-stream-2.3.8.tgz} - name: readable-stream - version: 2.3.8 - - readable-stream@https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz} - name: readable-stream - version: 3.6.2 - engines: {node: '>= 6'} - - readdirp@https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz} - name: readdirp - version: 3.6.0 - engines: {node: '>=8.10.0'} - - redent@https://registry.npmmirror.com/redent/-/redent-1.0.0.tgz: - resolution: {integrity: sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/redent/-/redent-1.0.0.tgz} - name: redent - version: 1.0.0 - engines: {node: '>=0.10.0'} - - redent@https://registry.npmmirror.com/redent/-/redent-3.0.0.tgz: - resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/redent/-/redent-3.0.0.tgz} - name: redent - version: 3.0.0 - engines: {node: '>=8'} - - regenerate-unicode-properties@https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz: - resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz} - name: regenerate-unicode-properties - version: 10.1.0 - engines: {node: '>=4'} - - regenerate@https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz: - resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz} - name: regenerate - version: 1.4.2 - - regenerator-runtime@https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz: - resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz} - name: regenerator-runtime - version: 0.14.0 - - regenerator-runtime@https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz: - resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz} - name: regenerator-runtime - version: 0.11.1 - - regenerator-runtime@https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz: - resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz} - name: regenerator-runtime - version: 0.13.11 - - regenerator-runtime@https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz: - resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz} - name: regenerator-runtime - version: 0.14.0 - - regenerator-transform@https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz: - resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz} - name: regenerator-transform - version: 0.15.2 - - regex-not@https://registry.npmmirror.com/regex-not/-/regex-not-1.0.2.tgz: - resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/regex-not/-/regex-not-1.0.2.tgz} - name: regex-not - version: 1.0.2 - engines: {node: '>=0.10.0'} - - regexp.prototype.flags@https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz: - resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz} - name: regexp.prototype.flags - version: 1.5.0 - engines: {node: '>= 0.4'} - - regexp.prototype.flags@https://registry.npmmirror.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz: - resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz} - name: regexp.prototype.flags - version: 1.5.0 - engines: {node: '>= 0.4'} - - regexpp@https://registry.npmmirror.com/regexpp/-/regexpp-3.2.0.tgz: - resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/regexpp/-/regexpp-3.2.0.tgz} - name: regexpp - version: 3.2.0 - engines: {node: '>=8'} - - regexpu-core@https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz: - resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz} - name: regexpu-core - version: 5.3.2 - engines: {node: '>=4'} - - regjsparser@https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz: - resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz} - name: regjsparser - version: 0.9.1 - hasBin: true - - relateurl@https://registry.npmmirror.com/relateurl/-/relateurl-0.2.7.tgz: - resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/relateurl/-/relateurl-0.2.7.tgz} - name: relateurl - version: 0.2.7 - engines: {node: '>= 0.10'} - - repeat-element@https://registry.npmmirror.com/repeat-element/-/repeat-element-1.1.4.tgz: - resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/repeat-element/-/repeat-element-1.1.4.tgz} - name: repeat-element - version: 1.1.4 - engines: {node: '>=0.10.0'} - - repeat-string@https://registry.npmmirror.com/repeat-string/-/repeat-string-1.6.1.tgz: - resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/repeat-string/-/repeat-string-1.6.1.tgz} - name: repeat-string - version: 1.6.1 - engines: {node: '>=0.10'} - - repeating@https://registry.npmmirror.com/repeating/-/repeating-2.0.1.tgz: - resolution: {integrity: sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/repeating/-/repeating-2.0.1.tgz} - name: repeating - version: 2.0.1 - engines: {node: '>=0.10.0'} - - replace-ext@https://registry.npmmirror.com/replace-ext/-/replace-ext-1.0.1.tgz: - resolution: {integrity: sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/replace-ext/-/replace-ext-1.0.1.tgz} - name: replace-ext - version: 1.0.1 - engines: {node: '>= 0.10'} - - require-directory@https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz} - name: require-directory - version: 2.1.1 - engines: {node: '>=0.10.0'} - - require-from-string@https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz} - name: require-from-string - version: 2.0.2 - engines: {node: '>=0.10.0'} - - require-from-string@https://registry.npmmirror.com/require-from-string/-/require-from-string-2.0.2.tgz: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/require-from-string/-/require-from-string-2.0.2.tgz} - name: require-from-string - version: 2.0.2 - engines: {node: '>=0.10.0'} - - require-main-filename@https://registry.npmmirror.com/require-main-filename/-/require-main-filename-2.0.0.tgz: - resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/require-main-filename/-/require-main-filename-2.0.0.tgz} - name: require-main-filename - version: 2.0.0 - - requires-port@https://registry.npmmirror.com/requires-port/-/requires-port-1.0.0.tgz: - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/requires-port/-/requires-port-1.0.0.tgz} - name: requires-port - version: 1.0.0 - - resize-observer-polyfill@https://registry.npmmirror.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz: - resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz} - name: resize-observer-polyfill - version: 1.5.1 - - resolve-cwd@https://registry.npmmirror.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz: - resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz} - name: resolve-cwd - version: 3.0.0 - engines: {node: '>=8'} - - resolve-dir@https://registry.npmmirror.com/resolve-dir/-/resolve-dir-1.0.1.tgz: - resolution: {integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/resolve-dir/-/resolve-dir-1.0.1.tgz} - name: resolve-dir - version: 1.0.1 - engines: {node: '>=0.10.0'} - - resolve-from@https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz} - name: resolve-from - version: 4.0.0 - engines: {node: '>=4'} - - resolve-from@https://registry.npmmirror.com/resolve-from/-/resolve-from-5.0.0.tgz: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/resolve-from/-/resolve-from-5.0.0.tgz} - name: resolve-from - version: 5.0.0 - engines: {node: '>=8'} - - resolve-global@https://registry.npmmirror.com/resolve-global/-/resolve-global-1.0.0.tgz: - resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/resolve-global/-/resolve-global-1.0.0.tgz} - name: resolve-global - version: 1.0.0 - engines: {node: '>=8'} - - resolve-url@https://registry.npmmirror.com/resolve-url/-/resolve-url-0.2.1.tgz: - resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/resolve-url/-/resolve-url-0.2.1.tgz} - name: resolve-url - version: 0.2.1 - deprecated: https://github.com/lydell/resolve-url#deprecated - - resolve.exports@https://registry.npmmirror.com/resolve.exports/-/resolve.exports-1.1.1.tgz: - resolution: {integrity: sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/resolve.exports/-/resolve.exports-1.1.1.tgz} - name: resolve.exports - version: 1.1.1 - engines: {node: '>=10'} - - resolve@https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz: - resolution: {integrity: sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz} - name: resolve - version: 1.22.4 - hasBin: true - - resolve@https://registry.npmmirror.com/resolve/-/resolve-1.22.4.tgz: - resolution: {integrity: sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/resolve/-/resolve-1.22.4.tgz} - name: resolve - version: 1.22.4 - hasBin: true - - responselike@https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz: - resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz} - name: responselike - version: 1.0.2 - - restore-cursor@https://registry.npmmirror.com/restore-cursor/-/restore-cursor-2.0.0.tgz: - resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/restore-cursor/-/restore-cursor-2.0.0.tgz} - name: restore-cursor - version: 2.0.0 - engines: {node: '>=4'} - - restore-cursor@https://registry.npmmirror.com/restore-cursor/-/restore-cursor-3.1.0.tgz: - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/restore-cursor/-/restore-cursor-3.1.0.tgz} - name: restore-cursor - version: 3.1.0 - engines: {node: '>=8'} - - ret@https://registry.npmmirror.com/ret/-/ret-0.1.15.tgz: - resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ret/-/ret-0.1.15.tgz} - name: ret - version: 0.1.15 - engines: {node: '>=0.12'} - - reusify@https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz} - name: reusify - version: 1.0.4 - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - - rfdc@https://registry.npmmirror.com/rfdc/-/rfdc-1.3.0.tgz: - resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/rfdc/-/rfdc-1.3.0.tgz} - name: rfdc - version: 1.3.0 - - rgbcolor@https://registry.npmmirror.com/rgbcolor/-/rgbcolor-1.0.1.tgz: - resolution: {integrity: sha512-9aZLIrhRaD97sgVhtJOW6ckOEh6/GnvQtdVNfdZ6s67+3/XwLS9lBcQYzEEhYVeUowN7pRzMLsyGhK2i/xvWbw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/rgbcolor/-/rgbcolor-1.0.1.tgz} - name: rgbcolor - version: 1.0.1 - engines: {node: '>= 0.8.15'} - - rimraf@https://registry.npmmirror.com/rimraf/-/rimraf-2.7.1.tgz: - resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/rimraf/-/rimraf-2.7.1.tgz} - name: rimraf - version: 2.7.1 - hasBin: true - - rimraf@https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz} - name: rimraf - version: 3.0.2 - hasBin: true - - rollup-plugin-purge-icons@https://registry.npmmirror.com/rollup-plugin-purge-icons/-/rollup-plugin-purge-icons-0.8.1.tgz: - resolution: {integrity: sha512-7ktMV+gWtXAdOIShE8EtTcnpGhozi5H2hKk1MQVGt+7FmlLkjR+XKu1Nyzjocwd6xJvKube2Lh+SfcJ8FYYySw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/rollup-plugin-purge-icons/-/rollup-plugin-purge-icons-0.8.1.tgz} - name: rollup-plugin-purge-icons - version: 0.8.1 - engines: {node: '>= 12'} - - rollup-plugin-terser@https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz: - resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz} - name: rollup-plugin-terser - version: 7.0.2 - deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser - peerDependencies: - rollup: ^2.0.0 - - rollup-plugin-visualizer@https://registry.npmmirror.com/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.6.0.tgz: - resolution: {integrity: sha512-CKcc8GTUZjC+LsMytU8ocRr/cGZIfMR7+mdy4YnlyetlmIl/dM8BMnOEpD4JPIGt+ZVW7Db9ZtSsbgyeBH3uTA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.6.0.tgz} - name: rollup-plugin-visualizer - version: 5.6.0 - engines: {node: '>=12'} - hasBin: true - peerDependencies: - rollup: ^2.0.0 - - rollup@https://registry.npmjs.org/rollup/-/rollup-2.72.0.tgz: - resolution: {integrity: sha512-KqtR2YcO35/KKijg4nx4STO3569aqCUeGRkKWnJ6r+AvBBrVY9L4pmf4NHVrQr4mTOq6msbohflxr2kpihhaOA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/rollup/-/rollup-2.72.0.tgz} - name: rollup - version: 2.72.0 - engines: {node: '>=10.0.0'} - hasBin: true - - rollup@https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz: - resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz} - name: rollup - version: 2.79.1 - engines: {node: '>=10.0.0'} - hasBin: true - - run-async@https://registry.npmmirror.com/run-async/-/run-async-2.4.1.tgz: - resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/run-async/-/run-async-2.4.1.tgz} - name: run-async - version: 2.4.1 - engines: {node: '>=0.12.0'} - - run-parallel@https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz} - name: run-parallel - version: 1.2.0 - - rxjs@https://registry.npmmirror.com/rxjs/-/rxjs-6.6.7.tgz: - resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/rxjs/-/rxjs-6.6.7.tgz} - name: rxjs - version: 6.6.7 - engines: {npm: '>=2.0.0'} - - rxjs@https://registry.npmmirror.com/rxjs/-/rxjs-7.8.1.tgz: - resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/rxjs/-/rxjs-7.8.1.tgz} - name: rxjs - version: 7.8.1 - - safe-array-concat@https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz: - resolution: {integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz} - name: safe-array-concat - version: 1.0.0 - engines: {node: '>=0.4'} - - safe-array-concat@https://registry.npmmirror.com/safe-array-concat/-/safe-array-concat-1.0.0.tgz: - resolution: {integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/safe-array-concat/-/safe-array-concat-1.0.0.tgz} - name: safe-array-concat - version: 1.0.0 - engines: {node: '>=0.4'} - - safe-buffer@https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz} - name: safe-buffer - version: 5.1.2 - - safe-buffer@https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz} - name: safe-buffer - version: 5.2.1 - - safe-buffer@https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz} - name: safe-buffer - version: 5.1.2 - - safe-buffer@https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz} - name: safe-buffer - version: 5.2.1 - - safe-regex-test@https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz: - resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz} - name: safe-regex-test - version: 1.0.0 - - safe-regex-test@https://registry.npmmirror.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz: - resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz} - name: safe-regex-test - version: 1.0.0 - - safe-regex@https://registry.npmmirror.com/safe-regex/-/safe-regex-1.1.0.tgz: - resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/safe-regex/-/safe-regex-1.1.0.tgz} - name: safe-regex - version: 1.1.0 - - safer-buffer@https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz} - name: safer-buffer - version: 2.1.2 - - sax@https://registry.npmmirror.com/sax/-/sax-1.2.4.tgz: - resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/sax/-/sax-1.2.4.tgz} - name: sax - version: 1.2.4 - - saxes@https://registry.npmmirror.com/saxes/-/saxes-5.0.1.tgz: - resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/saxes/-/saxes-5.0.1.tgz} - name: saxes - version: 5.0.1 - engines: {node: '>=10'} - - scroll-into-view-if-needed@https://registry.npmmirror.com/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.31.tgz: - resolution: {integrity: sha512-dGCXy99wZQivjmjIqihaBQNjryrz5rueJY7eHfTdyWEiR4ttYpsajb14rn9s5d4DY4EcY6+4+U/maARBXJedkA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.31.tgz} - name: scroll-into-view-if-needed - version: 2.2.31 - - scrollparent@https://registry.npmmirror.com/scrollparent/-/scrollparent-2.1.0.tgz: - resolution: {integrity: sha512-bnnvJL28/Rtz/kz2+4wpBjHzWoEzXhVg/TE8BeVGJHUqE8THNIRnDxDWMktwM+qahvlRdvlLdsQfYe+cuqfZeA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/scrollparent/-/scrollparent-2.1.0.tgz} - name: scrollparent - version: 2.1.0 - - secure-compare@https://registry.npmmirror.com/secure-compare/-/secure-compare-3.0.1.tgz: - resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/secure-compare/-/secure-compare-3.0.1.tgz} - name: secure-compare - version: 3.0.1 - - seek-bzip@https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz: - resolution: {integrity: sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz} - name: seek-bzip - version: 1.0.6 - hasBin: true - - seek-bzip@https://registry.npmmirror.com/seek-bzip/-/seek-bzip-1.0.6.tgz: - resolution: {integrity: sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/seek-bzip/-/seek-bzip-1.0.6.tgz} - name: seek-bzip - version: 1.0.6 - hasBin: true - - select@https://registry.npmmirror.com/select/-/select-1.1.2.tgz: - resolution: {integrity: sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/select/-/select-1.1.2.tgz} - name: select - version: 1.1.2 - - semver-regex@https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz: - resolution: {integrity: sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz} - name: semver-regex - version: 2.0.0 - engines: {node: '>=6'} - - semver-truncate@https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz: - resolution: {integrity: sha512-V1fGg9i4CL3qesB6U0L6XAm4xOJiHmt4QAacazumuasc03BvtFGIMCduv01JWQ69Nv+JST9TqhSCiJoxoY031w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz} - name: semver-truncate - version: 1.1.2 - engines: {node: '>=0.10.0'} - - semver@https://registry.npmjs.org/semver/-/semver-5.7.2.tgz: - resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/semver/-/semver-5.7.2.tgz} - name: semver - version: 5.7.2 - hasBin: true - - semver@https://registry.npmjs.org/semver/-/semver-6.3.1.tgz: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/semver/-/semver-6.3.1.tgz} - name: semver - version: 6.3.1 - hasBin: true - - semver@https://registry.npmmirror.com/semver/-/semver-5.7.2.tgz: - resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/semver/-/semver-5.7.2.tgz} - name: semver - version: 5.7.2 - hasBin: true - - semver@https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz} - name: semver - version: 6.3.1 - hasBin: true - - semver@https://registry.npmmirror.com/semver/-/semver-7.3.7.tgz: - resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/semver/-/semver-7.3.7.tgz} - name: semver - version: 7.3.7 - engines: {node: '>=10'} - hasBin: true - - semver@https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz} - name: semver - version: 7.5.4 - engines: {node: '>=10'} - hasBin: true - - sentence-case@https://registry.npmmirror.com/sentence-case/-/sentence-case-3.0.4.tgz: - resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/sentence-case/-/sentence-case-3.0.4.tgz} - name: sentence-case - version: 3.0.4 - - serialize-javascript@https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz: - resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz} - name: serialize-javascript - version: 4.0.0 - - set-blocking@https://registry.npmmirror.com/set-blocking/-/set-blocking-2.0.0.tgz: - resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/set-blocking/-/set-blocking-2.0.0.tgz} - name: set-blocking - version: 2.0.0 - - set-value@https://registry.npmmirror.com/set-value/-/set-value-2.0.1.tgz: - resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/set-value/-/set-value-2.0.1.tgz} - name: set-value - version: 2.0.1 - engines: {node: '>=0.10.0'} - - shallow-equal@https://registry.npmmirror.com/shallow-equal/-/shallow-equal-1.2.1.tgz: - resolution: {integrity: sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/shallow-equal/-/shallow-equal-1.2.1.tgz} - name: shallow-equal - version: 1.2.1 - - shebang-command@https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz: - resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz} - name: shebang-command - version: 1.2.0 - engines: {node: '>=0.10.0'} - - shebang-command@https://registry.npmmirror.com/shebang-command/-/shebang-command-1.2.0.tgz: - resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/shebang-command/-/shebang-command-1.2.0.tgz} - name: shebang-command - version: 1.2.0 - engines: {node: '>=0.10.0'} - - shebang-command@https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz} - name: shebang-command - version: 2.0.0 - engines: {node: '>=8'} - - shebang-regex@https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz: - resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz} - name: shebang-regex - version: 1.0.0 - engines: {node: '>=0.10.0'} - - shebang-regex@https://registry.npmmirror.com/shebang-regex/-/shebang-regex-1.0.0.tgz: - resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/shebang-regex/-/shebang-regex-1.0.0.tgz} - name: shebang-regex - version: 1.0.0 - engines: {node: '>=0.10.0'} - - shebang-regex@https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz} - name: shebang-regex - version: 3.0.0 - engines: {node: '>=8'} - - shell-quote@https://registry.npmmirror.com/shell-quote/-/shell-quote-1.8.1.tgz: - resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/shell-quote/-/shell-quote-1.8.1.tgz} - name: shell-quote - version: 1.8.1 - - showdown@https://registry.npmmirror.com/showdown/-/showdown-2.1.0.tgz: - resolution: {integrity: sha512-/6NVYu4U819R2pUIk79n67SYgJHWCce0a5xTP979WbNp0FL9MN1I1QK662IDU1b6JzKTvmhgI7T7JYIxBi3kMQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/showdown/-/showdown-2.1.0.tgz} - name: showdown - version: 2.1.0 - hasBin: true - - side-channel@https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz: - resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz} - name: side-channel - version: 1.0.4 - - side-channel@https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz: - resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz} - name: side-channel - version: 1.0.4 - - signal-exit@https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz} - name: signal-exit - version: 3.0.7 - - signal-exit@https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz} - name: signal-exit - version: 3.0.7 - - sisteransi@https://registry.npmmirror.com/sisteransi/-/sisteransi-1.0.5.tgz: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/sisteransi/-/sisteransi-1.0.5.tgz} - name: sisteransi - version: 1.0.5 - - slash@https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz} - name: slash - version: 3.0.0 - engines: {node: '>=8'} - - slice-ansi@https://registry.npmmirror.com/slice-ansi/-/slice-ansi-3.0.0.tgz: - resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/slice-ansi/-/slice-ansi-3.0.0.tgz} - name: slice-ansi - version: 3.0.0 - engines: {node: '>=8'} - - slice-ansi@https://registry.npmmirror.com/slice-ansi/-/slice-ansi-4.0.0.tgz: - resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/slice-ansi/-/slice-ansi-4.0.0.tgz} - name: slice-ansi - version: 4.0.0 - engines: {node: '>=10'} - - slice-ansi@https://registry.npmmirror.com/slice-ansi/-/slice-ansi-5.0.0.tgz: - resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/slice-ansi/-/slice-ansi-5.0.0.tgz} - name: slice-ansi - version: 5.0.0 - engines: {node: '>=12'} - - snake-case@https://registry.npmmirror.com/snake-case/-/snake-case-3.0.4.tgz: - resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/snake-case/-/snake-case-3.0.4.tgz} - name: snake-case - version: 3.0.4 - - snapdragon-node@https://registry.npmmirror.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz: - resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz} - name: snapdragon-node - version: 2.1.1 - engines: {node: '>=0.10.0'} - - snapdragon-util@https://registry.npmmirror.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz: - resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz} - name: snapdragon-util - version: 3.0.1 - engines: {node: '>=0.10.0'} - - snapdragon@https://registry.npmmirror.com/snapdragon/-/snapdragon-0.8.2.tgz: - resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/snapdragon/-/snapdragon-0.8.2.tgz} - name: snapdragon - version: 0.8.2 - engines: {node: '>=0.10.0'} - - sort-keys-length@https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz: - resolution: {integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz} - name: sort-keys-length - version: 1.0.1 - engines: {node: '>=0.10.0'} - - sort-keys-length@https://registry.npmmirror.com/sort-keys-length/-/sort-keys-length-1.0.1.tgz: - resolution: {integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/sort-keys-length/-/sort-keys-length-1.0.1.tgz} - name: sort-keys-length - version: 1.0.1 - engines: {node: '>=0.10.0'} - - sort-keys@https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz: - resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz} - name: sort-keys - version: 1.1.2 - engines: {node: '>=0.10.0'} - - sort-keys@https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz: - resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz} - name: sort-keys - version: 2.0.0 - engines: {node: '>=4'} - - sort-keys@https://registry.npmmirror.com/sort-keys/-/sort-keys-1.1.2.tgz: - resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/sort-keys/-/sort-keys-1.1.2.tgz} - name: sort-keys - version: 1.1.2 - engines: {node: '>=0.10.0'} - - sortablejs@https://registry.npmmirror.com/sortablejs/-/sortablejs-1.14.0.tgz: - resolution: {integrity: sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/sortablejs/-/sortablejs-1.14.0.tgz} - name: sortablejs - version: 1.14.0 - - sortablejs@https://registry.npmmirror.com/sortablejs/-/sortablejs-1.15.0.tgz: - resolution: {integrity: sha512-bv9qgVMjUMf89wAvM6AxVvS/4MX3sPeN0+agqShejLU5z5GX4C75ow1O2e5k4L6XItUyAK3gH6AxSbXrOM5e8w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/sortablejs/-/sortablejs-1.15.0.tgz} - name: sortablejs - version: 1.15.0 - - source-map-js@https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz: - resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz} - name: source-map-js - version: 1.0.2 - engines: {node: '>=0.10.0'} - - source-map-resolve@https://registry.npmmirror.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz: - resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz} - name: source-map-resolve - version: 0.5.3 - deprecated: See https://github.com/lydell/source-map-resolve#deprecated - - source-map-support@https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz} - name: source-map-support - version: 0.5.21 - - source-map-support@https://registry.npmmirror.com/source-map-support/-/source-map-support-0.5.21.tgz: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/source-map-support/-/source-map-support-0.5.21.tgz} - name: source-map-support - version: 0.5.21 - - source-map-url@https://registry.npmmirror.com/source-map-url/-/source-map-url-0.4.1.tgz: - resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/source-map-url/-/source-map-url-0.4.1.tgz} - name: source-map-url - version: 0.4.1 - deprecated: See https://github.com/lydell/source-map-url#deprecated - - source-map@https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz: - resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz} - name: source-map - version: 0.5.7 - engines: {node: '>=0.10.0'} - - source-map@https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz} - name: source-map - version: 0.6.1 - engines: {node: '>=0.10.0'} - - source-map@https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz} - name: source-map - version: 0.7.4 - engines: {node: '>= 8'} - - source-map@https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz: - resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz} - name: source-map - version: 0.8.0-beta.0 - engines: {node: '>= 8'} - - source-map@https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz} - name: source-map - version: 0.6.1 - engines: {node: '>=0.10.0'} - - source-map@https://registry.npmmirror.com/source-map/-/source-map-0.7.4.tgz: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/source-map/-/source-map-0.7.4.tgz} - name: source-map - version: 0.7.4 - engines: {node: '>= 8'} - - sourcemap-codec@https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz: - resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz} - name: sourcemap-codec - version: 1.4.8 - deprecated: Please use @jridgewell/sourcemap-codec instead - - sourcemap-codec@https://registry.npmmirror.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz: - resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz} - name: sourcemap-codec - version: 1.4.8 - deprecated: Please use @jridgewell/sourcemap-codec instead - - spdx-correct@https://registry.npmmirror.com/spdx-correct/-/spdx-correct-3.2.0.tgz: - resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/spdx-correct/-/spdx-correct-3.2.0.tgz} - name: spdx-correct - version: 3.2.0 - - spdx-exceptions@https://registry.npmmirror.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz: - resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz} - name: spdx-exceptions - version: 2.3.0 - - spdx-expression-parse@https://registry.npmmirror.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz} - name: spdx-expression-parse - version: 3.0.1 - - spdx-license-ids@https://registry.npmmirror.com/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz: - resolution: {integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz} - name: spdx-license-ids - version: 3.0.13 - - specificity@https://registry.npmmirror.com/specificity/-/specificity-0.4.1.tgz: - resolution: {integrity: sha512-1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/specificity/-/specificity-0.4.1.tgz} - name: specificity - version: 0.4.1 - hasBin: true - - split-string@https://registry.npmmirror.com/split-string/-/split-string-3.1.0.tgz: - resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/split-string/-/split-string-3.1.0.tgz} - name: split-string - version: 3.1.0 - engines: {node: '>=0.10.0'} - - split2@https://registry.npmmirror.com/split2/-/split2-3.2.2.tgz: - resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/split2/-/split2-3.2.2.tgz} - name: split2 - version: 3.2.2 - - split@https://registry.npmmirror.com/split/-/split-1.0.1.tgz: - resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/split/-/split-1.0.1.tgz} - name: split - version: 1.0.1 - - sprintf-js@https://registry.npmmirror.com/sprintf-js/-/sprintf-js-1.0.3.tgz: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/sprintf-js/-/sprintf-js-1.0.3.tgz} - name: sprintf-js - version: 1.0.3 - - squeak@https://registry.npmmirror.com/squeak/-/squeak-1.3.0.tgz: - resolution: {integrity: sha512-YQL1ulInM+ev8nXX7vfXsCsDh6IqXlrremc1hzi77776BtpWgYJUMto3UM05GSAaGzJgWekszjoKDrVNB5XG+A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/squeak/-/squeak-1.3.0.tgz} - name: squeak - version: 1.3.0 - engines: {node: '>=0.10.0'} - - ssf@https://registry.npmmirror.com/ssf/-/ssf-0.11.2.tgz: - resolution: {integrity: sha512-+idbmIXoYET47hH+d7dfm2epdOMUDjqcB4648sTZ+t2JwoyBFL/insLfB/racrDmsKB3diwsDA696pZMieAC5g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ssf/-/ssf-0.11.2.tgz} - name: ssf - version: 0.11.2 - engines: {node: '>=0.8'} - - stable@https://registry.npmmirror.com/stable/-/stable-0.1.8.tgz: - resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/stable/-/stable-0.1.8.tgz} - name: stable - version: 0.1.8 - deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' - - stack-utils@https://registry.npmmirror.com/stack-utils/-/stack-utils-2.0.6.tgz: - resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/stack-utils/-/stack-utils-2.0.6.tgz} - name: stack-utils - version: 2.0.6 - engines: {node: '>=10'} - - stackblur-canvas@https://registry.npmmirror.com/stackblur-canvas/-/stackblur-canvas-2.6.0.tgz: - resolution: {integrity: sha512-8S1aIA+UoF6erJYnglGPug6MaHYGo1Ot7h5fuXx4fUPvcvQfcdw2o/ppCse63+eZf8PPidSu4v1JnmEVtEDnpg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/stackblur-canvas/-/stackblur-canvas-2.6.0.tgz} - name: stackblur-canvas - version: 2.6.0 - engines: {node: '>=0.1.14'} - - static-extend@https://registry.npmmirror.com/static-extend/-/static-extend-0.1.2.tgz: - resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/static-extend/-/static-extend-0.1.2.tgz} - name: static-extend - version: 0.1.2 - engines: {node: '>=0.10.0'} - - statuses@https://registry.npmmirror.com/statuses/-/statuses-1.5.0.tgz: - resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/statuses/-/statuses-1.5.0.tgz} - name: statuses - version: 1.5.0 - engines: {node: '>= 0.6'} - - strict-uri-encode@https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz: - resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz} - name: strict-uri-encode - version: 1.1.0 - engines: {node: '>=0.10.0'} - - strict-uri-encode@https://registry.npmmirror.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz: - resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz} - name: strict-uri-encode - version: 1.1.0 - engines: {node: '>=0.10.0'} - - string-argv@https://registry.npmmirror.com/string-argv/-/string-argv-0.3.2.tgz: - resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/string-argv/-/string-argv-0.3.2.tgz} - name: string-argv - version: 0.3.2 - engines: {node: '>=0.6.19'} - - string-length@https://registry.npmmirror.com/string-length/-/string-length-4.0.2.tgz: - resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/string-length/-/string-length-4.0.2.tgz} - name: string-length - version: 4.0.2 - engines: {node: '>=10'} - - string-width@https://registry.npmmirror.com/string-width/-/string-width-2.1.1.tgz: - resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/string-width/-/string-width-2.1.1.tgz} - name: string-width - version: 2.1.1 - engines: {node: '>=4'} - - string-width@https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz} - name: string-width - version: 4.2.3 - engines: {node: '>=8'} - - string-width@https://registry.npmmirror.com/string-width/-/string-width-5.1.2.tgz: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/string-width/-/string-width-5.1.2.tgz} - name: string-width - version: 5.1.2 - engines: {node: '>=12'} - - string.prototype.matchall@https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz: - resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz} - name: string.prototype.matchall - version: 4.0.8 - - string.prototype.padend@https://registry.npmmirror.com/string.prototype.padend/-/string.prototype.padend-3.1.4.tgz: - resolution: {integrity: sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/string.prototype.padend/-/string.prototype.padend-3.1.4.tgz} - name: string.prototype.padend - version: 3.1.4 - engines: {node: '>= 0.4'} - - string.prototype.trim@https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz: - resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz} - name: string.prototype.trim - version: 1.2.7 - engines: {node: '>= 0.4'} - - string.prototype.trim@https://registry.npmmirror.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz: - resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz} - name: string.prototype.trim - version: 1.2.7 - engines: {node: '>= 0.4'} - - string.prototype.trimend@https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz: - resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz} - name: string.prototype.trimend - version: 1.0.6 - - string.prototype.trimend@https://registry.npmmirror.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz: - resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz} - name: string.prototype.trimend - version: 1.0.6 - - string.prototype.trimstart@https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz: - resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz} - name: string.prototype.trimstart - version: 1.0.6 - - string.prototype.trimstart@https://registry.npmmirror.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz: - resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz} - name: string.prototype.trimstart - version: 1.0.6 - - string_decoder@https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz} - name: string_decoder - version: 1.1.1 - - string_decoder@https://registry.npmmirror.com/string_decoder/-/string_decoder-1.1.1.tgz: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/string_decoder/-/string_decoder-1.1.1.tgz} - name: string_decoder - version: 1.1.1 - - string_decoder@https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz} - name: string_decoder - version: 1.3.0 - - stringify-object@https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz: - resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz} - name: stringify-object - version: 3.3.0 - engines: {node: '>=4'} - - strip-ansi@https://registry.npmmirror.com/strip-ansi/-/strip-ansi-3.0.1.tgz: - resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-3.0.1.tgz} - name: strip-ansi - version: 3.0.1 - engines: {node: '>=0.10.0'} - - strip-ansi@https://registry.npmmirror.com/strip-ansi/-/strip-ansi-4.0.0.tgz: - resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-4.0.0.tgz} - name: strip-ansi - version: 4.0.0 - engines: {node: '>=4'} - - strip-ansi@https://registry.npmmirror.com/strip-ansi/-/strip-ansi-5.2.0.tgz: - resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-5.2.0.tgz} - name: strip-ansi - version: 5.2.0 - engines: {node: '>=6'} - - strip-ansi@https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz} - name: strip-ansi - version: 6.0.1 - engines: {node: '>=8'} - - strip-ansi@https://registry.npmmirror.com/strip-ansi/-/strip-ansi-7.1.0.tgz: - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-7.1.0.tgz} - name: strip-ansi - version: 7.1.0 - engines: {node: '>=12'} - - strip-bom@https://registry.npmmirror.com/strip-bom/-/strip-bom-2.0.0.tgz: - resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/strip-bom/-/strip-bom-2.0.0.tgz} - name: strip-bom - version: 2.0.0 - engines: {node: '>=0.10.0'} - - strip-bom@https://registry.npmmirror.com/strip-bom/-/strip-bom-3.0.0.tgz: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/strip-bom/-/strip-bom-3.0.0.tgz} - name: strip-bom - version: 3.0.0 - engines: {node: '>=4'} - - strip-bom@https://registry.npmmirror.com/strip-bom/-/strip-bom-4.0.0.tgz: - resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/strip-bom/-/strip-bom-4.0.0.tgz} - name: strip-bom - version: 4.0.0 - engines: {node: '>=8'} - - strip-comments@https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz: - resolution: {integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz} - name: strip-comments - version: 2.0.1 - engines: {node: '>=10'} - - strip-dirs@https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz: - resolution: {integrity: sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz} - name: strip-dirs - version: 2.1.0 - - strip-dirs@https://registry.npmmirror.com/strip-dirs/-/strip-dirs-2.1.0.tgz: - resolution: {integrity: sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/strip-dirs/-/strip-dirs-2.1.0.tgz} - name: strip-dirs - version: 2.1.0 - - strip-eof@https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz: - resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz} - name: strip-eof - version: 1.0.0 - engines: {node: '>=0.10.0'} - - strip-eof@https://registry.npmmirror.com/strip-eof/-/strip-eof-1.0.0.tgz: - resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/strip-eof/-/strip-eof-1.0.0.tgz} - name: strip-eof - version: 1.0.0 - engines: {node: '>=0.10.0'} - - strip-final-newline@https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz} - name: strip-final-newline - version: 2.0.0 - engines: {node: '>=6'} - - strip-indent@https://registry.npmmirror.com/strip-indent/-/strip-indent-1.0.1.tgz: - resolution: {integrity: sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/strip-indent/-/strip-indent-1.0.1.tgz} - name: strip-indent - version: 1.0.1 - engines: {node: '>=0.10.0'} - hasBin: true - - strip-indent@https://registry.npmmirror.com/strip-indent/-/strip-indent-3.0.0.tgz: - resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/strip-indent/-/strip-indent-3.0.0.tgz} - name: strip-indent - version: 3.0.0 - engines: {node: '>=8'} - - strip-json-comments@https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.0.1.tgz: - resolution: {integrity: sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.0.1.tgz} - name: strip-json-comments - version: 3.0.1 - engines: {node: '>=8'} - - strip-json-comments@https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz} - name: strip-json-comments - version: 3.1.1 - engines: {node: '>=8'} - - strip-outer@https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz: - resolution: {integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz} - name: strip-outer - version: 1.0.1 - engines: {node: '>=0.10.0'} - - strip-outer@https://registry.npmmirror.com/strip-outer/-/strip-outer-1.0.1.tgz: - resolution: {integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/strip-outer/-/strip-outer-1.0.1.tgz} - name: strip-outer - version: 1.0.1 - engines: {node: '>=0.10.0'} - - strnum@https://registry.npmmirror.com/strnum/-/strnum-1.0.5.tgz: - resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/strnum/-/strnum-1.0.5.tgz} - name: strnum - version: 1.0.5 - - style-search@https://registry.npmmirror.com/style-search/-/style-search-0.1.0.tgz: - resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/style-search/-/style-search-0.1.0.tgz} - name: style-search - version: 0.1.0 - - stylelint-config-html@https://registry.npmmirror.com/stylelint-config-html/-/stylelint-config-html-1.1.0.tgz: - resolution: {integrity: sha512-IZv4IVESjKLumUGi+HWeb7skgO6/g4VMuAYrJdlqQFndgbj6WJAXPhaysvBiXefX79upBdQVumgYcdd17gCpjQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/stylelint-config-html/-/stylelint-config-html-1.1.0.tgz} - name: stylelint-config-html - version: 1.1.0 - engines: {node: ^12 || >=14} - peerDependencies: - postcss-html: ^1.0.0 - stylelint: '>=14.0.0' - - stylelint-config-prettier@https://registry.npmmirror.com/stylelint-config-prettier/-/stylelint-config-prettier-9.0.3.tgz: - resolution: {integrity: sha512-5n9gUDp/n5tTMCq1GLqSpA30w2sqWITSSEiAWQlpxkKGAUbjcemQ0nbkRvRUa0B1LgD3+hCvdL7B1eTxy1QHJg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/stylelint-config-prettier/-/stylelint-config-prettier-9.0.3.tgz} - name: stylelint-config-prettier - version: 9.0.3 - engines: {node: '>= 12'} - hasBin: true - peerDependencies: - stylelint: '>=11.0.0' - - stylelint-config-recommended-vue@https://registry.npmmirror.com/stylelint-config-recommended-vue/-/stylelint-config-recommended-vue-1.4.0.tgz: - resolution: {integrity: sha512-DVJqyX2KvMCn9U0+keL12r7xlsH26K4Vg8NrIZuq5MoF7g82DpMp326Om4E0Q+Il1o+bTHuUyejf2XAI0iD04Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/stylelint-config-recommended-vue/-/stylelint-config-recommended-vue-1.4.0.tgz} - name: stylelint-config-recommended-vue - version: 1.4.0 - engines: {node: ^12 || >=14} - peerDependencies: - postcss-html: ^1.0.0 - stylelint: '>=14.0.0' - - stylelint-config-recommended@https://registry.npmmirror.com/stylelint-config-recommended/-/stylelint-config-recommended-7.0.0.tgz: - resolution: {integrity: sha512-yGn84Bf/q41J4luis1AZ95gj0EQwRX8lWmGmBwkwBNSkpGSpl66XcPTulxGa/Z91aPoNGuIGBmFkcM1MejMo9Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/stylelint-config-recommended/-/stylelint-config-recommended-7.0.0.tgz} - name: stylelint-config-recommended - version: 7.0.0 - peerDependencies: - stylelint: ^14.4.0 - - stylelint-config-standard@https://registry.npmmirror.com/stylelint-config-standard/-/stylelint-config-standard-25.0.0.tgz: - resolution: {integrity: sha512-21HnP3VSpaT1wFjFvv9VjvOGDtAviv47uTp3uFmzcN+3Lt+RYRv6oAplLaV51Kf792JSxJ6svCJh/G18E9VnCA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/stylelint-config-standard/-/stylelint-config-standard-25.0.0.tgz} - name: stylelint-config-standard - version: 25.0.0 - peerDependencies: - stylelint: ^14.4.0 - - stylelint-order@https://registry.npmmirror.com/stylelint-order/-/stylelint-order-5.0.0.tgz: - resolution: {integrity: sha512-OWQ7pmicXufDw5BlRqzdz3fkGKJPgLyDwD1rFY3AIEfIH/LQY38Vu/85v8/up0I+VPiuGRwbc2Hg3zLAsJaiyw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/stylelint-order/-/stylelint-order-5.0.0.tgz} - name: stylelint-order - version: 5.0.0 - peerDependencies: - stylelint: ^14.0.0 - - stylelint@https://registry.npmmirror.com/stylelint/-/stylelint-14.7.1.tgz: - resolution: {integrity: sha512-rUOWm67hrzGXXyO/cInENEejF4urh1dLgOb9cr/3XLDb/t/A+rXQp3p6+no8o8QCKTgBUdhVUq/bXMgE988PJw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/stylelint/-/stylelint-14.7.1.tgz} - name: stylelint - version: 14.7.1 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - hasBin: true - - supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz} - name: supports-color - version: 5.5.0 - engines: {node: '>=4'} - - supports-color@https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz} - name: supports-color - version: 7.2.0 - engines: {node: '>=8'} - - supports-color@https://registry.npmmirror.com/supports-color/-/supports-color-2.0.0.tgz: - resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/supports-color/-/supports-color-2.0.0.tgz} - name: supports-color - version: 2.0.0 - engines: {node: '>=0.8.0'} - - supports-color@https://registry.npmmirror.com/supports-color/-/supports-color-3.2.3.tgz: - resolution: {integrity: sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/supports-color/-/supports-color-3.2.3.tgz} - name: supports-color - version: 3.2.3 - engines: {node: '>=0.8.0'} - - supports-color@https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz} - name: supports-color - version: 5.5.0 - engines: {node: '>=4'} - - supports-color@https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz} - name: supports-color - version: 7.2.0 - engines: {node: '>=8'} - - supports-color@https://registry.npmmirror.com/supports-color/-/supports-color-8.1.1.tgz: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/supports-color/-/supports-color-8.1.1.tgz} - name: supports-color - version: 8.1.1 - engines: {node: '>=10'} - - supports-color@https://registry.npmmirror.com/supports-color/-/supports-color-9.4.0.tgz: - resolution: {integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/supports-color/-/supports-color-9.4.0.tgz} - name: supports-color - version: 9.4.0 - engines: {node: '>=12'} - - supports-hyperlinks@https://registry.npmmirror.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz: - resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz} - name: supports-hyperlinks - version: 2.3.0 - engines: {node: '>=8'} - - supports-preserve-symlinks-flag@https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz} - name: supports-preserve-symlinks-flag - version: 1.0.0 - engines: {node: '>= 0.4'} - - supports-preserve-symlinks-flag@https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz} - name: supports-preserve-symlinks-flag - version: 1.0.0 - engines: {node: '>= 0.4'} - - svg-baker@https://registry.npmmirror.com/svg-baker/-/svg-baker-1.7.0.tgz: - resolution: {integrity: sha512-nibslMbkXOIkqKVrfcncwha45f97fGuAOn1G99YwnwTj8kF9YiM6XexPcUso97NxOm6GsP0SIvYVIosBis1xLg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/svg-baker/-/svg-baker-1.7.0.tgz} - name: svg-baker - version: 1.7.0 - - svg-pathdata@https://registry.npmmirror.com/svg-pathdata/-/svg-pathdata-6.0.3.tgz: - resolution: {integrity: sha512-qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/svg-pathdata/-/svg-pathdata-6.0.3.tgz} - name: svg-pathdata - version: 6.0.3 - engines: {node: '>=12.0.0'} - - svg-tags@https://registry.npmmirror.com/svg-tags/-/svg-tags-1.0.0.tgz: - resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/svg-tags/-/svg-tags-1.0.0.tgz} - name: svg-tags - version: 1.0.0 - - svgo@https://registry.npmmirror.com/svgo/-/svgo-2.8.0.tgz: - resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/svgo/-/svgo-2.8.0.tgz} - name: svgo - version: 2.8.0 - engines: {node: '>=10.13.0'} - hasBin: true - - symbol-tree@https://registry.npmmirror.com/symbol-tree/-/symbol-tree-3.2.4.tgz: - resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/symbol-tree/-/symbol-tree-3.2.4.tgz} - name: symbol-tree - version: 3.2.4 - - systemjs@https://registry.npmmirror.com/systemjs/-/systemjs-6.14.1.tgz: - resolution: {integrity: sha512-8ftwWd+XnQtZ/aGbatrN4QFNGrKJzmbtixW+ODpci7pyoTajg4sonPP8aFLESAcuVxaC1FyDESt+SpfFCH9rZQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/systemjs/-/systemjs-6.14.1.tgz} - name: systemjs - version: 6.14.1 - - table@https://registry.npmmirror.com/table/-/table-6.8.1.tgz: - resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/table/-/table-6.8.1.tgz} - name: table - version: 6.8.1 - engines: {node: '>=10.0.0'} - - tar-stream@https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz: - resolution: {integrity: sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz} - name: tar-stream - version: 1.6.2 - engines: {node: '>= 0.8.0'} - - tar-stream@https://registry.npmmirror.com/tar-stream/-/tar-stream-1.6.2.tgz: - resolution: {integrity: sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/tar-stream/-/tar-stream-1.6.2.tgz} - name: tar-stream - version: 1.6.2 - engines: {node: '>= 0.8.0'} - - temp-dir@https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz: - resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz} - name: temp-dir - version: 2.0.0 - engines: {node: '>=8'} - - temp-dir@https://registry.npmmirror.com/temp-dir/-/temp-dir-1.0.0.tgz: - resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/temp-dir/-/temp-dir-1.0.0.tgz} - name: temp-dir - version: 1.0.0 - engines: {node: '>=4'} - - temp-dir@https://registry.npmmirror.com/temp-dir/-/temp-dir-2.0.0.tgz: - resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/temp-dir/-/temp-dir-2.0.0.tgz} - name: temp-dir - version: 2.0.0 - engines: {node: '>=8'} - - tempfile@https://registry.npmmirror.com/tempfile/-/tempfile-2.0.0.tgz: - resolution: {integrity: sha512-ZOn6nJUgvgC09+doCEF3oB+r3ag7kUvlsXEGX069QRD60p+P3uP7XG9N2/at+EyIRGSN//ZY3LyEotA1YpmjuA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/tempfile/-/tempfile-2.0.0.tgz} - name: tempfile - version: 2.0.0 - engines: {node: '>=4'} - - tempfile@https://registry.npmmirror.com/tempfile/-/tempfile-3.0.0.tgz: - resolution: {integrity: sha512-uNFCg478XovRi85iD42egu+eSFUmmka750Jy7L5tfHI5hQKKtbPnxaSaXAbBqCDYrw3wx4tXjKwci4/QmsZJxw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/tempfile/-/tempfile-3.0.0.tgz} - name: tempfile - version: 3.0.0 - engines: {node: '>=8'} - - tempy@https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz: - resolution: {integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz} - name: tempy - version: 0.6.0 - engines: {node: '>=10'} - - terminal-link@https://registry.npmmirror.com/terminal-link/-/terminal-link-2.1.1.tgz: - resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/terminal-link/-/terminal-link-2.1.1.tgz} - name: terminal-link - version: 2.1.1 - engines: {node: '>=8'} - - terser@https://registry.npmjs.org/terser/-/terser-5.19.2.tgz: - resolution: {integrity: sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/terser/-/terser-5.19.2.tgz} - name: terser - version: 5.19.2 - engines: {node: '>=10'} - hasBin: true - - terser@https://registry.npmmirror.com/terser/-/terser-5.19.2.tgz: - resolution: {integrity: sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/terser/-/terser-5.19.2.tgz} - name: terser - version: 5.19.2 - engines: {node: '>=10'} - hasBin: true - - test-exclude@https://registry.npmmirror.com/test-exclude/-/test-exclude-6.0.0.tgz: - resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/test-exclude/-/test-exclude-6.0.0.tgz} - name: test-exclude - version: 6.0.0 - engines: {node: '>=8'} - - text-extensions@https://registry.npmmirror.com/text-extensions/-/text-extensions-1.9.0.tgz: - resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/text-extensions/-/text-extensions-1.9.0.tgz} - name: text-extensions - version: 1.9.0 - engines: {node: '>=0.10'} - - text-segmentation@https://registry.npmmirror.com/text-segmentation/-/text-segmentation-1.0.3.tgz: - resolution: {integrity: sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/text-segmentation/-/text-segmentation-1.0.3.tgz} - name: text-segmentation - version: 1.0.3 - - text-table@https://registry.npmmirror.com/text-table/-/text-table-0.2.0.tgz: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/text-table/-/text-table-0.2.0.tgz} - name: text-table - version: 0.2.0 - - throat@https://registry.npmmirror.com/throat/-/throat-6.0.2.tgz: - resolution: {integrity: sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/throat/-/throat-6.0.2.tgz} - name: throat - version: 6.0.2 - - through2@https://registry.npmmirror.com/through2/-/through2-2.0.5.tgz: - resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/through2/-/through2-2.0.5.tgz} - name: through2 - version: 2.0.5 - - through2@https://registry.npmmirror.com/through2/-/through2-4.0.2.tgz: - resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/through2/-/through2-4.0.2.tgz} - name: through2 - version: 4.0.2 - - through@https://registry.npmjs.org/through/-/through-2.3.8.tgz: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/through/-/through-2.3.8.tgz} - name: through - version: 2.3.8 - - through@https://registry.npmmirror.com/through/-/through-2.3.8.tgz: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/through/-/through-2.3.8.tgz} - name: through - version: 2.3.8 - - timed-out@https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz: - resolution: {integrity: sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz} - name: timed-out - version: 4.0.1 - engines: {node: '>=0.10.0'} - - timed-out@https://registry.npmmirror.com/timed-out/-/timed-out-4.0.1.tgz: - resolution: {integrity: sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/timed-out/-/timed-out-4.0.1.tgz} - name: timed-out - version: 4.0.1 - engines: {node: '>=0.10.0'} - - tiny-emitter@https://registry.npmmirror.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz: - resolution: {integrity: sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz} - name: tiny-emitter - version: 2.1.0 - - tinycolor2@https://registry.npmmirror.com/tinycolor2/-/tinycolor2-1.6.0.tgz: - resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/tinycolor2/-/tinycolor2-1.6.0.tgz} - name: tinycolor2 - version: 1.6.0 - - tinymce@https://registry.npmmirror.com/tinymce/-/tinymce-5.10.3.tgz: - resolution: {integrity: sha512-O59ssHNnujWvSk5Gt8hIGrdNCMKVWVQv9F8siAgLTRgTh0t3NDHrP1UlLtCxArUi9DPWZvlBeUz8D5fJTu7vnA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/tinymce/-/tinymce-5.10.3.tgz} - name: tinymce - version: 5.10.3 - - tmp@https://registry.npmmirror.com/tmp/-/tmp-0.0.33.tgz: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/tmp/-/tmp-0.0.33.tgz} - name: tmp - version: 0.0.33 - engines: {node: '>=0.6.0'} - - tmpl@https://registry.npmmirror.com/tmpl/-/tmpl-1.0.5.tgz: - resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/tmpl/-/tmpl-1.0.5.tgz} - name: tmpl - version: 1.0.5 - - to-buffer@https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz: - resolution: {integrity: sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz} - name: to-buffer - version: 1.1.1 - - to-buffer@https://registry.npmmirror.com/to-buffer/-/to-buffer-1.1.1.tgz: - resolution: {integrity: sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/to-buffer/-/to-buffer-1.1.1.tgz} - name: to-buffer - version: 1.1.1 - - to-fast-properties@https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz} - name: to-fast-properties - version: 2.0.0 - engines: {node: '>=4'} - - to-fast-properties@https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz} - name: to-fast-properties - version: 2.0.0 - engines: {node: '>=4'} - - to-object-path@https://registry.npmmirror.com/to-object-path/-/to-object-path-0.3.0.tgz: - resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/to-object-path/-/to-object-path-0.3.0.tgz} - name: to-object-path - version: 0.3.0 - engines: {node: '>=0.10.0'} - - to-regex-range@https://registry.npmmirror.com/to-regex-range/-/to-regex-range-2.1.1.tgz: - resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/to-regex-range/-/to-regex-range-2.1.1.tgz} - name: to-regex-range - version: 2.1.1 - engines: {node: '>=0.10.0'} - - to-regex-range@https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz} - name: to-regex-range - version: 5.0.1 - engines: {node: '>=8.0'} - - to-regex@https://registry.npmmirror.com/to-regex/-/to-regex-3.0.2.tgz: - resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/to-regex/-/to-regex-3.0.2.tgz} - name: to-regex - version: 3.0.2 - engines: {node: '>=0.10.0'} - - token-stream@https://registry.npmmirror.com/token-stream/-/token-stream-1.0.0.tgz: - resolution: {integrity: sha512-VSsyNPPW74RpHwR8Fc21uubwHY7wMDeJLys2IX5zJNih+OnAnaifKHo+1LHT7DAdloQ7apeaaWg8l7qnf/TnEg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/token-stream/-/token-stream-1.0.0.tgz} - name: token-stream - version: 1.0.0 - - tough-cookie@https://registry.npmmirror.com/tough-cookie/-/tough-cookie-4.1.3.tgz: - resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/tough-cookie/-/tough-cookie-4.1.3.tgz} - name: tough-cookie - version: 4.1.3 - engines: {node: '>=6'} - - tr46@https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz: - resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz} - name: tr46 - version: 1.0.1 - - tr46@https://registry.npmmirror.com/tr46/-/tr46-0.0.3.tgz: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/tr46/-/tr46-0.0.3.tgz} - name: tr46 - version: 0.0.3 - - tr46@https://registry.npmmirror.com/tr46/-/tr46-2.1.0.tgz: - resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/tr46/-/tr46-2.1.0.tgz} - name: tr46 - version: 2.1.0 - engines: {node: '>=8'} - - traverse@https://registry.npmmirror.com/traverse/-/traverse-0.6.7.tgz: - resolution: {integrity: sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/traverse/-/traverse-0.6.7.tgz} - name: traverse - version: 0.6.7 - - trim-newlines@https://registry.npmmirror.com/trim-newlines/-/trim-newlines-1.0.0.tgz: - resolution: {integrity: sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/trim-newlines/-/trim-newlines-1.0.0.tgz} - name: trim-newlines - version: 1.0.0 - engines: {node: '>=0.10.0'} - - trim-newlines@https://registry.npmmirror.com/trim-newlines/-/trim-newlines-3.0.1.tgz: - resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/trim-newlines/-/trim-newlines-3.0.1.tgz} - name: trim-newlines - version: 3.0.1 - engines: {node: '>=8'} - - trim-repeated@https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz: - resolution: {integrity: sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz} - name: trim-repeated - version: 1.0.0 - engines: {node: '>=0.10.0'} - - trim-repeated@https://registry.npmmirror.com/trim-repeated/-/trim-repeated-1.0.0.tgz: - resolution: {integrity: sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/trim-repeated/-/trim-repeated-1.0.0.tgz} - name: trim-repeated - version: 1.0.0 - engines: {node: '>=0.10.0'} - - ts-jest@https://registry.npmmirror.com/ts-jest/-/ts-jest-27.0.7.tgz: - resolution: {integrity: sha512-O41shibMqzdafpuP+CkrOL7ykbmLh+FqQrXEmV9CydQ5JBk0Sj0uAEF5TNNe94fZWKm3yYvWa/IbyV4Yg1zK2Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ts-jest/-/ts-jest-27.0.7.tgz} - name: ts-jest - version: 27.0.7 - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@types/jest': ^27.0.0 - babel-jest: '>=27.0.0 <28' - jest: ^27.0.0 - typescript: '>=3.8 <5.0' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/jest': - optional: true - babel-jest: - optional: true - - ts-node@https://registry.npmmirror.com/ts-node/-/ts-node-10.7.0.tgz: - resolution: {integrity: sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ts-node/-/ts-node-10.7.0.tgz} - name: ts-node - version: 10.7.0 - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: '>=2.7' - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true - - ts-node@https://registry.npmmirror.com/ts-node/-/ts-node-10.9.1.tgz: - resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ts-node/-/ts-node-10.9.1.tgz} - name: ts-node - version: 10.9.1 - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: '>=2.7' - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true - - tslib@https://registry.npmmirror.com/tslib/-/tslib-1.14.1.tgz: - resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/tslib/-/tslib-1.14.1.tgz} - name: tslib - version: 1.14.1 - - tslib@https://registry.npmmirror.com/tslib/-/tslib-2.3.0.tgz: - resolution: {integrity: sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/tslib/-/tslib-2.3.0.tgz} - name: tslib - version: 2.3.0 - - tslib@https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz: - resolution: {integrity: sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz} - name: tslib - version: 2.6.1 - - tsutils@https://registry.npmmirror.com/tsutils/-/tsutils-3.21.0.tgz: - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/tsutils/-/tsutils-3.21.0.tgz} - name: tsutils - version: 3.21.0 - 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' - - tunnel-agent@https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz: - resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz} - name: tunnel-agent - version: 0.6.0 - - tunnel-agent@https://registry.npmmirror.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz: - resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz} - name: tunnel-agent - version: 0.6.0 - - type-check@https://registry.npmmirror.com/type-check/-/type-check-0.4.0.tgz: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/type-check/-/type-check-0.4.0.tgz} - name: type-check - version: 0.4.0 - engines: {node: '>= 0.8.0'} - - type-detect@https://registry.npmmirror.com/type-detect/-/type-detect-4.0.8.tgz: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/type-detect/-/type-detect-4.0.8.tgz} - name: type-detect - version: 4.0.8 - engines: {node: '>=4'} - - type-fest@https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz: - resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz} - name: type-fest - version: 0.16.0 - engines: {node: '>=10'} - - type-fest@https://registry.npmmirror.com/type-fest/-/type-fest-0.11.0.tgz: - resolution: {integrity: sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/type-fest/-/type-fest-0.11.0.tgz} - name: type-fest - version: 0.11.0 - engines: {node: '>=8'} - - type-fest@https://registry.npmmirror.com/type-fest/-/type-fest-0.18.1.tgz: - resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/type-fest/-/type-fest-0.18.1.tgz} - name: type-fest - version: 0.18.1 - engines: {node: '>=10'} - - type-fest@https://registry.npmmirror.com/type-fest/-/type-fest-0.20.2.tgz: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/type-fest/-/type-fest-0.20.2.tgz} - name: type-fest - version: 0.20.2 - engines: {node: '>=10'} - - type-fest@https://registry.npmmirror.com/type-fest/-/type-fest-0.21.3.tgz: - resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/type-fest/-/type-fest-0.21.3.tgz} - name: type-fest - version: 0.21.3 - engines: {node: '>=10'} - - type-fest@https://registry.npmmirror.com/type-fest/-/type-fest-0.6.0.tgz: - resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/type-fest/-/type-fest-0.6.0.tgz} - name: type-fest - version: 0.6.0 - engines: {node: '>=8'} - - type-fest@https://registry.npmmirror.com/type-fest/-/type-fest-0.8.1.tgz: - resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/type-fest/-/type-fest-0.8.1.tgz} - name: type-fest - version: 0.8.1 - engines: {node: '>=8'} - - typed-array-buffer@https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz: - resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz} - name: typed-array-buffer - version: 1.0.0 - engines: {node: '>= 0.4'} - - typed-array-buffer@https://registry.npmmirror.com/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz: - resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz} - name: typed-array-buffer - version: 1.0.0 - engines: {node: '>= 0.4'} - - typed-array-byte-length@https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz: - resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz} - name: typed-array-byte-length - version: 1.0.0 - engines: {node: '>= 0.4'} - - typed-array-byte-length@https://registry.npmmirror.com/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz: - resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz} - name: typed-array-byte-length - version: 1.0.0 - engines: {node: '>= 0.4'} - - typed-array-byte-offset@https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz: - resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz} - name: typed-array-byte-offset - version: 1.0.0 - engines: {node: '>= 0.4'} - - typed-array-byte-offset@https://registry.npmmirror.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz: - resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz} - name: typed-array-byte-offset - version: 1.0.0 - engines: {node: '>= 0.4'} - - typed-array-length@https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz: - resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz} - name: typed-array-length - version: 1.0.4 - - typed-array-length@https://registry.npmmirror.com/typed-array-length/-/typed-array-length-1.0.4.tgz: - resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/typed-array-length/-/typed-array-length-1.0.4.tgz} - name: typed-array-length - version: 1.0.4 - - typedarray-to-buffer@https://registry.npmmirror.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz: - resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz} - name: typedarray-to-buffer - version: 3.1.5 - - typescript@https://registry.npmmirror.com/typescript/-/typescript-4.6.3.tgz: - resolution: {integrity: sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/typescript/-/typescript-4.6.3.tgz} - name: typescript - version: 4.6.3 - engines: {node: '>=4.2.0'} - hasBin: true - - typescript@https://registry.npmmirror.com/typescript/-/typescript-4.9.5.tgz: - resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/typescript/-/typescript-4.9.5.tgz} - name: typescript - version: 4.9.5 - engines: {node: '>=4.2.0'} - hasBin: true - - uglify-js@https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz: - resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz} - name: uglify-js - version: 3.17.4 - engines: {node: '>=0.8.0'} - hasBin: true - - unbox-primitive@https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz} - name: unbox-primitive - version: 1.0.2 - - unbox-primitive@https://registry.npmmirror.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz} - name: unbox-primitive - version: 1.0.2 - - unbzip2-stream@https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz: - resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz} - name: unbzip2-stream - version: 1.4.3 - - unbzip2-stream@https://registry.npmmirror.com/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz: - resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz} - name: unbzip2-stream - version: 1.4.3 - - unicode-canonical-property-names-ecmascript@https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz: - resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz} - name: unicode-canonical-property-names-ecmascript - version: 2.0.0 - engines: {node: '>=4'} - - unicode-match-property-ecmascript@https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz: - resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz} - name: unicode-match-property-ecmascript - version: 2.0.0 - engines: {node: '>=4'} - - unicode-match-property-value-ecmascript@https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz: - resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz} - name: unicode-match-property-value-ecmascript - version: 2.1.0 - engines: {node: '>=4'} - - unicode-property-aliases-ecmascript@https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz: - resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz} - name: unicode-property-aliases-ecmascript - version: 2.1.0 - engines: {node: '>=4'} - - union-value@https://registry.npmmirror.com/union-value/-/union-value-1.0.1.tgz: - resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/union-value/-/union-value-1.0.1.tgz} - name: union-value - version: 1.0.1 - engines: {node: '>=0.10.0'} - - union@https://registry.npmmirror.com/union/-/union-0.5.0.tgz: - resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/union/-/union-0.5.0.tgz} - name: union - version: 0.5.0 - engines: {node: '>= 0.8.0'} - - unique-string@https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz: - resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz} - name: unique-string - version: 2.0.0 - engines: {node: '>=8'} - - universal-user-agent@https://registry.npmmirror.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz: - resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz} - name: universal-user-agent - version: 6.0.0 - - universalify@https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz: - resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz} - name: universalify - version: 2.0.0 - engines: {node: '>= 10.0.0'} - - universalify@https://registry.npmmirror.com/universalify/-/universalify-0.1.2.tgz: - resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/universalify/-/universalify-0.1.2.tgz} - name: universalify - version: 0.1.2 - engines: {node: '>= 4.0.0'} - - universalify@https://registry.npmmirror.com/universalify/-/universalify-0.2.0.tgz: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/universalify/-/universalify-0.2.0.tgz} - name: universalify - version: 0.2.0 - engines: {node: '>= 4.0.0'} - - universalify@https://registry.npmmirror.com/universalify/-/universalify-2.0.0.tgz: - resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/universalify/-/universalify-2.0.0.tgz} - name: universalify - version: 2.0.0 - engines: {node: '>= 10.0.0'} - - unpipe@https://registry.npmmirror.com/unpipe/-/unpipe-1.0.0.tgz: - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/unpipe/-/unpipe-1.0.0.tgz} - name: unpipe - version: 1.0.0 - engines: {node: '>= 0.8'} - - unset-value@https://registry.npmmirror.com/unset-value/-/unset-value-1.0.0.tgz: - resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/unset-value/-/unset-value-1.0.0.tgz} - name: unset-value - version: 1.0.0 - engines: {node: '>=0.10.0'} - - upath@https://registry.npmjs.org/upath/-/upath-1.2.0.tgz: - resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/upath/-/upath-1.2.0.tgz} - name: upath - version: 1.2.0 - engines: {node: '>=4'} - - upath@https://registry.npmmirror.com/upath/-/upath-2.0.1.tgz: - resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/upath/-/upath-2.0.1.tgz} - name: upath - version: 2.0.1 - engines: {node: '>=4'} - - update-browserslist-db@https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz: - resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz} - name: update-browserslist-db - version: 1.0.11 - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - - update-browserslist-db@https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz: - resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz} - name: update-browserslist-db - version: 1.0.11 - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - - upper-case-first@https://registry.npmmirror.com/upper-case-first/-/upper-case-first-2.0.2.tgz: - resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/upper-case-first/-/upper-case-first-2.0.2.tgz} - name: upper-case-first - version: 2.0.2 - - upper-case@https://registry.npmmirror.com/upper-case/-/upper-case-2.0.2.tgz: - resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/upper-case/-/upper-case-2.0.2.tgz} - name: upper-case - version: 2.0.2 - - uri-js@https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz} - name: uri-js - version: 4.4.1 - - uri-js@https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz} - name: uri-js - version: 4.4.1 - - urix@https://registry.npmmirror.com/urix/-/urix-0.1.0.tgz: - resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/urix/-/urix-0.1.0.tgz} - name: urix - version: 0.1.0 - deprecated: Please see https://github.com/lydell/urix#deprecated - - url-join@https://registry.npmmirror.com/url-join/-/url-join-4.0.1.tgz: - resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/url-join/-/url-join-4.0.1.tgz} - name: url-join - version: 4.0.1 - - url-parse-lax@https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz: - resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz} - name: url-parse-lax - version: 3.0.0 - engines: {node: '>=4'} - - url-parse-lax@https://registry.npmmirror.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz: - resolution: {integrity: sha512-BVA4lR5PIviy2PMseNd2jbFQ+jwSwQGdJejf5ctd1rEXt0Ypd7yanUK9+lYechVlN5VaTJGsu2U/3MDDu6KgBA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz} - name: url-parse-lax - version: 1.0.0 - engines: {node: '>=0.10.0'} - - url-parse@https://registry.npmmirror.com/url-parse/-/url-parse-1.5.10.tgz: - resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/url-parse/-/url-parse-1.5.10.tgz} - name: url-parse - version: 1.5.10 - - url-to-options@https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz: - resolution: {integrity: sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz} - name: url-to-options - version: 1.0.1 - engines: {node: '>= 4'} - - url-to-options@https://registry.npmmirror.com/url-to-options/-/url-to-options-1.0.1.tgz: - resolution: {integrity: sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/url-to-options/-/url-to-options-1.0.1.tgz} - name: url-to-options - version: 1.0.1 - engines: {node: '>= 4'} - - use@https://registry.npmmirror.com/use/-/use-3.1.1.tgz: - resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/use/-/use-3.1.1.tgz} - name: use - version: 3.1.1 - engines: {node: '>=0.10.0'} - - util-deprecate@https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz} - name: util-deprecate - version: 1.0.2 - - util-deprecate@https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz} - name: util-deprecate - version: 1.0.2 - - utils-merge@https://registry.npmmirror.com/utils-merge/-/utils-merge-1.0.1.tgz: - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/utils-merge/-/utils-merge-1.0.1.tgz} - name: utils-merge - version: 1.0.1 - engines: {node: '>= 0.4.0'} - - utrie@https://registry.npmmirror.com/utrie/-/utrie-1.0.2.tgz: - resolution: {integrity: sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/utrie/-/utrie-1.0.2.tgz} - name: utrie - version: 1.0.2 - - uuid@https://registry.npmmirror.com/uuid/-/uuid-3.4.0.tgz: - resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/uuid/-/uuid-3.4.0.tgz} - name: uuid - version: 3.4.0 - deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. - hasBin: true - - v8-compile-cache-lib@https://registry.npmmirror.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz: - resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz} - name: v8-compile-cache-lib - version: 3.0.1 - - v8-compile-cache@https://registry.npmmirror.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz: - resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz} - name: v8-compile-cache - version: 2.3.0 - - v8-to-istanbul@https://registry.npmmirror.com/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz: - resolution: {integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz} - name: v8-to-istanbul - version: 8.1.1 - engines: {node: '>=10.12.0'} - - validate-npm-package-license@https://registry.npmmirror.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz} - name: validate-npm-package-license - version: 3.0.4 - - vary@https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz: - resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz} - name: vary - version: 1.1.2 - engines: {node: '>= 0.8'} - - vditor@https://registry.npmmirror.com/vditor/-/vditor-3.8.13.tgz: - resolution: {integrity: sha512-vp6OF1n9wIduKtLvvTYtn+7Gr1Az6MqDIEBpLzik+PTQ208YjrcQ+Ba4AHXMMvJgDtbYP3PdY8OixWKecFzo2A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vditor/-/vditor-3.8.13.tgz} - name: vditor - version: 3.8.13 - - vite-plugin-compression@https://registry.npmmirror.com/vite-plugin-compression/-/vite-plugin-compression-0.5.1.tgz: - resolution: {integrity: sha512-5QJKBDc+gNYVqL/skgFAP81Yuzo9R+EAf19d+EtsMF/i8kFUpNi3J/H01QD3Oo8zBQn+NzoCIFkpPLynoOzaJg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vite-plugin-compression/-/vite-plugin-compression-0.5.1.tgz} - name: vite-plugin-compression - version: 0.5.1 - peerDependencies: - vite: '>=2.0.0' - - vite-plugin-html@https://registry.npmmirror.com/vite-plugin-html/-/vite-plugin-html-3.2.0.tgz: - resolution: {integrity: sha512-2VLCeDiHmV/BqqNn5h2V+4280KRgQzCFN47cst3WiNK848klESPQnzuC3okH5XHtgwHH/6s1Ho/YV6yIO0pgoQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vite-plugin-html/-/vite-plugin-html-3.2.0.tgz} - name: vite-plugin-html - version: 3.2.0 - peerDependencies: - vite: '>=2.0.0' - - vite-plugin-imagemin@https://registry.npmmirror.com/vite-plugin-imagemin/-/vite-plugin-imagemin-0.6.1.tgz: - resolution: {integrity: sha512-cP7LDn8euPrji7WYtDoNQpJEB9nkMxJHm/A+QZnvMrrCSuyo/clpMy/T1v7suDXPBavsDiDdFdVQB5p7VGD2cg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vite-plugin-imagemin/-/vite-plugin-imagemin-0.6.1.tgz} - name: vite-plugin-imagemin - version: 0.6.1 - peerDependencies: - vite: '>=2.0.0' - - vite-plugin-mkcert@https://registry.npmmirror.com/vite-plugin-mkcert/-/vite-plugin-mkcert-1.10.1.tgz: - resolution: {integrity: sha512-fNNC0z+AcBZExKedjWC7bWlDMf4+WZJqO/4aYf7C/vYY1dqYVOM+zowwTYV0xSx5ZQgplfangPkZk+RwdUlpBg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vite-plugin-mkcert/-/vite-plugin-mkcert-1.10.1.tgz} - name: vite-plugin-mkcert - version: 1.10.1 - engines: {node: '>=v16.0.0'} - peerDependencies: - vite: '>=3' - - vite-plugin-mock@https://registry.npmmirror.com/vite-plugin-mock/-/vite-plugin-mock-2.9.6.tgz: - resolution: {integrity: sha512-/Rm59oPppe/ncbkSrUuAxIQihlI2YcBmnbR4ST1RA2VzM1C0tEQc1KlbQvnUGhXECAGTaQN2JyasiwXP6EtKgg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vite-plugin-mock/-/vite-plugin-mock-2.9.6.tgz} - name: vite-plugin-mock - version: 2.9.6 - engines: {node: '>=12.0.0'} - peerDependencies: - mockjs: '>=1.1.0' - vite: '>=2.0.0' - - vite-plugin-optimize-persist@https://registry.npmmirror.com/vite-plugin-optimize-persist/-/vite-plugin-optimize-persist-0.1.2.tgz: - resolution: {integrity: sha512-H/Ebn2kZO8PvwUF08SsT5K5xMJNCWKoGX71+e9/ER3yNj7GHiFjNQlvGg5ih/zEx09MZ9m7WCxOwmEKbeIVzww==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vite-plugin-optimize-persist/-/vite-plugin-optimize-persist-0.1.2.tgz} - name: vite-plugin-optimize-persist - version: 0.1.2 - peerDependencies: - vite: ^2.0.0 - vite-plugin-package-config: ^0.1.0 - - vite-plugin-package-config@https://registry.npmmirror.com/vite-plugin-package-config/-/vite-plugin-package-config-0.1.1.tgz: - resolution: {integrity: sha512-w9B3I8ZnqoyhlbzimXjXNk85imrMZgvI9m8f6j3zonK5IVA5KXzpT+PZOHlDz8lqh1vqvoEI1uhy+ZDoLAiA/w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vite-plugin-package-config/-/vite-plugin-package-config-0.1.1.tgz} - name: vite-plugin-package-config - version: 0.1.1 - peerDependencies: - vite: ^2.0.0 - - vite-plugin-purge-icons@https://registry.npmmirror.com/vite-plugin-purge-icons/-/vite-plugin-purge-icons-0.8.2.tgz: - resolution: {integrity: sha512-rW3RcNKj7QY3M7wcnwYVc3Ig+WwSQQ/Z67v+xdtk/8MA+ON05A3zc3qGaPdi6+8BUKYDpqvviKYiuLgRjleUOQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vite-plugin-purge-icons/-/vite-plugin-purge-icons-0.8.2.tgz} - name: vite-plugin-purge-icons - version: 0.8.2 - engines: {node: '>= 12'} - peerDependencies: - vite: ^2.0.0-beta.3 || ^3.0.0 - - vite-plugin-pwa@https://registry.npmmirror.com/vite-plugin-pwa/-/vite-plugin-pwa-0.12.3.tgz: - resolution: {integrity: sha512-gmYdIVXpmBuNjzbJFPZFzxWYrX4lHqwMAlOtjmXBbxApiHjx9QPXKQPJjSpeTeosLKvVbNcKSAAhfxMda0QVNQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vite-plugin-pwa/-/vite-plugin-pwa-0.12.3.tgz} - name: vite-plugin-pwa - version: 0.12.3 - peerDependencies: - vite: ^2.0.0 || ^3.0.0-0 - workbox-build: ^6.4.0 - workbox-window: ^6.4.0 - - vite-plugin-style-import@https://registry.npmmirror.com/vite-plugin-style-import/-/vite-plugin-style-import-2.0.0.tgz: - resolution: {integrity: sha512-qtoHQae5dSUQPo/rYz/8p190VU5y19rtBaeV7ryLa/AYAU/e9CG89NrN/3+k7MR8mJy/GPIu91iJ3zk9foUOSA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vite-plugin-style-import/-/vite-plugin-style-import-2.0.0.tgz} - name: vite-plugin-style-import - version: 2.0.0 - peerDependencies: - vite: '>=2.0.0' - - vite-plugin-svg-icons@https://registry.npmmirror.com/vite-plugin-svg-icons/-/vite-plugin-svg-icons-2.0.1.tgz: - resolution: {integrity: sha512-6ktD+DhV6Rz3VtedYvBKKVA2eXF+sAQVaKkKLDSqGUfnhqXl3bj5PPkVTl3VexfTuZy66PmINi8Q6eFnVfRUmA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vite-plugin-svg-icons/-/vite-plugin-svg-icons-2.0.1.tgz} - name: vite-plugin-svg-icons - version: 2.0.1 - peerDependencies: - vite: '>=2.0.0' - - vite-plugin-vue-setup-extend-plus@https://registry.npmmirror.com/vite-plugin-vue-setup-extend-plus/-/vite-plugin-vue-setup-extend-plus-0.1.0.tgz: - resolution: {integrity: sha512-pa27KIsHIBvBMv4xz9uB3UCfAuP2tr7PLlFhCS9vw+aXd326LEHsvhqd3hCQDOR5MjlQVyQH6vwuGr3u+KRiiw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vite-plugin-vue-setup-extend-plus/-/vite-plugin-vue-setup-extend-plus-0.1.0.tgz} - name: vite-plugin-vue-setup-extend-plus - version: 0.1.0 - - vite-plugin-windicss@https://registry.npmmirror.com/vite-plugin-windicss/-/vite-plugin-windicss-1.8.7.tgz: - resolution: {integrity: sha512-/zwQ8+RV+MSkbG0IGqsEma6r2R01NzN/aNpNjJD7VVAkxAptNznqDXOObFTskkWfZ+9m6KJZCOuCPgAFtQIzEA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vite-plugin-windicss/-/vite-plugin-windicss-1.8.7.tgz} - name: vite-plugin-windicss - version: 1.8.7 - peerDependencies: - vite: ^2.0.1 || ^3.0.0 - - vite@https://registry.npmmirror.com/vite/-/vite-3.0.2.tgz: - resolution: {integrity: sha512-TAqydxW/w0U5AoL5AsD9DApTvGb2iNbGs3sN4u2VdT1GFkQVUfgUldt+t08TZgi23uIauh1TUOQJALduo9GXqw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vite/-/vite-3.0.2.tgz} - name: vite - version: 3.0.2 - engines: {node: ^14.18.0 || >=16.0.0} - hasBin: true - peerDependencies: - less: '*' - sass: '*' - stylus: '*' - terser: ^5.4.0 - peerDependenciesMeta: - less: - optional: true - sass: - optional: true - stylus: - optional: true - terser: - optional: true - - vscode-jsonrpc@https://registry.npmmirror.com/vscode-jsonrpc/-/vscode-jsonrpc-8.1.0.tgz: - resolution: {integrity: sha512-6TDy/abTQk+zDGYazgbIPc+4JoXdwC8NHU9Pbn4UJP1fehUyZmM4RHp5IthX7A6L5KS30PRui+j+tbbMMMafdw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vscode-jsonrpc/-/vscode-jsonrpc-8.1.0.tgz} - name: vscode-jsonrpc - version: 8.1.0 - engines: {node: '>=14.0.0'} - - vscode-languageserver-textdocument@https://registry.npmmirror.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.8.tgz: - resolution: {integrity: sha512-1bonkGqQs5/fxGT5UchTgjGVnfysL0O8v1AYMBjqTbWQTFn721zaPGDYFkOKtfDgFiSgXM3KwaG3FMGfW4Ed9Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.8.tgz} - name: vscode-languageserver-textdocument - version: 1.0.8 - - vscode-languageserver-types@https://registry.npmmirror.com/vscode-languageserver-types/-/vscode-languageserver-types-3.17.3.tgz: - resolution: {integrity: sha512-SYU4z1dL0PyIMd4Vj8YOqFvHu7Hz/enbWtpfnVbJHU4Nd1YNYx8u0ennumc6h48GQNeOLxmwySmnADouT/AuZA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vscode-languageserver-types/-/vscode-languageserver-types-3.17.3.tgz} - name: vscode-languageserver-types - version: 3.17.3 - - vscode-uri@https://registry.npmmirror.com/vscode-uri/-/vscode-uri-3.0.7.tgz: - resolution: {integrity: sha512-eOpPHogvorZRobNqJGhapa0JdwaxpjVvyBp0QIUMRMSf8ZAlqOdEquKuRmw9Qwu0qXtJIWqFtMkmvJjUZmMjVA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vscode-uri/-/vscode-uri-3.0.7.tgz} - name: vscode-uri - version: 3.0.7 - - vue-clipboard3@https://registry.npmmirror.com/vue-clipboard3/-/vue-clipboard3-2.0.0.tgz: - resolution: {integrity: sha512-Q9S7dzWGax7LN5iiSPcu/K1GGm2gcBBlYwmMsUc5/16N6w90cbKow3FnPmPs95sungns4yvd9/+JhbAznECS2A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue-clipboard3/-/vue-clipboard3-2.0.0.tgz} - name: vue-clipboard3 - version: 2.0.0 - - vue-count-to2@https://registry.npmmirror.com/vue-count-to2/-/vue-count-to2-1.0.6.tgz: - resolution: {integrity: sha512-Mm56aA2nxgw/qTfU2XaauUh1W4bdM6lIeihhDIahQOGNUxVPVARyvLUbUFbOrynOJ5Ab26fuTguspX+xBGhVKw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue-count-to2/-/vue-count-to2-1.0.6.tgz} - name: vue-count-to2 - version: 1.0.6 - peerDependencies: - vue: '>= 3 < 4' - - vue-count-to@https://registry.npmmirror.com/vue-count-to/-/vue-count-to-1.0.13.tgz: - resolution: {integrity: sha512-6R4OVBVNtQTlcbXu6SJ8ENR35M2/CdWt3Jmv57jOUM+1ojiFmjVGvZPH8DfHpMDSA+ITs+EW5V6qthADxeyYOQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue-count-to/-/vue-count-to-1.0.13.tgz} - name: vue-count-to - version: 1.0.13 - - vue-cropper@https://registry.npmmirror.com/vue-cropper/-/vue-cropper-0.5.6.tgz: - resolution: {integrity: sha512-54Z/AipXDBcE5nzJweTM+BryzSAcC0FCTMQLvLt6f4XanP4AWB3mPkQw3PG3NRICo7knljHO+N+pjZxYAKoTLQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue-cropper/-/vue-cropper-0.5.6.tgz} - name: vue-cropper - version: 0.5.6 - - vue-cropperjs@https://registry.npmmirror.com/vue-cropperjs/-/vue-cropperjs-5.0.0.tgz: - resolution: {integrity: sha512-RhnC8O33uRZNkn74aiHZwNHnBJOXWlS4P6gsRI0lw4cZlWjKSCywZI9oSI9POlIPI6OYv30jvnHMXGch85tw7w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue-cropperjs/-/vue-cropperjs-5.0.0.tgz} - name: vue-cropperjs - version: 5.0.0 - peerDependencies: - vue: '>=3.0.0' - - vue-demi@https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.5.tgz: - resolution: {integrity: sha512-o9NUVpl/YlsGJ7t+xuqJKx8EBGf1quRhCiT6D/J0pfwmk9zUwYkC7yrF4SZCe6fETvSM3UNL2edcbYrSyc4QHA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.5.tgz} - name: vue-demi - version: 0.14.5 - engines: {node: '>=12'} - hasBin: true - peerDependencies: - '@vue/composition-api': ^1.0.0-rc.1 - vue: ^3.0.0-0 || ^2.6.0 - peerDependenciesMeta: - '@vue/composition-api': - optional: true - - vue-eslint-parser@https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-8.3.0.tgz: - resolution: {integrity: sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-8.3.0.tgz} - name: vue-eslint-parser - version: 8.3.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '>=6.0.0' - - vue-eslint-parser@https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-9.3.1.tgz: - resolution: {integrity: sha512-Clr85iD2XFZ3lJ52/ppmUDG/spxQu6+MAeHXjjyI4I1NUYZ9xmenQp4N0oaHJhrA8OOxltCVxMRfANGa70vU0g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-9.3.1.tgz} - name: vue-eslint-parser - version: 9.3.1 - engines: {node: ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '>=6.0.0' - - vue-grid-layout@https://registry.npmmirror.com/vue-grid-layout/-/vue-grid-layout-3.0.0-beta1.tgz: - resolution: {integrity: sha512-MsW0yfYNtnAO/uDhfZvkP6effxSJxvhAFbIL37x6Rn3vW9xf0WHVefKaSbQMLpSq3mXnR6ut0pg2Cd5lqIIZzg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue-grid-layout/-/vue-grid-layout-3.0.0-beta1.tgz} - name: vue-grid-layout - version: 3.0.0-beta1 - - vue-i18n@https://registry.npmmirror.com/vue-i18n/-/vue-i18n-9.1.9.tgz: - resolution: {integrity: sha512-JeRdNVxS2OGp1E+pye5XB6+M6BBkHwAv9C80Q7+kzoMdUDGRna06tjC0vCB/jDX9aWrl5swxOMFcyAr7or8XTA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue-i18n/-/vue-i18n-9.1.9.tgz} - name: vue-i18n - version: 9.1.9 - engines: {node: '>= 10'} - peerDependencies: - vue: ^3.0.0 - - vue-infinite-scroll@https://registry.npmmirror.com/vue-infinite-scroll/-/vue-infinite-scroll-2.0.2.tgz: - resolution: {integrity: sha512-n+YghR059YmciANGJh9SsNWRi1YZEBVlODtmnb/12zI+4R72QZSWd+EuZ5mW6auEo/yaJXgxzwsuhvALVnm73A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue-infinite-scroll/-/vue-infinite-scroll-2.0.2.tgz} - name: vue-infinite-scroll - version: 2.0.2 - - vue-json-pretty@https://registry.npmmirror.com/vue-json-pretty/-/vue-json-pretty-2.0.6.tgz: - resolution: {integrity: sha512-aVdxw8ZRGR/Uj8GEaJ1/W2Ks/MdCfv5t2HRbbd+ICp3nL7msKRLN+1qOkSzaMvDygbDPxGhwUHBxZz8nxP+r3A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue-json-pretty/-/vue-json-pretty-2.0.6.tgz} - name: vue-json-pretty - version: 2.0.6 - engines: {node: '>= 10.0.0', npm: '>= 5.0.0'} - peerDependencies: - vue: '>=3.0.0' - - vue-observe-visibility@https://registry.npmmirror.com/vue-observe-visibility/-/vue-observe-visibility-0.4.6.tgz: - resolution: {integrity: sha512-xo0CEVdkjSjhJoDdLSvoZoQrw/H2BlzB5jrCBKGZNXN2zdZgMuZ9BKrxXDjNP2AxlcCoKc8OahI3F3r3JGLv2Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue-observe-visibility/-/vue-observe-visibility-0.4.6.tgz} - name: vue-observe-visibility - version: 0.4.6 - - vue-print-nb-jeecg@https://registry.npmmirror.com/vue-print-nb-jeecg/-/vue-print-nb-jeecg-1.0.12.tgz: - resolution: {integrity: sha512-jHyWm6/TxB1iU2nHL7upQdHVdxb1SJQ9n3XKeYTaruFdbSphLo1vDtTunS2qVCjupk8lui7FlF5rxxSNr0zjZg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue-print-nb-jeecg/-/vue-print-nb-jeecg-1.0.12.tgz} - name: vue-print-nb-jeecg - version: 1.0.12 - - vue-resize@https://registry.npmmirror.com/vue-resize/-/vue-resize-0.4.5.tgz: - resolution: {integrity: sha512-bhP7MlgJQ8TIkZJXAfDf78uJO+mEI3CaLABLjv0WNzr4CcGRGPIAItyWYnP6LsPA4Oq0WE+suidNs6dgpO4RHg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue-resize/-/vue-resize-0.4.5.tgz} - name: vue-resize - version: 0.4.5 - peerDependencies: - vue: ^2.3.0 - - vue-router@https://registry.npmmirror.com/vue-router/-/vue-router-4.0.14.tgz: - resolution: {integrity: sha512-wAO6zF9zxA3u+7AkMPqw9LjoUCjSxfFvINQj3E/DceTt6uEz1XZLraDhdg2EYmvVwTBSGlLYsUw8bDmx0754Mw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue-router/-/vue-router-4.0.14.tgz} - name: vue-router - version: 4.0.14 - peerDependencies: - vue: ^3.2.0 - - vue-tsc@https://registry.npmmirror.com/vue-tsc/-/vue-tsc-0.33.9.tgz: - resolution: {integrity: sha512-s/+r4JNsCh4e3MUdsYrjEA8IgPPDzHL5kEah/OznxIHd1XMlYiIkXGdiyU6JE5J+lzXNOKdOlNliqwwpeETQWw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue-tsc/-/vue-tsc-0.33.9.tgz} - name: vue-tsc - version: 0.33.9 - hasBin: true - peerDependencies: - typescript: '*' - - vue-types@https://registry.npmmirror.com/vue-types/-/vue-types-3.0.2.tgz: - resolution: {integrity: sha512-IwUC0Aq2zwaXqy74h4WCvFCUtoV0iSWr0snWnE9TnU18S66GAQyqQbRf2qfJtUuiFsBf6qp0MEwdonlwznlcrw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue-types/-/vue-types-3.0.2.tgz} - name: vue-types - version: 3.0.2 - engines: {node: '>=10.15.0'} - peerDependencies: - vue: ^3.0.0 - - vue-types@https://registry.npmmirror.com/vue-types/-/vue-types-4.1.1.tgz: - resolution: {integrity: sha512-Jq2GZ/w6rExJbLA/h7nHBFLciu+YNekgox0DB64wN1snZ4IIJMq+qnqp1/vE4fc7vEjZcP5KGhLzkkSjIHLRzw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue-types/-/vue-types-4.1.1.tgz} - name: vue-types - version: 4.1.1 - engines: {node: '>=12.16.0'} - peerDependencies: - vue: ^2.0.0 || ^3.0.0 - - vue-virtual-scroller@https://registry.npmmirror.com/vue-virtual-scroller/-/vue-virtual-scroller-1.1.2.tgz: - resolution: {integrity: sha512-SkUyc7QHCJFB5h1Fya7LxVizlVzOZZuFVipBGHYoTK8dwLs08bIz/tclvRApYhksaJIm/nn51inzO2UjpGJPMQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue-virtual-scroller/-/vue-virtual-scroller-1.1.2.tgz} - name: vue-virtual-scroller - version: 1.1.2 - peerDependencies: - vue: ^2.6.11 - - vue3-colorpicker@https://registry.npmmirror.com/vue3-colorpicker/-/vue3-colorpicker-2.2.0.tgz: - resolution: {integrity: sha512-MXuydHC4+f3YJMIP3UC02m8P5gB0VTTrO5D2NkQhT+24esOvAlx7Palf/dn67CjpzO46kWbuS1REKQJohtSLCw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue3-colorpicker/-/vue3-colorpicker-2.2.0.tgz} - name: vue3-colorpicker - version: 2.2.0 - - vue@https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz: - resolution: {integrity: sha512-si1ExAlDUrLSIg/V7D/GgA4twJwfsfgG+t9w10z38HhL/HA07132pUQ2KuwAo8qbCyMJ9e6OqrmWrOCr+jW7ZQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz} - name: vue - version: 3.2.33 - - vue@https://registry.npmmirror.com/vue/-/vue-3.3.4.tgz: - resolution: {integrity: sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vue/-/vue-3.3.4.tgz} - name: vue - version: 3.3.4 - - vuedraggable@https://registry.npmmirror.com/vuedraggable/-/vuedraggable-4.1.0.tgz: - resolution: {integrity: sha512-FU5HCWBmsf20GpP3eudURW3WdWTKIbEIQxh9/8GE806hydR9qZqRRxRE3RjqX7PkuLuMQG/A7n3cfj9rCEchww==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vuedraggable/-/vuedraggable-4.1.0.tgz} - name: vuedraggable - version: 4.1.0 - peerDependencies: - vue: ^3.0.1 - - vxe-table-plugin-antd@https://registry.npmmirror.com/vxe-table-plugin-antd/-/vxe-table-plugin-antd-3.0.5.tgz: - resolution: {integrity: sha512-qZXIxNKSqdvfVncvVopId7byy9FYUW+ygX4vwUhPceHwsUq0eyX5SVX/LLafqfsnkq4l8+EZ4zQ5/xQ6AfZ31Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vxe-table-plugin-antd/-/vxe-table-plugin-antd-3.0.5.tgz} - name: vxe-table-plugin-antd - version: 3.0.5 - peerDependencies: - vxe-table: ^4.0.30 - - vxe-table@https://registry.npmmirror.com/vxe-table/-/vxe-table-4.1.0.tgz: - resolution: {integrity: sha512-FX4nc4ckkQGWG/W94z97KBIGrfZsbcni3pm+4uMzNQUcEgxgchnY78/4PrRC4ZRsHJIMv4mtNrzdfJDCTfA65g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/vxe-table/-/vxe-table-4.1.0.tgz} - name: vxe-table - version: 4.1.0 - peerDependencies: - vue: ^3.2.2 - xe-utils: ^3.2.0 - - w3c-hr-time@https://registry.npmmirror.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz: - resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz} - name: w3c-hr-time - version: 1.0.2 - deprecated: Use your platform's native performance.now() and performance.timeOrigin. - - w3c-xmlserializer@https://registry.npmmirror.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz: - resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz} - name: w3c-xmlserializer - version: 2.0.0 - engines: {node: '>=10'} - - walker@https://registry.npmmirror.com/walker/-/walker-1.0.8.tgz: - resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/walker/-/walker-1.0.8.tgz} - name: walker - version: 1.0.8 - - warning@https://registry.npmmirror.com/warning/-/warning-4.0.3.tgz: - resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/warning/-/warning-4.0.3.tgz} - name: warning - version: 4.0.3 - - wcwidth@https://registry.npmmirror.com/wcwidth/-/wcwidth-1.0.1.tgz: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/wcwidth/-/wcwidth-1.0.1.tgz} - name: wcwidth - version: 1.0.1 - - webidl-conversions@https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz: - resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz} - name: webidl-conversions - version: 4.0.2 - - webidl-conversions@https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz: - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz} - name: webidl-conversions - version: 3.0.1 - - webidl-conversions@https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz: - resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz} - name: webidl-conversions - version: 5.0.0 - engines: {node: '>=8'} - - webidl-conversions@https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz: - resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz} - name: webidl-conversions - version: 6.1.0 - engines: {node: '>=10.4'} - - whatwg-encoding@https://registry.npmmirror.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz: - resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz} - name: whatwg-encoding - version: 1.0.5 - - whatwg-encoding@https://registry.npmmirror.com/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz: - resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz} - name: whatwg-encoding - version: 2.0.0 - engines: {node: '>=12'} - - whatwg-mimetype@https://registry.npmmirror.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz: - resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz} - name: whatwg-mimetype - version: 2.3.0 - - whatwg-url@https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz: - resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz} - name: whatwg-url - version: 7.1.0 - - whatwg-url@https://registry.npmmirror.com/whatwg-url/-/whatwg-url-5.0.0.tgz: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/whatwg-url/-/whatwg-url-5.0.0.tgz} - name: whatwg-url - version: 5.0.0 - - whatwg-url@https://registry.npmmirror.com/whatwg-url/-/whatwg-url-8.7.0.tgz: - resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/whatwg-url/-/whatwg-url-8.7.0.tgz} - name: whatwg-url - version: 8.7.0 - engines: {node: '>=10'} - - which-boxed-primitive@https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz} - name: which-boxed-primitive - version: 1.0.2 - - which-boxed-primitive@https://registry.npmmirror.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz} - name: which-boxed-primitive - version: 1.0.2 - - which-module@https://registry.npmmirror.com/which-module/-/which-module-2.0.1.tgz: - resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/which-module/-/which-module-2.0.1.tgz} - name: which-module - version: 2.0.1 - - which-typed-array@https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz: - resolution: {integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz} - name: which-typed-array - version: 1.1.11 - engines: {node: '>= 0.4'} - - which-typed-array@https://registry.npmmirror.com/which-typed-array/-/which-typed-array-1.1.11.tgz: - resolution: {integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/which-typed-array/-/which-typed-array-1.1.11.tgz} - name: which-typed-array - version: 1.1.11 - engines: {node: '>= 0.4'} - - which@https://registry.npmjs.org/which/-/which-1.3.1.tgz: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/which/-/which-1.3.1.tgz} - name: which - version: 1.3.1 - hasBin: true - - which@https://registry.npmmirror.com/which/-/which-1.3.1.tgz: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/which/-/which-1.3.1.tgz} - name: which - version: 1.3.1 - hasBin: true - - which@https://registry.npmmirror.com/which/-/which-2.0.2.tgz: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/which/-/which-2.0.2.tgz} - name: which - version: 2.0.2 - engines: {node: '>= 8'} - hasBin: true - - windicss@https://registry.npmmirror.com/windicss/-/windicss-3.5.6.tgz: - resolution: {integrity: sha512-P1mzPEjgFMZLX0ZqfFht4fhV/FX8DTG7ERG1fBLiWvd34pTLVReS5CVsewKn9PApSgXnVfPWwvq+qUsRwpnwFA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/windicss/-/windicss-3.5.6.tgz} - name: windicss - version: 3.5.6 - engines: {node: '>= 12'} - hasBin: true - - wmf@https://registry.npmmirror.com/wmf/-/wmf-1.0.2.tgz: - resolution: {integrity: sha512-/p9K7bEh0Dj6WbXg4JG0xvLQmIadrner1bi45VMJTfnbVHsc7yIajZyoSoK60/dtVBs12Fm6WkUI5/3WAVsNMw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/wmf/-/wmf-1.0.2.tgz} - name: wmf - version: 1.0.2 - engines: {node: '>=0.8'} - - word-wrap@https://registry.npmmirror.com/word-wrap/-/word-wrap-1.2.5.tgz: - resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/word-wrap/-/word-wrap-1.2.5.tgz} - name: word-wrap - version: 1.2.5 - engines: {node: '>=0.10.0'} - - word@https://registry.npmmirror.com/word/-/word-0.3.0.tgz: - resolution: {integrity: sha512-OELeY0Q61OXpdUfTp+oweA/vtLVg5VDOXh+3he3PNzLGG/y0oylSOC1xRVj0+l4vQ3tj/bB1HVHv1ocXkQceFA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/word/-/word-0.3.0.tgz} - name: word - version: 0.3.0 - engines: {node: '>=0.8'} - - wordwrap@https://registry.npmmirror.com/wordwrap/-/wordwrap-1.0.0.tgz: - resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/wordwrap/-/wordwrap-1.0.0.tgz} - name: wordwrap - version: 1.0.0 - - workbox-background-sync@https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.0.tgz: - resolution: {integrity: sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.0.tgz} - name: workbox-background-sync - version: 6.6.0 - - workbox-broadcast-update@https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.0.tgz: - resolution: {integrity: sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.0.tgz} - name: workbox-broadcast-update - version: 6.6.0 - - workbox-build@https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.0.tgz: - resolution: {integrity: sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.0.tgz} - name: workbox-build - version: 6.6.0 - engines: {node: '>=10.0.0'} - - workbox-cacheable-response@https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.0.tgz: - resolution: {integrity: sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.0.tgz} - name: workbox-cacheable-response - version: 6.6.0 - deprecated: workbox-background-sync@6.6.0 - - workbox-core@https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz: - resolution: {integrity: sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz} - name: workbox-core - version: 6.6.0 - - workbox-expiration@https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.0.tgz: - resolution: {integrity: sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.0.tgz} - name: workbox-expiration - version: 6.6.0 - - workbox-google-analytics@https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.0.tgz: - resolution: {integrity: sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.0.tgz} - name: workbox-google-analytics - version: 6.6.0 - - workbox-navigation-preload@https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.0.tgz: - resolution: {integrity: sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.0.tgz} - name: workbox-navigation-preload - version: 6.6.0 - - workbox-precaching@https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.0.tgz: - resolution: {integrity: sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.0.tgz} - name: workbox-precaching - version: 6.6.0 - - workbox-range-requests@https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.0.tgz: - resolution: {integrity: sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.0.tgz} - name: workbox-range-requests - version: 6.6.0 - - workbox-recipes@https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.0.tgz: - resolution: {integrity: sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.0.tgz} - name: workbox-recipes - version: 6.6.0 - - workbox-routing@https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz: - resolution: {integrity: sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz} - name: workbox-routing - version: 6.6.0 - - workbox-strategies@https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz: - resolution: {integrity: sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz} - name: workbox-strategies - version: 6.6.0 - - workbox-streams@https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.0.tgz: - resolution: {integrity: sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.0.tgz} - name: workbox-streams - version: 6.6.0 - - workbox-sw@https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.0.tgz: - resolution: {integrity: sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.0.tgz} - name: workbox-sw - version: 6.6.0 - - workbox-window@https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.0.tgz: - resolution: {integrity: sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.0.tgz} - name: workbox-window - version: 6.6.0 - - wrap-ansi@https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz: - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz} - name: wrap-ansi - version: 6.2.0 - engines: {node: '>=8'} - - wrap-ansi@https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz} - name: wrap-ansi - version: 7.0.0 - engines: {node: '>=10'} - - wrappy@https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz} - name: wrappy - version: 1.0.2 - - wrappy@https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz} - name: wrappy - version: 1.0.2 - - write-file-atomic@https://registry.npmmirror.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz: - resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz} - name: write-file-atomic - version: 3.0.3 - - write-file-atomic@https://registry.npmmirror.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz: - resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz} - name: write-file-atomic - version: 4.0.2 - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - ws@https://registry.npmmirror.com/ws/-/ws-7.5.9.tgz: - resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/ws/-/ws-7.5.9.tgz} - name: ws - version: 7.5.9 - engines: {node: '>=8.3.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - - xe-utils@https://registry.npmmirror.com/xe-utils/-/xe-utils-3.3.1.tgz: - resolution: {integrity: sha512-OdQgl9WPV9dK3/djneFPrGX8z1M4neX+VOkzra5oONjoNsCKQhwdiut99WlxceNMQ5vXDv4EQ/wKA2fux3Gdug==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/xe-utils/-/xe-utils-3.3.1.tgz} - name: xe-utils - version: 3.3.1 - - xlsx@https://registry.npmmirror.com/xlsx/-/xlsx-0.17.5.tgz: - resolution: {integrity: sha512-lXNU0TuYsvElzvtI6O7WIVb9Zar1XYw7Xb3VAx2wn8N/n0whBYrCnHMxtFyIiUU1Wjf09WzmLALDfBO5PqTb1g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/xlsx/-/xlsx-0.17.5.tgz} - name: xlsx - version: 0.17.5 - engines: {node: '>=0.8'} - hasBin: true - - xml-name-validator@https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz: - resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz} - name: xml-name-validator - version: 3.0.0 - - xml-name-validator@https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz: - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz} - name: xml-name-validator - version: 4.0.0 - engines: {node: '>=12'} - - xmlchars@https://registry.npmmirror.com/xmlchars/-/xmlchars-2.2.0.tgz: - resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/xmlchars/-/xmlchars-2.2.0.tgz} - name: xmlchars - version: 2.2.0 - - xss@https://registry.npmmirror.com/xss/-/xss-1.0.13.tgz: - resolution: {integrity: sha512-clu7dxTm1e8Mo5fz3n/oW3UCXBfV89xZ72jM8yzo1vR/pIS0w3sgB3XV2H8Vm6zfGnHL0FzvLJPJEBhd86/z4Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/xss/-/xss-1.0.13.tgz} - name: xss - version: 1.0.13 - engines: {node: '>= 0.10.0'} - hasBin: true - - xtend@https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz} - name: xtend - version: 4.0.2 - engines: {node: '>=0.4'} - - xtend@https://registry.npmmirror.com/xtend/-/xtend-4.0.2.tgz: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/xtend/-/xtend-4.0.2.tgz} - name: xtend - version: 4.0.2 - engines: {node: '>=0.4'} - - y18n@https://registry.npmmirror.com/y18n/-/y18n-4.0.3.tgz: - resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/y18n/-/y18n-4.0.3.tgz} - name: y18n - version: 4.0.3 - - y18n@https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz} - name: y18n - version: 5.0.8 - engines: {node: '>=10'} - - yallist@https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz: - resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz} - name: yallist - version: 2.1.2 - - yallist@https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz} - name: yallist - version: 3.1.1 - - yallist@https://registry.npmmirror.com/yallist/-/yallist-2.1.2.tgz: - resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/yallist/-/yallist-2.1.2.tgz} - name: yallist - version: 2.1.2 - - yallist@https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz} - name: yallist - version: 3.1.1 - - yallist@https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz} - name: yallist - version: 4.0.0 - - yaml@https://registry.npmmirror.com/yaml/-/yaml-1.10.2.tgz: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/yaml/-/yaml-1.10.2.tgz} - name: yaml - version: 1.10.2 - engines: {node: '>= 6'} - - yargs-parser@https://registry.npmmirror.com/yargs-parser/-/yargs-parser-18.1.3.tgz: - resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/yargs-parser/-/yargs-parser-18.1.3.tgz} - name: yargs-parser - version: 18.1.3 - engines: {node: '>=6'} - - yargs-parser@https://registry.npmmirror.com/yargs-parser/-/yargs-parser-20.2.9.tgz: - resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/yargs-parser/-/yargs-parser-20.2.9.tgz} - name: yargs-parser - version: 20.2.9 - engines: {node: '>=10'} - - yargs-parser@https://registry.npmmirror.com/yargs-parser/-/yargs-parser-21.1.1.tgz: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/yargs-parser/-/yargs-parser-21.1.1.tgz} - name: yargs-parser - version: 21.1.1 - engines: {node: '>=12'} - - yargs@https://registry.npmmirror.com/yargs/-/yargs-15.4.1.tgz: - resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/yargs/-/yargs-15.4.1.tgz} - name: yargs - version: 15.4.1 - engines: {node: '>=8'} - - yargs@https://registry.npmmirror.com/yargs/-/yargs-16.2.0.tgz: - resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/yargs/-/yargs-16.2.0.tgz} - name: yargs - version: 16.2.0 - engines: {node: '>=10'} - - yargs@https://registry.npmmirror.com/yargs/-/yargs-17.7.2.tgz: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/yargs/-/yargs-17.7.2.tgz} - name: yargs - version: 17.7.2 - engines: {node: '>=12'} - - yauzl@https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz: - resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz} - name: yauzl - version: 2.10.0 - - yauzl@https://registry.npmmirror.com/yauzl/-/yauzl-2.10.0.tgz: - resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/yauzl/-/yauzl-2.10.0.tgz} - name: yauzl - version: 2.10.0 - - yn@https://registry.npmmirror.com/yn/-/yn-3.1.1.tgz: - resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/yn/-/yn-3.1.1.tgz} - name: yn - version: 3.1.1 - engines: {node: '>=6'} - - yocto-queue@https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz} - name: yocto-queue - version: 0.1.0 - engines: {node: '>=10'} - - zrender@https://registry.npmmirror.com/zrender/-/zrender-5.3.1.tgz: - resolution: {integrity: sha512-7olqIjy0gWfznKr6vgfnGBk7y4UtdMvdwFmK92vVQsQeDPyzkHW1OlrLEKg6GHz1W5ePf0FeN1q2vkl/HFqhXw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/zrender/-/zrender-5.3.1.tgz} - name: zrender - version: 5.3.1 - - zrender@https://registry.npmmirror.com/zrender/-/zrender-5.4.4.tgz: - resolution: {integrity: sha512-0VxCNJ7AGOMCWeHVyTrGzUgrK4asT4ml9PEkeGirAkKNYXYzoPJCLvmyfdoOXcjTHPs10OZVMfD1Rwg16AZyYw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.npmmirror.com/zrender/-/zrender-5.4.4.tgz} - name: zrender - version: 5.4.4 - -snapshots: - - '@aashutoshrathi/word-wrap@https://registry.npmmirror.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz': {} - - '@aesoper/normal-utils@https://registry.npmmirror.com/@aesoper/normal-utils/-/normal-utils-0.1.5.tgz': {} - - '@ampproject/remapping@https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz': - dependencies: - '@jridgewell/gen-mapping': https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz - '@jridgewell/trace-mapping': https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz - - '@ampproject/remapping@https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.1.tgz': - dependencies: - '@jridgewell/gen-mapping': https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz - '@jridgewell/trace-mapping': https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz - - '@ant-design/colors@https://registry.npmmirror.com/@ant-design/colors/-/colors-6.0.0.tgz': - dependencies: - '@ctrl/tinycolor': https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.6.0.tgz - - '@ant-design/icons-svg@https://registry.npmmirror.com/@ant-design/icons-svg/-/icons-svg-4.3.0.tgz': {} - - '@ant-design/icons-vue@https://registry.npmmirror.com/@ant-design/icons-vue/-/icons-vue-6.1.0.tgz(vue@3.2.33)': - dependencies: - '@ant-design/colors': https://registry.npmmirror.com/@ant-design/colors/-/colors-6.0.0.tgz - '@ant-design/icons-svg': https://registry.npmmirror.com/@ant-design/icons-svg/-/icons-svg-4.3.0.tgz - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - - '@antfu/utils@https://registry.npmmirror.com/@antfu/utils/-/utils-0.5.2.tgz': {} - - '@apideck/better-ajv-errors@https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz(ajv@8.12.0)': - dependencies: - ajv: https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz - json-schema: https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz - jsonpointer: https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz - leven: https://registry.npmjs.org/leven/-/leven-3.1.0.tgz - - '@babel/code-frame@https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.10.tgz': - dependencies: - '@babel/highlight': https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.10.tgz - chalk: https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz - - '@babel/code-frame@https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.22.10.tgz': - dependencies: - '@babel/highlight': https://registry.npmmirror.com/@babel/highlight/-/highlight-7.22.10.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz - - '@babel/compat-data@https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz': {} - - '@babel/compat-data@https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.22.9.tgz': {} - - '@babel/core@https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz': - dependencies: - '@ampproject/remapping': https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz - '@babel/code-frame': https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.10.tgz - '@babel/generator': https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz - '@babel/helper-compilation-targets': https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz - '@babel/helper-module-transforms': https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz(@babel/core@7.22.10) - '@babel/helpers': https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.10.tgz - '@babel/parser': https://registry.npmjs.org/@babel/parser/-/parser-7.22.10.tgz - '@babel/template': https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz - '@babel/traverse': https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.10.tgz - '@babel/types': https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz - convert-source-map: https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz - debug: https://registry.npmjs.org/debug/-/debug-4.3.4.tgz - gensync: https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz - json5: https://registry.npmjs.org/json5/-/json5-2.2.3.tgz - semver: https://registry.npmjs.org/semver/-/semver-6.3.1.tgz - transitivePeerDependencies: - - supports-color - - '@babel/core@https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz': - dependencies: - '@ampproject/remapping': https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.1.tgz - '@babel/code-frame': https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.22.10.tgz - '@babel/generator': https://registry.npmmirror.com/@babel/generator/-/generator-7.22.10.tgz - '@babel/helper-compilation-targets': https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz - '@babel/helper-module-transforms': https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz(@babel/core@7.22.10) - '@babel/helpers': https://registry.npmmirror.com/@babel/helpers/-/helpers-7.22.10.tgz - '@babel/parser': https://registry.npmmirror.com/@babel/parser/-/parser-7.22.10.tgz - '@babel/template': https://registry.npmmirror.com/@babel/template/-/template-7.22.5.tgz - '@babel/traverse': https://registry.npmmirror.com/@babel/traverse/-/traverse-7.22.10.tgz - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - convert-source-map: https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - gensync: https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz - json5: https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz - semver: https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz - transitivePeerDependencies: - - supports-color - - '@babel/generator@https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz': - dependencies: - '@babel/types': https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz - '@jridgewell/gen-mapping': https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz - '@jridgewell/trace-mapping': https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz - jsesc: https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz - - '@babel/generator@https://registry.npmmirror.com/@babel/generator/-/generator-7.22.10.tgz': - dependencies: - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - '@jridgewell/gen-mapping': https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz - '@jridgewell/trace-mapping': https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz - jsesc: https://registry.npmmirror.com/jsesc/-/jsesc-2.5.2.tgz - - '@babel/helper-annotate-as-pure@https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz': - dependencies: - '@babel/types': https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz - - '@babel/helper-annotate-as-pure@https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz': - dependencies: - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - - '@babel/helper-builder-binary-assignment-operator-visitor@https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.10.tgz': - dependencies: - '@babel/types': https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz - - '@babel/helper-compilation-targets@https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz': - dependencies: - '@babel/compat-data': https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz - '@babel/helper-validator-option': https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz - browserslist: https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz - lru-cache: https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz - semver: https://registry.npmjs.org/semver/-/semver-6.3.1.tgz - - '@babel/helper-compilation-targets@https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz': - dependencies: - '@babel/compat-data': https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.22.9.tgz - '@babel/helper-validator-option': https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz - browserslist: https://registry.npmmirror.com/browserslist/-/browserslist-4.21.10.tgz - lru-cache: https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz - semver: https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz - - '@babel/helper-create-class-features-plugin@https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.10.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-annotate-as-pure': https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz - '@babel/helper-environment-visitor': https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz - '@babel/helper-function-name': https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz - '@babel/helper-member-expression-to-functions': https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz - '@babel/helper-optimise-call-expression': https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz - '@babel/helper-replace-supers': https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz(@babel/core@7.22.10) - '@babel/helper-skip-transparent-expression-wrappers': https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz - '@babel/helper-split-export-declaration': https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz - semver: https://registry.npmjs.org/semver/-/semver-6.3.1.tgz - - '@babel/helper-create-class-features-plugin@https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.10.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/helper-annotate-as-pure': https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz - '@babel/helper-environment-visitor': https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz - '@babel/helper-function-name': https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz - '@babel/helper-member-expression-to-functions': https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz - '@babel/helper-optimise-call-expression': https://registry.npmmirror.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz - '@babel/helper-replace-supers': https://registry.npmmirror.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz(@babel/core@7.22.10) - '@babel/helper-skip-transparent-expression-wrappers': https://registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz - '@babel/helper-split-export-declaration': https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz - semver: https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz - - '@babel/helper-create-regexp-features-plugin@https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.9.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-annotate-as-pure': https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz - regexpu-core: https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz - semver: https://registry.npmjs.org/semver/-/semver-6.3.1.tgz - - '@babel/helper-define-polyfill-provider@https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-compilation-targets': https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - debug: https://registry.npmjs.org/debug/-/debug-4.3.4.tgz - lodash.debounce: https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz - resolve: https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz - transitivePeerDependencies: - - supports-color - - '@babel/helper-environment-visitor@https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz': {} - - '@babel/helper-environment-visitor@https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz': {} - - '@babel/helper-function-name@https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz': - dependencies: - '@babel/template': https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz - '@babel/types': https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz - - '@babel/helper-function-name@https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz': - dependencies: - '@babel/template': https://registry.npmmirror.com/@babel/template/-/template-7.22.5.tgz - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - - '@babel/helper-hoist-variables@https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz': - dependencies: - '@babel/types': https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz - - '@babel/helper-hoist-variables@https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz': - dependencies: - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - - '@babel/helper-member-expression-to-functions@https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz': - dependencies: - '@babel/types': https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz - - '@babel/helper-member-expression-to-functions@https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz': - dependencies: - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - - '@babel/helper-module-imports@https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz': - dependencies: - '@babel/types': https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz - - '@babel/helper-module-imports@https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz': - dependencies: - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - - '@babel/helper-module-transforms@https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-environment-visitor': https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz - '@babel/helper-module-imports': https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz - '@babel/helper-simple-access': https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz - '@babel/helper-split-export-declaration': https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz - '@babel/helper-validator-identifier': https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz - - '@babel/helper-module-transforms@https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/helper-environment-visitor': https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz - '@babel/helper-module-imports': https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz - '@babel/helper-simple-access': https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz - '@babel/helper-split-export-declaration': https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz - '@babel/helper-validator-identifier': https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz - - '@babel/helper-optimise-call-expression@https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz': - dependencies: - '@babel/types': https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz - - '@babel/helper-optimise-call-expression@https://registry.npmmirror.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz': - dependencies: - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - - '@babel/helper-plugin-utils@https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz': {} - - '@babel/helper-plugin-utils@https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz': {} - - '@babel/helper-remap-async-to-generator@https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.9.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-annotate-as-pure': https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz - '@babel/helper-environment-visitor': https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz - '@babel/helper-wrap-function': https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.10.tgz - - '@babel/helper-replace-supers@https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-environment-visitor': https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz - '@babel/helper-member-expression-to-functions': https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz - '@babel/helper-optimise-call-expression': https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz - - '@babel/helper-replace-supers@https://registry.npmmirror.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/helper-environment-visitor': https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz - '@babel/helper-member-expression-to-functions': https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz - '@babel/helper-optimise-call-expression': https://registry.npmmirror.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz - - '@babel/helper-simple-access@https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz': - dependencies: - '@babel/types': https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz - - '@babel/helper-simple-access@https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz': - dependencies: - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - - '@babel/helper-skip-transparent-expression-wrappers@https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz': - dependencies: - '@babel/types': https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz - - '@babel/helper-skip-transparent-expression-wrappers@https://registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz': - dependencies: - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - - '@babel/helper-split-export-declaration@https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz': - dependencies: - '@babel/types': https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz - - '@babel/helper-split-export-declaration@https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz': - dependencies: - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - - '@babel/helper-string-parser@https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz': {} - - '@babel/helper-string-parser@https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz': {} - - '@babel/helper-validator-identifier@https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz': {} - - '@babel/helper-validator-identifier@https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz': {} - - '@babel/helper-validator-option@https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz': {} - - '@babel/helper-validator-option@https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz': {} - - '@babel/helper-wrap-function@https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.10.tgz': - dependencies: - '@babel/helper-function-name': https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz - '@babel/template': https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz - '@babel/types': https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz - - '@babel/helpers@https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.10.tgz': - dependencies: - '@babel/template': https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz - '@babel/traverse': https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.10.tgz - '@babel/types': https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz - transitivePeerDependencies: - - supports-color - - '@babel/helpers@https://registry.npmmirror.com/@babel/helpers/-/helpers-7.22.10.tgz': - dependencies: - '@babel/template': https://registry.npmmirror.com/@babel/template/-/template-7.22.5.tgz - '@babel/traverse': https://registry.npmmirror.com/@babel/traverse/-/traverse-7.22.10.tgz - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - transitivePeerDependencies: - - supports-color - - '@babel/highlight@https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.10.tgz': - dependencies: - '@babel/helper-validator-identifier': https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz - chalk: https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz - js-tokens: https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz - - '@babel/highlight@https://registry.npmmirror.com/@babel/highlight/-/highlight-7.22.10.tgz': - dependencies: - '@babel/helper-validator-identifier': https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz - js-tokens: https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz - - '@babel/parser@https://registry.npmjs.org/@babel/parser/-/parser-7.22.10.tgz': - dependencies: - '@babel/types': https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz - - '@babel/parser@https://registry.npmmirror.com/@babel/parser/-/parser-7.22.10.tgz': - dependencies: - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/helper-skip-transparent-expression-wrappers': https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz - '@babel/plugin-transform-optional-chaining': https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.10.tgz(@babel/core@7.22.10) - - '@babel/plugin-proposal-private-property-in-object@https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - - '@babel/plugin-syntax-async-generators@https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-async-generators@https://registry.npmmirror.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-bigint@https://registry.npmmirror.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-class-properties@https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-class-properties@https://registry.npmmirror.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-class-static-block@https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-dynamic-import@https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-export-namespace-from@https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-import-assertions@https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-import-attributes@https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-import-meta@https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-import-meta@https://registry.npmmirror.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-json-strings@https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-json-strings@https://registry.npmmirror.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-jsx@https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-logical-assignment-operators@https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-logical-assignment-operators@https://registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-nullish-coalescing-operator@https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-nullish-coalescing-operator@https://registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-numeric-separator@https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-numeric-separator@https://registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-object-rest-spread@https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-object-rest-spread@https://registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-optional-catch-binding@https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-optional-catch-binding@https://registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-optional-chaining@https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-optional-chaining@https://registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-private-property-in-object@https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-top-level-await@https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-top-level-await@https://registry.npmmirror.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-typescript@https://registry.npmmirror.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-syntax-unicode-sets-regex@https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-create-regexp-features-plugin': https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.9.tgz(@babel/core@7.22.10) - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-arrow-functions@https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-async-generator-functions@https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.10.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-environment-visitor': https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/helper-remap-async-to-generator': https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.9.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-async-generators': https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz(@babel/core@7.22.10) - - '@babel/plugin-transform-async-to-generator@https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-module-imports': https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/helper-remap-async-to-generator': https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.9.tgz(@babel/core@7.22.10) - - '@babel/plugin-transform-block-scoped-functions@https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-block-scoping@https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.10.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-class-properties@https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-create-class-features-plugin': https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.10.tgz(@babel/core@7.22.10) - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-class-static-block@https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-create-class-features-plugin': https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.10.tgz(@babel/core@7.22.10) - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/plugin-syntax-class-static-block': https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz(@babel/core@7.22.10) - - '@babel/plugin-transform-classes@https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.6.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-annotate-as-pure': https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz - '@babel/helper-compilation-targets': https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz - '@babel/helper-environment-visitor': https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz - '@babel/helper-function-name': https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz - '@babel/helper-optimise-call-expression': https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/helper-replace-supers': https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz(@babel/core@7.22.10) - '@babel/helper-split-export-declaration': https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz - globals: https://registry.npmjs.org/globals/-/globals-11.12.0.tgz - - '@babel/plugin-transform-computed-properties@https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/template': https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz - - '@babel/plugin-transform-destructuring@https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.10.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-dotall-regex@https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-create-regexp-features-plugin': https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.9.tgz(@babel/core@7.22.10) - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-duplicate-keys@https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-dynamic-import@https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/plugin-syntax-dynamic-import': https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz(@babel/core@7.22.10) - - '@babel/plugin-transform-exponentiation-operator@https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-builder-binary-assignment-operator-visitor': https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-export-namespace-from@https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/plugin-syntax-export-namespace-from': https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz(@babel/core@7.22.10) - - '@babel/plugin-transform-for-of@https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-function-name@https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-compilation-targets': https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz - '@babel/helper-function-name': https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-json-strings@https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/plugin-syntax-json-strings': https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz(@babel/core@7.22.10) - - '@babel/plugin-transform-literals@https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-logical-assignment-operators@https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/plugin-syntax-logical-assignment-operators': https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz(@babel/core@7.22.10) - - '@babel/plugin-transform-member-expression-literals@https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-modules-amd@https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-module-transforms': https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz(@babel/core@7.22.10) - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-modules-commonjs@https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-module-transforms': https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz(@babel/core@7.22.10) - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/helper-simple-access': https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz - - '@babel/plugin-transform-modules-systemjs@https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-hoist-variables': https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz - '@babel/helper-module-transforms': https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz(@babel/core@7.22.10) - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/helper-validator-identifier': https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz - - '@babel/plugin-transform-modules-umd@https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-module-transforms': https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz(@babel/core@7.22.10) - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-named-capturing-groups-regex@https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-create-regexp-features-plugin': https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.9.tgz(@babel/core@7.22.10) - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-new-target@https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-nullish-coalescing-operator@https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/plugin-syntax-nullish-coalescing-operator': https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz(@babel/core@7.22.10) - - '@babel/plugin-transform-numeric-separator@https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/plugin-syntax-numeric-separator': https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz(@babel/core@7.22.10) - - '@babel/plugin-transform-object-rest-spread@https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/compat-data': https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-compilation-targets': https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/plugin-syntax-object-rest-spread': https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-parameters': https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz(@babel/core@7.22.10) - - '@babel/plugin-transform-object-super@https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/helper-replace-supers': https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz(@babel/core@7.22.10) - - '@babel/plugin-transform-optional-catch-binding@https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/plugin-syntax-optional-catch-binding': https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz(@babel/core@7.22.10) - - '@babel/plugin-transform-optional-chaining@https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.10.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/helper-skip-transparent-expression-wrappers': https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz - '@babel/plugin-syntax-optional-chaining': https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz(@babel/core@7.22.10) - - '@babel/plugin-transform-parameters@https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-private-methods@https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-create-class-features-plugin': https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.10.tgz(@babel/core@7.22.10) - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-private-property-in-object@https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-annotate-as-pure': https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz - '@babel/helper-create-class-features-plugin': https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.10.tgz(@babel/core@7.22.10) - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/plugin-syntax-private-property-in-object': https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz(@babel/core@7.22.10) - - '@babel/plugin-transform-property-literals@https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-regenerator@https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - regenerator-transform: https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz - - '@babel/plugin-transform-reserved-words@https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-shorthand-properties@https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-spread@https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/helper-skip-transparent-expression-wrappers': https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz - - '@babel/plugin-transform-sticky-regex@https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-template-literals@https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-typeof-symbol@https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-typescript@https://registry.npmmirror.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.10.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/helper-annotate-as-pure': https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz - '@babel/helper-create-class-features-plugin': https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.10.tgz(@babel/core@7.22.10) - '@babel/helper-plugin-utils': https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/plugin-syntax-typescript': https://registry.npmmirror.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz(@babel/core@7.22.10) - - '@babel/plugin-transform-unicode-escapes@https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-unicode-property-regex@https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-create-regexp-features-plugin': https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.9.tgz(@babel/core@7.22.10) - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-unicode-regex@https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-create-regexp-features-plugin': https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.9.tgz(@babel/core@7.22.10) - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/plugin-transform-unicode-sets-regex@https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-create-regexp-features-plugin': https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.9.tgz(@babel/core@7.22.10) - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - - '@babel/polyfill@https://registry.npmmirror.com/@babel/polyfill/-/polyfill-7.12.1.tgz': - dependencies: - core-js: https://registry.npmmirror.com/core-js/-/core-js-2.6.12.tgz - regenerator-runtime: https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz - - '@babel/preset-env@https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.10.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/compat-data': https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-compilation-targets': https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/helper-validator-option': https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-proposal-private-property-in-object': https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-async-generators': https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-class-properties': https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-class-static-block': https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-dynamic-import': https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-export-namespace-from': https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-import-assertions': https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-import-attributes': https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-import-meta': https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-json-strings': https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-logical-assignment-operators': https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-nullish-coalescing-operator': https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-numeric-separator': https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-object-rest-spread': https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-optional-catch-binding': https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-optional-chaining': https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-private-property-in-object': https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-top-level-await': https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-unicode-sets-regex': https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-arrow-functions': https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-async-generator-functions': https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.10.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-async-to-generator': https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-block-scoped-functions': https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-block-scoping': https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.10.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-class-properties': https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-class-static-block': https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-classes': https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.6.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-computed-properties': https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-destructuring': https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.10.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-dotall-regex': https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-duplicate-keys': https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-dynamic-import': https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-exponentiation-operator': https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-export-namespace-from': https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-for-of': https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-function-name': https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-json-strings': https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-literals': https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-logical-assignment-operators': https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-member-expression-literals': https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-modules-amd': https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-modules-commonjs': https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-modules-systemjs': https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-modules-umd': https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-named-capturing-groups-regex': https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-new-target': https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-nullish-coalescing-operator': https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-numeric-separator': https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-object-rest-spread': https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-object-super': https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-optional-catch-binding': https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-optional-chaining': https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.10.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-parameters': https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-private-methods': https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-private-property-in-object': https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-property-literals': https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-regenerator': https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-reserved-words': https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-shorthand-properties': https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-spread': https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-sticky-regex': https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-template-literals': https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-typeof-symbol': https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-unicode-escapes': https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-unicode-property-regex': https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-unicode-regex': https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-unicode-sets-regex': https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz(@babel/core@7.22.10) - '@babel/preset-modules': https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz(@babel/core@7.22.10) - '@babel/types': https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz - babel-plugin-polyfill-corejs2: https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz(@babel/core@7.22.10) - babel-plugin-polyfill-corejs3: https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.3.tgz(@babel/core@7.22.10) - babel-plugin-polyfill-regenerator: https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz(@babel/core@7.22.10) - core-js-compat: https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.32.0.tgz - semver: https://registry.npmjs.org/semver/-/semver-6.3.1.tgz - transitivePeerDependencies: - - supports-color - - '@babel/preset-modules@https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-plugin-utils': https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@babel/types': https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz - esutils: https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz - - '@babel/regjsgen@https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz': {} - - '@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.10.tgz': - dependencies: - regenerator-runtime: https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz - - '@babel/runtime@https://registry.npmmirror.com/@babel/runtime/-/runtime-7.22.10.tgz': - dependencies: - regenerator-runtime: https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz - - '@babel/standalone@https://registry.npmmirror.com/@babel/standalone/-/standalone-7.22.10.tgz': {} - - '@babel/template@https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz': - dependencies: - '@babel/code-frame': https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.10.tgz - '@babel/parser': https://registry.npmjs.org/@babel/parser/-/parser-7.22.10.tgz - '@babel/types': https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz - - '@babel/template@https://registry.npmmirror.com/@babel/template/-/template-7.22.5.tgz': - dependencies: - '@babel/code-frame': https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.22.10.tgz - '@babel/parser': https://registry.npmmirror.com/@babel/parser/-/parser-7.22.10.tgz - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - - '@babel/traverse@https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.10.tgz': - dependencies: - '@babel/code-frame': https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.10.tgz - '@babel/generator': https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz - '@babel/helper-environment-visitor': https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz - '@babel/helper-function-name': https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz - '@babel/helper-hoist-variables': https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz - '@babel/helper-split-export-declaration': https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz - '@babel/parser': https://registry.npmjs.org/@babel/parser/-/parser-7.22.10.tgz - '@babel/types': https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz - debug: https://registry.npmjs.org/debug/-/debug-4.3.4.tgz - globals: https://registry.npmjs.org/globals/-/globals-11.12.0.tgz - transitivePeerDependencies: - - supports-color - - '@babel/traverse@https://registry.npmmirror.com/@babel/traverse/-/traverse-7.22.10.tgz': - dependencies: - '@babel/code-frame': https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.22.10.tgz - '@babel/generator': https://registry.npmmirror.com/@babel/generator/-/generator-7.22.10.tgz - '@babel/helper-environment-visitor': https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz - '@babel/helper-function-name': https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz - '@babel/helper-hoist-variables': https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz - '@babel/helper-split-export-declaration': https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz - '@babel/parser': https://registry.npmmirror.com/@babel/parser/-/parser-7.22.10.tgz - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - globals: https://registry.npmmirror.com/globals/-/globals-11.12.0.tgz - transitivePeerDependencies: - - supports-color - - '@babel/types@https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz': - dependencies: - '@babel/helper-string-parser': https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz - '@babel/helper-validator-identifier': https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz - to-fast-properties: https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz - - '@babel/types@https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz': - dependencies: - '@babel/helper-string-parser': https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz - '@babel/helper-validator-identifier': https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz - to-fast-properties: https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz - - '@bcoe/v8-coverage@https://registry.npmmirror.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz': {} - - '@commitlint/cli@https://registry.npmmirror.com/@commitlint/cli/-/cli-16.2.3.tgz': - dependencies: - '@commitlint/format': https://registry.npmmirror.com/@commitlint/format/-/format-16.2.1.tgz - '@commitlint/lint': https://registry.npmmirror.com/@commitlint/lint/-/lint-16.2.4.tgz - '@commitlint/load': https://registry.npmmirror.com/@commitlint/load/-/load-16.3.0.tgz - '@commitlint/read': https://registry.npmmirror.com/@commitlint/read/-/read-16.2.1.tgz - '@commitlint/types': https://registry.npmmirror.com/@commitlint/types/-/types-16.2.1.tgz - lodash: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz - resolve-from: https://registry.npmmirror.com/resolve-from/-/resolve-from-5.0.0.tgz - resolve-global: https://registry.npmmirror.com/resolve-global/-/resolve-global-1.0.0.tgz - yargs: https://registry.npmmirror.com/yargs/-/yargs-17.7.2.tgz - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - - '@commitlint/config-conventional@https://registry.npmmirror.com/@commitlint/config-conventional/-/config-conventional-16.2.1.tgz': - dependencies: - conventional-changelog-conventionalcommits: https://registry.npmmirror.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.3.tgz - - '@commitlint/config-validator@https://registry.npmmirror.com/@commitlint/config-validator/-/config-validator-16.2.1.tgz': - dependencies: - '@commitlint/types': https://registry.npmmirror.com/@commitlint/types/-/types-16.2.1.tgz - ajv: https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz - - '@commitlint/config-validator@https://registry.npmmirror.com/@commitlint/config-validator/-/config-validator-17.6.7.tgz': - dependencies: - '@commitlint/types': https://registry.npmmirror.com/@commitlint/types/-/types-17.4.4.tgz - ajv: https://registry.npmmirror.com/ajv/-/ajv-8.12.0.tgz - optional: true - - '@commitlint/ensure@https://registry.npmmirror.com/@commitlint/ensure/-/ensure-16.2.1.tgz': - dependencies: - '@commitlint/types': https://registry.npmmirror.com/@commitlint/types/-/types-16.2.1.tgz - lodash: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz - - '@commitlint/execute-rule@https://registry.npmmirror.com/@commitlint/execute-rule/-/execute-rule-16.2.1.tgz': {} - - '@commitlint/execute-rule@https://registry.npmmirror.com/@commitlint/execute-rule/-/execute-rule-17.4.0.tgz': - optional: true - - '@commitlint/format@https://registry.npmmirror.com/@commitlint/format/-/format-16.2.1.tgz': - dependencies: - '@commitlint/types': https://registry.npmmirror.com/@commitlint/types/-/types-16.2.1.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - - '@commitlint/is-ignored@https://registry.npmmirror.com/@commitlint/is-ignored/-/is-ignored-16.2.4.tgz': - dependencies: - '@commitlint/types': https://registry.npmmirror.com/@commitlint/types/-/types-16.2.1.tgz - semver: https://registry.npmmirror.com/semver/-/semver-7.3.7.tgz - - '@commitlint/lint@https://registry.npmmirror.com/@commitlint/lint/-/lint-16.2.4.tgz': - dependencies: - '@commitlint/is-ignored': https://registry.npmmirror.com/@commitlint/is-ignored/-/is-ignored-16.2.4.tgz - '@commitlint/parse': https://registry.npmmirror.com/@commitlint/parse/-/parse-16.2.1.tgz - '@commitlint/rules': https://registry.npmmirror.com/@commitlint/rules/-/rules-16.2.4.tgz - '@commitlint/types': https://registry.npmmirror.com/@commitlint/types/-/types-16.2.1.tgz - - '@commitlint/load@https://registry.npmjs.org/@commitlint/load/-/load-17.7.1.tgz': - dependencies: - '@commitlint/config-validator': https://registry.npmmirror.com/@commitlint/config-validator/-/config-validator-17.6.7.tgz - '@commitlint/execute-rule': https://registry.npmmirror.com/@commitlint/execute-rule/-/execute-rule-17.4.0.tgz - '@commitlint/resolve-extends': https://registry.npmmirror.com/@commitlint/resolve-extends/-/resolve-extends-17.6.7.tgz - '@commitlint/types': https://registry.npmmirror.com/@commitlint/types/-/types-17.4.4.tgz - '@types/node': https://registry.npmmirror.com/@types/node/-/node-20.4.7.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - cosmiconfig: https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-8.2.0.tgz - cosmiconfig-typescript-loader: https://registry.npmmirror.com/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.4.0.tgz(@types/node@20.4.7)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@4.9.5) - lodash.isplainobject: https://registry.npmmirror.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz - lodash.merge: https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz - lodash.uniq: https://registry.npmmirror.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz - resolve-from: https://registry.npmmirror.com/resolve-from/-/resolve-from-5.0.0.tgz - ts-node: https://registry.npmmirror.com/ts-node/-/ts-node-10.9.1.tgz(@types/node@20.4.7)(typescript@4.9.5) - typescript: https://registry.npmmirror.com/typescript/-/typescript-4.9.5.tgz - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - optional: true - - '@commitlint/load@https://registry.npmmirror.com/@commitlint/load/-/load-16.3.0.tgz': - dependencies: - '@commitlint/config-validator': https://registry.npmmirror.com/@commitlint/config-validator/-/config-validator-16.2.1.tgz - '@commitlint/execute-rule': https://registry.npmmirror.com/@commitlint/execute-rule/-/execute-rule-16.2.1.tgz - '@commitlint/resolve-extends': https://registry.npmmirror.com/@commitlint/resolve-extends/-/resolve-extends-16.2.1.tgz - '@commitlint/types': https://registry.npmmirror.com/@commitlint/types/-/types-16.2.1.tgz - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - cosmiconfig: https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz - cosmiconfig-typescript-loader: https://registry.npmmirror.com/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-2.0.2.tgz(@types/node@17.0.25)(cosmiconfig@7.1.0)(typescript@4.6.3) - lodash: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz - resolve-from: https://registry.npmmirror.com/resolve-from/-/resolve-from-5.0.0.tgz - typescript: https://registry.npmmirror.com/typescript/-/typescript-4.6.3.tgz - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - - '@commitlint/message@https://registry.npmmirror.com/@commitlint/message/-/message-16.2.1.tgz': {} - - '@commitlint/parse@https://registry.npmmirror.com/@commitlint/parse/-/parse-16.2.1.tgz': - dependencies: - '@commitlint/types': https://registry.npmmirror.com/@commitlint/types/-/types-16.2.1.tgz - conventional-changelog-angular: https://registry.npmmirror.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz - conventional-commits-parser: https://registry.npmmirror.com/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz - - '@commitlint/read@https://registry.npmmirror.com/@commitlint/read/-/read-16.2.1.tgz': - dependencies: - '@commitlint/top-level': https://registry.npmmirror.com/@commitlint/top-level/-/top-level-16.2.1.tgz - '@commitlint/types': https://registry.npmmirror.com/@commitlint/types/-/types-16.2.1.tgz - fs-extra: https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz - git-raw-commits: https://registry.npmmirror.com/git-raw-commits/-/git-raw-commits-2.0.11.tgz - - '@commitlint/resolve-extends@https://registry.npmmirror.com/@commitlint/resolve-extends/-/resolve-extends-16.2.1.tgz': - dependencies: - '@commitlint/config-validator': https://registry.npmmirror.com/@commitlint/config-validator/-/config-validator-16.2.1.tgz - '@commitlint/types': https://registry.npmmirror.com/@commitlint/types/-/types-16.2.1.tgz - import-fresh: https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz - lodash: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz - resolve-from: https://registry.npmmirror.com/resolve-from/-/resolve-from-5.0.0.tgz - resolve-global: https://registry.npmmirror.com/resolve-global/-/resolve-global-1.0.0.tgz - - '@commitlint/resolve-extends@https://registry.npmmirror.com/@commitlint/resolve-extends/-/resolve-extends-17.6.7.tgz': - dependencies: - '@commitlint/config-validator': https://registry.npmmirror.com/@commitlint/config-validator/-/config-validator-17.6.7.tgz - '@commitlint/types': https://registry.npmmirror.com/@commitlint/types/-/types-17.4.4.tgz - import-fresh: https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz - lodash.mergewith: https://registry.npmmirror.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz - resolve-from: https://registry.npmmirror.com/resolve-from/-/resolve-from-5.0.0.tgz - resolve-global: https://registry.npmmirror.com/resolve-global/-/resolve-global-1.0.0.tgz - optional: true - - '@commitlint/rules@https://registry.npmmirror.com/@commitlint/rules/-/rules-16.2.4.tgz': - dependencies: - '@commitlint/ensure': https://registry.npmmirror.com/@commitlint/ensure/-/ensure-16.2.1.tgz - '@commitlint/message': https://registry.npmmirror.com/@commitlint/message/-/message-16.2.1.tgz - '@commitlint/to-lines': https://registry.npmmirror.com/@commitlint/to-lines/-/to-lines-16.2.1.tgz - '@commitlint/types': https://registry.npmmirror.com/@commitlint/types/-/types-16.2.1.tgz - execa: https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz - - '@commitlint/to-lines@https://registry.npmmirror.com/@commitlint/to-lines/-/to-lines-16.2.1.tgz': {} - - '@commitlint/top-level@https://registry.npmmirror.com/@commitlint/top-level/-/top-level-16.2.1.tgz': - dependencies: - find-up: https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz - - '@commitlint/types@https://registry.npmmirror.com/@commitlint/types/-/types-16.2.1.tgz': - dependencies: - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - - '@commitlint/types@https://registry.npmmirror.com/@commitlint/types/-/types-17.4.4.tgz': - dependencies: - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - optional: true - - '@cspotcode/source-map-consumer@https://registry.npmmirror.com/@cspotcode/source-map-consumer/-/source-map-consumer-0.8.0.tgz': {} - - '@cspotcode/source-map-support@https://registry.npmmirror.com/@cspotcode/source-map-support/-/source-map-support-0.7.0.tgz': - dependencies: - '@cspotcode/source-map-consumer': https://registry.npmmirror.com/@cspotcode/source-map-consumer/-/source-map-consumer-0.8.0.tgz - - '@cspotcode/source-map-support@https://registry.npmmirror.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz': - dependencies: - '@jridgewell/trace-mapping': https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz - - '@ctrl/tinycolor@https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.6.0.tgz': {} - - '@esbuild/android-arm64@https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.1.tgz': - optional: true - - '@esbuild/android-arm@https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.1.tgz': - optional: true - - '@esbuild/android-x64@https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.1.tgz': - optional: true - - '@esbuild/darwin-arm64@https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.1.tgz': - optional: true - - '@esbuild/darwin-x64@https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.1.tgz': - optional: true - - '@esbuild/freebsd-arm64@https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.1.tgz': - optional: true - - '@esbuild/freebsd-x64@https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.1.tgz': - optional: true - - '@esbuild/linux-arm64@https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.1.tgz': - optional: true - - '@esbuild/linux-arm@https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.1.tgz': - optional: true - - '@esbuild/linux-ia32@https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.1.tgz': - optional: true - - '@esbuild/linux-loong64@https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.14.54.tgz': - optional: true - - '@esbuild/linux-loong64@https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.1.tgz': - optional: true - - '@esbuild/linux-mips64el@https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.1.tgz': - optional: true - - '@esbuild/linux-ppc64@https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.1.tgz': - optional: true - - '@esbuild/linux-riscv64@https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.1.tgz': - optional: true - - '@esbuild/linux-s390x@https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.1.tgz': - optional: true - - '@esbuild/linux-x64@https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.1.tgz': - optional: true - - '@esbuild/netbsd-x64@https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.1.tgz': - optional: true - - '@esbuild/openbsd-x64@https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.1.tgz': - optional: true - - '@esbuild/sunos-x64@https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.1.tgz': - optional: true - - '@esbuild/win32-arm64@https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.1.tgz': - optional: true - - '@esbuild/win32-ia32@https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.1.tgz': - optional: true - - '@esbuild/win32-x64@https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.1.tgz': - optional: true - - '@eslint-community/eslint-utils@https://registry.npmmirror.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz(eslint@8.22.0)': - dependencies: - eslint: https://registry.npmmirror.com/eslint/-/eslint-8.22.0.tgz - eslint-visitor-keys: https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz - - '@eslint/eslintrc@https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-1.4.1.tgz': - dependencies: - ajv: https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - espree: https://registry.npmmirror.com/espree/-/espree-9.6.1.tgz - globals: https://registry.npmmirror.com/globals/-/globals-13.21.0.tgz - ignore: https://registry.npmmirror.com/ignore/-/ignore-5.2.4.tgz - import-fresh: https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz - js-yaml: https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz - minimatch: https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz - strip-json-comments: https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz - transitivePeerDependencies: - - supports-color - - '@fullcalendar/common@https://registry.npmmirror.com/@fullcalendar/common/-/common-5.10.1.tgz': - dependencies: - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - - '@fullcalendar/core@https://registry.npmmirror.com/@fullcalendar/core/-/core-5.10.1.tgz': - dependencies: - '@fullcalendar/common': https://registry.npmmirror.com/@fullcalendar/common/-/common-5.10.1.tgz - preact: https://registry.npmmirror.com/preact/-/preact-10.16.0.tgz - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - - '@fullcalendar/daygrid@https://registry.npmmirror.com/@fullcalendar/daygrid/-/daygrid-5.10.1.tgz': - dependencies: - '@fullcalendar/common': https://registry.npmmirror.com/@fullcalendar/common/-/common-5.10.1.tgz - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - - '@fullcalendar/interaction@https://registry.npmmirror.com/@fullcalendar/interaction/-/interaction-5.10.1.tgz': - dependencies: - '@fullcalendar/common': https://registry.npmmirror.com/@fullcalendar/common/-/common-5.10.1.tgz - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - - '@fullcalendar/timegrid@https://registry.npmmirror.com/@fullcalendar/timegrid/-/timegrid-5.10.1.tgz': - dependencies: - '@fullcalendar/common': https://registry.npmmirror.com/@fullcalendar/common/-/common-5.10.1.tgz - '@fullcalendar/daygrid': https://registry.npmmirror.com/@fullcalendar/daygrid/-/daygrid-5.10.1.tgz - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - - '@fullcalendar/vue3@https://registry.npmmirror.com/@fullcalendar/vue3/-/vue3-5.10.1.tgz(vue@3.2.33)': - dependencies: - '@fullcalendar/core': https://registry.npmmirror.com/@fullcalendar/core/-/core-5.10.1.tgz - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - - '@humanwhocodes/config-array@https://registry.npmmirror.com/@humanwhocodes/config-array/-/config-array-0.10.7.tgz': - dependencies: - '@humanwhocodes/object-schema': https://registry.npmmirror.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - minimatch: https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz - transitivePeerDependencies: - - supports-color - - '@humanwhocodes/gitignore-to-minimatch@https://registry.npmmirror.com/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz': {} - - '@humanwhocodes/object-schema@https://registry.npmmirror.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz': {} - - '@hutson/parse-repository-url@https://registry.npmmirror.com/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz': {} - - '@iconify/iconify@https://registry.npmmirror.com/@iconify/iconify/-/iconify-2.1.2.tgz': - dependencies: - cross-fetch: https://registry.npmmirror.com/cross-fetch/-/cross-fetch-3.1.8.tgz - transitivePeerDependencies: - - encoding - - '@iconify/iconify@https://registry.npmmirror.com/@iconify/iconify/-/iconify-2.2.1.tgz': {} - - '@iconify/json@https://registry.npmmirror.com/@iconify/json/-/json-2.1.30.tgz': - dependencies: - '@iconify/types': https://registry.npmmirror.com/@iconify/types/-/types-1.1.0.tgz - pathe: https://registry.npmmirror.com/pathe/-/pathe-0.2.0.tgz - - '@iconify/types@https://registry.npmmirror.com/@iconify/types/-/types-1.1.0.tgz': {} - - '@interactjs/actions@https://registry.npmmirror.com/@interactjs/actions/-/actions-1.10.18.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18)': - dependencies: - '@interactjs/core': https://registry.npmjs.org/@interactjs/core/-/core-1.10.18.tgz(@interactjs/utils@1.10.18) - '@interactjs/utils': https://registry.npmjs.org/@interactjs/utils/-/utils-1.10.18.tgz - optionalDependencies: - '@interactjs/interact': https://registry.npmjs.org/@interactjs/interact/-/interact-1.10.18.tgz - - '@interactjs/auto-scroll@https://registry.npmmirror.com/@interactjs/auto-scroll/-/auto-scroll-1.10.18.tgz(@interactjs/utils@1.10.18)': - dependencies: - '@interactjs/utils': https://registry.npmmirror.com/@interactjs/utils/-/utils-1.10.18.tgz - optionalDependencies: - '@interactjs/interact': https://registry.npmjs.org/@interactjs/interact/-/interact-1.10.18.tgz - - '@interactjs/auto-start@https://registry.npmmirror.com/@interactjs/auto-start/-/auto-start-1.10.18.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18)': - dependencies: - '@interactjs/core': https://registry.npmjs.org/@interactjs/core/-/core-1.10.18.tgz(@interactjs/utils@1.10.18) - '@interactjs/utils': https://registry.npmjs.org/@interactjs/utils/-/utils-1.10.18.tgz - optionalDependencies: - '@interactjs/interact': https://registry.npmjs.org/@interactjs/interact/-/interact-1.10.18.tgz - - '@interactjs/core@https://registry.npmjs.org/@interactjs/core/-/core-1.10.18.tgz(@interactjs/utils@1.10.18)': - dependencies: - '@interactjs/utils': https://registry.npmjs.org/@interactjs/utils/-/utils-1.10.18.tgz - - '@interactjs/core@https://registry.npmmirror.com/@interactjs/core/-/core-1.10.18.tgz(@interactjs/utils@1.10.18)': - dependencies: - '@interactjs/utils': https://registry.npmmirror.com/@interactjs/utils/-/utils-1.10.18.tgz - - '@interactjs/dev-tools@https://registry.npmmirror.com/@interactjs/dev-tools/-/dev-tools-1.10.18.tgz(@interactjs/modifiers@1.10.18)(@interactjs/utils@1.10.18)': - dependencies: - '@interactjs/modifiers': https://registry.npmmirror.com/@interactjs/modifiers/-/modifiers-1.10.18.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18) - '@interactjs/utils': https://registry.npmjs.org/@interactjs/utils/-/utils-1.10.18.tgz - optionalDependencies: - '@interactjs/interact': https://registry.npmjs.org/@interactjs/interact/-/interact-1.10.18.tgz - - '@interactjs/inertia@https://registry.npmmirror.com/@interactjs/inertia/-/inertia-1.10.18.tgz(@interactjs/core@1.10.18)(@interactjs/modifiers@1.10.18)(@interactjs/utils@1.10.18)': - dependencies: - '@interactjs/core': https://registry.npmmirror.com/@interactjs/core/-/core-1.10.18.tgz(@interactjs/utils@1.10.18) - '@interactjs/modifiers': https://registry.npmmirror.com/@interactjs/modifiers/-/modifiers-1.10.18.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18) - '@interactjs/offset': https://registry.npmmirror.com/@interactjs/offset/-/offset-1.10.18.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18) - '@interactjs/utils': https://registry.npmmirror.com/@interactjs/utils/-/utils-1.10.18.tgz - optionalDependencies: - '@interactjs/interact': https://registry.npmjs.org/@interactjs/interact/-/interact-1.10.18.tgz - - '@interactjs/interact@https://registry.npmjs.org/@interactjs/interact/-/interact-1.10.18.tgz': - dependencies: - '@interactjs/core': https://registry.npmmirror.com/@interactjs/core/-/core-1.10.18.tgz(@interactjs/utils@1.10.18) - '@interactjs/utils': https://registry.npmmirror.com/@interactjs/utils/-/utils-1.10.18.tgz - optional: true - - '@interactjs/interact@https://registry.npmmirror.com/@interactjs/interact/-/interact-1.10.18.tgz': - dependencies: - '@interactjs/core': https://registry.npmmirror.com/@interactjs/core/-/core-1.10.18.tgz(@interactjs/utils@1.10.18) - '@interactjs/utils': https://registry.npmmirror.com/@interactjs/utils/-/utils-1.10.18.tgz - - '@interactjs/interactjs@https://registry.npmmirror.com/@interactjs/interactjs/-/interactjs-1.10.18.tgz': - dependencies: - '@interactjs/actions': https://registry.npmmirror.com/@interactjs/actions/-/actions-1.10.18.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18) - '@interactjs/auto-scroll': https://registry.npmmirror.com/@interactjs/auto-scroll/-/auto-scroll-1.10.18.tgz(@interactjs/utils@1.10.18) - '@interactjs/auto-start': https://registry.npmmirror.com/@interactjs/auto-start/-/auto-start-1.10.18.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18) - '@interactjs/core': https://registry.npmmirror.com/@interactjs/core/-/core-1.10.18.tgz(@interactjs/utils@1.10.18) - '@interactjs/dev-tools': https://registry.npmmirror.com/@interactjs/dev-tools/-/dev-tools-1.10.18.tgz(@interactjs/modifiers@1.10.18)(@interactjs/utils@1.10.18) - '@interactjs/inertia': https://registry.npmmirror.com/@interactjs/inertia/-/inertia-1.10.18.tgz(@interactjs/core@1.10.18)(@interactjs/modifiers@1.10.18)(@interactjs/utils@1.10.18) - '@interactjs/interact': https://registry.npmmirror.com/@interactjs/interact/-/interact-1.10.18.tgz - '@interactjs/modifiers': https://registry.npmmirror.com/@interactjs/modifiers/-/modifiers-1.10.18.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18) - '@interactjs/offset': https://registry.npmmirror.com/@interactjs/offset/-/offset-1.10.18.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18) - '@interactjs/pointer-events': https://registry.npmmirror.com/@interactjs/pointer-events/-/pointer-events-1.10.18.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18) - '@interactjs/reflow': https://registry.npmmirror.com/@interactjs/reflow/-/reflow-1.10.18.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18) - '@interactjs/utils': https://registry.npmmirror.com/@interactjs/utils/-/utils-1.10.18.tgz - - '@interactjs/modifiers@https://registry.npmmirror.com/@interactjs/modifiers/-/modifiers-1.10.18.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18)': - dependencies: - '@interactjs/core': https://registry.npmjs.org/@interactjs/core/-/core-1.10.18.tgz(@interactjs/utils@1.10.18) - '@interactjs/snappers': https://registry.npmmirror.com/@interactjs/snappers/-/snappers-1.10.18.tgz(@interactjs/utils@1.10.18) - '@interactjs/utils': https://registry.npmjs.org/@interactjs/utils/-/utils-1.10.18.tgz - optionalDependencies: - '@interactjs/interact': https://registry.npmjs.org/@interactjs/interact/-/interact-1.10.18.tgz - - '@interactjs/offset@https://registry.npmmirror.com/@interactjs/offset/-/offset-1.10.18.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18)': - dependencies: - '@interactjs/core': https://registry.npmmirror.com/@interactjs/core/-/core-1.10.18.tgz(@interactjs/utils@1.10.18) - '@interactjs/utils': https://registry.npmmirror.com/@interactjs/utils/-/utils-1.10.18.tgz - optionalDependencies: - '@interactjs/interact': https://registry.npmjs.org/@interactjs/interact/-/interact-1.10.18.tgz - - '@interactjs/pointer-events@https://registry.npmmirror.com/@interactjs/pointer-events/-/pointer-events-1.10.18.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18)': - dependencies: - '@interactjs/core': https://registry.npmmirror.com/@interactjs/core/-/core-1.10.18.tgz(@interactjs/utils@1.10.18) - '@interactjs/utils': https://registry.npmmirror.com/@interactjs/utils/-/utils-1.10.18.tgz - optionalDependencies: - '@interactjs/interact': https://registry.npmjs.org/@interactjs/interact/-/interact-1.10.18.tgz - - '@interactjs/reflow@https://registry.npmmirror.com/@interactjs/reflow/-/reflow-1.10.18.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18)': - dependencies: - '@interactjs/core': https://registry.npmmirror.com/@interactjs/core/-/core-1.10.18.tgz(@interactjs/utils@1.10.18) - '@interactjs/utils': https://registry.npmmirror.com/@interactjs/utils/-/utils-1.10.18.tgz - optionalDependencies: - '@interactjs/interact': https://registry.npmjs.org/@interactjs/interact/-/interact-1.10.18.tgz - - '@interactjs/snappers@https://registry.npmmirror.com/@interactjs/snappers/-/snappers-1.10.18.tgz(@interactjs/utils@1.10.18)': - dependencies: - '@interactjs/utils': https://registry.npmjs.org/@interactjs/utils/-/utils-1.10.18.tgz - optionalDependencies: - '@interactjs/interact': https://registry.npmjs.org/@interactjs/interact/-/interact-1.10.18.tgz - - '@interactjs/utils@https://registry.npmjs.org/@interactjs/utils/-/utils-1.10.18.tgz': {} - - '@interactjs/utils@https://registry.npmmirror.com/@interactjs/utils/-/utils-1.10.18.tgz': {} - - '@intlify/core-base@https://registry.npmmirror.com/@intlify/core-base/-/core-base-9.1.9.tgz': - dependencies: - '@intlify/devtools-if': https://registry.npmmirror.com/@intlify/devtools-if/-/devtools-if-9.1.9.tgz - '@intlify/message-compiler': https://registry.npmmirror.com/@intlify/message-compiler/-/message-compiler-9.1.9.tgz - '@intlify/message-resolver': https://registry.npmmirror.com/@intlify/message-resolver/-/message-resolver-9.1.9.tgz - '@intlify/runtime': https://registry.npmmirror.com/@intlify/runtime/-/runtime-9.1.9.tgz - '@intlify/shared': https://registry.npmmirror.com/@intlify/shared/-/shared-9.1.9.tgz - '@intlify/vue-devtools': https://registry.npmmirror.com/@intlify/vue-devtools/-/vue-devtools-9.1.9.tgz - - '@intlify/devtools-if@https://registry.npmmirror.com/@intlify/devtools-if/-/devtools-if-9.1.9.tgz': - dependencies: - '@intlify/shared': https://registry.npmmirror.com/@intlify/shared/-/shared-9.1.9.tgz - - '@intlify/message-compiler@https://registry.npmmirror.com/@intlify/message-compiler/-/message-compiler-9.1.9.tgz': - dependencies: - '@intlify/message-resolver': https://registry.npmmirror.com/@intlify/message-resolver/-/message-resolver-9.1.9.tgz - '@intlify/shared': https://registry.npmmirror.com/@intlify/shared/-/shared-9.1.9.tgz - source-map: https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz - - '@intlify/message-resolver@https://registry.npmmirror.com/@intlify/message-resolver/-/message-resolver-9.1.9.tgz': {} - - '@intlify/runtime@https://registry.npmmirror.com/@intlify/runtime/-/runtime-9.1.9.tgz': - dependencies: - '@intlify/message-compiler': https://registry.npmmirror.com/@intlify/message-compiler/-/message-compiler-9.1.9.tgz - '@intlify/message-resolver': https://registry.npmmirror.com/@intlify/message-resolver/-/message-resolver-9.1.9.tgz - '@intlify/shared': https://registry.npmmirror.com/@intlify/shared/-/shared-9.1.9.tgz - - '@intlify/shared@https://registry.npmmirror.com/@intlify/shared/-/shared-9.1.9.tgz': {} - - '@intlify/vue-devtools@https://registry.npmmirror.com/@intlify/vue-devtools/-/vue-devtools-9.1.9.tgz': - dependencies: - '@intlify/message-resolver': https://registry.npmmirror.com/@intlify/message-resolver/-/message-resolver-9.1.9.tgz - '@intlify/runtime': https://registry.npmmirror.com/@intlify/runtime/-/runtime-9.1.9.tgz - '@intlify/shared': https://registry.npmmirror.com/@intlify/shared/-/shared-9.1.9.tgz - - '@istanbuljs/load-nyc-config@https://registry.npmmirror.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz': - dependencies: - camelcase: https://registry.npmmirror.com/camelcase/-/camelcase-5.3.1.tgz - find-up: https://registry.npmmirror.com/find-up/-/find-up-4.1.0.tgz - get-package-type: https://registry.npmmirror.com/get-package-type/-/get-package-type-0.1.0.tgz - js-yaml: https://registry.npmmirror.com/js-yaml/-/js-yaml-3.14.1.tgz - resolve-from: https://registry.npmmirror.com/resolve-from/-/resolve-from-5.0.0.tgz - - '@istanbuljs/schema@https://registry.npmmirror.com/@istanbuljs/schema/-/schema-0.1.3.tgz': {} - - '@jeecg/online@https://registry.npmmirror.com/@jeecg/online/-/online-3.5.3-beta3.tgz': {} - - '@jest/console@https://registry.npmmirror.com/@jest/console/-/console-27.5.1.tgz': - dependencies: - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - jest-message-util: https://registry.npmmirror.com/jest-message-util/-/jest-message-util-27.5.1.tgz - jest-util: https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz - slash: https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz - - '@jest/core@https://registry.npmmirror.com/@jest/core/-/core-27.5.1.tgz(ts-node@10.7.0)': - dependencies: - '@jest/console': https://registry.npmmirror.com/@jest/console/-/console-27.5.1.tgz - '@jest/reporters': https://registry.npmmirror.com/@jest/reporters/-/reporters-27.5.1.tgz - '@jest/test-result': https://registry.npmmirror.com/@jest/test-result/-/test-result-27.5.1.tgz - '@jest/transform': https://registry.npmmirror.com/@jest/transform/-/transform-27.5.1.tgz - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - ansi-escapes: https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - emittery: https://registry.npmmirror.com/emittery/-/emittery-0.8.1.tgz - exit: https://registry.npmmirror.com/exit/-/exit-0.1.2.tgz - graceful-fs: https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz - jest-changed-files: https://registry.npmmirror.com/jest-changed-files/-/jest-changed-files-27.5.1.tgz - jest-config: https://registry.npmmirror.com/jest-config/-/jest-config-27.5.1.tgz(ts-node@10.7.0) - jest-haste-map: https://registry.npmmirror.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz - jest-message-util: https://registry.npmmirror.com/jest-message-util/-/jest-message-util-27.5.1.tgz - jest-regex-util: https://registry.npmmirror.com/jest-regex-util/-/jest-regex-util-27.5.1.tgz - jest-resolve: https://registry.npmmirror.com/jest-resolve/-/jest-resolve-27.5.1.tgz - jest-resolve-dependencies: https://registry.npmmirror.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz - jest-runner: https://registry.npmmirror.com/jest-runner/-/jest-runner-27.5.1.tgz - jest-runtime: https://registry.npmmirror.com/jest-runtime/-/jest-runtime-27.5.1.tgz - jest-snapshot: https://registry.npmmirror.com/jest-snapshot/-/jest-snapshot-27.5.1.tgz - jest-util: https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz - jest-validate: https://registry.npmmirror.com/jest-validate/-/jest-validate-27.5.1.tgz - jest-watcher: https://registry.npmmirror.com/jest-watcher/-/jest-watcher-27.5.1.tgz - micromatch: https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz - rimraf: https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz - slash: https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz - strip-ansi: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - - '@jest/environment@https://registry.npmmirror.com/@jest/environment/-/environment-27.5.1.tgz': - dependencies: - '@jest/fake-timers': https://registry.npmmirror.com/@jest/fake-timers/-/fake-timers-27.5.1.tgz - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - jest-mock: https://registry.npmmirror.com/jest-mock/-/jest-mock-27.5.1.tgz - - '@jest/fake-timers@https://registry.npmmirror.com/@jest/fake-timers/-/fake-timers-27.5.1.tgz': - dependencies: - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - '@sinonjs/fake-timers': https://registry.npmmirror.com/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - jest-message-util: https://registry.npmmirror.com/jest-message-util/-/jest-message-util-27.5.1.tgz - jest-mock: https://registry.npmmirror.com/jest-mock/-/jest-mock-27.5.1.tgz - jest-util: https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz - - '@jest/globals@https://registry.npmmirror.com/@jest/globals/-/globals-27.5.1.tgz': - dependencies: - '@jest/environment': https://registry.npmmirror.com/@jest/environment/-/environment-27.5.1.tgz - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - expect: https://registry.npmmirror.com/expect/-/expect-27.5.1.tgz - - '@jest/reporters@https://registry.npmmirror.com/@jest/reporters/-/reporters-27.5.1.tgz': - dependencies: - '@bcoe/v8-coverage': https://registry.npmmirror.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz - '@jest/console': https://registry.npmmirror.com/@jest/console/-/console-27.5.1.tgz - '@jest/test-result': https://registry.npmmirror.com/@jest/test-result/-/test-result-27.5.1.tgz - '@jest/transform': https://registry.npmmirror.com/@jest/transform/-/transform-27.5.1.tgz - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - collect-v8-coverage: https://registry.npmmirror.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz - exit: https://registry.npmmirror.com/exit/-/exit-0.1.2.tgz - glob: https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - istanbul-lib-coverage: https://registry.npmmirror.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz - istanbul-lib-instrument: https://registry.npmmirror.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz - istanbul-lib-report: https://registry.npmmirror.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz - istanbul-lib-source-maps: https://registry.npmmirror.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz - istanbul-reports: https://registry.npmmirror.com/istanbul-reports/-/istanbul-reports-3.1.6.tgz - jest-haste-map: https://registry.npmmirror.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz - jest-resolve: https://registry.npmmirror.com/jest-resolve/-/jest-resolve-27.5.1.tgz - jest-util: https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz - jest-worker: https://registry.npmmirror.com/jest-worker/-/jest-worker-27.5.1.tgz - slash: https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz - source-map: https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz - string-length: https://registry.npmmirror.com/string-length/-/string-length-4.0.2.tgz - terminal-link: https://registry.npmmirror.com/terminal-link/-/terminal-link-2.1.1.tgz - v8-to-istanbul: https://registry.npmmirror.com/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz - transitivePeerDependencies: - - supports-color - - '@jest/source-map@https://registry.npmmirror.com/@jest/source-map/-/source-map-27.5.1.tgz': - dependencies: - callsites: https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - source-map: https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz - - '@jest/test-result@https://registry.npmmirror.com/@jest/test-result/-/test-result-27.5.1.tgz': - dependencies: - '@jest/console': https://registry.npmmirror.com/@jest/console/-/console-27.5.1.tgz - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - '@types/istanbul-lib-coverage': https://registry.npmmirror.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz - collect-v8-coverage: https://registry.npmmirror.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz - - '@jest/test-sequencer@https://registry.npmmirror.com/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz': - dependencies: - '@jest/test-result': https://registry.npmmirror.com/@jest/test-result/-/test-result-27.5.1.tgz - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - jest-haste-map: https://registry.npmmirror.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz - jest-runtime: https://registry.npmmirror.com/jest-runtime/-/jest-runtime-27.5.1.tgz - transitivePeerDependencies: - - supports-color - - '@jest/transform@https://registry.npmmirror.com/@jest/transform/-/transform-27.5.1.tgz': - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - babel-plugin-istanbul: https://registry.npmmirror.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - convert-source-map: https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz - fast-json-stable-stringify: https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - jest-haste-map: https://registry.npmmirror.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz - jest-regex-util: https://registry.npmmirror.com/jest-regex-util/-/jest-regex-util-27.5.1.tgz - jest-util: https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz - micromatch: https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz - pirates: https://registry.npmmirror.com/pirates/-/pirates-4.0.6.tgz - slash: https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz - source-map: https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz - write-file-atomic: https://registry.npmmirror.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz - transitivePeerDependencies: - - supports-color - - '@jest/types@https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz': - dependencies: - '@types/istanbul-lib-coverage': https://registry.npmmirror.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz - '@types/istanbul-reports': https://registry.npmmirror.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - '@types/yargs': https://registry.npmmirror.com/@types/yargs/-/yargs-16.0.5.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - - '@jridgewell/gen-mapping@https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz': - dependencies: - '@jridgewell/set-array': https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz - '@jridgewell/sourcemap-codec': https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz - '@jridgewell/trace-mapping': https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz - - '@jridgewell/gen-mapping@https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz': - dependencies: - '@jridgewell/set-array': https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.2.tgz - '@jridgewell/sourcemap-codec': https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz - '@jridgewell/trace-mapping': https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz - - '@jridgewell/resolve-uri@https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz': {} - - '@jridgewell/resolve-uri@https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz': {} - - '@jridgewell/set-array@https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz': {} - - '@jridgewell/set-array@https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.2.tgz': {} - - '@jridgewell/source-map@https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz': - dependencies: - '@jridgewell/gen-mapping': https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz - '@jridgewell/trace-mapping': https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz - - '@jridgewell/source-map@https://registry.npmmirror.com/@jridgewell/source-map/-/source-map-0.3.5.tgz': - dependencies: - '@jridgewell/gen-mapping': https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz - '@jridgewell/trace-mapping': https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz - - '@jridgewell/sourcemap-codec@https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz': {} - - '@jridgewell/sourcemap-codec@https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz': {} - - '@jridgewell/trace-mapping@https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz': - dependencies: - '@jridgewell/resolve-uri': https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz - '@jridgewell/sourcemap-codec': https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz - - '@jridgewell/trace-mapping@https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz': - dependencies: - '@jridgewell/resolve-uri': https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz - '@jridgewell/sourcemap-codec': https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz - - '@jridgewell/trace-mapping@https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz': - dependencies: - '@jridgewell/resolve-uri': https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz - '@jridgewell/sourcemap-codec': https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz - - '@logicflow/core@https://registry.npmmirror.com/@logicflow/core/-/core-1.1.13.tgz': - dependencies: - '@types/mousetrap': https://registry.npmmirror.com/@types/mousetrap/-/mousetrap-1.6.11.tgz - mousetrap: https://registry.npmmirror.com/mousetrap/-/mousetrap-1.6.5.tgz - preact: https://registry.npmmirror.com/preact/-/preact-10.16.0.tgz - - '@logicflow/extension@https://registry.npmmirror.com/@logicflow/extension/-/extension-1.1.13.tgz': - dependencies: - '@logicflow/core': https://registry.npmmirror.com/@logicflow/core/-/core-1.1.13.tgz - ids: https://registry.npmmirror.com/ids/-/ids-1.0.5.tgz - preact: https://registry.npmmirror.com/preact/-/preact-10.16.0.tgz - - '@nodelib/fs.scandir@https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz': - dependencies: - '@nodelib/fs.stat': https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz - run-parallel: https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz - - '@nodelib/fs.stat@https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz': {} - - '@nodelib/fs.walk@https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz': - dependencies: - '@nodelib/fs.scandir': https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz - fastq: https://registry.npmmirror.com/fastq/-/fastq-1.15.0.tgz - - '@octokit/auth-token@https://registry.npmmirror.com/@octokit/auth-token/-/auth-token-3.0.4.tgz': {} - - '@octokit/core@https://registry.npmmirror.com/@octokit/core/-/core-4.2.4.tgz': - dependencies: - '@octokit/auth-token': https://registry.npmmirror.com/@octokit/auth-token/-/auth-token-3.0.4.tgz - '@octokit/graphql': https://registry.npmmirror.com/@octokit/graphql/-/graphql-5.0.6.tgz - '@octokit/request': https://registry.npmmirror.com/@octokit/request/-/request-6.2.8.tgz - '@octokit/request-error': https://registry.npmmirror.com/@octokit/request-error/-/request-error-3.0.3.tgz - '@octokit/types': https://registry.npmmirror.com/@octokit/types/-/types-9.3.2.tgz - before-after-hook: https://registry.npmmirror.com/before-after-hook/-/before-after-hook-2.2.3.tgz - universal-user-agent: https://registry.npmmirror.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz - transitivePeerDependencies: - - encoding - - '@octokit/endpoint@https://registry.npmmirror.com/@octokit/endpoint/-/endpoint-7.0.6.tgz': - dependencies: - '@octokit/types': https://registry.npmmirror.com/@octokit/types/-/types-9.3.2.tgz - is-plain-object: https://registry.npmmirror.com/is-plain-object/-/is-plain-object-5.0.0.tgz - universal-user-agent: https://registry.npmmirror.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz - - '@octokit/graphql@https://registry.npmmirror.com/@octokit/graphql/-/graphql-5.0.6.tgz': - dependencies: - '@octokit/request': https://registry.npmmirror.com/@octokit/request/-/request-6.2.8.tgz - '@octokit/types': https://registry.npmmirror.com/@octokit/types/-/types-9.3.2.tgz - universal-user-agent: https://registry.npmmirror.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz - transitivePeerDependencies: - - encoding - - '@octokit/openapi-types@https://registry.npmmirror.com/@octokit/openapi-types/-/openapi-types-18.0.0.tgz': {} - - '@octokit/plugin-paginate-rest@https://registry.npmmirror.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.1.2.tgz(@octokit/core@4.2.4)': - dependencies: - '@octokit/core': https://registry.npmmirror.com/@octokit/core/-/core-4.2.4.tgz - '@octokit/tsconfig': https://registry.npmmirror.com/@octokit/tsconfig/-/tsconfig-1.0.2.tgz - '@octokit/types': https://registry.npmmirror.com/@octokit/types/-/types-9.3.2.tgz - - '@octokit/plugin-request-log@https://registry.npmmirror.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz(@octokit/core@4.2.4)': - dependencies: - '@octokit/core': https://registry.npmmirror.com/@octokit/core/-/core-4.2.4.tgz - - '@octokit/plugin-rest-endpoint-methods@https://registry.npmmirror.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.2.3.tgz(@octokit/core@4.2.4)': - dependencies: - '@octokit/core': https://registry.npmmirror.com/@octokit/core/-/core-4.2.4.tgz - '@octokit/types': https://registry.npmmirror.com/@octokit/types/-/types-10.0.0.tgz - - '@octokit/request-error@https://registry.npmmirror.com/@octokit/request-error/-/request-error-3.0.3.tgz': - dependencies: - '@octokit/types': https://registry.npmmirror.com/@octokit/types/-/types-9.3.2.tgz - deprecation: https://registry.npmmirror.com/deprecation/-/deprecation-2.3.1.tgz - once: https://registry.npmmirror.com/once/-/once-1.4.0.tgz - - '@octokit/request@https://registry.npmmirror.com/@octokit/request/-/request-6.2.8.tgz': - dependencies: - '@octokit/endpoint': https://registry.npmmirror.com/@octokit/endpoint/-/endpoint-7.0.6.tgz - '@octokit/request-error': https://registry.npmmirror.com/@octokit/request-error/-/request-error-3.0.3.tgz - '@octokit/types': https://registry.npmmirror.com/@octokit/types/-/types-9.3.2.tgz - is-plain-object: https://registry.npmmirror.com/is-plain-object/-/is-plain-object-5.0.0.tgz - node-fetch: https://registry.npmmirror.com/node-fetch/-/node-fetch-2.6.12.tgz - universal-user-agent: https://registry.npmmirror.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz - transitivePeerDependencies: - - encoding - - '@octokit/rest@https://registry.npmmirror.com/@octokit/rest/-/rest-19.0.13.tgz': - dependencies: - '@octokit/core': https://registry.npmmirror.com/@octokit/core/-/core-4.2.4.tgz - '@octokit/plugin-paginate-rest': https://registry.npmmirror.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.1.2.tgz(@octokit/core@4.2.4) - '@octokit/plugin-request-log': https://registry.npmmirror.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz(@octokit/core@4.2.4) - '@octokit/plugin-rest-endpoint-methods': https://registry.npmmirror.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.2.3.tgz(@octokit/core@4.2.4) - transitivePeerDependencies: - - encoding - - '@octokit/tsconfig@https://registry.npmmirror.com/@octokit/tsconfig/-/tsconfig-1.0.2.tgz': {} - - '@octokit/types@https://registry.npmmirror.com/@octokit/types/-/types-10.0.0.tgz': - dependencies: - '@octokit/openapi-types': https://registry.npmmirror.com/@octokit/openapi-types/-/openapi-types-18.0.0.tgz - - '@octokit/types@https://registry.npmmirror.com/@octokit/types/-/types-9.3.2.tgz': - dependencies: - '@octokit/openapi-types': https://registry.npmmirror.com/@octokit/openapi-types/-/openapi-types-18.0.0.tgz - - '@popperjs/core@https://registry.npmmirror.com/@popperjs/core/-/core-2.11.8.tgz': {} - - '@purge-icons/core@https://registry.npmmirror.com/@purge-icons/core/-/core-0.8.0.tgz': - dependencies: - '@iconify/iconify': https://registry.npmmirror.com/@iconify/iconify/-/iconify-2.1.2.tgz - axios: https://registry.npmmirror.com/axios/-/axios-0.26.1.tgz(debug@4.3.4) - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - fast-glob: https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.1.tgz - fs-extra: https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz - transitivePeerDependencies: - - encoding - - supports-color - - '@purge-icons/generated@https://registry.npmmirror.com/@purge-icons/generated/-/generated-0.8.1.tgz': - dependencies: - '@iconify/iconify': https://registry.npmmirror.com/@iconify/iconify/-/iconify-2.2.1.tgz - - '@qiaoqiaoyun/drag-free@https://registry.npmmirror.com/@qiaoqiaoyun/drag-free/-/drag-free-1.0.511.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18)': - dependencies: - '@ant-design/colors': https://registry.npmmirror.com/@ant-design/colors/-/colors-6.0.0.tgz - '@ant-design/icons-vue': https://registry.npmmirror.com/@ant-design/icons-vue/-/icons-vue-6.1.0.tgz(vue@3.2.33) - '@fullcalendar/core': https://registry.npmmirror.com/@fullcalendar/core/-/core-5.10.1.tgz - '@fullcalendar/daygrid': https://registry.npmmirror.com/@fullcalendar/daygrid/-/daygrid-5.10.1.tgz - '@fullcalendar/interaction': https://registry.npmmirror.com/@fullcalendar/interaction/-/interaction-5.10.1.tgz - '@fullcalendar/timegrid': https://registry.npmmirror.com/@fullcalendar/timegrid/-/timegrid-5.10.1.tgz - '@fullcalendar/vue3': https://registry.npmmirror.com/@fullcalendar/vue3/-/vue3-5.10.1.tgz(vue@3.2.33) - '@types/echarts': https://registry.npmmirror.com/@types/echarts/-/echarts-4.9.18.tgz - '@vueuse/core': https://registry.npmmirror.com/@vueuse/core/-/core-6.9.2.tgz(vue@3.2.33) - ant-design-vue: https://registry.npmmirror.com/ant-design-vue/-/ant-design-vue-3.2.12.tgz(vue@3.2.33) - axios: https://registry.npmmirror.com/axios/-/axios-0.24.0.tgz - china-area-data: https://registry.npmmirror.com/china-area-data/-/china-area-data-5.0.1.tgz - codemirror: https://registry.npmmirror.com/codemirror/-/codemirror-5.65.3.tgz - core-js: https://registry.npmmirror.com/core-js/-/core-js-3.32.0.tgz - crypto-js: https://registry.npmmirror.com/crypto-js/-/crypto-js-4.1.1.tgz - dayjs: https://registry.npmmirror.com/dayjs/-/dayjs-1.11.1.tgz - echarts: https://registry.npmmirror.com/echarts/-/echarts-5.3.2.tgz - echarts-gl: https://registry.npmmirror.com/echarts-gl/-/echarts-gl-2.0.9.tgz(echarts@5.3.2) - echarts-liquidfill: https://registry.npmmirror.com/echarts-liquidfill/-/echarts-liquidfill-3.1.0.tgz(echarts@5.3.2) - html2canvas: https://registry.npmmirror.com/html2canvas/-/html2canvas-1.4.1.tgz - jspdf: https://registry.npmmirror.com/jspdf/-/jspdf-2.5.1.tgz - lodash-es: https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz - md5: https://registry.npmmirror.com/md5/-/md5-2.3.0.tgz - mitt: https://registry.npmmirror.com/mitt/-/mitt-3.0.1.tgz - qs: https://registry.npmmirror.com/qs/-/qs-6.11.2.tgz - tinymce: https://registry.npmmirror.com/tinymce/-/tinymce-5.10.3.tgz - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - vue-clipboard3: https://registry.npmmirror.com/vue-clipboard3/-/vue-clipboard3-2.0.0.tgz - vue-count-to2: https://registry.npmmirror.com/vue-count-to2/-/vue-count-to2-1.0.6.tgz(vue@3.2.33) - vue-grid-layout: https://registry.npmmirror.com/vue-grid-layout/-/vue-grid-layout-3.0.0-beta1.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18) - vue-types: https://registry.npmmirror.com/vue-types/-/vue-types-4.1.1.tgz(vue@3.2.33) - vue3-colorpicker: https://registry.npmmirror.com/vue3-colorpicker/-/vue3-colorpicker-2.2.0.tgz - vuedraggable: https://registry.npmmirror.com/vuedraggable/-/vuedraggable-4.1.0.tgz(vue@3.2.33) - xlsx: https://registry.npmmirror.com/xlsx/-/xlsx-0.17.5.tgz - transitivePeerDependencies: - - '@interactjs/core' - - '@interactjs/utils' - - '@vue/composition-api' - - debug - - '@rollup/plugin-babel@https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz(@babel/core@7.22.10)(rollup@2.79.1)': - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-module-imports': https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz - '@rollup/pluginutils': https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz(rollup@2.79.1) - rollup: https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz - - '@rollup/plugin-node-resolve@https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz(rollup@2.79.1)': - dependencies: - '@rollup/pluginutils': https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz(rollup@2.79.1) - '@types/resolve': https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz - builtin-modules: https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz - deepmerge: https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz - is-module: https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz - resolve: https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz - rollup: https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz - - '@rollup/plugin-node-resolve@https://registry.npmmirror.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.3.0.tgz(rollup@2.72.0)': - dependencies: - '@rollup/pluginutils': https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz(rollup@2.72.0) - '@types/resolve': https://registry.npmmirror.com/@types/resolve/-/resolve-1.17.1.tgz - deepmerge: https://registry.npmmirror.com/deepmerge/-/deepmerge-4.3.1.tgz - is-builtin-module: https://registry.npmmirror.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz - is-module: https://registry.npmmirror.com/is-module/-/is-module-1.0.0.tgz - resolve: https://registry.npmmirror.com/resolve/-/resolve-1.22.4.tgz - rollup: https://registry.npmjs.org/rollup/-/rollup-2.72.0.tgz - - '@rollup/plugin-replace@https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz(rollup@2.79.1)': - dependencies: - '@rollup/pluginutils': https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz(rollup@2.79.1) - magic-string: https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz - rollup: https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz - - '@rollup/pluginutils@https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz(rollup@2.79.1)': - dependencies: - '@types/estree': https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz - estree-walker: https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz - picomatch: https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz - rollup: https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz - - '@rollup/pluginutils@https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz(rollup@2.72.0)': - dependencies: - '@types/estree': https://registry.npmmirror.com/@types/estree/-/estree-0.0.39.tgz - estree-walker: https://registry.npmmirror.com/estree-walker/-/estree-walker-1.0.1.tgz - picomatch: https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz - rollup: https://registry.npmjs.org/rollup/-/rollup-2.72.0.tgz - - '@rollup/pluginutils@https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz': - dependencies: - estree-walker: https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz - picomatch: https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz - - '@rys-fe/vite-plugin-theme@https://registry.npmmirror.com/@rys-fe/vite-plugin-theme/-/vite-plugin-theme-0.8.6.tgz(vite@3.0.2)': - dependencies: - '@types/node': https://registry.npmmirror.com/@types/node/-/node-14.18.54.tgz - '@types/tinycolor2': https://registry.npmmirror.com/@types/tinycolor2/-/tinycolor2-1.4.3.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - clean-css: https://registry.npmmirror.com/clean-css/-/clean-css-5.3.2.tgz - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - esbuild: https://registry.npmmirror.com/esbuild/-/esbuild-0.11.23.tgz - esbuild-plugin-alias: https://registry.npmmirror.com/esbuild-plugin-alias/-/esbuild-plugin-alias-0.1.2.tgz - tinycolor2: https://registry.npmmirror.com/tinycolor2/-/tinycolor2-1.6.0.tgz - vite: https://registry.npmmirror.com/vite/-/vite-3.0.2.tgz(less@4.1.2)(terser@5.19.2) - transitivePeerDependencies: - - supports-color - - '@simonwep/pickr@https://registry.npmmirror.com/@simonwep/pickr/-/pickr-1.8.2.tgz': - dependencies: - core-js: https://registry.npmmirror.com/core-js/-/core-js-3.32.0.tgz - nanopop: https://registry.npmmirror.com/nanopop/-/nanopop-2.3.0.tgz - - '@sindresorhus/is@https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz': {} - - '@sinonjs/commons@https://registry.npmmirror.com/@sinonjs/commons/-/commons-1.8.6.tgz': - dependencies: - type-detect: https://registry.npmmirror.com/type-detect/-/type-detect-4.0.8.tgz - - '@sinonjs/fake-timers@https://registry.npmmirror.com/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz': - dependencies: - '@sinonjs/commons': https://registry.npmmirror.com/@sinonjs/commons/-/commons-1.8.6.tgz - - '@surma/rollup-plugin-off-main-thread@https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz': - dependencies: - ejs: https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz - json5: https://registry.npmjs.org/json5/-/json5-2.2.3.tgz - magic-string: https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz - string.prototype.matchall: https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz - - '@tootallnate/once@https://registry.npmmirror.com/@tootallnate/once/-/once-1.1.2.tgz': {} - - '@trysound/sax@https://registry.npmmirror.com/@trysound/sax/-/sax-0.2.0.tgz': {} - - '@tsconfig/node10@https://registry.npmmirror.com/@tsconfig/node10/-/node10-1.0.9.tgz': {} - - '@tsconfig/node12@https://registry.npmmirror.com/@tsconfig/node12/-/node12-1.0.11.tgz': {} - - '@tsconfig/node14@https://registry.npmmirror.com/@tsconfig/node14/-/node14-1.0.3.tgz': {} - - '@tsconfig/node16@https://registry.npmmirror.com/@tsconfig/node16/-/node16-1.0.4.tgz': {} - - '@types/babel__core@https://registry.npmmirror.com/@types/babel__core/-/babel__core-7.20.1.tgz': - dependencies: - '@babel/parser': https://registry.npmmirror.com/@babel/parser/-/parser-7.22.10.tgz - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - '@types/babel__generator': https://registry.npmmirror.com/@types/babel__generator/-/babel__generator-7.6.4.tgz - '@types/babel__template': https://registry.npmmirror.com/@types/babel__template/-/babel__template-7.4.1.tgz - '@types/babel__traverse': https://registry.npmmirror.com/@types/babel__traverse/-/babel__traverse-7.20.1.tgz - - '@types/babel__generator@https://registry.npmmirror.com/@types/babel__generator/-/babel__generator-7.6.4.tgz': - dependencies: - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - - '@types/babel__template@https://registry.npmmirror.com/@types/babel__template/-/babel__template-7.4.1.tgz': - dependencies: - '@babel/parser': https://registry.npmmirror.com/@babel/parser/-/parser-7.22.10.tgz - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - - '@types/babel__traverse@https://registry.npmmirror.com/@types/babel__traverse/-/babel__traverse-7.20.1.tgz': - dependencies: - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - - '@types/codemirror@https://registry.npmmirror.com/@types/codemirror/-/codemirror-5.60.5.tgz': - dependencies: - '@types/tern': https://registry.npmmirror.com/@types/tern/-/tern-0.23.4.tgz - - '@types/crypto-js@https://registry.npmmirror.com/@types/crypto-js/-/crypto-js-4.1.1.tgz': {} - - '@types/echarts@https://registry.npmmirror.com/@types/echarts/-/echarts-4.9.18.tgz': - dependencies: - '@types/zrender': https://registry.npmmirror.com/@types/zrender/-/zrender-4.0.3.tgz - - '@types/estree@https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz': {} - - '@types/estree@https://registry.npmmirror.com/@types/estree/-/estree-0.0.39.tgz': {} - - '@types/estree@https://registry.npmmirror.com/@types/estree/-/estree-1.0.1.tgz': {} - - '@types/fs-extra@https://registry.npmmirror.com/@types/fs-extra/-/fs-extra-9.0.13.tgz': - dependencies: - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - - '@types/glob@https://registry.npmmirror.com/@types/glob/-/glob-7.2.0.tgz': - dependencies: - '@types/minimatch': https://registry.npmmirror.com/@types/minimatch/-/minimatch-5.1.2.tgz - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - - '@types/graceful-fs@https://registry.npmmirror.com/@types/graceful-fs/-/graceful-fs-4.1.6.tgz': - dependencies: - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - - '@types/imagemin-gifsicle@https://registry.npmmirror.com/@types/imagemin-gifsicle/-/imagemin-gifsicle-7.0.1.tgz': - dependencies: - '@types/imagemin': https://registry.npmmirror.com/@types/imagemin/-/imagemin-7.0.1.tgz - - '@types/imagemin-jpegtran@https://registry.npmmirror.com/@types/imagemin-jpegtran/-/imagemin-jpegtran-5.0.1.tgz': - dependencies: - '@types/imagemin': https://registry.npmmirror.com/@types/imagemin/-/imagemin-7.0.1.tgz - - '@types/imagemin-mozjpeg@https://registry.npmmirror.com/@types/imagemin-mozjpeg/-/imagemin-mozjpeg-8.0.1.tgz': - dependencies: - '@types/imagemin': https://registry.npmmirror.com/@types/imagemin/-/imagemin-7.0.1.tgz - - '@types/imagemin-optipng@https://registry.npmmirror.com/@types/imagemin-optipng/-/imagemin-optipng-5.2.1.tgz': - dependencies: - '@types/imagemin': https://registry.npmmirror.com/@types/imagemin/-/imagemin-7.0.1.tgz - - '@types/imagemin-svgo@https://registry.npmmirror.com/@types/imagemin-svgo/-/imagemin-svgo-10.0.2.tgz': - dependencies: - '@types/imagemin': https://registry.npmmirror.com/@types/imagemin/-/imagemin-7.0.1.tgz - '@types/svgo': https://registry.npmmirror.com/@types/svgo/-/svgo-2.6.4.tgz - - '@types/imagemin-webp@https://registry.npmmirror.com/@types/imagemin-webp/-/imagemin-webp-7.0.0.tgz': - dependencies: - '@types/imagemin': https://registry.npmmirror.com/@types/imagemin/-/imagemin-7.0.1.tgz - - '@types/imagemin@https://registry.npmmirror.com/@types/imagemin/-/imagemin-7.0.1.tgz': - dependencies: - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - - '@types/inquirer@https://registry.npmmirror.com/@types/inquirer/-/inquirer-8.2.1.tgz': - dependencies: - '@types/through': https://registry.npmmirror.com/@types/through/-/through-0.0.30.tgz - rxjs: https://registry.npmmirror.com/rxjs/-/rxjs-7.8.1.tgz - - '@types/intro.js@https://registry.npmmirror.com/@types/intro.js/-/intro.js-3.0.2.tgz': {} - - '@types/istanbul-lib-coverage@https://registry.npmmirror.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz': {} - - '@types/istanbul-lib-report@https://registry.npmmirror.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz': - dependencies: - '@types/istanbul-lib-coverage': https://registry.npmmirror.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz - - '@types/istanbul-reports@https://registry.npmmirror.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz': - dependencies: - '@types/istanbul-lib-report': https://registry.npmmirror.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz - - '@types/jest@https://registry.npmmirror.com/@types/jest/-/jest-27.0.2.tgz': - dependencies: - jest-diff: https://registry.npmmirror.com/jest-diff/-/jest-diff-27.5.1.tgz - pretty-format: https://registry.npmmirror.com/pretty-format/-/pretty-format-27.5.1.tgz - - '@types/json-schema@https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.12.tgz': {} - - '@types/keyv@https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz': - dependencies: - '@types/node': https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz - - '@types/keyv@https://registry.npmmirror.com/@types/keyv/-/keyv-3.1.4.tgz': - dependencies: - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - - '@types/lodash-es@https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.6.tgz': - dependencies: - '@types/lodash': https://registry.npmmirror.com/@types/lodash/-/lodash-4.14.197.tgz - - '@types/lodash@https://registry.npmmirror.com/@types/lodash/-/lodash-4.14.197.tgz': {} - - '@types/minimatch@https://registry.npmmirror.com/@types/minimatch/-/minimatch-3.0.5.tgz': {} - - '@types/minimatch@https://registry.npmmirror.com/@types/minimatch/-/minimatch-5.1.2.tgz': {} - - '@types/minimist@https://registry.npmmirror.com/@types/minimist/-/minimist-1.2.2.tgz': {} - - '@types/mockjs@https://registry.npmmirror.com/@types/mockjs/-/mockjs-1.0.6.tgz': {} - - '@types/mousetrap@https://registry.npmmirror.com/@types/mousetrap/-/mousetrap-1.6.11.tgz': {} - - '@types/node@https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz': {} - - '@types/node@https://registry.npmmirror.com/@types/node/-/node-14.18.54.tgz': {} - - '@types/node@https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz': {} - - '@types/node@https://registry.npmmirror.com/@types/node/-/node-20.4.7.tgz': - optional: true - - '@types/normalize-package-data@https://registry.npmmirror.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz': {} - - '@types/nprogress@https://registry.npmmirror.com/@types/nprogress/-/nprogress-0.2.0.tgz': {} - - '@types/parse-json@https://registry.npmmirror.com/@types/parse-json/-/parse-json-4.0.0.tgz': {} - - '@types/pinyin@https://registry.npmmirror.com/@types/pinyin/-/pinyin-2.10.0.tgz': {} - - '@types/prettier@https://registry.npmmirror.com/@types/prettier/-/prettier-2.7.3.tgz': {} - - '@types/qrcode@https://registry.npmmirror.com/@types/qrcode/-/qrcode-1.4.2.tgz': - dependencies: - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - - '@types/qs@https://registry.npmmirror.com/@types/qs/-/qs-6.9.7.tgz': {} - - '@types/raf@https://registry.npmmirror.com/@types/raf/-/raf-3.4.0.tgz': - optional: true - - '@types/resolve@https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz': - dependencies: - '@types/node': https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz - - '@types/resolve@https://registry.npmmirror.com/@types/resolve/-/resolve-1.17.1.tgz': - dependencies: - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - - '@types/responselike@https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz': - dependencies: - '@types/node': https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz - - '@types/responselike@https://registry.npmmirror.com/@types/responselike/-/responselike-1.0.0.tgz': - dependencies: - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - - '@types/semver@https://registry.npmmirror.com/@types/semver/-/semver-7.5.0.tgz': {} - - '@types/showdown@https://registry.npmmirror.com/@types/showdown/-/showdown-1.9.4.tgz': {} - - '@types/sortablejs@https://registry.npmmirror.com/@types/sortablejs/-/sortablejs-1.10.7.tgz': {} - - '@types/stack-utils@https://registry.npmmirror.com/@types/stack-utils/-/stack-utils-2.0.1.tgz': {} - - '@types/svgo@https://registry.npmmirror.com/@types/svgo/-/svgo-2.6.4.tgz': - dependencies: - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - - '@types/tern@https://registry.npmmirror.com/@types/tern/-/tern-0.23.4.tgz': - dependencies: - '@types/estree': https://registry.npmmirror.com/@types/estree/-/estree-1.0.1.tgz - - '@types/through@https://registry.npmmirror.com/@types/through/-/through-0.0.30.tgz': - dependencies: - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - - '@types/tinycolor2@https://registry.npmmirror.com/@types/tinycolor2/-/tinycolor2-1.4.3.tgz': {} - - '@types/trusted-types@https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.3.tgz': {} - - '@types/web-bluetooth@https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.17.tgz': {} - - '@types/yargs-parser@https://registry.npmmirror.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz': {} - - '@types/yargs@https://registry.npmmirror.com/@types/yargs/-/yargs-16.0.5.tgz': - dependencies: - '@types/yargs-parser': https://registry.npmmirror.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz - - '@types/zrender@https://registry.npmmirror.com/@types/zrender/-/zrender-4.0.3.tgz': {} - - '@typescript-eslint/eslint-plugin@https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.20.0.tgz(@typescript-eslint/parser@5.20.0)(eslint@8.22.0)(typescript@4.6.3)': - dependencies: - '@typescript-eslint/parser': https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-5.20.0.tgz(eslint@8.22.0)(typescript@4.6.3) - '@typescript-eslint/scope-manager': https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.20.0.tgz - '@typescript-eslint/type-utils': https://registry.npmmirror.com/@typescript-eslint/type-utils/-/type-utils-5.20.0.tgz(eslint@8.22.0)(typescript@4.6.3) - '@typescript-eslint/utils': https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-5.20.0.tgz(eslint@8.22.0)(typescript@4.6.3) - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - eslint: https://registry.npmmirror.com/eslint/-/eslint-8.22.0.tgz - functional-red-black-tree: https://registry.npmmirror.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz - ignore: https://registry.npmmirror.com/ignore/-/ignore-5.2.4.tgz - regexpp: https://registry.npmmirror.com/regexpp/-/regexpp-3.2.0.tgz - semver: https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz - tsutils: https://registry.npmmirror.com/tsutils/-/tsutils-3.21.0.tgz(typescript@4.6.3) - typescript: https://registry.npmmirror.com/typescript/-/typescript-4.6.3.tgz - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/parser@https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-5.20.0.tgz(eslint@8.22.0)(typescript@4.6.3)': - dependencies: - '@typescript-eslint/scope-manager': https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.20.0.tgz - '@typescript-eslint/types': https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.20.0.tgz - '@typescript-eslint/typescript-estree': https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.20.0.tgz(typescript@4.6.3) - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - eslint: https://registry.npmmirror.com/eslint/-/eslint-8.22.0.tgz - typescript: https://registry.npmmirror.com/typescript/-/typescript-4.6.3.tgz - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/scope-manager@https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.20.0.tgz': - dependencies: - '@typescript-eslint/types': https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.20.0.tgz - '@typescript-eslint/visitor-keys': https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.20.0.tgz - - '@typescript-eslint/scope-manager@https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz': - dependencies: - '@typescript-eslint/types': https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.62.0.tgz - '@typescript-eslint/visitor-keys': https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz - - '@typescript-eslint/type-utils@https://registry.npmmirror.com/@typescript-eslint/type-utils/-/type-utils-5.20.0.tgz(eslint@8.22.0)(typescript@4.6.3)': - dependencies: - '@typescript-eslint/utils': https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-5.20.0.tgz(eslint@8.22.0)(typescript@4.6.3) - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - eslint: https://registry.npmmirror.com/eslint/-/eslint-8.22.0.tgz - tsutils: https://registry.npmmirror.com/tsutils/-/tsutils-3.21.0.tgz(typescript@4.6.3) - typescript: https://registry.npmmirror.com/typescript/-/typescript-4.6.3.tgz - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/types@https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.20.0.tgz': {} - - '@typescript-eslint/types@https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.62.0.tgz': {} - - '@typescript-eslint/typescript-estree@https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.20.0.tgz(typescript@4.6.3)': - dependencies: - '@typescript-eslint/types': https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.20.0.tgz - '@typescript-eslint/visitor-keys': https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.20.0.tgz - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - globby: https://registry.npmmirror.com/globby/-/globby-11.1.0.tgz - is-glob: https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz - semver: https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz - tsutils: https://registry.npmmirror.com/tsutils/-/tsutils-3.21.0.tgz(typescript@4.6.3) - typescript: https://registry.npmmirror.com/typescript/-/typescript-4.6.3.tgz - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/typescript-estree@https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz(typescript@4.6.3)': - dependencies: - '@typescript-eslint/types': https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.62.0.tgz - '@typescript-eslint/visitor-keys': https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - globby: https://registry.npmmirror.com/globby/-/globby-11.1.0.tgz - is-glob: https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz - semver: https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz - tsutils: https://registry.npmmirror.com/tsutils/-/tsutils-3.21.0.tgz(typescript@4.6.3) - typescript: https://registry.npmmirror.com/typescript/-/typescript-4.6.3.tgz - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/utils@https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-5.20.0.tgz(eslint@8.22.0)(typescript@4.6.3)': - dependencies: - '@types/json-schema': https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.12.tgz - '@typescript-eslint/scope-manager': https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.20.0.tgz - '@typescript-eslint/types': https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.20.0.tgz - '@typescript-eslint/typescript-estree': https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.20.0.tgz(typescript@4.6.3) - eslint: https://registry.npmmirror.com/eslint/-/eslint-8.22.0.tgz - eslint-scope: https://registry.npmmirror.com/eslint-scope/-/eslint-scope-5.1.1.tgz - eslint-utils: https://registry.npmmirror.com/eslint-utils/-/eslint-utils-3.0.0.tgz(eslint@8.22.0) - transitivePeerDependencies: - - supports-color - - typescript - - '@typescript-eslint/utils@https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-5.62.0.tgz(eslint@8.22.0)(typescript@4.6.3)': - dependencies: - '@eslint-community/eslint-utils': https://registry.npmmirror.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz(eslint@8.22.0) - '@types/json-schema': https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.12.tgz - '@types/semver': https://registry.npmmirror.com/@types/semver/-/semver-7.5.0.tgz - '@typescript-eslint/scope-manager': https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz - '@typescript-eslint/types': https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.62.0.tgz - '@typescript-eslint/typescript-estree': https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz(typescript@4.6.3) - eslint: https://registry.npmmirror.com/eslint/-/eslint-8.22.0.tgz - eslint-scope: https://registry.npmmirror.com/eslint-scope/-/eslint-scope-5.1.1.tgz - semver: https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz - transitivePeerDependencies: - - supports-color - - typescript - - '@typescript-eslint/visitor-keys@https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.20.0.tgz': - dependencies: - '@typescript-eslint/types': https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.20.0.tgz - eslint-visitor-keys: https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz - - '@typescript-eslint/visitor-keys@https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz': - dependencies: - '@typescript-eslint/types': https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.62.0.tgz - eslint-visitor-keys: https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz - - '@vitejs/plugin-legacy@https://registry.npmmirror.com/@vitejs/plugin-legacy/-/plugin-legacy-2.0.0.tgz(terser@5.19.2)(vite@3.0.2)': - dependencies: - '@babel/standalone': https://registry.npmmirror.com/@babel/standalone/-/standalone-7.22.10.tgz - core-js: https://registry.npmmirror.com/core-js/-/core-js-3.32.0.tgz - magic-string: https://registry.npmmirror.com/magic-string/-/magic-string-0.26.7.tgz - regenerator-runtime: https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz - systemjs: https://registry.npmmirror.com/systemjs/-/systemjs-6.14.1.tgz - terser: https://registry.npmjs.org/terser/-/terser-5.19.2.tgz - vite: https://registry.npmmirror.com/vite/-/vite-3.0.2.tgz(less@4.1.2)(terser@5.19.2) - - '@vitejs/plugin-vue-jsx@https://registry.npmmirror.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-1.3.10.tgz': - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/plugin-syntax-import-meta': https://registry.npmmirror.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz(@babel/core@7.22.10) - '@babel/plugin-transform-typescript': https://registry.npmmirror.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.10.tgz(@babel/core@7.22.10) - '@rollup/pluginutils': https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz - '@vue/babel-plugin-jsx': https://registry.npmmirror.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.1.5.tgz(@babel/core@7.22.10) - hash-sum: https://registry.npmmirror.com/hash-sum/-/hash-sum-2.0.0.tgz - transitivePeerDependencies: - - supports-color - - '@vitejs/plugin-vue@https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-3.0.1.tgz(vite@3.0.2)(vue@3.2.33)': - dependencies: - vite: https://registry.npmmirror.com/vite/-/vite-3.0.2.tgz(less@4.1.2)(terser@5.19.2) - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - - '@volar/code-gen@https://registry.npmmirror.com/@volar/code-gen/-/code-gen-0.33.9.tgz': - dependencies: - '@volar/source-map': https://registry.npmmirror.com/@volar/source-map/-/source-map-0.33.9.tgz - - '@volar/pug-language-service@https://registry.npmmirror.com/@volar/pug-language-service/-/pug-language-service-0.33.9.tgz': - dependencies: - '@volar/code-gen': https://registry.npmmirror.com/@volar/code-gen/-/code-gen-0.33.9.tgz - '@volar/shared': https://registry.npmmirror.com/@volar/shared/-/shared-0.33.9.tgz - '@volar/source-map': https://registry.npmmirror.com/@volar/source-map/-/source-map-0.33.9.tgz - '@volar/transforms': https://registry.npmmirror.com/@volar/transforms/-/transforms-0.33.9.tgz - pug-lexer: https://registry.npmmirror.com/pug-lexer/-/pug-lexer-5.0.1.tgz - pug-parser: https://registry.npmmirror.com/pug-parser/-/pug-parser-6.0.0.tgz - vscode-languageserver-textdocument: https://registry.npmmirror.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.8.tgz - vscode-languageserver-types: https://registry.npmmirror.com/vscode-languageserver-types/-/vscode-languageserver-types-3.17.3.tgz - - '@volar/shared@https://registry.npmmirror.com/@volar/shared/-/shared-0.33.9.tgz': - dependencies: - upath: https://registry.npmmirror.com/upath/-/upath-2.0.1.tgz - vscode-jsonrpc: https://registry.npmmirror.com/vscode-jsonrpc/-/vscode-jsonrpc-8.1.0.tgz - vscode-uri: https://registry.npmmirror.com/vscode-uri/-/vscode-uri-3.0.7.tgz - - '@volar/source-map@https://registry.npmmirror.com/@volar/source-map/-/source-map-0.33.9.tgz': {} - - '@volar/transforms@https://registry.npmmirror.com/@volar/transforms/-/transforms-0.33.9.tgz': - dependencies: - '@volar/shared': https://registry.npmmirror.com/@volar/shared/-/shared-0.33.9.tgz - vscode-languageserver-types: https://registry.npmmirror.com/vscode-languageserver-types/-/vscode-languageserver-types-3.17.3.tgz - - '@volar/vue-code-gen@https://registry.npmmirror.com/@volar/vue-code-gen/-/vue-code-gen-0.33.9.tgz': - dependencies: - '@volar/code-gen': https://registry.npmmirror.com/@volar/code-gen/-/code-gen-0.33.9.tgz - '@volar/source-map': https://registry.npmmirror.com/@volar/source-map/-/source-map-0.33.9.tgz - '@vue/compiler-core': https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz - '@vue/compiler-dom': https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz - '@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.2.33.tgz - - '@volar/vue-typescript@https://registry.npmmirror.com/@volar/vue-typescript/-/vue-typescript-0.33.9.tgz': - dependencies: - '@volar/code-gen': https://registry.npmmirror.com/@volar/code-gen/-/code-gen-0.33.9.tgz - '@volar/pug-language-service': https://registry.npmmirror.com/@volar/pug-language-service/-/pug-language-service-0.33.9.tgz - '@volar/source-map': https://registry.npmmirror.com/@volar/source-map/-/source-map-0.33.9.tgz - '@volar/vue-code-gen': https://registry.npmmirror.com/@volar/vue-code-gen/-/vue-code-gen-0.33.9.tgz - '@vue/compiler-sfc': https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.2.33.tgz - '@vue/reactivity': https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.3.4.tgz - - '@vue/babel-helper-vue-transform-on@https://registry.npmmirror.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.1.5.tgz': {} - - '@vue/babel-plugin-jsx@https://registry.npmmirror.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.1.5.tgz(@babel/core@7.22.10)': - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/helper-module-imports': https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz - '@babel/plugin-syntax-jsx': https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz(@babel/core@7.22.10) - '@babel/template': https://registry.npmmirror.com/@babel/template/-/template-7.22.5.tgz - '@babel/traverse': https://registry.npmmirror.com/@babel/traverse/-/traverse-7.22.10.tgz - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - '@vue/babel-helper-vue-transform-on': https://registry.npmmirror.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.1.5.tgz - camelcase: https://registry.npmmirror.com/camelcase/-/camelcase-6.3.0.tgz - html-tags: https://registry.npmmirror.com/html-tags/-/html-tags-3.3.1.tgz - svg-tags: https://registry.npmmirror.com/svg-tags/-/svg-tags-1.0.0.tgz - transitivePeerDependencies: - - supports-color - - '@vue/compiler-core@https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.2.33.tgz': - dependencies: - '@babel/parser': https://registry.npmmirror.com/@babel/parser/-/parser-7.22.10.tgz - '@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.2.33.tgz - estree-walker: https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz - source-map: https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz - - '@vue/compiler-core@https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz': - dependencies: - '@babel/parser': https://registry.npmmirror.com/@babel/parser/-/parser-7.22.10.tgz - '@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz - estree-walker: https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz - source-map-js: https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz - - '@vue/compiler-dom@https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.2.33.tgz': - dependencies: - '@vue/compiler-core': https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.2.33.tgz - '@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.2.33.tgz - - '@vue/compiler-dom@https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz': - dependencies: - '@vue/compiler-core': https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz - '@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz - - '@vue/compiler-sfc@https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.2.33.tgz': - dependencies: - '@babel/parser': https://registry.npmmirror.com/@babel/parser/-/parser-7.22.10.tgz - '@vue/compiler-core': https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.2.33.tgz - '@vue/compiler-dom': https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.2.33.tgz - '@vue/compiler-ssr': https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.2.33.tgz - '@vue/reactivity-transform': https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.2.33.tgz - '@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.2.33.tgz - estree-walker: https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz - magic-string: https://registry.npmmirror.com/magic-string/-/magic-string-0.25.9.tgz - postcss: https://registry.npmmirror.com/postcss/-/postcss-8.4.12.tgz - source-map: https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz - - '@vue/compiler-sfc@https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz': - dependencies: - '@babel/parser': https://registry.npmmirror.com/@babel/parser/-/parser-7.22.10.tgz - '@vue/compiler-core': https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz - '@vue/compiler-dom': https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz - '@vue/compiler-ssr': https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz - '@vue/reactivity-transform': https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz - '@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz - estree-walker: https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz - magic-string: https://registry.npmmirror.com/magic-string/-/magic-string-0.30.2.tgz - postcss: https://registry.npmmirror.com/postcss/-/postcss-8.4.12.tgz - source-map-js: https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz - - '@vue/compiler-ssr@https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.2.33.tgz': - dependencies: - '@vue/compiler-dom': https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.2.33.tgz - '@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.2.33.tgz - - '@vue/compiler-ssr@https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz': - dependencies: - '@vue/compiler-dom': https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz - '@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz - - '@vue/devtools-api@https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz': {} - - '@vue/reactivity-transform@https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.2.33.tgz': - dependencies: - '@babel/parser': https://registry.npmmirror.com/@babel/parser/-/parser-7.22.10.tgz - '@vue/compiler-core': https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.2.33.tgz - '@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.2.33.tgz - estree-walker: https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz - magic-string: https://registry.npmmirror.com/magic-string/-/magic-string-0.25.9.tgz - - '@vue/reactivity-transform@https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz': - dependencies: - '@babel/parser': https://registry.npmmirror.com/@babel/parser/-/parser-7.22.10.tgz - '@vue/compiler-core': https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz - '@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz - estree-walker: https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz - magic-string: https://registry.npmmirror.com/magic-string/-/magic-string-0.30.2.tgz - - '@vue/reactivity@https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.2.33.tgz': - dependencies: - '@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.2.33.tgz - - '@vue/reactivity@https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.3.4.tgz': - dependencies: - '@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz - - '@vue/runtime-core@https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.2.33.tgz': - dependencies: - '@vue/reactivity': https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.2.33.tgz - '@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.2.33.tgz - - '@vue/runtime-core@https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.3.4.tgz': - dependencies: - '@vue/reactivity': https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.3.4.tgz - '@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz - - '@vue/runtime-dom@https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.2.33.tgz': - dependencies: - '@vue/runtime-core': https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.2.33.tgz - '@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.2.33.tgz - csstype: https://registry.npmmirror.com/csstype/-/csstype-2.6.21.tgz - - '@vue/runtime-dom@https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz': - dependencies: - '@vue/runtime-core': https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.3.4.tgz - '@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz - csstype: https://registry.npmmirror.com/csstype/-/csstype-3.1.2.tgz - - '@vue/server-renderer@https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.2.33.tgz(vue@3.2.33)': - dependencies: - '@vue/compiler-ssr': https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.2.33.tgz - '@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.2.33.tgz - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - - '@vue/server-renderer@https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.3.4.tgz(vue@3.3.4)': - dependencies: - '@vue/compiler-ssr': https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz - '@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz - vue: https://registry.npmmirror.com/vue/-/vue-3.3.4.tgz - - '@vue/shared@https://registry.npmmirror.com/@vue/shared/-/shared-3.2.33.tgz': {} - - '@vue/shared@https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz': {} - - '@vue/test-utils@https://registry.npmmirror.com/@vue/test-utils/-/test-utils-2.0.0-rc.21.tgz(vue@3.2.33)': - dependencies: - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - - '@vueuse/core@https://registry.npmmirror.com/@vueuse/core/-/core-10.3.0.tgz(vue@3.3.4)': - dependencies: - '@types/web-bluetooth': https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.17.tgz - '@vueuse/metadata': https://registry.npmmirror.com/@vueuse/metadata/-/metadata-10.3.0.tgz - '@vueuse/shared': https://registry.npmmirror.com/@vueuse/shared/-/shared-10.3.0.tgz(vue@3.3.4) - vue-demi: https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.5.tgz(vue@3.3.4) - transitivePeerDependencies: - - '@vue/composition-api' - - vue - - '@vueuse/core@https://registry.npmmirror.com/@vueuse/core/-/core-6.9.2.tgz(vue@3.2.33)': - dependencies: - '@vueuse/shared': https://registry.npmmirror.com/@vueuse/shared/-/shared-6.9.2.tgz(vue@3.2.33) - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - vue-demi: https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.5.tgz(vue@3.2.33) - - '@vueuse/core@https://registry.npmmirror.com/@vueuse/core/-/core-8.3.0.tgz(vue@3.2.33)': - dependencies: - '@vueuse/metadata': https://registry.npmmirror.com/@vueuse/metadata/-/metadata-8.3.0.tgz - '@vueuse/shared': https://registry.npmmirror.com/@vueuse/shared/-/shared-8.3.0.tgz(vue@3.2.33) - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - vue-demi: https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.5.tgz(vue@3.2.33) - - '@vueuse/metadata@https://registry.npmmirror.com/@vueuse/metadata/-/metadata-10.3.0.tgz': {} - - '@vueuse/metadata@https://registry.npmmirror.com/@vueuse/metadata/-/metadata-8.3.0.tgz': {} - - '@vueuse/shared@https://registry.npmmirror.com/@vueuse/shared/-/shared-10.3.0.tgz(vue@3.3.4)': - dependencies: - vue-demi: https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.5.tgz(vue@3.3.4) - transitivePeerDependencies: - - '@vue/composition-api' - - vue - - '@vueuse/shared@https://registry.npmmirror.com/@vueuse/shared/-/shared-6.9.2.tgz(vue@3.2.33)': - dependencies: - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - vue-demi: https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.5.tgz(vue@3.2.33) - - '@vueuse/shared@https://registry.npmmirror.com/@vueuse/shared/-/shared-8.3.0.tgz(vue@3.2.33)': - dependencies: - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - vue-demi: https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.5.tgz(vue@3.2.33) - - '@windicss/config@https://registry.npmmirror.com/@windicss/config/-/config-1.8.7.tgz': - dependencies: - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - jiti: https://registry.npmmirror.com/jiti/-/jiti-1.19.1.tgz - windicss: https://registry.npmmirror.com/windicss/-/windicss-3.5.6.tgz - transitivePeerDependencies: - - supports-color - - '@windicss/plugin-utils@https://registry.npmmirror.com/@windicss/plugin-utils/-/plugin-utils-1.8.7.tgz': - dependencies: - '@antfu/utils': https://registry.npmmirror.com/@antfu/utils/-/utils-0.5.2.tgz - '@windicss/config': https://registry.npmmirror.com/@windicss/config/-/config-1.8.7.tgz - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - fast-glob: https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.1.tgz - magic-string: https://registry.npmmirror.com/magic-string/-/magic-string-0.26.7.tgz - micromatch: https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz - windicss: https://registry.npmmirror.com/windicss/-/windicss-3.5.6.tgz - transitivePeerDependencies: - - supports-color - - '@zxcvbn-ts/core@https://registry.npmmirror.com/@zxcvbn-ts/core/-/core-2.0.1.tgz': - dependencies: - fastest-levenshtein: https://registry.npmmirror.com/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz - - JSONStream@https://registry.npmmirror.com/JSONStream/-/JSONStream-1.3.5.tgz: - dependencies: - jsonparse: https://registry.npmmirror.com/jsonparse/-/jsonparse-1.3.1.tgz - through: https://registry.npmmirror.com/through/-/through-2.3.8.tgz - - abab@https://registry.npmmirror.com/abab/-/abab-2.0.6.tgz: {} - - acorn-globals@https://registry.npmmirror.com/acorn-globals/-/acorn-globals-6.0.0.tgz: - dependencies: - acorn: https://registry.npmmirror.com/acorn/-/acorn-7.4.1.tgz - acorn-walk: https://registry.npmmirror.com/acorn-walk/-/acorn-walk-7.2.0.tgz - - acorn-jsx@https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz(acorn@8.10.0): - dependencies: - acorn: https://registry.npmmirror.com/acorn/-/acorn-8.10.0.tgz - - acorn-walk@https://registry.npmmirror.com/acorn-walk/-/acorn-walk-7.2.0.tgz: {} - - acorn-walk@https://registry.npmmirror.com/acorn-walk/-/acorn-walk-8.2.0.tgz: {} - - acorn@https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz: {} - - acorn@https://registry.npmmirror.com/acorn/-/acorn-7.4.1.tgz: {} - - acorn@https://registry.npmmirror.com/acorn/-/acorn-8.10.0.tgz: {} - - add-stream@https://registry.npmmirror.com/add-stream/-/add-stream-1.0.0.tgz: {} - - adler-32@https://registry.npmmirror.com/adler-32/-/adler-32-1.2.0.tgz: - dependencies: - exit-on-epipe: https://registry.npmmirror.com/exit-on-epipe/-/exit-on-epipe-1.0.1.tgz - printj: https://registry.npmmirror.com/printj/-/printj-1.1.2.tgz - - adler-32@https://registry.npmmirror.com/adler-32/-/adler-32-1.3.1.tgz: {} - - agent-base@https://registry.npmmirror.com/agent-base/-/agent-base-6.0.2.tgz: - dependencies: - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - transitivePeerDependencies: - - supports-color - - aggregate-error@https://registry.npmmirror.com/aggregate-error/-/aggregate-error-3.1.0.tgz: - dependencies: - clean-stack: https://registry.npmmirror.com/clean-stack/-/clean-stack-2.2.0.tgz - indent-string: https://registry.npmmirror.com/indent-string/-/indent-string-4.0.0.tgz - - ajv@https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz: - dependencies: - fast-deep-equal: https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz - json-schema-traverse: https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz - require-from-string: https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz - uri-js: https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz - - ajv@https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz: - dependencies: - fast-deep-equal: https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz - fast-json-stable-stringify: https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz - json-schema-traverse: https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz - uri-js: https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz - - ajv@https://registry.npmmirror.com/ajv/-/ajv-8.12.0.tgz: - dependencies: - fast-deep-equal: https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz - json-schema-traverse: https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz - require-from-string: https://registry.npmmirror.com/require-from-string/-/require-from-string-2.0.2.tgz - uri-js: https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz - - ansi-escapes@https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz: {} - - ansi-escapes@https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz: - dependencies: - type-fest: https://registry.npmmirror.com/type-fest/-/type-fest-0.21.3.tgz - - ansi-regex@https://registry.npmmirror.com/ansi-regex/-/ansi-regex-2.1.1.tgz: {} - - ansi-regex@https://registry.npmmirror.com/ansi-regex/-/ansi-regex-3.0.1.tgz: {} - - ansi-regex@https://registry.npmmirror.com/ansi-regex/-/ansi-regex-4.1.1.tgz: {} - - ansi-regex@https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz: {} - - ansi-regex@https://registry.npmmirror.com/ansi-regex/-/ansi-regex-6.0.1.tgz: {} - - ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz: - dependencies: - color-convert: https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz - - ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz: - dependencies: - color-convert: https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz - - ansi-styles@https://registry.npmmirror.com/ansi-styles/-/ansi-styles-2.2.1.tgz: {} - - ansi-styles@https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz: - dependencies: - color-convert: https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz - - ansi-styles@https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz: - dependencies: - color-convert: https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz - - ansi-styles@https://registry.npmmirror.com/ansi-styles/-/ansi-styles-5.2.0.tgz: {} - - ansi-styles@https://registry.npmmirror.com/ansi-styles/-/ansi-styles-6.2.1.tgz: {} - - ant-design-vue@https://registry.npmmirror.com/ant-design-vue/-/ant-design-vue-3.2.12.tgz(vue@3.2.33): - dependencies: - '@ant-design/colors': https://registry.npmmirror.com/@ant-design/colors/-/colors-6.0.0.tgz - '@ant-design/icons-vue': https://registry.npmmirror.com/@ant-design/icons-vue/-/icons-vue-6.1.0.tgz(vue@3.2.33) - '@babel/runtime': https://registry.npmmirror.com/@babel/runtime/-/runtime-7.22.10.tgz - '@ctrl/tinycolor': https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.6.0.tgz - '@simonwep/pickr': https://registry.npmmirror.com/@simonwep/pickr/-/pickr-1.8.2.tgz - array-tree-filter: https://registry.npmmirror.com/array-tree-filter/-/array-tree-filter-2.1.0.tgz - async-validator: https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz - dayjs: https://registry.npmmirror.com/dayjs/-/dayjs-1.11.1.tgz - dom-align: https://registry.npmmirror.com/dom-align/-/dom-align-1.12.2.tgz - dom-scroll-into-view: https://registry.npmmirror.com/dom-scroll-into-view/-/dom-scroll-into-view-2.0.1.tgz - lodash: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz - lodash-es: https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz - resize-observer-polyfill: https://registry.npmmirror.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz - scroll-into-view-if-needed: https://registry.npmmirror.com/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.31.tgz - shallow-equal: https://registry.npmmirror.com/shallow-equal/-/shallow-equal-1.2.1.tgz - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - vue-types: https://registry.npmmirror.com/vue-types/-/vue-types-3.0.2.tgz(vue@3.2.33) - warning: https://registry.npmmirror.com/warning/-/warning-4.0.3.tgz - - anymatch@https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz: - dependencies: - normalize-path: https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz - picomatch: https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz - - arch@https://registry.npmjs.org/arch/-/arch-2.2.0.tgz: {} - - archive-type@https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz: - dependencies: - file-type: https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz - - arg@https://registry.npmmirror.com/arg/-/arg-4.1.3.tgz: {} - - argparse@https://registry.npmmirror.com/argparse/-/argparse-1.0.10.tgz: - dependencies: - sprintf-js: https://registry.npmmirror.com/sprintf-js/-/sprintf-js-1.0.3.tgz - - argparse@https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz: {} - - arr-diff@https://registry.npmmirror.com/arr-diff/-/arr-diff-4.0.0.tgz: {} - - arr-flatten@https://registry.npmmirror.com/arr-flatten/-/arr-flatten-1.1.0.tgz: {} - - arr-union@https://registry.npmmirror.com/arr-union/-/arr-union-3.1.0.tgz: {} - - array-buffer-byte-length@https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz: - dependencies: - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - is-array-buffer: https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz - - array-buffer-byte-length@https://registry.npmmirror.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - is-array-buffer: https://registry.npmmirror.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz - - array-differ@https://registry.npmmirror.com/array-differ/-/array-differ-3.0.0.tgz: {} - - array-find-index@https://registry.npmmirror.com/array-find-index/-/array-find-index-1.0.2.tgz: {} - - array-ify@https://registry.npmmirror.com/array-ify/-/array-ify-1.0.0.tgz: {} - - array-tree-filter@https://registry.npmmirror.com/array-tree-filter/-/array-tree-filter-2.1.0.tgz: {} - - array-union@https://registry.npmmirror.com/array-union/-/array-union-2.1.0.tgz: {} - - array-unique@https://registry.npmmirror.com/array-unique/-/array-unique-0.3.2.tgz: {} - - arraybuffer.prototype.slice@https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz: - dependencies: - array-buffer-byte-length: https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - define-properties: https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz - get-intrinsic: https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz - is-array-buffer: https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz - is-shared-array-buffer: https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz - - arraybuffer.prototype.slice@https://registry.npmmirror.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz: - dependencies: - array-buffer-byte-length: https://registry.npmmirror.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - define-properties: https://registry.npmmirror.com/define-properties/-/define-properties-1.2.0.tgz - get-intrinsic: https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz - is-array-buffer: https://registry.npmmirror.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz - is-shared-array-buffer: https://registry.npmmirror.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz - - arrify@https://registry.npmmirror.com/arrify/-/arrify-1.0.1.tgz: {} - - arrify@https://registry.npmmirror.com/arrify/-/arrify-2.0.1.tgz: {} - - assign-symbols@https://registry.npmmirror.com/assign-symbols/-/assign-symbols-1.0.0.tgz: {} - - astral-regex@https://registry.npmmirror.com/astral-regex/-/astral-regex-2.0.0.tgz: {} - - async-validator@https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz: {} - - async@https://registry.npmjs.org/async/-/async-3.2.4.tgz: {} - - async@https://registry.npmmirror.com/async/-/async-2.6.4.tgz: - dependencies: - lodash: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz - - async@https://registry.npmmirror.com/async/-/async-3.2.4.tgz: {} - - asynckit@https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz: {} - - at-least-node@https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz: {} - - atob@https://registry.npmmirror.com/atob/-/atob-2.1.2.tgz: {} - - autoprefixer@https://registry.npmmirror.com/autoprefixer/-/autoprefixer-10.4.4.tgz(postcss@8.4.12): - dependencies: - browserslist: https://registry.npmmirror.com/browserslist/-/browserslist-4.21.10.tgz - caniuse-lite: https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001520.tgz - fraction.js: https://registry.npmmirror.com/fraction.js/-/fraction.js-4.2.0.tgz - normalize-range: https://registry.npmmirror.com/normalize-range/-/normalize-range-0.1.2.tgz - picocolors: https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz - postcss: https://registry.npmmirror.com/postcss/-/postcss-8.4.12.tgz - postcss-value-parser: https://registry.npmmirror.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz - - available-typed-arrays@https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz: {} - - available-typed-arrays@https://registry.npmmirror.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz: {} - - axios@https://registry.npmmirror.com/axios/-/axios-0.21.4.tgz(debug@4.3.4): - dependencies: - follow-redirects: https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.2.tgz(debug@4.3.4) - transitivePeerDependencies: - - debug - - axios@https://registry.npmmirror.com/axios/-/axios-0.24.0.tgz: - dependencies: - follow-redirects: https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.2.tgz(debug@4.3.4) - transitivePeerDependencies: - - debug - - axios@https://registry.npmmirror.com/axios/-/axios-0.26.1.tgz(debug@4.3.4): - dependencies: - follow-redirects: https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.2.tgz(debug@4.3.4) - transitivePeerDependencies: - - debug - - babel-jest@https://registry.npmmirror.com/babel-jest/-/babel-jest-27.5.1.tgz(@babel/core@7.22.10): - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@jest/transform': https://registry.npmmirror.com/@jest/transform/-/transform-27.5.1.tgz - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - '@types/babel__core': https://registry.npmmirror.com/@types/babel__core/-/babel__core-7.20.1.tgz - babel-plugin-istanbul: https://registry.npmmirror.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz - babel-preset-jest: https://registry.npmmirror.com/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz(@babel/core@7.22.10) - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - slash: https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz - transitivePeerDependencies: - - supports-color - - babel-plugin-istanbul@https://registry.npmmirror.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz: - dependencies: - '@babel/helper-plugin-utils': https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz - '@istanbuljs/load-nyc-config': https://registry.npmmirror.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz - '@istanbuljs/schema': https://registry.npmmirror.com/@istanbuljs/schema/-/schema-0.1.3.tgz - istanbul-lib-instrument: https://registry.npmmirror.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz - test-exclude: https://registry.npmmirror.com/test-exclude/-/test-exclude-6.0.0.tgz - transitivePeerDependencies: - - supports-color - - babel-plugin-jest-hoist@https://registry.npmmirror.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz: - dependencies: - '@babel/template': https://registry.npmmirror.com/@babel/template/-/template-7.22.5.tgz - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - '@types/babel__core': https://registry.npmmirror.com/@types/babel__core/-/babel__core-7.20.1.tgz - '@types/babel__traverse': https://registry.npmmirror.com/@types/babel__traverse/-/babel__traverse-7.20.1.tgz - - babel-plugin-polyfill-corejs2@https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz(@babel/core@7.22.10): - dependencies: - '@babel/compat-data': https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-define-polyfill-provider': https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz(@babel/core@7.22.10) - semver: https://registry.npmjs.org/semver/-/semver-6.3.1.tgz - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-corejs3@https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.3.tgz(@babel/core@7.22.10): - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-define-polyfill-provider': https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz(@babel/core@7.22.10) - core-js-compat: https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.32.0.tgz - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-regenerator@https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz(@babel/core@7.22.10): - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/helper-define-polyfill-provider': https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz(@babel/core@7.22.10) - transitivePeerDependencies: - - supports-color - - babel-plugin-transform-runtime@https://registry.npmmirror.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz: - dependencies: - babel-runtime: https://registry.npmmirror.com/babel-runtime/-/babel-runtime-6.26.0.tgz - - babel-preset-current-node-syntax@https://registry.npmmirror.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz(@babel/core@7.22.10): - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/plugin-syntax-async-generators': https://registry.npmmirror.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-bigint': https://registry.npmmirror.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-class-properties': https://registry.npmmirror.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-import-meta': https://registry.npmmirror.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-json-strings': https://registry.npmmirror.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-logical-assignment-operators': https://registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-nullish-coalescing-operator': https://registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-numeric-separator': https://registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-object-rest-spread': https://registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-optional-catch-binding': https://registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-optional-chaining': https://registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz(@babel/core@7.22.10) - '@babel/plugin-syntax-top-level-await': https://registry.npmmirror.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz(@babel/core@7.22.10) - - babel-preset-jest@https://registry.npmmirror.com/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz(@babel/core@7.22.10): - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - babel-plugin-jest-hoist: https://registry.npmmirror.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz - babel-preset-current-node-syntax: https://registry.npmmirror.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz(@babel/core@7.22.10) - - babel-runtime@https://registry.npmmirror.com/babel-runtime/-/babel-runtime-6.26.0.tgz: - dependencies: - core-js: https://registry.npmmirror.com/core-js/-/core-js-2.6.12.tgz - regenerator-runtime: https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz - - balanced-match@https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz: {} - - balanced-match@https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz: {} - - balanced-match@https://registry.npmmirror.com/balanced-match/-/balanced-match-2.0.0.tgz: {} - - base64-arraybuffer@https://registry.npmmirror.com/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz: {} - - base64-js@https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz: {} - - base64-js@https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz: {} - - base@https://registry.npmmirror.com/base/-/base-0.11.2.tgz: - dependencies: - cache-base: https://registry.npmmirror.com/cache-base/-/cache-base-1.0.1.tgz - class-utils: https://registry.npmmirror.com/class-utils/-/class-utils-0.3.6.tgz - component-emitter: https://registry.npmmirror.com/component-emitter/-/component-emitter-1.3.0.tgz - define-property: https://registry.npmmirror.com/define-property/-/define-property-1.0.0.tgz - isobject: https://registry.npmmirror.com/isobject/-/isobject-3.0.1.tgz - mixin-deep: https://registry.npmmirror.com/mixin-deep/-/mixin-deep-1.3.2.tgz - pascalcase: https://registry.npmmirror.com/pascalcase/-/pascalcase-0.1.1.tgz - - basic-auth@https://registry.npmmirror.com/basic-auth/-/basic-auth-2.0.1.tgz: - dependencies: - safe-buffer: https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz - - batch-processor@https://registry.npmmirror.com/batch-processor/-/batch-processor-1.0.0.tgz: {} - - before-after-hook@https://registry.npmmirror.com/before-after-hook/-/before-after-hook-2.2.3.tgz: {} - - big.js@https://registry.npmmirror.com/big.js/-/big.js-5.2.2.tgz: {} - - bin-build@https://registry.npmmirror.com/bin-build/-/bin-build-3.0.0.tgz: - dependencies: - decompress: https://registry.npmmirror.com/decompress/-/decompress-4.2.1.tgz - download: https://registry.npmmirror.com/download/-/download-6.2.5.tgz - execa: https://registry.npmmirror.com/execa/-/execa-0.7.0.tgz - p-map-series: https://registry.npmmirror.com/p-map-series/-/p-map-series-1.0.0.tgz - tempfile: https://registry.npmmirror.com/tempfile/-/tempfile-2.0.0.tgz - - bin-check@https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz: - dependencies: - execa: https://registry.npmjs.org/execa/-/execa-0.7.0.tgz - executable: https://registry.npmjs.org/executable/-/executable-4.1.1.tgz - - bin-version-check@https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz: - dependencies: - bin-version: https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz - semver: https://registry.npmjs.org/semver/-/semver-5.7.2.tgz - semver-truncate: https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz - - bin-version@https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz: - dependencies: - execa: https://registry.npmjs.org/execa/-/execa-1.0.0.tgz - find-versions: https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz - - bin-wrapper-china@https://registry.npmjs.org/bin-wrapper-china/-/bin-wrapper-china-0.1.0.tgz: - dependencies: - bin-check: https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz - bin-version-check: https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz - binary-mirror-config: https://registry.npmjs.org/binary-mirror-config/-/binary-mirror-config-1.41.0.tgz - download: https://registry.npmjs.org/download/-/download-7.1.0.tgz - import-lazy: https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz - os-filter-obj: https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz - pify: https://registry.npmjs.org/pify/-/pify-4.0.1.tgz - - binary-extensions@https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz: {} - - binary-mirror-config@https://registry.npmjs.org/binary-mirror-config/-/binary-mirror-config-1.41.0.tgz: {} - - bl@https://registry.npmjs.org/bl/-/bl-1.2.3.tgz: - dependencies: - readable-stream: https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz - safe-buffer: https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz - - bl@https://registry.npmmirror.com/bl/-/bl-1.2.3.tgz: - dependencies: - readable-stream: https://registry.npmmirror.com/readable-stream/-/readable-stream-2.3.8.tgz - safe-buffer: https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz - - bl@https://registry.npmmirror.com/bl/-/bl-4.1.0.tgz: - dependencies: - buffer: https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz - inherits: https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz - readable-stream: https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz - - bluebird@https://registry.npmmirror.com/bluebird/-/bluebird-3.7.2.tgz: {} - - boolbase@https://registry.npmmirror.com/boolbase/-/boolbase-1.0.0.tgz: {} - - brace-expansion@https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz: - dependencies: - balanced-match: https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz - concat-map: https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz - - brace-expansion@https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz: - dependencies: - balanced-match: https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz - - brace-expansion@https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz: - dependencies: - balanced-match: https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz - concat-map: https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz - - brace-expansion@https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz: - dependencies: - balanced-match: https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz - - braces@https://registry.npmmirror.com/braces/-/braces-2.3.2.tgz: - dependencies: - arr-flatten: https://registry.npmmirror.com/arr-flatten/-/arr-flatten-1.1.0.tgz - array-unique: https://registry.npmmirror.com/array-unique/-/array-unique-0.3.2.tgz - extend-shallow: https://registry.npmmirror.com/extend-shallow/-/extend-shallow-2.0.1.tgz - fill-range: https://registry.npmmirror.com/fill-range/-/fill-range-4.0.0.tgz - isobject: https://registry.npmmirror.com/isobject/-/isobject-3.0.1.tgz - repeat-element: https://registry.npmmirror.com/repeat-element/-/repeat-element-1.1.4.tgz - snapdragon: https://registry.npmmirror.com/snapdragon/-/snapdragon-0.8.2.tgz - snapdragon-node: https://registry.npmmirror.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz - split-string: https://registry.npmmirror.com/split-string/-/split-string-3.1.0.tgz - to-regex: https://registry.npmmirror.com/to-regex/-/to-regex-3.0.2.tgz - transitivePeerDependencies: - - supports-color - - braces@https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz: - dependencies: - fill-range: https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz - - browser-process-hrtime@https://registry.npmmirror.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz: {} - - browserslist@https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz: - dependencies: - caniuse-lite: https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001520.tgz - electron-to-chromium: https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.490.tgz - node-releases: https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz - update-browserslist-db: https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz(browserslist@4.21.10) - - browserslist@https://registry.npmmirror.com/browserslist/-/browserslist-4.21.10.tgz: - dependencies: - caniuse-lite: https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001520.tgz - electron-to-chromium: https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.490.tgz - node-releases: https://registry.npmmirror.com/node-releases/-/node-releases-2.0.13.tgz - update-browserslist-db: https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz(browserslist@4.21.10) - - bs-logger@https://registry.npmmirror.com/bs-logger/-/bs-logger-0.2.6.tgz: - dependencies: - fast-json-stable-stringify: https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz - - bser@https://registry.npmmirror.com/bser/-/bser-2.1.1.tgz: - dependencies: - node-int64: https://registry.npmmirror.com/node-int64/-/node-int64-0.4.0.tgz - - btoa@https://registry.npmmirror.com/btoa/-/btoa-1.2.1.tgz: {} - - buffer-alloc-unsafe@https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz: {} - - buffer-alloc-unsafe@https://registry.npmmirror.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz: {} - - buffer-alloc@https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz: - dependencies: - buffer-alloc-unsafe: https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz - buffer-fill: https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz - - buffer-alloc@https://registry.npmmirror.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz: - dependencies: - buffer-alloc-unsafe: https://registry.npmmirror.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz - buffer-fill: https://registry.npmmirror.com/buffer-fill/-/buffer-fill-1.0.0.tgz - - buffer-crc32@https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz: {} - - buffer-crc32@https://registry.npmmirror.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz: {} - - buffer-fill@https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz: {} - - buffer-fill@https://registry.npmmirror.com/buffer-fill/-/buffer-fill-1.0.0.tgz: {} - - buffer-from@https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz: {} - - buffer-from@https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz: {} - - buffer@https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz: - dependencies: - base64-js: https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz - ieee754: https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz - - buffer@https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz: - dependencies: - base64-js: https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz - ieee754: https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz - - builtin-modules@https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz: {} - - builtin-modules@https://registry.npmmirror.com/builtin-modules/-/builtin-modules-3.3.0.tgz: {} - - builtins@https://registry.npmmirror.com/builtins/-/builtins-4.1.0.tgz: - dependencies: - semver: https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz - - cache-base@https://registry.npmmirror.com/cache-base/-/cache-base-1.0.1.tgz: - dependencies: - collection-visit: https://registry.npmmirror.com/collection-visit/-/collection-visit-1.0.0.tgz - component-emitter: https://registry.npmmirror.com/component-emitter/-/component-emitter-1.3.0.tgz - get-value: https://registry.npmmirror.com/get-value/-/get-value-2.0.6.tgz - has-value: https://registry.npmmirror.com/has-value/-/has-value-1.0.0.tgz - isobject: https://registry.npmmirror.com/isobject/-/isobject-3.0.1.tgz - set-value: https://registry.npmmirror.com/set-value/-/set-value-2.0.1.tgz - to-object-path: https://registry.npmmirror.com/to-object-path/-/to-object-path-0.3.0.tgz - union-value: https://registry.npmmirror.com/union-value/-/union-value-1.0.1.tgz - unset-value: https://registry.npmmirror.com/unset-value/-/unset-value-1.0.0.tgz - - cacheable-request@https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz: - dependencies: - clone-response: https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz - get-stream: https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz - http-cache-semantics: https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz - keyv: https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz - lowercase-keys: https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz - normalize-url: https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz - responselike: https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz - - cachedir@https://registry.npmmirror.com/cachedir/-/cachedir-2.2.0.tgz: {} - - call-bind@https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz: - dependencies: - function-bind: https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz - get-intrinsic: https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz - - call-bind@https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz: - dependencies: - function-bind: https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz - get-intrinsic: https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz - - callsites@https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz: {} - - camel-case@https://registry.npmmirror.com/camel-case/-/camel-case-4.1.2.tgz: - dependencies: - pascal-case: https://registry.npmmirror.com/pascal-case/-/pascal-case-3.1.2.tgz - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - - camelcase-keys@https://registry.npmmirror.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz: - dependencies: - camelcase: https://registry.npmmirror.com/camelcase/-/camelcase-2.1.1.tgz - map-obj: https://registry.npmmirror.com/map-obj/-/map-obj-1.0.1.tgz - - camelcase-keys@https://registry.npmmirror.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz: - dependencies: - camelcase: https://registry.npmmirror.com/camelcase/-/camelcase-5.3.1.tgz - map-obj: https://registry.npmmirror.com/map-obj/-/map-obj-4.3.0.tgz - quick-lru: https://registry.npmmirror.com/quick-lru/-/quick-lru-4.0.1.tgz - - camelcase@https://registry.npmmirror.com/camelcase/-/camelcase-2.1.1.tgz: {} - - camelcase@https://registry.npmmirror.com/camelcase/-/camelcase-5.3.1.tgz: {} - - camelcase@https://registry.npmmirror.com/camelcase/-/camelcase-6.3.0.tgz: {} - - caniuse-lite@https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001520.tgz: {} - - caniuse-lite@https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001520.tgz: {} - - canvg@https://registry.npmjs.org/canvg/-/canvg-3.0.10.tgz: - dependencies: - '@babel/runtime': https://registry.npmmirror.com/@babel/runtime/-/runtime-7.22.10.tgz - '@types/raf': https://registry.npmmirror.com/@types/raf/-/raf-3.4.0.tgz - core-js: https://registry.npmjs.org/core-js/-/core-js-3.32.0.tgz - raf: https://registry.npmmirror.com/raf/-/raf-3.4.1.tgz - regenerator-runtime: https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz - rgbcolor: https://registry.npmmirror.com/rgbcolor/-/rgbcolor-1.0.1.tgz - stackblur-canvas: https://registry.npmmirror.com/stackblur-canvas/-/stackblur-canvas-2.6.0.tgz - svg-pathdata: https://registry.npmmirror.com/svg-pathdata/-/svg-pathdata-6.0.3.tgz - optional: true - - capital-case@https://registry.npmmirror.com/capital-case/-/capital-case-1.0.4.tgz: - dependencies: - no-case: https://registry.npmmirror.com/no-case/-/no-case-3.0.4.tgz - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - upper-case-first: https://registry.npmmirror.com/upper-case-first/-/upper-case-first-2.0.2.tgz - - caw@https://registry.npmjs.org/caw/-/caw-2.0.1.tgz: - dependencies: - get-proxy: https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz - isurl: https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz - tunnel-agent: https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz - url-to-options: https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz - - caw@https://registry.npmmirror.com/caw/-/caw-2.0.1.tgz: - dependencies: - get-proxy: https://registry.npmmirror.com/get-proxy/-/get-proxy-2.1.0.tgz - isurl: https://registry.npmmirror.com/isurl/-/isurl-1.0.0.tgz - tunnel-agent: https://registry.npmmirror.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz - url-to-options: https://registry.npmmirror.com/url-to-options/-/url-to-options-1.0.1.tgz - - cfb@https://registry.npmmirror.com/cfb/-/cfb-1.2.2.tgz: - dependencies: - adler-32: https://registry.npmmirror.com/adler-32/-/adler-32-1.3.1.tgz - crc-32: https://registry.npmmirror.com/crc-32/-/crc-32-1.2.2.tgz - - chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz: - dependencies: - ansi-styles: https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz - escape-string-regexp: https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz - supports-color: https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz - - chalk@https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz: - dependencies: - ansi-styles: https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz - supports-color: https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz - - chalk@https://registry.npmmirror.com/chalk/-/chalk-1.1.3.tgz: - dependencies: - ansi-styles: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-2.2.1.tgz - escape-string-regexp: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz - has-ansi: https://registry.npmmirror.com/has-ansi/-/has-ansi-2.0.0.tgz - strip-ansi: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-3.0.1.tgz - supports-color: https://registry.npmmirror.com/supports-color/-/supports-color-2.0.0.tgz - - chalk@https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz: - dependencies: - ansi-styles: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz - escape-string-regexp: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz - supports-color: https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz - - chalk@https://registry.npmmirror.com/chalk/-/chalk-3.0.0.tgz: - dependencies: - ansi-styles: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz - supports-color: https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz - - chalk@https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz: - dependencies: - ansi-styles: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz - supports-color: https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz - - change-case@https://registry.npmmirror.com/change-case/-/change-case-4.1.2.tgz: - dependencies: - camel-case: https://registry.npmmirror.com/camel-case/-/camel-case-4.1.2.tgz - capital-case: https://registry.npmmirror.com/capital-case/-/capital-case-1.0.4.tgz - constant-case: https://registry.npmmirror.com/constant-case/-/constant-case-3.0.4.tgz - dot-case: https://registry.npmmirror.com/dot-case/-/dot-case-3.0.4.tgz - header-case: https://registry.npmmirror.com/header-case/-/header-case-2.0.4.tgz - no-case: https://registry.npmmirror.com/no-case/-/no-case-3.0.4.tgz - param-case: https://registry.npmmirror.com/param-case/-/param-case-3.0.4.tgz - pascal-case: https://registry.npmmirror.com/pascal-case/-/pascal-case-3.1.2.tgz - path-case: https://registry.npmmirror.com/path-case/-/path-case-3.0.4.tgz - sentence-case: https://registry.npmmirror.com/sentence-case/-/sentence-case-3.0.4.tgz - snake-case: https://registry.npmmirror.com/snake-case/-/snake-case-3.0.4.tgz - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - - char-regex@https://registry.npmmirror.com/char-regex/-/char-regex-1.0.2.tgz: {} - - character-parser@https://registry.npmmirror.com/character-parser/-/character-parser-2.2.0.tgz: - dependencies: - is-regex: https://registry.npmmirror.com/is-regex/-/is-regex-1.1.4.tgz - - chardet@https://registry.npmmirror.com/chardet/-/chardet-0.7.0.tgz: {} - - charenc@https://registry.npmmirror.com/charenc/-/charenc-0.0.2.tgz: {} - - china-area-data@https://registry.npmmirror.com/china-area-data/-/china-area-data-5.0.1.tgz: {} - - chokidar@https://registry.npmmirror.com/chokidar/-/chokidar-3.5.3.tgz: - dependencies: - anymatch: https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz - braces: https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz - glob-parent: https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz - is-binary-path: https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz - is-glob: https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz - normalize-path: https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz - readdirp: https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz - optionalDependencies: - fsevents: https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz - - ci-info@https://registry.npmmirror.com/ci-info/-/ci-info-3.8.0.tgz: {} - - cjs-module-lexer@https://registry.npmmirror.com/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz: {} - - class-utils@https://registry.npmmirror.com/class-utils/-/class-utils-0.3.6.tgz: - dependencies: - arr-union: https://registry.npmmirror.com/arr-union/-/arr-union-3.1.0.tgz - define-property: https://registry.npmmirror.com/define-property/-/define-property-0.2.5.tgz - isobject: https://registry.npmmirror.com/isobject/-/isobject-3.0.1.tgz - static-extend: https://registry.npmmirror.com/static-extend/-/static-extend-0.1.2.tgz - - claygl@https://registry.npmmirror.com/claygl/-/claygl-1.3.0.tgz: {} - - clean-css@https://registry.npmmirror.com/clean-css/-/clean-css-5.3.2.tgz: - dependencies: - source-map: https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz - - clean-stack@https://registry.npmmirror.com/clean-stack/-/clean-stack-2.2.0.tgz: {} - - cli-cursor@https://registry.npmmirror.com/cli-cursor/-/cli-cursor-2.1.0.tgz: - dependencies: - restore-cursor: https://registry.npmmirror.com/restore-cursor/-/restore-cursor-2.0.0.tgz - - cli-cursor@https://registry.npmmirror.com/cli-cursor/-/cli-cursor-3.1.0.tgz: - dependencies: - restore-cursor: https://registry.npmmirror.com/restore-cursor/-/restore-cursor-3.1.0.tgz - - cli-spinners@https://registry.npmmirror.com/cli-spinners/-/cli-spinners-2.9.0.tgz: {} - - cli-truncate@https://registry.npmmirror.com/cli-truncate/-/cli-truncate-2.1.0.tgz: - dependencies: - slice-ansi: https://registry.npmmirror.com/slice-ansi/-/slice-ansi-3.0.0.tgz - string-width: https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz - - cli-truncate@https://registry.npmmirror.com/cli-truncate/-/cli-truncate-3.1.0.tgz: - dependencies: - slice-ansi: https://registry.npmmirror.com/slice-ansi/-/slice-ansi-5.0.0.tgz - string-width: https://registry.npmmirror.com/string-width/-/string-width-5.1.2.tgz - - cli-width@https://registry.npmmirror.com/cli-width/-/cli-width-2.2.1.tgz: {} - - cli-width@https://registry.npmmirror.com/cli-width/-/cli-width-3.0.0.tgz: {} - - clipboard@https://registry.npmmirror.com/clipboard/-/clipboard-2.0.8.tgz: - dependencies: - good-listener: https://registry.npmmirror.com/good-listener/-/good-listener-1.2.2.tgz - select: https://registry.npmmirror.com/select/-/select-1.1.2.tgz - tiny-emitter: https://registry.npmmirror.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz - - cliui@https://registry.npmmirror.com/cliui/-/cliui-6.0.0.tgz: - dependencies: - string-width: https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz - strip-ansi: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz - wrap-ansi: https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz - - cliui@https://registry.npmmirror.com/cliui/-/cliui-7.0.4.tgz: - dependencies: - string-width: https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz - strip-ansi: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz - wrap-ansi: https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz - - cliui@https://registry.npmmirror.com/cliui/-/cliui-8.0.1.tgz: - dependencies: - string-width: https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz - strip-ansi: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz - wrap-ansi: https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz - - clone-regexp@https://registry.npmmirror.com/clone-regexp/-/clone-regexp-2.2.0.tgz: - dependencies: - is-regexp: https://registry.npmmirror.com/is-regexp/-/is-regexp-2.1.0.tgz - - clone-response@https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz: - dependencies: - mimic-response: https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz - - clone@https://registry.npmmirror.com/clone/-/clone-1.0.4.tgz: {} - - clone@https://registry.npmmirror.com/clone/-/clone-2.1.2.tgz: {} - - co@https://registry.npmmirror.com/co/-/co-4.6.0.tgz: {} - - codemirror@https://registry.npmmirror.com/codemirror/-/codemirror-5.65.3.tgz: {} - - codepage@https://registry.npmmirror.com/codepage/-/codepage-1.15.0.tgz: {} - - collect-v8-coverage@https://registry.npmmirror.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz: {} - - collection-visit@https://registry.npmmirror.com/collection-visit/-/collection-visit-1.0.0.tgz: - dependencies: - map-visit: https://registry.npmmirror.com/map-visit/-/map-visit-1.0.0.tgz - object-visit: https://registry.npmmirror.com/object-visit/-/object-visit-1.0.1.tgz - - color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz: - dependencies: - color-name: https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz - - color-convert@https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz: - dependencies: - color-name: https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz - - color-convert@https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz: - dependencies: - color-name: https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz - - color-convert@https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz: - dependencies: - color-name: https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz - - color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz: {} - - color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz: {} - - color-name@https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz: {} - - color-name@https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz: {} - - colord@https://registry.npmmirror.com/colord/-/colord-2.9.3.tgz: {} - - colorette@https://registry.npmmirror.com/colorette/-/colorette-2.0.20.tgz: {} - - colors@https://registry.npmmirror.com/colors/-/colors-1.4.0.tgz: {} - - combined-stream@https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz: - dependencies: - delayed-stream: https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz - - commander@https://registry.npmjs.org/commander/-/commander-2.20.3.tgz: {} - - commander@https://registry.npmmirror.com/commander/-/commander-11.0.0.tgz: {} - - commander@https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz: {} - - commander@https://registry.npmmirror.com/commander/-/commander-7.2.0.tgz: {} - - commander@https://registry.npmmirror.com/commander/-/commander-8.3.0.tgz: {} - - commander@https://registry.npmmirror.com/commander/-/commander-9.5.0.tgz: {} - - commitizen@https://registry.npmmirror.com/commitizen/-/commitizen-4.2.4.tgz: - dependencies: - cachedir: https://registry.npmmirror.com/cachedir/-/cachedir-2.2.0.tgz - cz-conventional-changelog: https://registry.npmmirror.com/cz-conventional-changelog/-/cz-conventional-changelog-3.2.0.tgz - dedent: https://registry.npmmirror.com/dedent/-/dedent-0.7.0.tgz - detect-indent: https://registry.npmmirror.com/detect-indent/-/detect-indent-6.0.0.tgz - find-node-modules: https://registry.npmmirror.com/find-node-modules/-/find-node-modules-2.1.3.tgz - find-root: https://registry.npmmirror.com/find-root/-/find-root-1.1.0.tgz - fs-extra: https://registry.npmmirror.com/fs-extra/-/fs-extra-8.1.0.tgz - glob: https://registry.npmmirror.com/glob/-/glob-7.1.4.tgz - inquirer: https://registry.npmmirror.com/inquirer/-/inquirer-6.5.2.tgz - is-utf8: https://registry.npmmirror.com/is-utf8/-/is-utf8-0.2.1.tgz - lodash: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz - minimist: https://registry.npmmirror.com/minimist/-/minimist-1.2.5.tgz - strip-bom: https://registry.npmmirror.com/strip-bom/-/strip-bom-4.0.0.tgz - strip-json-comments: https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.0.1.tgz - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - - common-tags@https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz: {} - - compare-func@https://registry.npmmirror.com/compare-func/-/compare-func-2.0.0.tgz: - dependencies: - array-ify: https://registry.npmmirror.com/array-ify/-/array-ify-1.0.0.tgz - dot-prop: https://registry.npmmirror.com/dot-prop/-/dot-prop-5.3.0.tgz - - component-emitter@https://registry.npmmirror.com/component-emitter/-/component-emitter-1.3.0.tgz: {} - - compute-scroll-into-view@https://registry.npmmirror.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.20.tgz: {} - - concat-map@https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz: {} - - concat-map@https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz: {} - - config-chain@https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz: - dependencies: - ini: https://registry.npmjs.org/ini/-/ini-1.3.8.tgz - proto-list: https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz - - config-chain@https://registry.npmmirror.com/config-chain/-/config-chain-1.1.13.tgz: - dependencies: - ini: https://registry.npmmirror.com/ini/-/ini-1.3.8.tgz - proto-list: https://registry.npmmirror.com/proto-list/-/proto-list-1.2.4.tgz - - connect-history-api-fallback@https://registry.npmmirror.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz: {} - - connect@https://registry.npmmirror.com/connect/-/connect-3.7.0.tgz: - dependencies: - debug: https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz - finalhandler: https://registry.npmmirror.com/finalhandler/-/finalhandler-1.1.2.tgz - parseurl: https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz - utils-merge: https://registry.npmmirror.com/utils-merge/-/utils-merge-1.0.1.tgz - transitivePeerDependencies: - - supports-color - - consola@https://registry.npmmirror.com/consola/-/consola-2.15.3.tgz: {} - - console-stream@https://registry.npmmirror.com/console-stream/-/console-stream-0.1.1.tgz: {} - - console@https://registry.npmmirror.com/console/-/console-0.7.2.tgz: {} - - constant-case@https://registry.npmmirror.com/constant-case/-/constant-case-3.0.4.tgz: - dependencies: - no-case: https://registry.npmmirror.com/no-case/-/no-case-3.0.4.tgz - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - upper-case: https://registry.npmmirror.com/upper-case/-/upper-case-2.0.2.tgz - - content-disposition@https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz: - dependencies: - safe-buffer: https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz - - content-disposition@https://registry.npmmirror.com/content-disposition/-/content-disposition-0.5.4.tgz: - dependencies: - safe-buffer: https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz - - conventional-changelog-angular@https://registry.npmmirror.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz: - dependencies: - compare-func: https://registry.npmmirror.com/compare-func/-/compare-func-2.0.0.tgz - q: https://registry.npmmirror.com/q/-/q-1.5.1.tgz - - conventional-changelog-atom@https://registry.npmmirror.com/conventional-changelog-atom/-/conventional-changelog-atom-2.0.8.tgz: - dependencies: - q: https://registry.npmmirror.com/q/-/q-1.5.1.tgz - - conventional-changelog-cli@https://registry.npmmirror.com/conventional-changelog-cli/-/conventional-changelog-cli-2.2.2.tgz: - dependencies: - add-stream: https://registry.npmmirror.com/add-stream/-/add-stream-1.0.0.tgz - conventional-changelog: https://registry.npmmirror.com/conventional-changelog/-/conventional-changelog-3.1.25.tgz - lodash: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz - meow: https://registry.npmmirror.com/meow/-/meow-8.1.2.tgz - tempfile: https://registry.npmmirror.com/tempfile/-/tempfile-3.0.0.tgz - - conventional-changelog-codemirror@https://registry.npmmirror.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.8.tgz: - dependencies: - q: https://registry.npmmirror.com/q/-/q-1.5.1.tgz - - conventional-changelog-conventionalcommits@https://registry.npmmirror.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.3.tgz: - dependencies: - compare-func: https://registry.npmmirror.com/compare-func/-/compare-func-2.0.0.tgz - lodash: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz - q: https://registry.npmmirror.com/q/-/q-1.5.1.tgz - - conventional-changelog-core@https://registry.npmmirror.com/conventional-changelog-core/-/conventional-changelog-core-4.2.4.tgz: - dependencies: - add-stream: https://registry.npmmirror.com/add-stream/-/add-stream-1.0.0.tgz - conventional-changelog-writer: https://registry.npmmirror.com/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz - conventional-commits-parser: https://registry.npmmirror.com/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz - dateformat: https://registry.npmmirror.com/dateformat/-/dateformat-3.0.3.tgz - get-pkg-repo: https://registry.npmmirror.com/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz - git-raw-commits: https://registry.npmmirror.com/git-raw-commits/-/git-raw-commits-2.0.11.tgz - git-remote-origin-url: https://registry.npmmirror.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz - git-semver-tags: https://registry.npmmirror.com/git-semver-tags/-/git-semver-tags-4.1.1.tgz - lodash: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz - normalize-package-data: https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz - q: https://registry.npmmirror.com/q/-/q-1.5.1.tgz - read-pkg: https://registry.npmmirror.com/read-pkg/-/read-pkg-3.0.0.tgz - read-pkg-up: https://registry.npmmirror.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz - through2: https://registry.npmmirror.com/through2/-/through2-4.0.2.tgz - - conventional-changelog-ember@https://registry.npmmirror.com/conventional-changelog-ember/-/conventional-changelog-ember-2.0.9.tgz: - dependencies: - q: https://registry.npmmirror.com/q/-/q-1.5.1.tgz - - conventional-changelog-eslint@https://registry.npmmirror.com/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.9.tgz: - dependencies: - q: https://registry.npmmirror.com/q/-/q-1.5.1.tgz - - conventional-changelog-express@https://registry.npmmirror.com/conventional-changelog-express/-/conventional-changelog-express-2.0.6.tgz: - dependencies: - q: https://registry.npmmirror.com/q/-/q-1.5.1.tgz - - conventional-changelog-jquery@https://registry.npmmirror.com/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.11.tgz: - dependencies: - q: https://registry.npmmirror.com/q/-/q-1.5.1.tgz - - conventional-changelog-jshint@https://registry.npmmirror.com/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.9.tgz: - dependencies: - compare-func: https://registry.npmmirror.com/compare-func/-/compare-func-2.0.0.tgz - q: https://registry.npmmirror.com/q/-/q-1.5.1.tgz - - conventional-changelog-preset-loader@https://registry.npmmirror.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz: {} - - conventional-changelog-writer@https://registry.npmmirror.com/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz: - dependencies: - conventional-commits-filter: https://registry.npmmirror.com/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz - dateformat: https://registry.npmmirror.com/dateformat/-/dateformat-3.0.3.tgz - handlebars: https://registry.npmmirror.com/handlebars/-/handlebars-4.7.8.tgz - json-stringify-safe: https://registry.npmmirror.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz - lodash: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz - meow: https://registry.npmmirror.com/meow/-/meow-8.1.2.tgz - semver: https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz - split: https://registry.npmmirror.com/split/-/split-1.0.1.tgz - through2: https://registry.npmmirror.com/through2/-/through2-4.0.2.tgz - - conventional-changelog@https://registry.npmmirror.com/conventional-changelog/-/conventional-changelog-3.1.25.tgz: - dependencies: - conventional-changelog-angular: https://registry.npmmirror.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz - conventional-changelog-atom: https://registry.npmmirror.com/conventional-changelog-atom/-/conventional-changelog-atom-2.0.8.tgz - conventional-changelog-codemirror: https://registry.npmmirror.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.8.tgz - conventional-changelog-conventionalcommits: https://registry.npmmirror.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.3.tgz - conventional-changelog-core: https://registry.npmmirror.com/conventional-changelog-core/-/conventional-changelog-core-4.2.4.tgz - conventional-changelog-ember: https://registry.npmmirror.com/conventional-changelog-ember/-/conventional-changelog-ember-2.0.9.tgz - conventional-changelog-eslint: https://registry.npmmirror.com/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.9.tgz - conventional-changelog-express: https://registry.npmmirror.com/conventional-changelog-express/-/conventional-changelog-express-2.0.6.tgz - conventional-changelog-jquery: https://registry.npmmirror.com/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.11.tgz - conventional-changelog-jshint: https://registry.npmmirror.com/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.9.tgz - conventional-changelog-preset-loader: https://registry.npmmirror.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz - - conventional-commit-types@https://registry.npmmirror.com/conventional-commit-types/-/conventional-commit-types-3.0.0.tgz: {} - - conventional-commits-filter@https://registry.npmmirror.com/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz: - dependencies: - lodash.ismatch: https://registry.npmmirror.com/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz - modify-values: https://registry.npmmirror.com/modify-values/-/modify-values-1.0.1.tgz - - conventional-commits-parser@https://registry.npmmirror.com/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz: - dependencies: - JSONStream: https://registry.npmmirror.com/JSONStream/-/JSONStream-1.3.5.tgz - is-text-path: https://registry.npmmirror.com/is-text-path/-/is-text-path-1.0.1.tgz - lodash: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz - meow: https://registry.npmmirror.com/meow/-/meow-8.1.2.tgz - split2: https://registry.npmmirror.com/split2/-/split2-3.2.2.tgz - through2: https://registry.npmmirror.com/through2/-/through2-4.0.2.tgz - - convert-source-map@https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz: {} - - convert-source-map@https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz: {} - - copy-anything@https://registry.npmmirror.com/copy-anything/-/copy-anything-2.0.6.tgz: - dependencies: - is-what: https://registry.npmmirror.com/is-what/-/is-what-3.14.1.tgz - - copy-descriptor@https://registry.npmmirror.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz: {} - - core-js-compat@https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.32.0.tgz: - dependencies: - browserslist: https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz - - core-js@https://registry.npmjs.org/core-js/-/core-js-3.32.0.tgz: - optional: true - - core-js@https://registry.npmmirror.com/core-js/-/core-js-2.6.12.tgz: {} - - core-js@https://registry.npmmirror.com/core-js/-/core-js-3.32.0.tgz: {} - - core-util-is@https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz: {} - - core-util-is@https://registry.npmmirror.com/core-util-is/-/core-util-is-1.0.3.tgz: {} - - cors@https://registry.npmmirror.com/cors/-/cors-2.8.5.tgz: - dependencies: - object-assign: https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz - vary: https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz - - corser@https://registry.npmmirror.com/corser/-/corser-2.0.1.tgz: {} - - cosmiconfig-typescript-loader@https://registry.npmmirror.com/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-2.0.2.tgz(@types/node@17.0.25)(cosmiconfig@7.1.0)(typescript@4.6.3): - dependencies: - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - cosmiconfig: https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz - ts-node: https://registry.npmmirror.com/ts-node/-/ts-node-10.9.1.tgz(@types/node@17.0.25)(typescript@4.6.3) - typescript: https://registry.npmmirror.com/typescript/-/typescript-4.6.3.tgz - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - - cosmiconfig-typescript-loader@https://registry.npmmirror.com/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.4.0.tgz(@types/node@20.4.7)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@4.9.5): - dependencies: - '@types/node': https://registry.npmmirror.com/@types/node/-/node-20.4.7.tgz - cosmiconfig: https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-8.2.0.tgz - ts-node: https://registry.npmmirror.com/ts-node/-/ts-node-10.9.1.tgz(@types/node@20.4.7)(typescript@4.9.5) - typescript: https://registry.npmmirror.com/typescript/-/typescript-4.9.5.tgz - optional: true - - cosmiconfig@https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz: - dependencies: - '@types/parse-json': https://registry.npmmirror.com/@types/parse-json/-/parse-json-4.0.0.tgz - import-fresh: https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz - parse-json: https://registry.npmmirror.com/parse-json/-/parse-json-5.2.0.tgz - path-type: https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz - yaml: https://registry.npmmirror.com/yaml/-/yaml-1.10.2.tgz - - cosmiconfig@https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-8.2.0.tgz: - dependencies: - import-fresh: https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz - js-yaml: https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz - parse-json: https://registry.npmmirror.com/parse-json/-/parse-json-5.2.0.tgz - path-type: https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz - optional: true - - crc-32@https://registry.npmmirror.com/crc-32/-/crc-32-1.2.2.tgz: {} - - create-require@https://registry.npmmirror.com/create-require/-/create-require-1.1.1.tgz: {} - - cron-parser@https://registry.npmmirror.com/cron-parser/-/cron-parser-3.5.0.tgz: - dependencies: - is-nan: https://registry.npmmirror.com/is-nan/-/is-nan-1.3.2.tgz - luxon: https://registry.npmmirror.com/luxon/-/luxon-1.28.1.tgz - - cropperjs@https://registry.npmmirror.com/cropperjs/-/cropperjs-1.5.12.tgz: {} - - cross-env@https://registry.npmmirror.com/cross-env/-/cross-env-7.0.3.tgz: - dependencies: - cross-spawn: https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz - - cross-fetch@https://registry.npmmirror.com/cross-fetch/-/cross-fetch-3.1.8.tgz: - dependencies: - node-fetch: https://registry.npmmirror.com/node-fetch/-/node-fetch-2.6.12.tgz - transitivePeerDependencies: - - encoding - - cross-spawn@https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz: - dependencies: - lru-cache: https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz - shebang-command: https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz - which: https://registry.npmjs.org/which/-/which-1.3.1.tgz - - cross-spawn@https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz: - dependencies: - nice-try: https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz - path-key: https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz - semver: https://registry.npmjs.org/semver/-/semver-5.7.2.tgz - shebang-command: https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz - which: https://registry.npmjs.org/which/-/which-1.3.1.tgz - - cross-spawn@https://registry.npmmirror.com/cross-spawn/-/cross-spawn-5.1.0.tgz: - dependencies: - lru-cache: https://registry.npmmirror.com/lru-cache/-/lru-cache-4.1.5.tgz - shebang-command: https://registry.npmmirror.com/shebang-command/-/shebang-command-1.2.0.tgz - which: https://registry.npmmirror.com/which/-/which-1.3.1.tgz - - cross-spawn@https://registry.npmmirror.com/cross-spawn/-/cross-spawn-6.0.5.tgz: - dependencies: - nice-try: https://registry.npmmirror.com/nice-try/-/nice-try-1.0.5.tgz - path-key: https://registry.npmmirror.com/path-key/-/path-key-2.0.1.tgz - semver: https://registry.npmmirror.com/semver/-/semver-5.7.2.tgz - shebang-command: https://registry.npmmirror.com/shebang-command/-/shebang-command-1.2.0.tgz - which: https://registry.npmmirror.com/which/-/which-1.3.1.tgz - - cross-spawn@https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz: - dependencies: - path-key: https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz - shebang-command: https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz - which: https://registry.npmmirror.com/which/-/which-2.0.2.tgz - - crypt@https://registry.npmmirror.com/crypt/-/crypt-0.0.2.tgz: {} - - crypto-js@https://registry.npmmirror.com/crypto-js/-/crypto-js-4.1.1.tgz: {} - - crypto-random-string@https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz: {} - - css-functions-list@https://registry.npmmirror.com/css-functions-list/-/css-functions-list-3.2.0.tgz: {} - - css-line-break@https://registry.npmmirror.com/css-line-break/-/css-line-break-2.1.0.tgz: - dependencies: - utrie: https://registry.npmmirror.com/utrie/-/utrie-1.0.2.tgz - - css-select@https://registry.npmmirror.com/css-select/-/css-select-4.3.0.tgz: - dependencies: - boolbase: https://registry.npmmirror.com/boolbase/-/boolbase-1.0.0.tgz - css-what: https://registry.npmmirror.com/css-what/-/css-what-6.1.0.tgz - domhandler: https://registry.npmmirror.com/domhandler/-/domhandler-4.3.1.tgz - domutils: https://registry.npmmirror.com/domutils/-/domutils-2.8.0.tgz - nth-check: https://registry.npmmirror.com/nth-check/-/nth-check-2.1.1.tgz - - css-tree@https://registry.npmmirror.com/css-tree/-/css-tree-1.1.3.tgz: - dependencies: - mdn-data: https://registry.npmmirror.com/mdn-data/-/mdn-data-2.0.14.tgz - source-map: https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz - - css-what@https://registry.npmmirror.com/css-what/-/css-what-6.1.0.tgz: {} - - cssesc@https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz: {} - - cssfilter@https://registry.npmmirror.com/cssfilter/-/cssfilter-0.0.10.tgz: {} - - csso@https://registry.npmmirror.com/csso/-/csso-4.2.0.tgz: - dependencies: - css-tree: https://registry.npmmirror.com/css-tree/-/css-tree-1.1.3.tgz - - cssom@https://registry.npmmirror.com/cssom/-/cssom-0.3.8.tgz: {} - - cssom@https://registry.npmmirror.com/cssom/-/cssom-0.4.4.tgz: {} - - cssstyle@https://registry.npmmirror.com/cssstyle/-/cssstyle-2.3.0.tgz: - dependencies: - cssom: https://registry.npmmirror.com/cssom/-/cssom-0.3.8.tgz - - csstype@https://registry.npmmirror.com/csstype/-/csstype-2.6.21.tgz: {} - - csstype@https://registry.npmmirror.com/csstype/-/csstype-3.1.2.tgz: {} - - currently-unhandled@https://registry.npmmirror.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz: - dependencies: - array-find-index: https://registry.npmmirror.com/array-find-index/-/array-find-index-1.0.2.tgz - - cwebp-bin@https://registry.npmmirror.com/cwebp-bin/-/cwebp-bin-6.1.2.tgz: - dependencies: - bin-build: https://registry.npmmirror.com/bin-build/-/bin-build-3.0.0.tgz - bin-wrapper: bin-wrapper-china@https://registry.npmjs.org/bin-wrapper-china/-/bin-wrapper-china-0.1.0.tgz - - cz-conventional-changelog@https://registry.npmmirror.com/cz-conventional-changelog/-/cz-conventional-changelog-3.2.0.tgz: - dependencies: - chalk: https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz - commitizen: https://registry.npmmirror.com/commitizen/-/commitizen-4.2.4.tgz - conventional-commit-types: https://registry.npmmirror.com/conventional-commit-types/-/conventional-commit-types-3.0.0.tgz - lodash.map: https://registry.npmmirror.com/lodash.map/-/lodash.map-4.6.0.tgz - longest: https://registry.npmmirror.com/longest/-/longest-2.0.1.tgz - word-wrap: https://registry.npmmirror.com/word-wrap/-/word-wrap-1.2.5.tgz - optionalDependencies: - '@commitlint/load': https://registry.npmjs.org/@commitlint/load/-/load-17.7.1.tgz - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - - cz-git@https://registry.npmmirror.com/cz-git/-/cz-git-1.3.9.tgz: {} - - czg@https://registry.npmmirror.com/czg/-/czg-1.3.9.tgz: {} - - dargs@https://registry.npmmirror.com/dargs/-/dargs-7.0.0.tgz: {} - - data-urls@https://registry.npmmirror.com/data-urls/-/data-urls-2.0.0.tgz: - dependencies: - abab: https://registry.npmmirror.com/abab/-/abab-2.0.6.tgz - whatwg-mimetype: https://registry.npmmirror.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz - whatwg-url: https://registry.npmmirror.com/whatwg-url/-/whatwg-url-8.7.0.tgz - - dateformat@https://registry.npmmirror.com/dateformat/-/dateformat-3.0.3.tgz: {} - - dayjs@https://registry.npmmirror.com/dayjs/-/dayjs-1.11.1.tgz: {} - - debug@https://registry.npmjs.org/debug/-/debug-4.3.4.tgz: - dependencies: - ms: https://registry.npmjs.org/ms/-/ms-2.1.2.tgz - - debug@https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz: - dependencies: - ms: https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz - - debug@https://registry.npmmirror.com/debug/-/debug-3.2.7.tgz: - dependencies: - ms: https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz - - debug@https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0): - dependencies: - ms: https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz - supports-color: https://registry.npmmirror.com/supports-color/-/supports-color-9.4.0.tgz - - decamelize-keys@https://registry.npmmirror.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz: - dependencies: - decamelize: https://registry.npmmirror.com/decamelize/-/decamelize-1.2.0.tgz - map-obj: https://registry.npmmirror.com/map-obj/-/map-obj-1.0.1.tgz - - decamelize@https://registry.npmmirror.com/decamelize/-/decamelize-1.2.0.tgz: {} - - decimal.js@https://registry.npmmirror.com/decimal.js/-/decimal.js-10.4.3.tgz: {} - - decode-uri-component@https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz: {} - - decode-uri-component@https://registry.npmmirror.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz: {} - - decompress-response@https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz: - dependencies: - mimic-response: https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz - - decompress-response@https://registry.npmmirror.com/decompress-response/-/decompress-response-3.3.0.tgz: - dependencies: - mimic-response: https://registry.npmmirror.com/mimic-response/-/mimic-response-1.0.1.tgz - - decompress-tar@https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz: - dependencies: - file-type: https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz - is-stream: https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz - tar-stream: https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz - - decompress-tar@https://registry.npmmirror.com/decompress-tar/-/decompress-tar-4.1.1.tgz: - dependencies: - file-type: https://registry.npmmirror.com/file-type/-/file-type-5.2.0.tgz - is-stream: https://registry.npmmirror.com/is-stream/-/is-stream-1.1.0.tgz - tar-stream: https://registry.npmmirror.com/tar-stream/-/tar-stream-1.6.2.tgz - - decompress-tarbz2@https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz: - dependencies: - decompress-tar: https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz - file-type: https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz - is-stream: https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz - seek-bzip: https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz - unbzip2-stream: https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz - - decompress-tarbz2@https://registry.npmmirror.com/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz: - dependencies: - decompress-tar: https://registry.npmmirror.com/decompress-tar/-/decompress-tar-4.1.1.tgz - file-type: https://registry.npmmirror.com/file-type/-/file-type-6.2.0.tgz - is-stream: https://registry.npmmirror.com/is-stream/-/is-stream-1.1.0.tgz - seek-bzip: https://registry.npmmirror.com/seek-bzip/-/seek-bzip-1.0.6.tgz - unbzip2-stream: https://registry.npmmirror.com/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz - - decompress-targz@https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz: - dependencies: - decompress-tar: https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz - file-type: https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz - is-stream: https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz - - decompress-targz@https://registry.npmmirror.com/decompress-targz/-/decompress-targz-4.1.1.tgz: - dependencies: - decompress-tar: https://registry.npmmirror.com/decompress-tar/-/decompress-tar-4.1.1.tgz - file-type: https://registry.npmmirror.com/file-type/-/file-type-5.2.0.tgz - is-stream: https://registry.npmmirror.com/is-stream/-/is-stream-1.1.0.tgz - - decompress-unzip@https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz: - dependencies: - file-type: https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz - get-stream: https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz - pify: https://registry.npmjs.org/pify/-/pify-2.3.0.tgz - yauzl: https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz - - decompress-unzip@https://registry.npmmirror.com/decompress-unzip/-/decompress-unzip-4.0.1.tgz: - dependencies: - file-type: https://registry.npmmirror.com/file-type/-/file-type-3.9.0.tgz - get-stream: https://registry.npmmirror.com/get-stream/-/get-stream-2.3.1.tgz - pify: https://registry.npmmirror.com/pify/-/pify-2.3.0.tgz - yauzl: https://registry.npmmirror.com/yauzl/-/yauzl-2.10.0.tgz - - decompress@https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz: - dependencies: - decompress-tar: https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz - decompress-tarbz2: https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz - decompress-targz: https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz - decompress-unzip: https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - make-dir: https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz - pify: https://registry.npmjs.org/pify/-/pify-2.3.0.tgz - strip-dirs: https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz - - decompress@https://registry.npmmirror.com/decompress/-/decompress-4.2.1.tgz: - dependencies: - decompress-tar: https://registry.npmmirror.com/decompress-tar/-/decompress-tar-4.1.1.tgz - decompress-tarbz2: https://registry.npmmirror.com/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz - decompress-targz: https://registry.npmmirror.com/decompress-targz/-/decompress-targz-4.1.1.tgz - decompress-unzip: https://registry.npmmirror.com/decompress-unzip/-/decompress-unzip-4.0.1.tgz - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - make-dir: https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz - pify: https://registry.npmmirror.com/pify/-/pify-2.3.0.tgz - strip-dirs: https://registry.npmmirror.com/strip-dirs/-/strip-dirs-2.1.0.tgz - - dedent@https://registry.npmmirror.com/dedent/-/dedent-0.7.0.tgz: {} - - deep-is@https://registry.npmmirror.com/deep-is/-/deep-is-0.1.4.tgz: {} - - deepmerge@https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz: {} - - deepmerge@https://registry.npmmirror.com/deepmerge/-/deepmerge-4.3.1.tgz: {} - - defaults@https://registry.npmmirror.com/defaults/-/defaults-1.0.4.tgz: - dependencies: - clone: https://registry.npmmirror.com/clone/-/clone-1.0.4.tgz - - define-lazy-prop@https://registry.npmmirror.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz: {} - - define-properties@https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz: - dependencies: - has-property-descriptors: https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz - object-keys: https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz - - define-properties@https://registry.npmmirror.com/define-properties/-/define-properties-1.2.0.tgz: - dependencies: - has-property-descriptors: https://registry.npmmirror.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz - object-keys: https://registry.npmmirror.com/object-keys/-/object-keys-1.1.1.tgz - - define-property@https://registry.npmmirror.com/define-property/-/define-property-0.2.5.tgz: - dependencies: - is-descriptor: https://registry.npmmirror.com/is-descriptor/-/is-descriptor-0.1.6.tgz - - define-property@https://registry.npmmirror.com/define-property/-/define-property-1.0.0.tgz: - dependencies: - is-descriptor: https://registry.npmmirror.com/is-descriptor/-/is-descriptor-1.0.2.tgz - - define-property@https://registry.npmmirror.com/define-property/-/define-property-2.0.2.tgz: - dependencies: - is-descriptor: https://registry.npmmirror.com/is-descriptor/-/is-descriptor-1.0.2.tgz - isobject: https://registry.npmmirror.com/isobject/-/isobject-3.0.1.tgz - - delayed-stream@https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz: {} - - delegate@https://registry.npmmirror.com/delegate/-/delegate-3.2.0.tgz: {} - - deprecation@https://registry.npmmirror.com/deprecation/-/deprecation-2.3.1.tgz: {} - - detect-file@https://registry.npmmirror.com/detect-file/-/detect-file-1.0.0.tgz: {} - - detect-indent@https://registry.npmmirror.com/detect-indent/-/detect-indent-6.0.0.tgz: {} - - detect-newline@https://registry.npmmirror.com/detect-newline/-/detect-newline-3.1.0.tgz: {} - - diff-match-patch@https://registry.npmmirror.com/diff-match-patch/-/diff-match-patch-1.0.5.tgz: {} - - diff-sequences@https://registry.npmmirror.com/diff-sequences/-/diff-sequences-27.5.1.tgz: {} - - diff@https://registry.npmmirror.com/diff/-/diff-4.0.2.tgz: {} - - dijkstrajs@https://registry.npmmirror.com/dijkstrajs/-/dijkstrajs-1.0.3.tgz: {} - - dir-glob@https://registry.npmmirror.com/dir-glob/-/dir-glob-3.0.1.tgz: - dependencies: - path-type: https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz - - doctrine@https://registry.npmmirror.com/doctrine/-/doctrine-3.0.0.tgz: - dependencies: - esutils: https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz - - dom-align@https://registry.npmmirror.com/dom-align/-/dom-align-1.12.2.tgz: {} - - dom-scroll-into-view@https://registry.npmmirror.com/dom-scroll-into-view/-/dom-scroll-into-view-2.0.1.tgz: {} - - dom-serializer@https://registry.npmmirror.com/dom-serializer/-/dom-serializer-0.2.2.tgz: - dependencies: - domelementtype: https://registry.npmmirror.com/domelementtype/-/domelementtype-2.3.0.tgz - entities: https://registry.npmmirror.com/entities/-/entities-2.2.0.tgz - - dom-serializer@https://registry.npmmirror.com/dom-serializer/-/dom-serializer-1.4.1.tgz: - dependencies: - domelementtype: https://registry.npmmirror.com/domelementtype/-/domelementtype-2.3.0.tgz - domhandler: https://registry.npmmirror.com/domhandler/-/domhandler-4.3.1.tgz - entities: https://registry.npmmirror.com/entities/-/entities-2.2.0.tgz - - domelementtype@https://registry.npmmirror.com/domelementtype/-/domelementtype-1.3.1.tgz: {} - - domelementtype@https://registry.npmmirror.com/domelementtype/-/domelementtype-2.3.0.tgz: {} - - domexception@https://registry.npmmirror.com/domexception/-/domexception-2.0.1.tgz: - dependencies: - webidl-conversions: https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz - - domhandler@https://registry.npmmirror.com/domhandler/-/domhandler-2.4.2.tgz: - dependencies: - domelementtype: https://registry.npmmirror.com/domelementtype/-/domelementtype-1.3.1.tgz - - domhandler@https://registry.npmmirror.com/domhandler/-/domhandler-4.3.1.tgz: - dependencies: - domelementtype: https://registry.npmmirror.com/domelementtype/-/domelementtype-2.3.0.tgz - - dompurify@https://registry.npmjs.org/dompurify/-/dompurify-2.4.7.tgz: - optional: true - - domutils@https://registry.npmmirror.com/domutils/-/domutils-1.7.0.tgz: - dependencies: - dom-serializer: https://registry.npmmirror.com/dom-serializer/-/dom-serializer-0.2.2.tgz - domelementtype: https://registry.npmmirror.com/domelementtype/-/domelementtype-1.3.1.tgz - - domutils@https://registry.npmmirror.com/domutils/-/domutils-2.8.0.tgz: - dependencies: - dom-serializer: https://registry.npmmirror.com/dom-serializer/-/dom-serializer-1.4.1.tgz - domelementtype: https://registry.npmmirror.com/domelementtype/-/domelementtype-2.3.0.tgz - domhandler: https://registry.npmmirror.com/domhandler/-/domhandler-4.3.1.tgz - - dot-case@https://registry.npmmirror.com/dot-case/-/dot-case-3.0.4.tgz: - dependencies: - no-case: https://registry.npmmirror.com/no-case/-/no-case-3.0.4.tgz - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - - dot-prop@https://registry.npmmirror.com/dot-prop/-/dot-prop-5.3.0.tgz: - dependencies: - is-obj: https://registry.npmmirror.com/is-obj/-/is-obj-2.0.0.tgz - - dotenv-expand@https://registry.npmmirror.com/dotenv-expand/-/dotenv-expand-8.0.3.tgz: {} - - dotenv@https://registry.npmmirror.com/dotenv/-/dotenv-16.0.0.tgz: {} - - download@https://registry.npmjs.org/download/-/download-7.1.0.tgz: - dependencies: - archive-type: https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz - caw: https://registry.npmjs.org/caw/-/caw-2.0.1.tgz - content-disposition: https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz - decompress: https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz - ext-name: https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz - file-type: https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz - filenamify: https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz - get-stream: https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz - got: https://registry.npmjs.org/got/-/got-8.3.2.tgz - make-dir: https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz - p-event: https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz - pify: https://registry.npmjs.org/pify/-/pify-3.0.0.tgz - - download@https://registry.npmmirror.com/download/-/download-6.2.5.tgz: - dependencies: - caw: https://registry.npmmirror.com/caw/-/caw-2.0.1.tgz - content-disposition: https://registry.npmmirror.com/content-disposition/-/content-disposition-0.5.4.tgz - decompress: https://registry.npmmirror.com/decompress/-/decompress-4.2.1.tgz - ext-name: https://registry.npmmirror.com/ext-name/-/ext-name-5.0.0.tgz - file-type: https://registry.npmmirror.com/file-type/-/file-type-5.2.0.tgz - filenamify: https://registry.npmmirror.com/filenamify/-/filenamify-2.1.0.tgz - get-stream: https://registry.npmmirror.com/get-stream/-/get-stream-3.0.0.tgz - got: https://registry.npmmirror.com/got/-/got-7.1.0.tgz - make-dir: https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz - p-event: https://registry.npmmirror.com/p-event/-/p-event-1.3.0.tgz - pify: https://registry.npmmirror.com/pify/-/pify-3.0.0.tgz - - duplexer3@https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz: {} - - duplexer3@https://registry.npmmirror.com/duplexer3/-/duplexer3-0.1.5.tgz: {} - - eastasianwidth@https://registry.npmmirror.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz: {} - - echarts-gl@https://registry.npmmirror.com/echarts-gl/-/echarts-gl-2.0.9.tgz(echarts@5.3.2): - dependencies: - claygl: https://registry.npmmirror.com/claygl/-/claygl-1.3.0.tgz - echarts: https://registry.npmmirror.com/echarts/-/echarts-5.3.2.tgz - zrender: https://registry.npmmirror.com/zrender/-/zrender-5.4.4.tgz - - echarts-liquidfill@https://registry.npmmirror.com/echarts-liquidfill/-/echarts-liquidfill-3.1.0.tgz(echarts@5.3.2): - dependencies: - echarts: https://registry.npmmirror.com/echarts/-/echarts-5.3.2.tgz - - echarts@https://registry.npmmirror.com/echarts/-/echarts-5.3.2.tgz: - dependencies: - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.3.0.tgz - zrender: https://registry.npmmirror.com/zrender/-/zrender-5.3.1.tgz - - ee-first@https://registry.npmmirror.com/ee-first/-/ee-first-1.1.1.tgz: {} - - ejs@https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz: - dependencies: - jake: https://registry.npmjs.org/jake/-/jake-10.8.7.tgz - - ejs@https://registry.npmmirror.com/ejs/-/ejs-3.1.9.tgz: - dependencies: - jake: https://registry.npmmirror.com/jake/-/jake-10.8.7.tgz - - electron-to-chromium@https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.490.tgz: {} - - electron-to-chromium@https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.490.tgz: {} - - element-resize-detector@https://registry.npmmirror.com/element-resize-detector/-/element-resize-detector-1.2.4.tgz: - dependencies: - batch-processor: https://registry.npmmirror.com/batch-processor/-/batch-processor-1.0.0.tgz - - emittery@https://registry.npmmirror.com/emittery/-/emittery-0.8.1.tgz: {} - - emoji-mart-vue-fast@https://registry.npmmirror.com/emoji-mart-vue-fast/-/emoji-mart-vue-fast-11.1.1.tgz(vue@3.2.33): - dependencies: - '@babel/polyfill': https://registry.npmmirror.com/@babel/polyfill/-/polyfill-7.12.1.tgz - '@babel/runtime': https://registry.npmmirror.com/@babel/runtime/-/runtime-7.22.10.tgz - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - vue-virtual-scroller: https://registry.npmmirror.com/vue-virtual-scroller/-/vue-virtual-scroller-1.1.2.tgz(vue@3.2.33) - - emoji-regex@https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz: {} - - emoji-regex@https://registry.npmmirror.com/emoji-regex/-/emoji-regex-9.2.2.tgz: {} - - emojis-list@https://registry.npmmirror.com/emojis-list/-/emojis-list-3.0.0.tgz: {} - - encode-utf8@https://registry.npmmirror.com/encode-utf8/-/encode-utf8-1.0.3.tgz: {} - - encodeurl@https://registry.npmmirror.com/encodeurl/-/encodeurl-1.0.2.tgz: {} - - end-of-stream@https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz: - dependencies: - once: https://registry.npmjs.org/once/-/once-1.4.0.tgz - - end-of-stream@https://registry.npmmirror.com/end-of-stream/-/end-of-stream-1.4.4.tgz: - dependencies: - once: https://registry.npmmirror.com/once/-/once-1.4.0.tgz - - enquire.js@https://registry.npmmirror.com/enquire.js/-/enquire.js-2.1.6.tgz: {} - - entities@https://registry.npmmirror.com/entities/-/entities-1.1.2.tgz: {} - - entities@https://registry.npmmirror.com/entities/-/entities-2.2.0.tgz: {} - - entities@https://registry.npmmirror.com/entities/-/entities-3.0.1.tgz: {} - - errno@https://registry.npmjs.org/errno/-/errno-0.1.8.tgz: - dependencies: - prr: https://registry.npmmirror.com/prr/-/prr-1.0.1.tgz - optional: true - - error-ex@https://registry.npmmirror.com/error-ex/-/error-ex-1.3.2.tgz: - dependencies: - is-arrayish: https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.2.1.tgz - - es-abstract@https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz: - dependencies: - array-buffer-byte-length: https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz - arraybuffer.prototype.slice: https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz - available-typed-arrays: https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - es-set-tostringtag: https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz - es-to-primitive: https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz - function.prototype.name: https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz - get-intrinsic: https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz - get-symbol-description: https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz - globalthis: https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz - gopd: https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz - has: https://registry.npmjs.org/has/-/has-1.0.3.tgz - has-property-descriptors: https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz - has-proto: https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz - has-symbols: https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz - internal-slot: https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz - is-array-buffer: https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz - is-callable: https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz - is-negative-zero: https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz - is-regex: https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz - is-shared-array-buffer: https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz - is-string: https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz - is-typed-array: https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz - is-weakref: https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz - object-inspect: https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz - object-keys: https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz - object.assign: https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz - regexp.prototype.flags: https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz - safe-array-concat: https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz - safe-regex-test: https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz - string.prototype.trim: https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz - string.prototype.trimend: https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz - string.prototype.trimstart: https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz - typed-array-buffer: https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz - typed-array-byte-length: https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz - typed-array-byte-offset: https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz - typed-array-length: https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz - unbox-primitive: https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz - which-typed-array: https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz - - es-abstract@https://registry.npmmirror.com/es-abstract/-/es-abstract-1.22.1.tgz: - dependencies: - array-buffer-byte-length: https://registry.npmmirror.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz - arraybuffer.prototype.slice: https://registry.npmmirror.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz - available-typed-arrays: https://registry.npmmirror.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - es-set-tostringtag: https://registry.npmmirror.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz - es-to-primitive: https://registry.npmmirror.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz - function.prototype.name: https://registry.npmmirror.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz - get-intrinsic: https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz - get-symbol-description: https://registry.npmmirror.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz - globalthis: https://registry.npmmirror.com/globalthis/-/globalthis-1.0.3.tgz - gopd: https://registry.npmmirror.com/gopd/-/gopd-1.0.1.tgz - has: https://registry.npmmirror.com/has/-/has-1.0.3.tgz - has-property-descriptors: https://registry.npmmirror.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz - has-proto: https://registry.npmmirror.com/has-proto/-/has-proto-1.0.1.tgz - has-symbols: https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz - internal-slot: https://registry.npmmirror.com/internal-slot/-/internal-slot-1.0.5.tgz - is-array-buffer: https://registry.npmmirror.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz - is-callable: https://registry.npmmirror.com/is-callable/-/is-callable-1.2.7.tgz - is-negative-zero: https://registry.npmmirror.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz - is-regex: https://registry.npmmirror.com/is-regex/-/is-regex-1.1.4.tgz - is-shared-array-buffer: https://registry.npmmirror.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz - is-string: https://registry.npmmirror.com/is-string/-/is-string-1.0.7.tgz - is-typed-array: https://registry.npmmirror.com/is-typed-array/-/is-typed-array-1.1.12.tgz - is-weakref: https://registry.npmmirror.com/is-weakref/-/is-weakref-1.0.2.tgz - object-inspect: https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.3.tgz - object-keys: https://registry.npmmirror.com/object-keys/-/object-keys-1.1.1.tgz - object.assign: https://registry.npmmirror.com/object.assign/-/object.assign-4.1.4.tgz - regexp.prototype.flags: https://registry.npmmirror.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz - safe-array-concat: https://registry.npmmirror.com/safe-array-concat/-/safe-array-concat-1.0.0.tgz - safe-regex-test: https://registry.npmmirror.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz - string.prototype.trim: https://registry.npmmirror.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz - string.prototype.trimend: https://registry.npmmirror.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz - string.prototype.trimstart: https://registry.npmmirror.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz - typed-array-buffer: https://registry.npmmirror.com/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz - typed-array-byte-length: https://registry.npmmirror.com/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz - typed-array-byte-offset: https://registry.npmmirror.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz - typed-array-length: https://registry.npmmirror.com/typed-array-length/-/typed-array-length-1.0.4.tgz - unbox-primitive: https://registry.npmmirror.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz - which-typed-array: https://registry.npmmirror.com/which-typed-array/-/which-typed-array-1.1.11.tgz - - es-module-lexer@https://registry.npmmirror.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz: {} - - es-set-tostringtag@https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz: - dependencies: - get-intrinsic: https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz - has: https://registry.npmjs.org/has/-/has-1.0.3.tgz - has-tostringtag: https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz - - es-set-tostringtag@https://registry.npmmirror.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz: - dependencies: - get-intrinsic: https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz - has: https://registry.npmmirror.com/has/-/has-1.0.3.tgz - has-tostringtag: https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz - - es-to-primitive@https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz: - dependencies: - is-callable: https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz - is-date-object: https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz - is-symbol: https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz - - es-to-primitive@https://registry.npmmirror.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz: - dependencies: - is-callable: https://registry.npmmirror.com/is-callable/-/is-callable-1.2.7.tgz - is-date-object: https://registry.npmmirror.com/is-date-object/-/is-date-object-1.0.5.tgz - is-symbol: https://registry.npmmirror.com/is-symbol/-/is-symbol-1.0.4.tgz - - esbuild-android-64@https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.54.tgz: - optional: true - - esbuild-android-arm64@https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.54.tgz: - optional: true - - esbuild-darwin-64@https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.54.tgz: - optional: true - - esbuild-darwin-arm64@https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.54.tgz: - optional: true - - esbuild-freebsd-64@https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.54.tgz: - optional: true - - esbuild-freebsd-arm64@https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.54.tgz: - optional: true - - esbuild-linux-32@https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.54.tgz: - optional: true - - esbuild-linux-64@https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.54.tgz: - optional: true - - esbuild-linux-arm64@https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.54.tgz: - optional: true - - esbuild-linux-arm@https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.54.tgz: - optional: true - - esbuild-linux-mips64le@https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.54.tgz: - optional: true - - esbuild-linux-ppc64le@https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.54.tgz: - optional: true - - esbuild-linux-riscv64@https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.54.tgz: - optional: true - - esbuild-linux-s390x@https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.54.tgz: - optional: true - - esbuild-netbsd-64@https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.54.tgz: - optional: true - - esbuild-node-loader@https://registry.npmmirror.com/esbuild-node-loader/-/esbuild-node-loader-0.6.5.tgz: - dependencies: - esbuild: https://registry.npmmirror.com/esbuild/-/esbuild-0.19.1.tgz - - esbuild-openbsd-64@https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.54.tgz: - optional: true - - esbuild-plugin-alias@https://registry.npmmirror.com/esbuild-plugin-alias/-/esbuild-plugin-alias-0.1.2.tgz: {} - - esbuild-register@https://registry.npmmirror.com/esbuild-register/-/esbuild-register-3.4.2.tgz(esbuild@0.19.1): - dependencies: - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - esbuild: https://registry.npmmirror.com/esbuild/-/esbuild-0.19.1.tgz - transitivePeerDependencies: - - supports-color - - esbuild-sunos-64@https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.54.tgz: - optional: true - - esbuild-windows-32@https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.54.tgz: - optional: true - - esbuild-windows-64@https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.54.tgz: - optional: true - - esbuild-windows-arm64@https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.54.tgz: - optional: true - - esbuild@https://registry.npmmirror.com/esbuild/-/esbuild-0.11.23.tgz: {} - - esbuild@https://registry.npmmirror.com/esbuild/-/esbuild-0.11.3.tgz: {} - - esbuild@https://registry.npmmirror.com/esbuild/-/esbuild-0.14.54.tgz: - optionalDependencies: - '@esbuild/linux-loong64': https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.14.54.tgz - esbuild-android-64: https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.54.tgz - esbuild-android-arm64: https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.54.tgz - esbuild-darwin-64: https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.54.tgz - esbuild-darwin-arm64: https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.54.tgz - esbuild-freebsd-64: https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.54.tgz - esbuild-freebsd-arm64: https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.54.tgz - esbuild-linux-32: https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.54.tgz - esbuild-linux-64: https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.54.tgz - esbuild-linux-arm: https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.54.tgz - esbuild-linux-arm64: https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.54.tgz - esbuild-linux-mips64le: https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.54.tgz - esbuild-linux-ppc64le: https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.54.tgz - esbuild-linux-riscv64: https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.54.tgz - esbuild-linux-s390x: https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.54.tgz - esbuild-netbsd-64: https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.54.tgz - esbuild-openbsd-64: https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.54.tgz - esbuild-sunos-64: https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.54.tgz - esbuild-windows-32: https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.54.tgz - esbuild-windows-64: https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.54.tgz - esbuild-windows-arm64: https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.54.tgz - - esbuild@https://registry.npmmirror.com/esbuild/-/esbuild-0.19.1.tgz: - optionalDependencies: - '@esbuild/android-arm': https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.1.tgz - '@esbuild/android-arm64': https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.1.tgz - '@esbuild/android-x64': https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.1.tgz - '@esbuild/darwin-arm64': https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.1.tgz - '@esbuild/darwin-x64': https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.1.tgz - '@esbuild/freebsd-arm64': https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.1.tgz - '@esbuild/freebsd-x64': https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.1.tgz - '@esbuild/linux-arm': https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.1.tgz - '@esbuild/linux-arm64': https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.1.tgz - '@esbuild/linux-ia32': https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.1.tgz - '@esbuild/linux-loong64': https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.1.tgz - '@esbuild/linux-mips64el': https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.1.tgz - '@esbuild/linux-ppc64': https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.1.tgz - '@esbuild/linux-riscv64': https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.1.tgz - '@esbuild/linux-s390x': https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.1.tgz - '@esbuild/linux-x64': https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.1.tgz - '@esbuild/netbsd-x64': https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.1.tgz - '@esbuild/openbsd-x64': https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.1.tgz - '@esbuild/sunos-x64': https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.1.tgz - '@esbuild/win32-arm64': https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.1.tgz - '@esbuild/win32-ia32': https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.1.tgz - '@esbuild/win32-x64': https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.1.tgz - - escalade@https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz: {} - - escalade@https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz: {} - - escape-html@https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz: {} - - escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz: {} - - escape-string-regexp@https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz: {} - - escape-string-regexp@https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz: {} - - escape-string-regexp@https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz: {} - - escodegen@https://registry.npmmirror.com/escodegen/-/escodegen-2.1.0.tgz: - dependencies: - esprima: https://registry.npmmirror.com/esprima/-/esprima-4.0.1.tgz - estraverse: https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz - esutils: https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz - optionalDependencies: - source-map: https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz - - eslint-config-prettier@https://registry.npmmirror.com/eslint-config-prettier/-/eslint-config-prettier-8.6.0.tgz(eslint@8.22.0): - dependencies: - eslint: https://registry.npmmirror.com/eslint/-/eslint-8.22.0.tgz - - eslint-define-config@https://registry.npmmirror.com/eslint-define-config/-/eslint-define-config-1.14.0.tgz: {} - - eslint-plugin-jest@https://registry.npmmirror.com/eslint-plugin-jest/-/eslint-plugin-jest-27.2.1.tgz(@typescript-eslint/eslint-plugin@5.20.0)(eslint@8.22.0)(jest@27.3.1)(typescript@4.6.3): - dependencies: - '@typescript-eslint/eslint-plugin': https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.20.0.tgz(@typescript-eslint/parser@5.20.0)(eslint@8.22.0)(typescript@4.6.3) - '@typescript-eslint/utils': https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-5.62.0.tgz(eslint@8.22.0)(typescript@4.6.3) - eslint: https://registry.npmmirror.com/eslint/-/eslint-8.22.0.tgz - jest: https://registry.npmmirror.com/jest/-/jest-27.3.1.tgz(ts-node@10.7.0) - transitivePeerDependencies: - - supports-color - - typescript - - eslint-plugin-prettier@https://registry.npmmirror.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz(eslint-config-prettier@8.6.0)(eslint@8.22.0)(prettier@2.6.2): - dependencies: - eslint: https://registry.npmmirror.com/eslint/-/eslint-8.22.0.tgz - eslint-config-prettier: https://registry.npmmirror.com/eslint-config-prettier/-/eslint-config-prettier-8.6.0.tgz(eslint@8.22.0) - prettier: https://registry.npmmirror.com/prettier/-/prettier-2.6.2.tgz - prettier-linter-helpers: https://registry.npmmirror.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz - - eslint-plugin-vue@https://registry.npmmirror.com/eslint-plugin-vue/-/eslint-plugin-vue-9.9.0.tgz(eslint@8.22.0): - dependencies: - eslint: https://registry.npmmirror.com/eslint/-/eslint-8.22.0.tgz - eslint-utils: https://registry.npmmirror.com/eslint-utils/-/eslint-utils-3.0.0.tgz(eslint@8.22.0) - natural-compare: https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz - nth-check: https://registry.npmmirror.com/nth-check/-/nth-check-2.1.1.tgz - postcss-selector-parser: https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz - semver: https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz - vue-eslint-parser: https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-9.3.1.tgz(eslint@8.22.0) - xml-name-validator: https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz - transitivePeerDependencies: - - supports-color - - eslint-scope@https://registry.npmmirror.com/eslint-scope/-/eslint-scope-5.1.1.tgz: - dependencies: - esrecurse: https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz - estraverse: https://registry.npmmirror.com/estraverse/-/estraverse-4.3.0.tgz - - eslint-scope@https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.2.2.tgz: - dependencies: - esrecurse: https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz - estraverse: https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz - - eslint-utils@https://registry.npmmirror.com/eslint-utils/-/eslint-utils-3.0.0.tgz(eslint@8.22.0): - dependencies: - eslint: https://registry.npmmirror.com/eslint/-/eslint-8.22.0.tgz - eslint-visitor-keys: https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz - - eslint-visitor-keys@https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz: {} - - eslint-visitor-keys@https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz: {} - - eslint@https://registry.npmmirror.com/eslint/-/eslint-8.22.0.tgz: - dependencies: - '@eslint/eslintrc': https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-1.4.1.tgz - '@humanwhocodes/config-array': https://registry.npmmirror.com/@humanwhocodes/config-array/-/config-array-0.10.7.tgz - '@humanwhocodes/gitignore-to-minimatch': https://registry.npmmirror.com/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz - ajv: https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - cross-spawn: https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - doctrine: https://registry.npmmirror.com/doctrine/-/doctrine-3.0.0.tgz - escape-string-regexp: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz - eslint-scope: https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.2.2.tgz - eslint-utils: https://registry.npmmirror.com/eslint-utils/-/eslint-utils-3.0.0.tgz(eslint@8.22.0) - eslint-visitor-keys: https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz - espree: https://registry.npmmirror.com/espree/-/espree-9.6.1.tgz - esquery: https://registry.npmmirror.com/esquery/-/esquery-1.5.0.tgz - esutils: https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz - fast-deep-equal: https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz - file-entry-cache: https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz - find-up: https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz - functional-red-black-tree: https://registry.npmmirror.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz - glob-parent: https://registry.npmmirror.com/glob-parent/-/glob-parent-6.0.2.tgz - globals: https://registry.npmmirror.com/globals/-/globals-13.21.0.tgz - globby: https://registry.npmmirror.com/globby/-/globby-11.1.0.tgz - grapheme-splitter: https://registry.npmmirror.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz - ignore: https://registry.npmmirror.com/ignore/-/ignore-5.2.4.tgz - import-fresh: https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz - imurmurhash: https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz - is-glob: https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz - js-yaml: https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz - json-stable-stringify-without-jsonify: https://registry.npmmirror.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz - levn: https://registry.npmmirror.com/levn/-/levn-0.4.1.tgz - lodash.merge: https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz - minimatch: https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz - natural-compare: https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz - optionator: https://registry.npmmirror.com/optionator/-/optionator-0.9.3.tgz - regexpp: https://registry.npmmirror.com/regexpp/-/regexpp-3.2.0.tgz - strip-ansi: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz - strip-json-comments: https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz - text-table: https://registry.npmmirror.com/text-table/-/text-table-0.2.0.tgz - v8-compile-cache: https://registry.npmmirror.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz - transitivePeerDependencies: - - supports-color - - esno@https://registry.npmmirror.com/esno/-/esno-0.14.1.tgz: - dependencies: - cross-spawn: https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz - esbuild: https://registry.npmmirror.com/esbuild/-/esbuild-0.19.1.tgz - esbuild-node-loader: https://registry.npmmirror.com/esbuild-node-loader/-/esbuild-node-loader-0.6.5.tgz - esbuild-register: https://registry.npmmirror.com/esbuild-register/-/esbuild-register-3.4.2.tgz(esbuild@0.19.1) - import-meta-resolve: https://registry.npmmirror.com/import-meta-resolve/-/import-meta-resolve-1.1.1.tgz - transitivePeerDependencies: - - supports-color - - espree@https://registry.npmmirror.com/espree/-/espree-9.6.1.tgz: - dependencies: - acorn: https://registry.npmmirror.com/acorn/-/acorn-8.10.0.tgz - acorn-jsx: https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz(acorn@8.10.0) - eslint-visitor-keys: https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz - - esprima@https://registry.npmmirror.com/esprima/-/esprima-4.0.1.tgz: {} - - esquery@https://registry.npmmirror.com/esquery/-/esquery-1.5.0.tgz: - dependencies: - estraverse: https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz - - esrecurse@https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz: - dependencies: - estraverse: https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz - - estraverse@https://registry.npmmirror.com/estraverse/-/estraverse-4.3.0.tgz: {} - - estraverse@https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz: {} - - estree-walker@https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz: {} - - estree-walker@https://registry.npmmirror.com/estree-walker/-/estree-walker-1.0.1.tgz: {} - - estree-walker@https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz: {} - - esutils@https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz: {} - - esutils@https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz: {} - - etag@https://registry.npmmirror.com/etag/-/etag-1.8.1.tgz: {} - - eventemitter3@https://registry.npmmirror.com/eventemitter3/-/eventemitter3-4.0.7.tgz: {} - - exec-buffer@https://registry.npmmirror.com/exec-buffer/-/exec-buffer-3.2.0.tgz: - dependencies: - execa: https://registry.npmmirror.com/execa/-/execa-0.7.0.tgz - p-finally: https://registry.npmmirror.com/p-finally/-/p-finally-1.0.0.tgz - pify: https://registry.npmmirror.com/pify/-/pify-3.0.0.tgz - rimraf: https://registry.npmmirror.com/rimraf/-/rimraf-2.7.1.tgz - tempfile: https://registry.npmmirror.com/tempfile/-/tempfile-2.0.0.tgz - - execa@https://registry.npmjs.org/execa/-/execa-0.7.0.tgz: - dependencies: - cross-spawn: https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz - get-stream: https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz - is-stream: https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz - npm-run-path: https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz - p-finally: https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz - signal-exit: https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz - strip-eof: https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz - - execa@https://registry.npmjs.org/execa/-/execa-1.0.0.tgz: - dependencies: - cross-spawn: https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz - get-stream: https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz - is-stream: https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz - npm-run-path: https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz - p-finally: https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz - signal-exit: https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz - strip-eof: https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz - - execa@https://registry.npmmirror.com/execa/-/execa-0.7.0.tgz: - dependencies: - cross-spawn: https://registry.npmmirror.com/cross-spawn/-/cross-spawn-5.1.0.tgz - get-stream: https://registry.npmmirror.com/get-stream/-/get-stream-3.0.0.tgz - is-stream: https://registry.npmmirror.com/is-stream/-/is-stream-1.1.0.tgz - npm-run-path: https://registry.npmmirror.com/npm-run-path/-/npm-run-path-2.0.2.tgz - p-finally: https://registry.npmmirror.com/p-finally/-/p-finally-1.0.0.tgz - signal-exit: https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz - strip-eof: https://registry.npmmirror.com/strip-eof/-/strip-eof-1.0.0.tgz - - execa@https://registry.npmmirror.com/execa/-/execa-1.0.0.tgz: - dependencies: - cross-spawn: https://registry.npmmirror.com/cross-spawn/-/cross-spawn-6.0.5.tgz - get-stream: https://registry.npmmirror.com/get-stream/-/get-stream-4.1.0.tgz - is-stream: https://registry.npmmirror.com/is-stream/-/is-stream-1.1.0.tgz - npm-run-path: https://registry.npmmirror.com/npm-run-path/-/npm-run-path-2.0.2.tgz - p-finally: https://registry.npmmirror.com/p-finally/-/p-finally-1.0.0.tgz - signal-exit: https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz - strip-eof: https://registry.npmmirror.com/strip-eof/-/strip-eof-1.0.0.tgz - - execa@https://registry.npmmirror.com/execa/-/execa-4.1.0.tgz: - dependencies: - cross-spawn: https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz - get-stream: https://registry.npmmirror.com/get-stream/-/get-stream-5.2.0.tgz - human-signals: https://registry.npmmirror.com/human-signals/-/human-signals-1.1.1.tgz - is-stream: https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz - merge-stream: https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz - npm-run-path: https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz - onetime: https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz - signal-exit: https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz - strip-final-newline: https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz - - execa@https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz: - dependencies: - cross-spawn: https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz - get-stream: https://registry.npmmirror.com/get-stream/-/get-stream-6.0.1.tgz - human-signals: https://registry.npmmirror.com/human-signals/-/human-signals-2.1.0.tgz - is-stream: https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz - merge-stream: https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz - npm-run-path: https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz - onetime: https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz - signal-exit: https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz - strip-final-newline: https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz - - execall@https://registry.npmmirror.com/execall/-/execall-2.0.0.tgz: - dependencies: - clone-regexp: https://registry.npmmirror.com/clone-regexp/-/clone-regexp-2.2.0.tgz - - executable@https://registry.npmjs.org/executable/-/executable-4.1.1.tgz: - dependencies: - pify: https://registry.npmjs.org/pify/-/pify-2.3.0.tgz - - exit-on-epipe@https://registry.npmmirror.com/exit-on-epipe/-/exit-on-epipe-1.0.1.tgz: {} - - exit@https://registry.npmmirror.com/exit/-/exit-0.1.2.tgz: {} - - expand-brackets@https://registry.npmmirror.com/expand-brackets/-/expand-brackets-2.1.4.tgz: - dependencies: - debug: https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz - define-property: https://registry.npmmirror.com/define-property/-/define-property-0.2.5.tgz - extend-shallow: https://registry.npmmirror.com/extend-shallow/-/extend-shallow-2.0.1.tgz - posix-character-classes: https://registry.npmmirror.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz - regex-not: https://registry.npmmirror.com/regex-not/-/regex-not-1.0.2.tgz - snapdragon: https://registry.npmmirror.com/snapdragon/-/snapdragon-0.8.2.tgz - to-regex: https://registry.npmmirror.com/to-regex/-/to-regex-3.0.2.tgz - transitivePeerDependencies: - - supports-color - - expand-tilde@https://registry.npmmirror.com/expand-tilde/-/expand-tilde-2.0.2.tgz: - dependencies: - homedir-polyfill: https://registry.npmmirror.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz - - expect@https://registry.npmmirror.com/expect/-/expect-27.5.1.tgz: - dependencies: - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - jest-get-type: https://registry.npmmirror.com/jest-get-type/-/jest-get-type-27.5.1.tgz - jest-matcher-utils: https://registry.npmmirror.com/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz - jest-message-util: https://registry.npmmirror.com/jest-message-util/-/jest-message-util-27.5.1.tgz - - ext-list@https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz: - dependencies: - mime-db: https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz - - ext-list@https://registry.npmmirror.com/ext-list/-/ext-list-2.2.2.tgz: - dependencies: - mime-db: https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz - - ext-name@https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz: - dependencies: - ext-list: https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz - sort-keys-length: https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz - - ext-name@https://registry.npmmirror.com/ext-name/-/ext-name-5.0.0.tgz: - dependencies: - ext-list: https://registry.npmmirror.com/ext-list/-/ext-list-2.2.2.tgz - sort-keys-length: https://registry.npmmirror.com/sort-keys-length/-/sort-keys-length-1.0.1.tgz - - extend-shallow@https://registry.npmmirror.com/extend-shallow/-/extend-shallow-2.0.1.tgz: - dependencies: - is-extendable: https://registry.npmmirror.com/is-extendable/-/is-extendable-0.1.1.tgz - - extend-shallow@https://registry.npmmirror.com/extend-shallow/-/extend-shallow-3.0.2.tgz: - dependencies: - assign-symbols: https://registry.npmmirror.com/assign-symbols/-/assign-symbols-1.0.0.tgz - is-extendable: https://registry.npmmirror.com/is-extendable/-/is-extendable-1.0.1.tgz - - external-editor@https://registry.npmmirror.com/external-editor/-/external-editor-3.1.0.tgz: - dependencies: - chardet: https://registry.npmmirror.com/chardet/-/chardet-0.7.0.tgz - iconv-lite: https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz - tmp: https://registry.npmmirror.com/tmp/-/tmp-0.0.33.tgz - - extglob@https://registry.npmmirror.com/extglob/-/extglob-2.0.4.tgz: - dependencies: - array-unique: https://registry.npmmirror.com/array-unique/-/array-unique-0.3.2.tgz - define-property: https://registry.npmmirror.com/define-property/-/define-property-1.0.0.tgz - expand-brackets: https://registry.npmmirror.com/expand-brackets/-/expand-brackets-2.1.4.tgz - extend-shallow: https://registry.npmmirror.com/extend-shallow/-/extend-shallow-2.0.1.tgz - fragment-cache: https://registry.npmmirror.com/fragment-cache/-/fragment-cache-0.2.1.tgz - regex-not: https://registry.npmmirror.com/regex-not/-/regex-not-1.0.2.tgz - snapdragon: https://registry.npmmirror.com/snapdragon/-/snapdragon-0.8.2.tgz - to-regex: https://registry.npmmirror.com/to-regex/-/to-regex-3.0.2.tgz - transitivePeerDependencies: - - supports-color - - fast-deep-equal@https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz: {} - - fast-deep-equal@https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz: {} - - fast-diff@https://registry.npmmirror.com/fast-diff/-/fast-diff-1.3.0.tgz: {} - - fast-glob@https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.1.tgz: - dependencies: - '@nodelib/fs.stat': https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz - '@nodelib/fs.walk': https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz - glob-parent: https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz - merge2: https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz - micromatch: https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz - - fast-json-stable-stringify@https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz: {} - - fast-json-stable-stringify@https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz: {} - - fast-levenshtein@https://registry.npmmirror.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz: {} - - fast-xml-parser@https://registry.npmmirror.com/fast-xml-parser/-/fast-xml-parser-4.2.7.tgz: - dependencies: - strnum: https://registry.npmmirror.com/strnum/-/strnum-1.0.5.tgz - - fastest-levenshtein@https://registry.npmmirror.com/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz: {} - - fastest-levenshtein@https://registry.npmmirror.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz: {} - - fastq@https://registry.npmmirror.com/fastq/-/fastq-1.15.0.tgz: - dependencies: - reusify: https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz - - fb-watchman@https://registry.npmmirror.com/fb-watchman/-/fb-watchman-2.0.2.tgz: - dependencies: - bser: https://registry.npmmirror.com/bser/-/bser-2.1.1.tgz - - fd-slicer@https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz: - dependencies: - pend: https://registry.npmjs.org/pend/-/pend-1.2.0.tgz - - fd-slicer@https://registry.npmmirror.com/fd-slicer/-/fd-slicer-1.1.0.tgz: - dependencies: - pend: https://registry.npmmirror.com/pend/-/pend-1.2.0.tgz - - fflate@https://registry.npmmirror.com/fflate/-/fflate-0.4.8.tgz: {} - - figures@https://registry.npmmirror.com/figures/-/figures-1.7.0.tgz: - dependencies: - escape-string-regexp: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz - object-assign: https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz - - figures@https://registry.npmmirror.com/figures/-/figures-2.0.0.tgz: - dependencies: - escape-string-regexp: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz - - figures@https://registry.npmmirror.com/figures/-/figures-3.2.0.tgz: - dependencies: - escape-string-regexp: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz - - file-entry-cache@https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz: - dependencies: - flat-cache: https://registry.npmmirror.com/flat-cache/-/flat-cache-3.0.4.tgz - - file-type@https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz: {} - - file-type@https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz: {} - - file-type@https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz: {} - - file-type@https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz: {} - - file-type@https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz: {} - - file-type@https://registry.npmmirror.com/file-type/-/file-type-10.11.0.tgz: {} - - file-type@https://registry.npmmirror.com/file-type/-/file-type-12.4.2.tgz: {} - - file-type@https://registry.npmmirror.com/file-type/-/file-type-3.9.0.tgz: {} - - file-type@https://registry.npmmirror.com/file-type/-/file-type-5.2.0.tgz: {} - - file-type@https://registry.npmmirror.com/file-type/-/file-type-6.2.0.tgz: {} - - filelist@https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz: - dependencies: - minimatch: https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz - - filelist@https://registry.npmmirror.com/filelist/-/filelist-1.0.4.tgz: - dependencies: - minimatch: https://registry.npmmirror.com/minimatch/-/minimatch-5.1.6.tgz - - filename-reserved-regex@https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz: {} - - filename-reserved-regex@https://registry.npmmirror.com/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz: {} - - filenamify@https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz: - dependencies: - filename-reserved-regex: https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz - strip-outer: https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz - trim-repeated: https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz - - filenamify@https://registry.npmmirror.com/filenamify/-/filenamify-2.1.0.tgz: - dependencies: - filename-reserved-regex: https://registry.npmmirror.com/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz - strip-outer: https://registry.npmmirror.com/strip-outer/-/strip-outer-1.0.1.tgz - trim-repeated: https://registry.npmmirror.com/trim-repeated/-/trim-repeated-1.0.0.tgz - - fill-range@https://registry.npmmirror.com/fill-range/-/fill-range-4.0.0.tgz: - dependencies: - extend-shallow: https://registry.npmmirror.com/extend-shallow/-/extend-shallow-2.0.1.tgz - is-number: https://registry.npmmirror.com/is-number/-/is-number-3.0.0.tgz - repeat-string: https://registry.npmmirror.com/repeat-string/-/repeat-string-1.6.1.tgz - to-regex-range: https://registry.npmmirror.com/to-regex-range/-/to-regex-range-2.1.1.tgz - - fill-range@https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz: - dependencies: - to-regex-range: https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz - - finalhandler@https://registry.npmmirror.com/finalhandler/-/finalhandler-1.1.2.tgz: - dependencies: - debug: https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz - encodeurl: https://registry.npmmirror.com/encodeurl/-/encodeurl-1.0.2.tgz - escape-html: https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz - on-finished: https://registry.npmmirror.com/on-finished/-/on-finished-2.3.0.tgz - parseurl: https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz - statuses: https://registry.npmmirror.com/statuses/-/statuses-1.5.0.tgz - unpipe: https://registry.npmmirror.com/unpipe/-/unpipe-1.0.0.tgz - transitivePeerDependencies: - - supports-color - - find-node-modules@https://registry.npmmirror.com/find-node-modules/-/find-node-modules-2.1.3.tgz: - dependencies: - findup-sync: https://registry.npmmirror.com/findup-sync/-/findup-sync-4.0.0.tgz - merge: https://registry.npmmirror.com/merge/-/merge-2.1.1.tgz - - find-root@https://registry.npmmirror.com/find-root/-/find-root-1.1.0.tgz: {} - - find-up@https://registry.npmmirror.com/find-up/-/find-up-1.1.2.tgz: - dependencies: - path-exists: https://registry.npmmirror.com/path-exists/-/path-exists-2.1.0.tgz - pinkie-promise: https://registry.npmmirror.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz - - find-up@https://registry.npmmirror.com/find-up/-/find-up-2.1.0.tgz: - dependencies: - locate-path: https://registry.npmmirror.com/locate-path/-/locate-path-2.0.0.tgz - - find-up@https://registry.npmmirror.com/find-up/-/find-up-4.1.0.tgz: - dependencies: - locate-path: https://registry.npmmirror.com/locate-path/-/locate-path-5.0.0.tgz - path-exists: https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz - - find-up@https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz: - dependencies: - locate-path: https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz - path-exists: https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz - - find-versions@https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz: - dependencies: - semver-regex: https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz - - findup-sync@https://registry.npmmirror.com/findup-sync/-/findup-sync-4.0.0.tgz: - dependencies: - detect-file: https://registry.npmmirror.com/detect-file/-/detect-file-1.0.0.tgz - is-glob: https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz - micromatch: https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz - resolve-dir: https://registry.npmmirror.com/resolve-dir/-/resolve-dir-1.0.1.tgz - - flat-cache@https://registry.npmmirror.com/flat-cache/-/flat-cache-3.0.4.tgz: - dependencies: - flatted: https://registry.npmmirror.com/flatted/-/flatted-3.2.7.tgz - rimraf: https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz - - flatted@https://registry.npmmirror.com/flatted/-/flatted-3.2.7.tgz: {} - - follow-redirects@https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.2.tgz(debug@4.3.4): - dependencies: - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - - for-each@https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz: - dependencies: - is-callable: https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz - - for-each@https://registry.npmmirror.com/for-each/-/for-each-0.3.3.tgz: - dependencies: - is-callable: https://registry.npmmirror.com/is-callable/-/is-callable-1.2.7.tgz - - for-in@https://registry.npmmirror.com/for-in/-/for-in-1.0.2.tgz: {} - - form-data@https://registry.npmmirror.com/form-data/-/form-data-3.0.1.tgz: - dependencies: - asynckit: https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz - combined-stream: https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz - mime-types: https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz - - frac@https://registry.npmmirror.com/frac/-/frac-1.1.2.tgz: {} - - fraction.js@https://registry.npmmirror.com/fraction.js/-/fraction.js-4.2.0.tgz: {} - - fragment-cache@https://registry.npmmirror.com/fragment-cache/-/fragment-cache-0.2.1.tgz: - dependencies: - map-cache: https://registry.npmmirror.com/map-cache/-/map-cache-0.2.2.tgz - - from2@https://registry.npmjs.org/from2/-/from2-2.3.0.tgz: - dependencies: - inherits: https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz - readable-stream: https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz - - fs-constants@https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz: {} - - fs-constants@https://registry.npmmirror.com/fs-constants/-/fs-constants-1.0.0.tgz: {} - - fs-extra@https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz: - dependencies: - at-least-node: https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - jsonfile: https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz - universalify: https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz - - fs-extra@https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz: - dependencies: - graceful-fs: https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz - jsonfile: https://registry.npmmirror.com/jsonfile/-/jsonfile-6.1.0.tgz - universalify: https://registry.npmmirror.com/universalify/-/universalify-2.0.0.tgz - - fs-extra@https://registry.npmmirror.com/fs-extra/-/fs-extra-8.1.0.tgz: - dependencies: - graceful-fs: https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz - jsonfile: https://registry.npmmirror.com/jsonfile/-/jsonfile-4.0.0.tgz - universalify: https://registry.npmmirror.com/universalify/-/universalify-0.1.2.tgz - - fs.realpath@https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz: {} - - fs.realpath@https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz: {} - - fsevents@https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz: - optional: true - - function-bind@https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz: {} - - function-bind@https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz: {} - - function.prototype.name@https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz: - dependencies: - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - define-properties: https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz - es-abstract: https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz - functions-have-names: https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz - - function.prototype.name@https://registry.npmmirror.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - define-properties: https://registry.npmmirror.com/define-properties/-/define-properties-1.2.0.tgz - es-abstract: https://registry.npmmirror.com/es-abstract/-/es-abstract-1.22.1.tgz - functions-have-names: https://registry.npmmirror.com/functions-have-names/-/functions-have-names-1.2.3.tgz - - functional-red-black-tree@https://registry.npmmirror.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz: {} - - functions-have-names@https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz: {} - - functions-have-names@https://registry.npmmirror.com/functions-have-names/-/functions-have-names-1.2.3.tgz: {} - - gensync@https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz: {} - - gensync@https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz: {} - - get-caller-file@https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz: {} - - get-intrinsic@https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz: - dependencies: - function-bind: https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz - has: https://registry.npmjs.org/has/-/has-1.0.3.tgz - has-proto: https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz - has-symbols: https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz - - get-intrinsic@https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz: - dependencies: - function-bind: https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz - has: https://registry.npmmirror.com/has/-/has-1.0.3.tgz - has-proto: https://registry.npmmirror.com/has-proto/-/has-proto-1.0.1.tgz - has-symbols: https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz - - get-own-enumerable-property-symbols@https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz: {} - - get-package-type@https://registry.npmmirror.com/get-package-type/-/get-package-type-0.1.0.tgz: {} - - get-pkg-repo@https://registry.npmmirror.com/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz: - dependencies: - '@hutson/parse-repository-url': https://registry.npmmirror.com/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz - hosted-git-info: https://registry.npmmirror.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz - through2: https://registry.npmmirror.com/through2/-/through2-2.0.5.tgz - yargs: https://registry.npmmirror.com/yargs/-/yargs-16.2.0.tgz - - get-proxy@https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz: - dependencies: - npm-conf: https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz - - get-proxy@https://registry.npmmirror.com/get-proxy/-/get-proxy-2.1.0.tgz: - dependencies: - npm-conf: https://registry.npmmirror.com/npm-conf/-/npm-conf-1.1.3.tgz - - get-stdin@https://registry.npmmirror.com/get-stdin/-/get-stdin-4.0.1.tgz: {} - - get-stdin@https://registry.npmmirror.com/get-stdin/-/get-stdin-8.0.0.tgz: {} - - get-stream@https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz: - dependencies: - object-assign: https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz - pinkie-promise: https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz - - get-stream@https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz: {} - - get-stream@https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz: - dependencies: - pump: https://registry.npmjs.org/pump/-/pump-3.0.0.tgz - - get-stream@https://registry.npmmirror.com/get-stream/-/get-stream-2.3.1.tgz: - dependencies: - object-assign: https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz - pinkie-promise: https://registry.npmmirror.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz - - get-stream@https://registry.npmmirror.com/get-stream/-/get-stream-3.0.0.tgz: {} - - get-stream@https://registry.npmmirror.com/get-stream/-/get-stream-4.1.0.tgz: - dependencies: - pump: https://registry.npmmirror.com/pump/-/pump-3.0.0.tgz - - get-stream@https://registry.npmmirror.com/get-stream/-/get-stream-5.2.0.tgz: - dependencies: - pump: https://registry.npmmirror.com/pump/-/pump-3.0.0.tgz - - get-stream@https://registry.npmmirror.com/get-stream/-/get-stream-6.0.1.tgz: {} - - get-symbol-description@https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz: - dependencies: - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - get-intrinsic: https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz - - get-symbol-description@https://registry.npmmirror.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - get-intrinsic: https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz - - get-value@https://registry.npmmirror.com/get-value/-/get-value-2.0.6.tgz: {} - - gifsicle@https://registry.npmmirror.com/gifsicle/-/gifsicle-5.2.0.tgz: - dependencies: - bin-build: https://registry.npmmirror.com/bin-build/-/bin-build-3.0.0.tgz - bin-wrapper: bin-wrapper-china@https://registry.npmjs.org/bin-wrapper-china/-/bin-wrapper-china-0.1.0.tgz - execa: https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz - logalot: https://registry.npmmirror.com/logalot/-/logalot-2.1.0.tgz - - git-raw-commits@https://registry.npmmirror.com/git-raw-commits/-/git-raw-commits-2.0.11.tgz: - dependencies: - dargs: https://registry.npmmirror.com/dargs/-/dargs-7.0.0.tgz - lodash: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz - meow: https://registry.npmmirror.com/meow/-/meow-8.1.2.tgz - split2: https://registry.npmmirror.com/split2/-/split2-3.2.2.tgz - through2: https://registry.npmmirror.com/through2/-/through2-4.0.2.tgz - - git-remote-origin-url@https://registry.npmmirror.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz: - dependencies: - gitconfiglocal: https://registry.npmmirror.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz - pify: https://registry.npmmirror.com/pify/-/pify-2.3.0.tgz - - git-semver-tags@https://registry.npmmirror.com/git-semver-tags/-/git-semver-tags-4.1.1.tgz: - dependencies: - meow: https://registry.npmmirror.com/meow/-/meow-8.1.2.tgz - semver: https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz - - gitconfiglocal@https://registry.npmmirror.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz: - dependencies: - ini: https://registry.npmmirror.com/ini/-/ini-1.3.8.tgz - - glob-parent@https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz: - dependencies: - is-glob: https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz - - glob-parent@https://registry.npmmirror.com/glob-parent/-/glob-parent-6.0.2.tgz: - dependencies: - is-glob: https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz - - glob@https://registry.npmjs.org/glob/-/glob-7.2.3.tgz: - dependencies: - fs.realpath: https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz - inflight: https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz - inherits: https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz - minimatch: https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz - once: https://registry.npmjs.org/once/-/once-1.4.0.tgz - path-is-absolute: https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz - - glob@https://registry.npmmirror.com/glob/-/glob-7.1.4.tgz: - dependencies: - fs.realpath: https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz - inflight: https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz - inherits: https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz - minimatch: https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz - once: https://registry.npmmirror.com/once/-/once-1.4.0.tgz - path-is-absolute: https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz - - glob@https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz: - dependencies: - fs.realpath: https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz - inflight: https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz - inherits: https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz - minimatch: https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz - once: https://registry.npmmirror.com/once/-/once-1.4.0.tgz - path-is-absolute: https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz - - global-dirs@https://registry.npmmirror.com/global-dirs/-/global-dirs-0.1.1.tgz: - dependencies: - ini: https://registry.npmmirror.com/ini/-/ini-1.3.8.tgz - - global-modules@https://registry.npmmirror.com/global-modules/-/global-modules-1.0.0.tgz: - dependencies: - global-prefix: https://registry.npmmirror.com/global-prefix/-/global-prefix-1.0.2.tgz - is-windows: https://registry.npmmirror.com/is-windows/-/is-windows-1.0.2.tgz - resolve-dir: https://registry.npmmirror.com/resolve-dir/-/resolve-dir-1.0.1.tgz - - global-modules@https://registry.npmmirror.com/global-modules/-/global-modules-2.0.0.tgz: - dependencies: - global-prefix: https://registry.npmmirror.com/global-prefix/-/global-prefix-3.0.0.tgz - - global-prefix@https://registry.npmmirror.com/global-prefix/-/global-prefix-1.0.2.tgz: - dependencies: - expand-tilde: https://registry.npmmirror.com/expand-tilde/-/expand-tilde-2.0.2.tgz - homedir-polyfill: https://registry.npmmirror.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz - ini: https://registry.npmmirror.com/ini/-/ini-1.3.8.tgz - is-windows: https://registry.npmmirror.com/is-windows/-/is-windows-1.0.2.tgz - which: https://registry.npmmirror.com/which/-/which-1.3.1.tgz - - global-prefix@https://registry.npmmirror.com/global-prefix/-/global-prefix-3.0.0.tgz: - dependencies: - ini: https://registry.npmmirror.com/ini/-/ini-1.3.8.tgz - kind-of: https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz - which: https://registry.npmmirror.com/which/-/which-1.3.1.tgz - - globals@https://registry.npmjs.org/globals/-/globals-11.12.0.tgz: {} - - globals@https://registry.npmmirror.com/globals/-/globals-11.12.0.tgz: {} - - globals@https://registry.npmmirror.com/globals/-/globals-13.21.0.tgz: - dependencies: - type-fest: https://registry.npmmirror.com/type-fest/-/type-fest-0.20.2.tgz - - globalthis@https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz: - dependencies: - define-properties: https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz - - globalthis@https://registry.npmmirror.com/globalthis/-/globalthis-1.0.3.tgz: - dependencies: - define-properties: https://registry.npmmirror.com/define-properties/-/define-properties-1.2.0.tgz - - globby@https://registry.npmmirror.com/globby/-/globby-10.0.2.tgz: - dependencies: - '@types/glob': https://registry.npmmirror.com/@types/glob/-/glob-7.2.0.tgz - array-union: https://registry.npmmirror.com/array-union/-/array-union-2.1.0.tgz - dir-glob: https://registry.npmmirror.com/dir-glob/-/dir-glob-3.0.1.tgz - fast-glob: https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.1.tgz - glob: https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz - ignore: https://registry.npmmirror.com/ignore/-/ignore-5.2.4.tgz - merge2: https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz - slash: https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz - - globby@https://registry.npmmirror.com/globby/-/globby-11.1.0.tgz: - dependencies: - array-union: https://registry.npmmirror.com/array-union/-/array-union-2.1.0.tgz - dir-glob: https://registry.npmmirror.com/dir-glob/-/dir-glob-3.0.1.tgz - fast-glob: https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.1.tgz - ignore: https://registry.npmmirror.com/ignore/-/ignore-5.2.4.tgz - merge2: https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz - slash: https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz - - globjoin@https://registry.npmmirror.com/globjoin/-/globjoin-0.1.4.tgz: {} - - good-listener@https://registry.npmmirror.com/good-listener/-/good-listener-1.2.2.tgz: - dependencies: - delegate: https://registry.npmmirror.com/delegate/-/delegate-3.2.0.tgz - - gopd@https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz: - dependencies: - get-intrinsic: https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz - - gopd@https://registry.npmmirror.com/gopd/-/gopd-1.0.1.tgz: - dependencies: - get-intrinsic: https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz - - got@https://registry.npmjs.org/got/-/got-8.3.2.tgz: - dependencies: - '@sindresorhus/is': https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz - '@types/keyv': https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz - '@types/responselike': https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz - cacheable-request: https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz - decompress-response: https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz - duplexer3: https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz - get-stream: https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz - into-stream: https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz - is-retry-allowed: https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz - isurl: https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz - lowercase-keys: https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz - mimic-response: https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz - p-cancelable: https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz - p-timeout: https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz - pify: https://registry.npmjs.org/pify/-/pify-3.0.0.tgz - safe-buffer: https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz - timed-out: https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz - url-parse-lax: https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz - url-to-options: https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz - - got@https://registry.npmmirror.com/got/-/got-7.1.0.tgz: - dependencies: - '@types/keyv': https://registry.npmmirror.com/@types/keyv/-/keyv-3.1.4.tgz - '@types/responselike': https://registry.npmmirror.com/@types/responselike/-/responselike-1.0.0.tgz - decompress-response: https://registry.npmmirror.com/decompress-response/-/decompress-response-3.3.0.tgz - duplexer3: https://registry.npmmirror.com/duplexer3/-/duplexer3-0.1.5.tgz - get-stream: https://registry.npmmirror.com/get-stream/-/get-stream-3.0.0.tgz - is-plain-obj: https://registry.npmmirror.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz - is-retry-allowed: https://registry.npmmirror.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz - is-stream: https://registry.npmmirror.com/is-stream/-/is-stream-1.1.0.tgz - isurl: https://registry.npmmirror.com/isurl/-/isurl-1.0.0.tgz - lowercase-keys: https://registry.npmmirror.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz - p-cancelable: https://registry.npmmirror.com/p-cancelable/-/p-cancelable-0.3.0.tgz - p-timeout: https://registry.npmmirror.com/p-timeout/-/p-timeout-1.2.1.tgz - safe-buffer: https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz - timed-out: https://registry.npmmirror.com/timed-out/-/timed-out-4.0.1.tgz - url-parse-lax: https://registry.npmmirror.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz - url-to-options: https://registry.npmmirror.com/url-to-options/-/url-to-options-1.0.1.tgz - - graceful-fs@https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz: {} - - graceful-fs@https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz: {} - - gradient-parser@https://registry.npmmirror.com/gradient-parser/-/gradient-parser-1.0.2.tgz: {} - - grapheme-splitter@https://registry.npmmirror.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz: {} - - handlebars@https://registry.npmmirror.com/handlebars/-/handlebars-4.7.8.tgz: - dependencies: - minimist: https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz - neo-async: https://registry.npmmirror.com/neo-async/-/neo-async-2.6.2.tgz - source-map: https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz - wordwrap: https://registry.npmmirror.com/wordwrap/-/wordwrap-1.0.0.tgz - optionalDependencies: - uglify-js: https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz - - hard-rejection@https://registry.npmmirror.com/hard-rejection/-/hard-rejection-2.1.0.tgz: {} - - has-ansi@https://registry.npmmirror.com/has-ansi/-/has-ansi-2.0.0.tgz: - dependencies: - ansi-regex: https://registry.npmmirror.com/ansi-regex/-/ansi-regex-2.1.1.tgz - - has-bigints@https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz: {} - - has-bigints@https://registry.npmmirror.com/has-bigints/-/has-bigints-1.0.2.tgz: {} - - has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz: {} - - has-flag@https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz: {} - - has-flag@https://registry.npmmirror.com/has-flag/-/has-flag-1.0.0.tgz: {} - - has-flag@https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz: {} - - has-flag@https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz: {} - - has-property-descriptors@https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz: - dependencies: - get-intrinsic: https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz - - has-property-descriptors@https://registry.npmmirror.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz: - dependencies: - get-intrinsic: https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz - - has-proto@https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz: {} - - has-proto@https://registry.npmmirror.com/has-proto/-/has-proto-1.0.1.tgz: {} - - has-symbol-support-x@https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz: {} - - has-symbol-support-x@https://registry.npmmirror.com/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz: {} - - has-symbols@https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz: {} - - has-symbols@https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz: {} - - has-to-string-tag-x@https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz: - dependencies: - has-symbol-support-x: https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz - - has-to-string-tag-x@https://registry.npmmirror.com/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz: - dependencies: - has-symbol-support-x: https://registry.npmmirror.com/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz - - has-tostringtag@https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz: - dependencies: - has-symbols: https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz - - has-tostringtag@https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz: - dependencies: - has-symbols: https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz - - has-value@https://registry.npmmirror.com/has-value/-/has-value-0.3.1.tgz: - dependencies: - get-value: https://registry.npmmirror.com/get-value/-/get-value-2.0.6.tgz - has-values: https://registry.npmmirror.com/has-values/-/has-values-0.1.4.tgz - isobject: https://registry.npmmirror.com/isobject/-/isobject-2.1.0.tgz - - has-value@https://registry.npmmirror.com/has-value/-/has-value-1.0.0.tgz: - dependencies: - get-value: https://registry.npmmirror.com/get-value/-/get-value-2.0.6.tgz - has-values: https://registry.npmmirror.com/has-values/-/has-values-1.0.0.tgz - isobject: https://registry.npmmirror.com/isobject/-/isobject-3.0.1.tgz - - has-values@https://registry.npmmirror.com/has-values/-/has-values-0.1.4.tgz: {} - - has-values@https://registry.npmmirror.com/has-values/-/has-values-1.0.0.tgz: - dependencies: - is-number: https://registry.npmmirror.com/is-number/-/is-number-3.0.0.tgz - kind-of: https://registry.npmmirror.com/kind-of/-/kind-of-4.0.0.tgz - - has@https://registry.npmjs.org/has/-/has-1.0.3.tgz: - dependencies: - function-bind: https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz - - has@https://registry.npmmirror.com/has/-/has-1.0.3.tgz: - dependencies: - function-bind: https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz - - hash-sum@https://registry.npmmirror.com/hash-sum/-/hash-sum-2.0.0.tgz: {} - - he@https://registry.npmmirror.com/he/-/he-1.2.0.tgz: {} - - header-case@https://registry.npmmirror.com/header-case/-/header-case-2.0.4.tgz: - dependencies: - capital-case: https://registry.npmmirror.com/capital-case/-/capital-case-1.0.4.tgz - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - - homedir-polyfill@https://registry.npmmirror.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz: - dependencies: - parse-passwd: https://registry.npmmirror.com/parse-passwd/-/parse-passwd-1.0.0.tgz - - hosted-git-info@https://registry.npmmirror.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz: {} - - hosted-git-info@https://registry.npmmirror.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz: - dependencies: - lru-cache: https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz - - html-encoding-sniffer@https://registry.npmmirror.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz: - dependencies: - whatwg-encoding: https://registry.npmmirror.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz - - html-encoding-sniffer@https://registry.npmmirror.com/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz: - dependencies: - whatwg-encoding: https://registry.npmmirror.com/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz - - html-escaper@https://registry.npmmirror.com/html-escaper/-/html-escaper-2.0.2.tgz: {} - - html-minifier-terser@https://registry.npmmirror.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz: - dependencies: - camel-case: https://registry.npmmirror.com/camel-case/-/camel-case-4.1.2.tgz - clean-css: https://registry.npmmirror.com/clean-css/-/clean-css-5.3.2.tgz - commander: https://registry.npmmirror.com/commander/-/commander-8.3.0.tgz - he: https://registry.npmmirror.com/he/-/he-1.2.0.tgz - param-case: https://registry.npmmirror.com/param-case/-/param-case-3.0.4.tgz - relateurl: https://registry.npmmirror.com/relateurl/-/relateurl-0.2.7.tgz - terser: https://registry.npmmirror.com/terser/-/terser-5.19.2.tgz - - html-tags@https://registry.npmmirror.com/html-tags/-/html-tags-3.3.1.tgz: {} - - html2canvas@https://registry.npmjs.org/html2canvas/-/html2canvas-1.4.1.tgz: - dependencies: - css-line-break: https://registry.npmmirror.com/css-line-break/-/css-line-break-2.1.0.tgz - text-segmentation: https://registry.npmmirror.com/text-segmentation/-/text-segmentation-1.0.3.tgz - optional: true - - html2canvas@https://registry.npmmirror.com/html2canvas/-/html2canvas-1.4.1.tgz: - dependencies: - css-line-break: https://registry.npmmirror.com/css-line-break/-/css-line-break-2.1.0.tgz - text-segmentation: https://registry.npmmirror.com/text-segmentation/-/text-segmentation-1.0.3.tgz - - htmlparser2@https://registry.npmmirror.com/htmlparser2/-/htmlparser2-3.10.1.tgz: - dependencies: - domelementtype: https://registry.npmmirror.com/domelementtype/-/domelementtype-1.3.1.tgz - domhandler: https://registry.npmmirror.com/domhandler/-/domhandler-2.4.2.tgz - domutils: https://registry.npmmirror.com/domutils/-/domutils-1.7.0.tgz - entities: https://registry.npmmirror.com/entities/-/entities-1.1.2.tgz - inherits: https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz - readable-stream: https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz - - htmlparser2@https://registry.npmmirror.com/htmlparser2/-/htmlparser2-7.2.0.tgz: - dependencies: - domelementtype: https://registry.npmmirror.com/domelementtype/-/domelementtype-2.3.0.tgz - domhandler: https://registry.npmmirror.com/domhandler/-/domhandler-4.3.1.tgz - domutils: https://registry.npmmirror.com/domutils/-/domutils-2.8.0.tgz - entities: https://registry.npmmirror.com/entities/-/entities-3.0.1.tgz - - http-cache-semantics@https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz: {} - - http-proxy-agent@https://registry.npmmirror.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz: - dependencies: - '@tootallnate/once': https://registry.npmmirror.com/@tootallnate/once/-/once-1.1.2.tgz - agent-base: https://registry.npmmirror.com/agent-base/-/agent-base-6.0.2.tgz - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - transitivePeerDependencies: - - supports-color - - http-proxy@https://registry.npmmirror.com/http-proxy/-/http-proxy-1.18.1.tgz: - dependencies: - eventemitter3: https://registry.npmmirror.com/eventemitter3/-/eventemitter3-4.0.7.tgz - follow-redirects: https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.2.tgz(debug@4.3.4) - requires-port: https://registry.npmmirror.com/requires-port/-/requires-port-1.0.0.tgz - transitivePeerDependencies: - - debug - - http-server@https://registry.npmmirror.com/http-server/-/http-server-14.0.0.tgz: - dependencies: - basic-auth: https://registry.npmmirror.com/basic-auth/-/basic-auth-2.0.1.tgz - colors: https://registry.npmmirror.com/colors/-/colors-1.4.0.tgz - corser: https://registry.npmmirror.com/corser/-/corser-2.0.1.tgz - he: https://registry.npmmirror.com/he/-/he-1.2.0.tgz - html-encoding-sniffer: https://registry.npmmirror.com/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz - http-proxy: https://registry.npmmirror.com/http-proxy/-/http-proxy-1.18.1.tgz - mime: https://registry.npmmirror.com/mime/-/mime-1.6.0.tgz - minimist: https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz - opener: https://registry.npmmirror.com/opener/-/opener-1.5.2.tgz - portfinder: https://registry.npmmirror.com/portfinder/-/portfinder-1.0.32.tgz - secure-compare: https://registry.npmmirror.com/secure-compare/-/secure-compare-3.0.1.tgz - union: https://registry.npmmirror.com/union/-/union-0.5.0.tgz - url-join: https://registry.npmmirror.com/url-join/-/url-join-4.0.1.tgz - transitivePeerDependencies: - - debug - - supports-color - - https-proxy-agent@https://registry.npmmirror.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz: - dependencies: - agent-base: https://registry.npmmirror.com/agent-base/-/agent-base-6.0.2.tgz - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - transitivePeerDependencies: - - supports-color - - human-signals@https://registry.npmmirror.com/human-signals/-/human-signals-1.1.1.tgz: {} - - human-signals@https://registry.npmmirror.com/human-signals/-/human-signals-2.1.0.tgz: {} - - husky@https://registry.npmmirror.com/husky/-/husky-7.0.4.tgz: {} - - iconv-lite@https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz: - dependencies: - safer-buffer: https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz - - iconv-lite@https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.6.3.tgz: - dependencies: - safer-buffer: https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz - - idb@https://registry.npmjs.org/idb/-/idb-7.1.1.tgz: {} - - ids@https://registry.npmmirror.com/ids/-/ids-1.0.5.tgz: {} - - ieee754@https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz: {} - - ieee754@https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz: {} - - ignore@https://registry.npmmirror.com/ignore/-/ignore-5.2.4.tgz: {} - - image-size@https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz: - optional: true - - image-size@https://registry.npmmirror.com/image-size/-/image-size-0.5.5.tgz: {} - - imagemin-gifsicle@https://registry.npmmirror.com/imagemin-gifsicle/-/imagemin-gifsicle-7.0.0.tgz: - dependencies: - execa: https://registry.npmmirror.com/execa/-/execa-1.0.0.tgz - gifsicle: https://registry.npmmirror.com/gifsicle/-/gifsicle-5.2.0.tgz - is-gif: https://registry.npmmirror.com/is-gif/-/is-gif-3.0.0.tgz - - imagemin-jpegtran@https://registry.npmmirror.com/imagemin-jpegtran/-/imagemin-jpegtran-7.0.0.tgz: - dependencies: - exec-buffer: https://registry.npmmirror.com/exec-buffer/-/exec-buffer-3.2.0.tgz - is-jpg: https://registry.npmmirror.com/is-jpg/-/is-jpg-2.0.0.tgz - jpegtran-bin: https://registry.npmmirror.com/jpegtran-bin/-/jpegtran-bin-5.0.2.tgz - - imagemin-mozjpeg@https://registry.npmmirror.com/imagemin-mozjpeg/-/imagemin-mozjpeg-9.0.0.tgz: - dependencies: - execa: https://registry.npmmirror.com/execa/-/execa-4.1.0.tgz - is-jpg: https://registry.npmmirror.com/is-jpg/-/is-jpg-2.0.0.tgz - mozjpeg: https://registry.npmmirror.com/mozjpeg/-/mozjpeg-7.1.1.tgz - - imagemin-optipng@https://registry.npmmirror.com/imagemin-optipng/-/imagemin-optipng-8.0.0.tgz: - dependencies: - exec-buffer: https://registry.npmmirror.com/exec-buffer/-/exec-buffer-3.2.0.tgz - is-png: https://registry.npmmirror.com/is-png/-/is-png-2.0.0.tgz - optipng-bin: https://registry.npmmirror.com/optipng-bin/-/optipng-bin-7.0.1.tgz - - imagemin-pngquant@https://registry.npmmirror.com/imagemin-pngquant/-/imagemin-pngquant-9.0.2.tgz: - dependencies: - execa: https://registry.npmmirror.com/execa/-/execa-4.1.0.tgz - is-png: https://registry.npmmirror.com/is-png/-/is-png-2.0.0.tgz - is-stream: https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz - ow: https://registry.npmmirror.com/ow/-/ow-0.17.0.tgz - pngquant-bin: https://registry.npmmirror.com/pngquant-bin/-/pngquant-bin-6.0.1.tgz - - imagemin-svgo@https://registry.npmmirror.com/imagemin-svgo/-/imagemin-svgo-9.0.0.tgz: - dependencies: - is-svg: https://registry.npmmirror.com/is-svg/-/is-svg-4.4.0.tgz - svgo: https://registry.npmmirror.com/svgo/-/svgo-2.8.0.tgz - - imagemin-webp@https://registry.npmmirror.com/imagemin-webp/-/imagemin-webp-6.1.0.tgz: - dependencies: - cwebp-bin: https://registry.npmmirror.com/cwebp-bin/-/cwebp-bin-6.1.2.tgz - exec-buffer: https://registry.npmmirror.com/exec-buffer/-/exec-buffer-3.2.0.tgz - is-cwebp-readable: https://registry.npmmirror.com/is-cwebp-readable/-/is-cwebp-readable-3.0.0.tgz - - imagemin@https://registry.npmmirror.com/imagemin/-/imagemin-7.0.1.tgz: - dependencies: - file-type: https://registry.npmmirror.com/file-type/-/file-type-12.4.2.tgz - globby: https://registry.npmmirror.com/globby/-/globby-10.0.2.tgz - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - junk: https://registry.npmmirror.com/junk/-/junk-3.1.0.tgz - make-dir: https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz - p-pipe: https://registry.npmmirror.com/p-pipe/-/p-pipe-3.1.0.tgz - replace-ext: https://registry.npmmirror.com/replace-ext/-/replace-ext-1.0.1.tgz - - import-fresh@https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz: - dependencies: - parent-module: https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz - resolve-from: https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz - - import-lazy@https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz: {} - - import-lazy@https://registry.npmmirror.com/import-lazy/-/import-lazy-4.0.0.tgz: {} - - import-local@https://registry.npmmirror.com/import-local/-/import-local-3.1.0.tgz: - dependencies: - pkg-dir: https://registry.npmmirror.com/pkg-dir/-/pkg-dir-4.2.0.tgz - resolve-cwd: https://registry.npmmirror.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz - - import-meta-resolve@https://registry.npmmirror.com/import-meta-resolve/-/import-meta-resolve-1.1.1.tgz: - dependencies: - builtins: https://registry.npmmirror.com/builtins/-/builtins-4.1.0.tgz - - imurmurhash@https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz: {} - - indent-string@https://registry.npmmirror.com/indent-string/-/indent-string-2.1.0.tgz: - dependencies: - repeating: https://registry.npmmirror.com/repeating/-/repeating-2.0.1.tgz - - indent-string@https://registry.npmmirror.com/indent-string/-/indent-string-4.0.0.tgz: {} - - inflight@https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz: - dependencies: - once: https://registry.npmjs.org/once/-/once-1.4.0.tgz - wrappy: https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz - - inflight@https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz: - dependencies: - once: https://registry.npmmirror.com/once/-/once-1.4.0.tgz - wrappy: https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz - - inherits@https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz: {} - - inherits@https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz: {} - - ini@https://registry.npmjs.org/ini/-/ini-1.3.8.tgz: {} - - ini@https://registry.npmmirror.com/ini/-/ini-1.3.8.tgz: {} - - inquirer@https://registry.npmmirror.com/inquirer/-/inquirer-6.5.2.tgz: - dependencies: - ansi-escapes: https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz - cli-cursor: https://registry.npmmirror.com/cli-cursor/-/cli-cursor-2.1.0.tgz - cli-width: https://registry.npmmirror.com/cli-width/-/cli-width-2.2.1.tgz - external-editor: https://registry.npmmirror.com/external-editor/-/external-editor-3.1.0.tgz - figures: https://registry.npmmirror.com/figures/-/figures-2.0.0.tgz - lodash: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz - mute-stream: https://registry.npmmirror.com/mute-stream/-/mute-stream-0.0.7.tgz - run-async: https://registry.npmmirror.com/run-async/-/run-async-2.4.1.tgz - rxjs: https://registry.npmmirror.com/rxjs/-/rxjs-6.6.7.tgz - string-width: https://registry.npmmirror.com/string-width/-/string-width-2.1.1.tgz - strip-ansi: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-5.2.0.tgz - through: https://registry.npmmirror.com/through/-/through-2.3.8.tgz - - inquirer@https://registry.npmmirror.com/inquirer/-/inquirer-8.2.2.tgz: - dependencies: - ansi-escapes: https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - cli-cursor: https://registry.npmmirror.com/cli-cursor/-/cli-cursor-3.1.0.tgz - cli-width: https://registry.npmmirror.com/cli-width/-/cli-width-3.0.0.tgz - external-editor: https://registry.npmmirror.com/external-editor/-/external-editor-3.1.0.tgz - figures: https://registry.npmmirror.com/figures/-/figures-3.2.0.tgz - lodash: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz - mute-stream: https://registry.npmmirror.com/mute-stream/-/mute-stream-0.0.8.tgz - ora: https://registry.npmmirror.com/ora/-/ora-5.4.1.tgz - run-async: https://registry.npmmirror.com/run-async/-/run-async-2.4.1.tgz - rxjs: https://registry.npmmirror.com/rxjs/-/rxjs-7.8.1.tgz - string-width: https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz - strip-ansi: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz - through: https://registry.npmmirror.com/through/-/through-2.3.8.tgz - - internal-slot@https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz: - dependencies: - get-intrinsic: https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz - has: https://registry.npmjs.org/has/-/has-1.0.3.tgz - side-channel: https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz - - internal-slot@https://registry.npmmirror.com/internal-slot/-/internal-slot-1.0.5.tgz: - dependencies: - get-intrinsic: https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz - has: https://registry.npmmirror.com/has/-/has-1.0.3.tgz - side-channel: https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz - - into-stream@https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz: - dependencies: - from2: https://registry.npmjs.org/from2/-/from2-2.3.0.tgz - p-is-promise: https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz - - intro.js@https://registry.npmmirror.com/intro.js/-/intro.js-5.1.0.tgz: {} - - is-accessor-descriptor@https://registry.npmmirror.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz: - dependencies: - kind-of: https://registry.npmmirror.com/kind-of/-/kind-of-3.2.2.tgz - - is-accessor-descriptor@https://registry.npmmirror.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz: - dependencies: - kind-of: https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz - - is-array-buffer@https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz: - dependencies: - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - get-intrinsic: https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz - is-typed-array: https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz - - is-array-buffer@https://registry.npmmirror.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - get-intrinsic: https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz - is-typed-array: https://registry.npmmirror.com/is-typed-array/-/is-typed-array-1.1.12.tgz - - is-arrayish@https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.2.1.tgz: {} - - is-bigint@https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz: - dependencies: - has-bigints: https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz - - is-bigint@https://registry.npmmirror.com/is-bigint/-/is-bigint-1.0.4.tgz: - dependencies: - has-bigints: https://registry.npmmirror.com/has-bigints/-/has-bigints-1.0.2.tgz - - is-binary-path@https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz: - dependencies: - binary-extensions: https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz - - is-boolean-object@https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz: - dependencies: - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - has-tostringtag: https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz - - is-boolean-object@https://registry.npmmirror.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - has-tostringtag: https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz - - is-buffer@https://registry.npmmirror.com/is-buffer/-/is-buffer-1.1.6.tgz: {} - - is-builtin-module@https://registry.npmmirror.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz: - dependencies: - builtin-modules: https://registry.npmmirror.com/builtin-modules/-/builtin-modules-3.3.0.tgz - - is-callable@https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz: {} - - is-callable@https://registry.npmmirror.com/is-callable/-/is-callable-1.2.7.tgz: {} - - is-ci@https://registry.npmmirror.com/is-ci/-/is-ci-3.0.0.tgz: - dependencies: - ci-info: https://registry.npmmirror.com/ci-info/-/ci-info-3.8.0.tgz - - is-core-module@https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz: - dependencies: - has: https://registry.npmjs.org/has/-/has-1.0.3.tgz - - is-core-module@https://registry.npmmirror.com/is-core-module/-/is-core-module-2.13.0.tgz: - dependencies: - has: https://registry.npmmirror.com/has/-/has-1.0.3.tgz - - is-cwebp-readable@https://registry.npmmirror.com/is-cwebp-readable/-/is-cwebp-readable-3.0.0.tgz: - dependencies: - file-type: https://registry.npmmirror.com/file-type/-/file-type-10.11.0.tgz - - is-data-descriptor@https://registry.npmmirror.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz: - dependencies: - kind-of: https://registry.npmmirror.com/kind-of/-/kind-of-3.2.2.tgz - - is-data-descriptor@https://registry.npmmirror.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz: - dependencies: - kind-of: https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz - - is-date-object@https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz: - dependencies: - has-tostringtag: https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz - - is-date-object@https://registry.npmmirror.com/is-date-object/-/is-date-object-1.0.5.tgz: - dependencies: - has-tostringtag: https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz - - is-descriptor@https://registry.npmmirror.com/is-descriptor/-/is-descriptor-0.1.6.tgz: - dependencies: - is-accessor-descriptor: https://registry.npmmirror.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz - is-data-descriptor: https://registry.npmmirror.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz - kind-of: https://registry.npmmirror.com/kind-of/-/kind-of-5.1.0.tgz - - is-descriptor@https://registry.npmmirror.com/is-descriptor/-/is-descriptor-1.0.2.tgz: - dependencies: - is-accessor-descriptor: https://registry.npmmirror.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz - is-data-descriptor: https://registry.npmmirror.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz - kind-of: https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz - - is-docker@https://registry.npmmirror.com/is-docker/-/is-docker-2.2.1.tgz: {} - - is-expression@https://registry.npmmirror.com/is-expression/-/is-expression-4.0.0.tgz: - dependencies: - acorn: https://registry.npmmirror.com/acorn/-/acorn-7.4.1.tgz - object-assign: https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz - - is-extendable@https://registry.npmmirror.com/is-extendable/-/is-extendable-0.1.1.tgz: {} - - is-extendable@https://registry.npmmirror.com/is-extendable/-/is-extendable-1.0.1.tgz: - dependencies: - is-plain-object: https://registry.npmmirror.com/is-plain-object/-/is-plain-object-2.0.4.tgz - - is-extglob@https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz: {} - - is-finite@https://registry.npmmirror.com/is-finite/-/is-finite-1.1.0.tgz: {} - - is-fullwidth-code-point@https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz: {} - - is-fullwidth-code-point@https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz: {} - - is-fullwidth-code-point@https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz: {} - - is-generator-fn@https://registry.npmmirror.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz: {} - - is-gif@https://registry.npmmirror.com/is-gif/-/is-gif-3.0.0.tgz: - dependencies: - file-type: https://registry.npmmirror.com/file-type/-/file-type-10.11.0.tgz - - is-glob@https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz: - dependencies: - is-extglob: https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz - - is-interactive@https://registry.npmmirror.com/is-interactive/-/is-interactive-1.0.0.tgz: {} - - is-jpg@https://registry.npmmirror.com/is-jpg/-/is-jpg-2.0.0.tgz: {} - - is-module@https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz: {} - - is-module@https://registry.npmmirror.com/is-module/-/is-module-1.0.0.tgz: {} - - is-nan@https://registry.npmmirror.com/is-nan/-/is-nan-1.3.2.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - define-properties: https://registry.npmmirror.com/define-properties/-/define-properties-1.2.0.tgz - - is-natural-number@https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz: {} - - is-natural-number@https://registry.npmmirror.com/is-natural-number/-/is-natural-number-4.0.1.tgz: {} - - is-negative-zero@https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz: {} - - is-negative-zero@https://registry.npmmirror.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz: {} - - is-number-object@https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz: - dependencies: - has-tostringtag: https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz - - is-number-object@https://registry.npmmirror.com/is-number-object/-/is-number-object-1.0.7.tgz: - dependencies: - has-tostringtag: https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz - - is-number@https://registry.npmmirror.com/is-number/-/is-number-3.0.0.tgz: - dependencies: - kind-of: https://registry.npmmirror.com/kind-of/-/kind-of-3.2.2.tgz - - is-number@https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz: {} - - is-obj@https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz: {} - - is-obj@https://registry.npmmirror.com/is-obj/-/is-obj-2.0.0.tgz: {} - - is-object@https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz: {} - - is-object@https://registry.npmmirror.com/is-object/-/is-object-1.0.2.tgz: {} - - is-plain-obj@https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz: {} - - is-plain-obj@https://registry.npmmirror.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz: {} - - is-plain-object@https://registry.npmmirror.com/is-plain-object/-/is-plain-object-2.0.4.tgz: - dependencies: - isobject: https://registry.npmmirror.com/isobject/-/isobject-3.0.1.tgz - - is-plain-object@https://registry.npmmirror.com/is-plain-object/-/is-plain-object-3.0.1.tgz: {} - - is-plain-object@https://registry.npmmirror.com/is-plain-object/-/is-plain-object-5.0.0.tgz: {} - - is-png@https://registry.npmmirror.com/is-png/-/is-png-2.0.0.tgz: {} - - is-potential-custom-element-name@https://registry.npmmirror.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz: {} - - is-regex@https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz: - dependencies: - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - has-tostringtag: https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz - - is-regex@https://registry.npmmirror.com/is-regex/-/is-regex-1.1.4.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - has-tostringtag: https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz - - is-regexp@https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz: {} - - is-regexp@https://registry.npmmirror.com/is-regexp/-/is-regexp-2.1.0.tgz: {} - - is-retry-allowed@https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz: {} - - is-retry-allowed@https://registry.npmmirror.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz: {} - - is-shared-array-buffer@https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz: - dependencies: - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - - is-shared-array-buffer@https://registry.npmmirror.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - - is-stream@https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz: {} - - is-stream@https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz: {} - - is-stream@https://registry.npmmirror.com/is-stream/-/is-stream-1.1.0.tgz: {} - - is-stream@https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz: {} - - is-string@https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz: - dependencies: - has-tostringtag: https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz - - is-string@https://registry.npmmirror.com/is-string/-/is-string-1.0.7.tgz: - dependencies: - has-tostringtag: https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz - - is-svg@https://registry.npmmirror.com/is-svg/-/is-svg-4.4.0.tgz: - dependencies: - fast-xml-parser: https://registry.npmmirror.com/fast-xml-parser/-/fast-xml-parser-4.2.7.tgz - - is-symbol@https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz: - dependencies: - has-symbols: https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz - - is-symbol@https://registry.npmmirror.com/is-symbol/-/is-symbol-1.0.4.tgz: - dependencies: - has-symbols: https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz - - is-text-path@https://registry.npmmirror.com/is-text-path/-/is-text-path-1.0.1.tgz: - dependencies: - text-extensions: https://registry.npmmirror.com/text-extensions/-/text-extensions-1.9.0.tgz - - is-typed-array@https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz: - dependencies: - which-typed-array: https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz - - is-typed-array@https://registry.npmmirror.com/is-typed-array/-/is-typed-array-1.1.12.tgz: - dependencies: - which-typed-array: https://registry.npmmirror.com/which-typed-array/-/which-typed-array-1.1.11.tgz - - is-typedarray@https://registry.npmmirror.com/is-typedarray/-/is-typedarray-1.0.0.tgz: {} - - is-unicode-supported@https://registry.npmmirror.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz: {} - - is-utf8@https://registry.npmmirror.com/is-utf8/-/is-utf8-0.2.1.tgz: {} - - is-weakref@https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz: - dependencies: - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - - is-weakref@https://registry.npmmirror.com/is-weakref/-/is-weakref-1.0.2.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - - is-what@https://registry.npmmirror.com/is-what/-/is-what-3.14.1.tgz: {} - - is-windows@https://registry.npmmirror.com/is-windows/-/is-windows-1.0.2.tgz: {} - - is-wsl@https://registry.npmmirror.com/is-wsl/-/is-wsl-2.2.0.tgz: - dependencies: - is-docker: https://registry.npmmirror.com/is-docker/-/is-docker-2.2.1.tgz - - isarray@https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz: {} - - isarray@https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz: {} - - isarray@https://registry.npmmirror.com/isarray/-/isarray-1.0.0.tgz: {} - - isarray@https://registry.npmmirror.com/isarray/-/isarray-2.0.5.tgz: {} - - isexe@https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz: {} - - isexe@https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz: {} - - isobject@https://registry.npmmirror.com/isobject/-/isobject-2.1.0.tgz: - dependencies: - isarray: https://registry.npmmirror.com/isarray/-/isarray-1.0.0.tgz - - isobject@https://registry.npmmirror.com/isobject/-/isobject-3.0.1.tgz: {} - - istanbul-lib-coverage@https://registry.npmmirror.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz: {} - - istanbul-lib-instrument@https://registry.npmmirror.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz: - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/parser': https://registry.npmmirror.com/@babel/parser/-/parser-7.22.10.tgz - '@istanbuljs/schema': https://registry.npmmirror.com/@istanbuljs/schema/-/schema-0.1.3.tgz - istanbul-lib-coverage: https://registry.npmmirror.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz - semver: https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz - transitivePeerDependencies: - - supports-color - - istanbul-lib-report@https://registry.npmmirror.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz: - dependencies: - istanbul-lib-coverage: https://registry.npmmirror.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz - make-dir: https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz - supports-color: https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz - - istanbul-lib-source-maps@https://registry.npmmirror.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz: - dependencies: - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - istanbul-lib-coverage: https://registry.npmmirror.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz - source-map: https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz - transitivePeerDependencies: - - supports-color - - istanbul-reports@https://registry.npmmirror.com/istanbul-reports/-/istanbul-reports-3.1.6.tgz: - dependencies: - html-escaper: https://registry.npmmirror.com/html-escaper/-/html-escaper-2.0.2.tgz - istanbul-lib-report: https://registry.npmmirror.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz - - isurl@https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz: - dependencies: - has-to-string-tag-x: https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz - is-object: https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz - - isurl@https://registry.npmmirror.com/isurl/-/isurl-1.0.0.tgz: - dependencies: - has-to-string-tag-x: https://registry.npmmirror.com/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz - is-object: https://registry.npmmirror.com/is-object/-/is-object-1.0.2.tgz - - jake@https://registry.npmjs.org/jake/-/jake-10.8.7.tgz: - dependencies: - async: https://registry.npmjs.org/async/-/async-3.2.4.tgz - chalk: https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz - filelist: https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz - minimatch: https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz - - jake@https://registry.npmmirror.com/jake/-/jake-10.8.7.tgz: - dependencies: - async: https://registry.npmmirror.com/async/-/async-3.2.4.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - filelist: https://registry.npmmirror.com/filelist/-/filelist-1.0.4.tgz - minimatch: https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz - - jest-changed-files@https://registry.npmmirror.com/jest-changed-files/-/jest-changed-files-27.5.1.tgz: - dependencies: - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - execa: https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz - throat: https://registry.npmmirror.com/throat/-/throat-6.0.2.tgz - - jest-circus@https://registry.npmmirror.com/jest-circus/-/jest-circus-27.5.1.tgz: - dependencies: - '@jest/environment': https://registry.npmmirror.com/@jest/environment/-/environment-27.5.1.tgz - '@jest/test-result': https://registry.npmmirror.com/@jest/test-result/-/test-result-27.5.1.tgz - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - co: https://registry.npmmirror.com/co/-/co-4.6.0.tgz - dedent: https://registry.npmmirror.com/dedent/-/dedent-0.7.0.tgz - expect: https://registry.npmmirror.com/expect/-/expect-27.5.1.tgz - is-generator-fn: https://registry.npmmirror.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz - jest-each: https://registry.npmmirror.com/jest-each/-/jest-each-27.5.1.tgz - jest-matcher-utils: https://registry.npmmirror.com/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz - jest-message-util: https://registry.npmmirror.com/jest-message-util/-/jest-message-util-27.5.1.tgz - jest-runtime: https://registry.npmmirror.com/jest-runtime/-/jest-runtime-27.5.1.tgz - jest-snapshot: https://registry.npmmirror.com/jest-snapshot/-/jest-snapshot-27.5.1.tgz - jest-util: https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz - pretty-format: https://registry.npmmirror.com/pretty-format/-/pretty-format-27.5.1.tgz - slash: https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz - stack-utils: https://registry.npmmirror.com/stack-utils/-/stack-utils-2.0.6.tgz - throat: https://registry.npmmirror.com/throat/-/throat-6.0.2.tgz - transitivePeerDependencies: - - supports-color - - jest-cli@https://registry.npmmirror.com/jest-cli/-/jest-cli-27.5.1.tgz(ts-node@10.7.0): - dependencies: - '@jest/core': https://registry.npmmirror.com/@jest/core/-/core-27.5.1.tgz(ts-node@10.7.0) - '@jest/test-result': https://registry.npmmirror.com/@jest/test-result/-/test-result-27.5.1.tgz - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - exit: https://registry.npmmirror.com/exit/-/exit-0.1.2.tgz - graceful-fs: https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz - import-local: https://registry.npmmirror.com/import-local/-/import-local-3.1.0.tgz - jest-config: https://registry.npmmirror.com/jest-config/-/jest-config-27.5.1.tgz(ts-node@10.7.0) - jest-util: https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz - jest-validate: https://registry.npmmirror.com/jest-validate/-/jest-validate-27.5.1.tgz - prompts: https://registry.npmmirror.com/prompts/-/prompts-2.4.2.tgz - yargs: https://registry.npmmirror.com/yargs/-/yargs-16.2.0.tgz - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - - jest-config@https://registry.npmmirror.com/jest-config/-/jest-config-27.5.1.tgz(ts-node@10.7.0): - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@jest/test-sequencer': https://registry.npmmirror.com/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - babel-jest: https://registry.npmmirror.com/babel-jest/-/babel-jest-27.5.1.tgz(@babel/core@7.22.10) - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - ci-info: https://registry.npmmirror.com/ci-info/-/ci-info-3.8.0.tgz - deepmerge: https://registry.npmmirror.com/deepmerge/-/deepmerge-4.3.1.tgz - glob: https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - jest-circus: https://registry.npmmirror.com/jest-circus/-/jest-circus-27.5.1.tgz - jest-environment-jsdom: https://registry.npmmirror.com/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz - jest-environment-node: https://registry.npmmirror.com/jest-environment-node/-/jest-environment-node-27.5.1.tgz - jest-get-type: https://registry.npmmirror.com/jest-get-type/-/jest-get-type-27.5.1.tgz - jest-jasmine2: https://registry.npmmirror.com/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz - jest-regex-util: https://registry.npmmirror.com/jest-regex-util/-/jest-regex-util-27.5.1.tgz - jest-resolve: https://registry.npmmirror.com/jest-resolve/-/jest-resolve-27.5.1.tgz - jest-runner: https://registry.npmmirror.com/jest-runner/-/jest-runner-27.5.1.tgz - jest-util: https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz - jest-validate: https://registry.npmmirror.com/jest-validate/-/jest-validate-27.5.1.tgz - micromatch: https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz - parse-json: https://registry.npmmirror.com/parse-json/-/parse-json-5.2.0.tgz - pretty-format: https://registry.npmmirror.com/pretty-format/-/pretty-format-27.5.1.tgz - slash: https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz - strip-json-comments: https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz - ts-node: https://registry.npmmirror.com/ts-node/-/ts-node-10.7.0.tgz(@types/node@17.0.25)(typescript@4.6.3) - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - utf-8-validate - - jest-diff@https://registry.npmmirror.com/jest-diff/-/jest-diff-27.5.1.tgz: - dependencies: - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - diff-sequences: https://registry.npmmirror.com/diff-sequences/-/diff-sequences-27.5.1.tgz - jest-get-type: https://registry.npmmirror.com/jest-get-type/-/jest-get-type-27.5.1.tgz - pretty-format: https://registry.npmmirror.com/pretty-format/-/pretty-format-27.5.1.tgz - - jest-docblock@https://registry.npmmirror.com/jest-docblock/-/jest-docblock-27.5.1.tgz: - dependencies: - detect-newline: https://registry.npmmirror.com/detect-newline/-/detect-newline-3.1.0.tgz - - jest-each@https://registry.npmmirror.com/jest-each/-/jest-each-27.5.1.tgz: - dependencies: - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - jest-get-type: https://registry.npmmirror.com/jest-get-type/-/jest-get-type-27.5.1.tgz - jest-util: https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz - pretty-format: https://registry.npmmirror.com/pretty-format/-/pretty-format-27.5.1.tgz - - jest-environment-jsdom@https://registry.npmmirror.com/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz: - dependencies: - '@jest/environment': https://registry.npmmirror.com/@jest/environment/-/environment-27.5.1.tgz - '@jest/fake-timers': https://registry.npmmirror.com/@jest/fake-timers/-/fake-timers-27.5.1.tgz - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - jest-mock: https://registry.npmmirror.com/jest-mock/-/jest-mock-27.5.1.tgz - jest-util: https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz - jsdom: https://registry.npmmirror.com/jsdom/-/jsdom-16.7.0.tgz - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - utf-8-validate - - jest-environment-node@https://registry.npmmirror.com/jest-environment-node/-/jest-environment-node-27.5.1.tgz: - dependencies: - '@jest/environment': https://registry.npmmirror.com/@jest/environment/-/environment-27.5.1.tgz - '@jest/fake-timers': https://registry.npmmirror.com/@jest/fake-timers/-/fake-timers-27.5.1.tgz - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - jest-mock: https://registry.npmmirror.com/jest-mock/-/jest-mock-27.5.1.tgz - jest-util: https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz - - jest-get-type@https://registry.npmmirror.com/jest-get-type/-/jest-get-type-27.5.1.tgz: {} - - jest-haste-map@https://registry.npmmirror.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz: - dependencies: - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - '@types/graceful-fs': https://registry.npmmirror.com/@types/graceful-fs/-/graceful-fs-4.1.6.tgz - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - anymatch: https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz - fb-watchman: https://registry.npmmirror.com/fb-watchman/-/fb-watchman-2.0.2.tgz - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - jest-regex-util: https://registry.npmmirror.com/jest-regex-util/-/jest-regex-util-27.5.1.tgz - jest-serializer: https://registry.npmmirror.com/jest-serializer/-/jest-serializer-27.5.1.tgz - jest-util: https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz - jest-worker: https://registry.npmmirror.com/jest-worker/-/jest-worker-27.5.1.tgz - micromatch: https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz - walker: https://registry.npmmirror.com/walker/-/walker-1.0.8.tgz - optionalDependencies: - fsevents: https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz - - jest-jasmine2@https://registry.npmmirror.com/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz: - dependencies: - '@jest/environment': https://registry.npmmirror.com/@jest/environment/-/environment-27.5.1.tgz - '@jest/source-map': https://registry.npmmirror.com/@jest/source-map/-/source-map-27.5.1.tgz - '@jest/test-result': https://registry.npmmirror.com/@jest/test-result/-/test-result-27.5.1.tgz - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - co: https://registry.npmmirror.com/co/-/co-4.6.0.tgz - expect: https://registry.npmmirror.com/expect/-/expect-27.5.1.tgz - is-generator-fn: https://registry.npmmirror.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz - jest-each: https://registry.npmmirror.com/jest-each/-/jest-each-27.5.1.tgz - jest-matcher-utils: https://registry.npmmirror.com/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz - jest-message-util: https://registry.npmmirror.com/jest-message-util/-/jest-message-util-27.5.1.tgz - jest-runtime: https://registry.npmmirror.com/jest-runtime/-/jest-runtime-27.5.1.tgz - jest-snapshot: https://registry.npmmirror.com/jest-snapshot/-/jest-snapshot-27.5.1.tgz - jest-util: https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz - pretty-format: https://registry.npmmirror.com/pretty-format/-/pretty-format-27.5.1.tgz - throat: https://registry.npmmirror.com/throat/-/throat-6.0.2.tgz - transitivePeerDependencies: - - supports-color - - jest-leak-detector@https://registry.npmmirror.com/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz: - dependencies: - jest-get-type: https://registry.npmmirror.com/jest-get-type/-/jest-get-type-27.5.1.tgz - pretty-format: https://registry.npmmirror.com/pretty-format/-/pretty-format-27.5.1.tgz - - jest-matcher-utils@https://registry.npmmirror.com/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz: - dependencies: - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - jest-diff: https://registry.npmmirror.com/jest-diff/-/jest-diff-27.5.1.tgz - jest-get-type: https://registry.npmmirror.com/jest-get-type/-/jest-get-type-27.5.1.tgz - pretty-format: https://registry.npmmirror.com/pretty-format/-/pretty-format-27.5.1.tgz - - jest-message-util@https://registry.npmmirror.com/jest-message-util/-/jest-message-util-27.5.1.tgz: - dependencies: - '@babel/code-frame': https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.22.10.tgz - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - '@types/stack-utils': https://registry.npmmirror.com/@types/stack-utils/-/stack-utils-2.0.1.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - micromatch: https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz - pretty-format: https://registry.npmmirror.com/pretty-format/-/pretty-format-27.5.1.tgz - slash: https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz - stack-utils: https://registry.npmmirror.com/stack-utils/-/stack-utils-2.0.6.tgz - - jest-mock@https://registry.npmmirror.com/jest-mock/-/jest-mock-27.5.1.tgz: - dependencies: - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - - jest-pnp-resolver@https://registry.npmmirror.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz(jest-resolve@27.5.1): - dependencies: - jest-resolve: https://registry.npmmirror.com/jest-resolve/-/jest-resolve-27.5.1.tgz - - jest-regex-util@https://registry.npmmirror.com/jest-regex-util/-/jest-regex-util-27.5.1.tgz: {} - - jest-resolve-dependencies@https://registry.npmmirror.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz: - dependencies: - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - jest-regex-util: https://registry.npmmirror.com/jest-regex-util/-/jest-regex-util-27.5.1.tgz - jest-snapshot: https://registry.npmmirror.com/jest-snapshot/-/jest-snapshot-27.5.1.tgz - transitivePeerDependencies: - - supports-color - - jest-resolve@https://registry.npmmirror.com/jest-resolve/-/jest-resolve-27.5.1.tgz: - dependencies: - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - jest-haste-map: https://registry.npmmirror.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz - jest-pnp-resolver: https://registry.npmmirror.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz(jest-resolve@27.5.1) - jest-util: https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz - jest-validate: https://registry.npmmirror.com/jest-validate/-/jest-validate-27.5.1.tgz - resolve: https://registry.npmmirror.com/resolve/-/resolve-1.22.4.tgz - resolve.exports: https://registry.npmmirror.com/resolve.exports/-/resolve.exports-1.1.1.tgz - slash: https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz - - jest-runner@https://registry.npmmirror.com/jest-runner/-/jest-runner-27.5.1.tgz: - dependencies: - '@jest/console': https://registry.npmmirror.com/@jest/console/-/console-27.5.1.tgz - '@jest/environment': https://registry.npmmirror.com/@jest/environment/-/environment-27.5.1.tgz - '@jest/test-result': https://registry.npmmirror.com/@jest/test-result/-/test-result-27.5.1.tgz - '@jest/transform': https://registry.npmmirror.com/@jest/transform/-/transform-27.5.1.tgz - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - emittery: https://registry.npmmirror.com/emittery/-/emittery-0.8.1.tgz - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - jest-docblock: https://registry.npmmirror.com/jest-docblock/-/jest-docblock-27.5.1.tgz - jest-environment-jsdom: https://registry.npmmirror.com/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz - jest-environment-node: https://registry.npmmirror.com/jest-environment-node/-/jest-environment-node-27.5.1.tgz - jest-haste-map: https://registry.npmmirror.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz - jest-leak-detector: https://registry.npmmirror.com/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz - jest-message-util: https://registry.npmmirror.com/jest-message-util/-/jest-message-util-27.5.1.tgz - jest-resolve: https://registry.npmmirror.com/jest-resolve/-/jest-resolve-27.5.1.tgz - jest-runtime: https://registry.npmmirror.com/jest-runtime/-/jest-runtime-27.5.1.tgz - jest-util: https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz - jest-worker: https://registry.npmmirror.com/jest-worker/-/jest-worker-27.5.1.tgz - source-map-support: https://registry.npmmirror.com/source-map-support/-/source-map-support-0.5.21.tgz - throat: https://registry.npmmirror.com/throat/-/throat-6.0.2.tgz - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - utf-8-validate - - jest-runtime@https://registry.npmmirror.com/jest-runtime/-/jest-runtime-27.5.1.tgz: - dependencies: - '@jest/environment': https://registry.npmmirror.com/@jest/environment/-/environment-27.5.1.tgz - '@jest/fake-timers': https://registry.npmmirror.com/@jest/fake-timers/-/fake-timers-27.5.1.tgz - '@jest/globals': https://registry.npmmirror.com/@jest/globals/-/globals-27.5.1.tgz - '@jest/source-map': https://registry.npmmirror.com/@jest/source-map/-/source-map-27.5.1.tgz - '@jest/test-result': https://registry.npmmirror.com/@jest/test-result/-/test-result-27.5.1.tgz - '@jest/transform': https://registry.npmmirror.com/@jest/transform/-/transform-27.5.1.tgz - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - cjs-module-lexer: https://registry.npmmirror.com/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz - collect-v8-coverage: https://registry.npmmirror.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz - execa: https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz - glob: https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - jest-haste-map: https://registry.npmmirror.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz - jest-message-util: https://registry.npmmirror.com/jest-message-util/-/jest-message-util-27.5.1.tgz - jest-mock: https://registry.npmmirror.com/jest-mock/-/jest-mock-27.5.1.tgz - jest-regex-util: https://registry.npmmirror.com/jest-regex-util/-/jest-regex-util-27.5.1.tgz - jest-resolve: https://registry.npmmirror.com/jest-resolve/-/jest-resolve-27.5.1.tgz - jest-snapshot: https://registry.npmmirror.com/jest-snapshot/-/jest-snapshot-27.5.1.tgz - jest-util: https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz - slash: https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz - strip-bom: https://registry.npmmirror.com/strip-bom/-/strip-bom-4.0.0.tgz - transitivePeerDependencies: - - supports-color - - jest-serializer@https://registry.npmmirror.com/jest-serializer/-/jest-serializer-27.5.1.tgz: - dependencies: - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - - jest-snapshot@https://registry.npmmirror.com/jest-snapshot/-/jest-snapshot-27.5.1.tgz: - dependencies: - '@babel/core': https://registry.npmmirror.com/@babel/core/-/core-7.22.10.tgz - '@babel/generator': https://registry.npmmirror.com/@babel/generator/-/generator-7.22.10.tgz - '@babel/plugin-syntax-typescript': https://registry.npmmirror.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz(@babel/core@7.22.10) - '@babel/traverse': https://registry.npmmirror.com/@babel/traverse/-/traverse-7.22.10.tgz - '@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz - '@jest/transform': https://registry.npmmirror.com/@jest/transform/-/transform-27.5.1.tgz - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - '@types/babel__traverse': https://registry.npmmirror.com/@types/babel__traverse/-/babel__traverse-7.20.1.tgz - '@types/prettier': https://registry.npmmirror.com/@types/prettier/-/prettier-2.7.3.tgz - babel-preset-current-node-syntax: https://registry.npmmirror.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz(@babel/core@7.22.10) - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - expect: https://registry.npmmirror.com/expect/-/expect-27.5.1.tgz - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - jest-diff: https://registry.npmmirror.com/jest-diff/-/jest-diff-27.5.1.tgz - jest-get-type: https://registry.npmmirror.com/jest-get-type/-/jest-get-type-27.5.1.tgz - jest-haste-map: https://registry.npmmirror.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz - jest-matcher-utils: https://registry.npmmirror.com/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz - jest-message-util: https://registry.npmmirror.com/jest-message-util/-/jest-message-util-27.5.1.tgz - jest-util: https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz - natural-compare: https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz - pretty-format: https://registry.npmmirror.com/pretty-format/-/pretty-format-27.5.1.tgz - semver: https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz - transitivePeerDependencies: - - supports-color - - jest-util@https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz: - dependencies: - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - ci-info: https://registry.npmmirror.com/ci-info/-/ci-info-3.8.0.tgz - graceful-fs: https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz - picomatch: https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz - - jest-validate@https://registry.npmmirror.com/jest-validate/-/jest-validate-27.5.1.tgz: - dependencies: - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - camelcase: https://registry.npmmirror.com/camelcase/-/camelcase-6.3.0.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - jest-get-type: https://registry.npmmirror.com/jest-get-type/-/jest-get-type-27.5.1.tgz - leven: https://registry.npmmirror.com/leven/-/leven-3.1.0.tgz - pretty-format: https://registry.npmmirror.com/pretty-format/-/pretty-format-27.5.1.tgz - - jest-watcher@https://registry.npmmirror.com/jest-watcher/-/jest-watcher-27.5.1.tgz: - dependencies: - '@jest/test-result': https://registry.npmmirror.com/@jest/test-result/-/test-result-27.5.1.tgz - '@jest/types': https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - ansi-escapes: https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - jest-util: https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz - string-length: https://registry.npmmirror.com/string-length/-/string-length-4.0.2.tgz - - jest-worker@https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz: - dependencies: - '@types/node': https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz - merge-stream: https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz - supports-color: https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz - - jest-worker@https://registry.npmmirror.com/jest-worker/-/jest-worker-27.5.1.tgz: - dependencies: - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - merge-stream: https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz - supports-color: https://registry.npmmirror.com/supports-color/-/supports-color-8.1.1.tgz - - jest@https://registry.npmmirror.com/jest/-/jest-27.3.1.tgz(ts-node@10.7.0): - dependencies: - '@jest/core': https://registry.npmmirror.com/@jest/core/-/core-27.5.1.tgz(ts-node@10.7.0) - import-local: https://registry.npmmirror.com/import-local/-/import-local-3.1.0.tgz - jest-cli: https://registry.npmmirror.com/jest-cli/-/jest-cli-27.5.1.tgz(ts-node@10.7.0) - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - - jiti@https://registry.npmmirror.com/jiti/-/jiti-1.19.1.tgz: {} - - jpegtran-bin@https://registry.npmmirror.com/jpegtran-bin/-/jpegtran-bin-5.0.2.tgz: - dependencies: - bin-build: https://registry.npmmirror.com/bin-build/-/bin-build-3.0.0.tgz - bin-wrapper: bin-wrapper-china@https://registry.npmjs.org/bin-wrapper-china/-/bin-wrapper-china-0.1.0.tgz - logalot: https://registry.npmmirror.com/logalot/-/logalot-2.1.0.tgz - - jpegtran-bin@https://registry.npmmirror.com/jpegtran-bin/-/jpegtran-bin-6.0.1.tgz: - dependencies: - bin-build: https://registry.npmmirror.com/bin-build/-/bin-build-3.0.0.tgz - bin-wrapper: bin-wrapper-china@https://registry.npmjs.org/bin-wrapper-china/-/bin-wrapper-china-0.1.0.tgz - - js-base64@https://registry.npmmirror.com/js-base64/-/js-base64-2.6.4.tgz: {} - - js-tokens@https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz: {} - - js-tokens@https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz: {} - - js-yaml@https://registry.npmmirror.com/js-yaml/-/js-yaml-3.14.1.tgz: - dependencies: - argparse: https://registry.npmmirror.com/argparse/-/argparse-1.0.10.tgz - esprima: https://registry.npmmirror.com/esprima/-/esprima-4.0.1.tgz - - js-yaml@https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz: - dependencies: - argparse: https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz - - jsdom@https://registry.npmmirror.com/jsdom/-/jsdom-16.7.0.tgz: - dependencies: - abab: https://registry.npmmirror.com/abab/-/abab-2.0.6.tgz - acorn: https://registry.npmmirror.com/acorn/-/acorn-8.10.0.tgz - acorn-globals: https://registry.npmmirror.com/acorn-globals/-/acorn-globals-6.0.0.tgz - cssom: https://registry.npmmirror.com/cssom/-/cssom-0.4.4.tgz - cssstyle: https://registry.npmmirror.com/cssstyle/-/cssstyle-2.3.0.tgz - data-urls: https://registry.npmmirror.com/data-urls/-/data-urls-2.0.0.tgz - decimal.js: https://registry.npmmirror.com/decimal.js/-/decimal.js-10.4.3.tgz - domexception: https://registry.npmmirror.com/domexception/-/domexception-2.0.1.tgz - escodegen: https://registry.npmmirror.com/escodegen/-/escodegen-2.1.0.tgz - form-data: https://registry.npmmirror.com/form-data/-/form-data-3.0.1.tgz - html-encoding-sniffer: https://registry.npmmirror.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz - http-proxy-agent: https://registry.npmmirror.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz - https-proxy-agent: https://registry.npmmirror.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz - is-potential-custom-element-name: https://registry.npmmirror.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz - nwsapi: https://registry.npmmirror.com/nwsapi/-/nwsapi-2.2.7.tgz - parse5: https://registry.npmmirror.com/parse5/-/parse5-6.0.1.tgz - saxes: https://registry.npmmirror.com/saxes/-/saxes-5.0.1.tgz - symbol-tree: https://registry.npmmirror.com/symbol-tree/-/symbol-tree-3.2.4.tgz - tough-cookie: https://registry.npmmirror.com/tough-cookie/-/tough-cookie-4.1.3.tgz - w3c-hr-time: https://registry.npmmirror.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz - w3c-xmlserializer: https://registry.npmmirror.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz - webidl-conversions: https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz - whatwg-encoding: https://registry.npmmirror.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz - whatwg-mimetype: https://registry.npmmirror.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz - whatwg-url: https://registry.npmmirror.com/whatwg-url/-/whatwg-url-8.7.0.tgz - ws: https://registry.npmmirror.com/ws/-/ws-7.5.9.tgz - xml-name-validator: https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - jsesc@https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz: {} - - jsesc@https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz: {} - - jsesc@https://registry.npmmirror.com/jsesc/-/jsesc-2.5.2.tgz: {} - - json-buffer@https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz: {} - - json-parse-better-errors@https://registry.npmmirror.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz: {} - - json-parse-even-better-errors@https://registry.npmmirror.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz: {} - - json-schema-traverse@https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz: {} - - json-schema-traverse@https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz: {} - - json-schema-traverse@https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz: {} - - json-schema@https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz: {} - - json-stable-stringify-without-jsonify@https://registry.npmmirror.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz: {} - - json-stringify-safe@https://registry.npmmirror.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz: {} - - json5@https://registry.npmjs.org/json5/-/json5-2.2.3.tgz: {} - - json5@https://registry.npmmirror.com/json5/-/json5-1.0.2.tgz: - dependencies: - minimist: https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz - - json5@https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz: {} - - jsonfile@https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz: - dependencies: - universalify: https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz - optionalDependencies: - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - - jsonfile@https://registry.npmmirror.com/jsonfile/-/jsonfile-4.0.0.tgz: - optionalDependencies: - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - - jsonfile@https://registry.npmmirror.com/jsonfile/-/jsonfile-6.1.0.tgz: - dependencies: - universalify: https://registry.npmmirror.com/universalify/-/universalify-2.0.0.tgz - optionalDependencies: - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - - jsonparse@https://registry.npmmirror.com/jsonparse/-/jsonparse-1.3.1.tgz: {} - - jsonpointer@https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz: {} - - jspdf@https://registry.npmmirror.com/jspdf/-/jspdf-2.5.1.tgz: - dependencies: - '@babel/runtime': https://registry.npmmirror.com/@babel/runtime/-/runtime-7.22.10.tgz - atob: https://registry.npmmirror.com/atob/-/atob-2.1.2.tgz - btoa: https://registry.npmmirror.com/btoa/-/btoa-1.2.1.tgz - fflate: https://registry.npmmirror.com/fflate/-/fflate-0.4.8.tgz - optionalDependencies: - canvg: https://registry.npmjs.org/canvg/-/canvg-3.0.10.tgz - core-js: https://registry.npmjs.org/core-js/-/core-js-3.32.0.tgz - dompurify: https://registry.npmjs.org/dompurify/-/dompurify-2.4.7.tgz - html2canvas: https://registry.npmjs.org/html2canvas/-/html2canvas-1.4.1.tgz - - junk@https://registry.npmmirror.com/junk/-/junk-3.1.0.tgz: {} - - keyv@https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz: - dependencies: - json-buffer: https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz - - kind-of@https://registry.npmmirror.com/kind-of/-/kind-of-3.2.2.tgz: - dependencies: - is-buffer: https://registry.npmmirror.com/is-buffer/-/is-buffer-1.1.6.tgz - - kind-of@https://registry.npmmirror.com/kind-of/-/kind-of-4.0.0.tgz: - dependencies: - is-buffer: https://registry.npmmirror.com/is-buffer/-/is-buffer-1.1.6.tgz - - kind-of@https://registry.npmmirror.com/kind-of/-/kind-of-5.1.0.tgz: {} - - kind-of@https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz: {} - - kleur@https://registry.npmmirror.com/kleur/-/kleur-3.0.3.tgz: {} - - known-css-properties@https://registry.npmmirror.com/known-css-properties/-/known-css-properties-0.24.0.tgz: {} - - kolorist@https://registry.npmmirror.com/kolorist/-/kolorist-1.8.0.tgz: {} - - less@https://registry.npmmirror.com/less/-/less-4.1.2.tgz: - dependencies: - copy-anything: https://registry.npmmirror.com/copy-anything/-/copy-anything-2.0.6.tgz - parse-node-version: https://registry.npmmirror.com/parse-node-version/-/parse-node-version-1.0.1.tgz - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - optionalDependencies: - errno: https://registry.npmjs.org/errno/-/errno-0.1.8.tgz - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - image-size: https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz - make-dir: https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz - mime: https://registry.npmjs.org/mime/-/mime-1.6.0.tgz - needle: https://registry.npmjs.org/needle/-/needle-2.9.1.tgz - source-map: https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz - transitivePeerDependencies: - - supports-color - - leven@https://registry.npmjs.org/leven/-/leven-3.1.0.tgz: {} - - leven@https://registry.npmmirror.com/leven/-/leven-3.1.0.tgz: {} - - levn@https://registry.npmmirror.com/levn/-/levn-0.4.1.tgz: - dependencies: - prelude-ls: https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz - type-check: https://registry.npmmirror.com/type-check/-/type-check-0.4.0.tgz - - lilconfig@https://registry.npmmirror.com/lilconfig/-/lilconfig-2.0.4.tgz: {} - - lines-and-columns@https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz: {} - - lint-staged@https://registry.npmmirror.com/lint-staged/-/lint-staged-12.3.7.tgz: - dependencies: - cli-truncate: https://registry.npmmirror.com/cli-truncate/-/cli-truncate-3.1.0.tgz - colorette: https://registry.npmmirror.com/colorette/-/colorette-2.0.20.tgz - commander: https://registry.npmmirror.com/commander/-/commander-8.3.0.tgz - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - execa: https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz - lilconfig: https://registry.npmmirror.com/lilconfig/-/lilconfig-2.0.4.tgz - listr2: https://registry.npmmirror.com/listr2/-/listr2-4.0.5.tgz - micromatch: https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz - normalize-path: https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz - object-inspect: https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.3.tgz - pidtree: https://registry.npmmirror.com/pidtree/-/pidtree-0.5.0.tgz - string-argv: https://registry.npmmirror.com/string-argv/-/string-argv-0.3.2.tgz - supports-color: https://registry.npmmirror.com/supports-color/-/supports-color-9.4.0.tgz - yaml: https://registry.npmmirror.com/yaml/-/yaml-1.10.2.tgz - transitivePeerDependencies: - - enquirer - - listr2@https://registry.npmmirror.com/listr2/-/listr2-4.0.5.tgz: - dependencies: - cli-truncate: https://registry.npmmirror.com/cli-truncate/-/cli-truncate-2.1.0.tgz - colorette: https://registry.npmmirror.com/colorette/-/colorette-2.0.20.tgz - log-update: https://registry.npmmirror.com/log-update/-/log-update-4.0.0.tgz - p-map: https://registry.npmmirror.com/p-map/-/p-map-4.0.0.tgz - rfdc: https://registry.npmmirror.com/rfdc/-/rfdc-1.3.0.tgz - rxjs: https://registry.npmmirror.com/rxjs/-/rxjs-7.8.1.tgz - through: https://registry.npmmirror.com/through/-/through-2.3.8.tgz - wrap-ansi: https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz - - load-json-file@https://registry.npmmirror.com/load-json-file/-/load-json-file-1.1.0.tgz: - dependencies: - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - parse-json: https://registry.npmmirror.com/parse-json/-/parse-json-2.2.0.tgz - pify: https://registry.npmmirror.com/pify/-/pify-2.3.0.tgz - pinkie-promise: https://registry.npmmirror.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz - strip-bom: https://registry.npmmirror.com/strip-bom/-/strip-bom-2.0.0.tgz - - load-json-file@https://registry.npmmirror.com/load-json-file/-/load-json-file-4.0.0.tgz: - dependencies: - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - parse-json: https://registry.npmmirror.com/parse-json/-/parse-json-4.0.0.tgz - pify: https://registry.npmmirror.com/pify/-/pify-3.0.0.tgz - strip-bom: https://registry.npmmirror.com/strip-bom/-/strip-bom-3.0.0.tgz - - loader-utils@https://registry.npmmirror.com/loader-utils/-/loader-utils-1.4.2.tgz: - dependencies: - big.js: https://registry.npmmirror.com/big.js/-/big.js-5.2.2.tgz - emojis-list: https://registry.npmmirror.com/emojis-list/-/emojis-list-3.0.0.tgz - json5: https://registry.npmmirror.com/json5/-/json5-1.0.2.tgz - - locate-path@https://registry.npmmirror.com/locate-path/-/locate-path-2.0.0.tgz: - dependencies: - p-locate: https://registry.npmmirror.com/p-locate/-/p-locate-2.0.0.tgz - path-exists: https://registry.npmmirror.com/path-exists/-/path-exists-3.0.0.tgz - - locate-path@https://registry.npmmirror.com/locate-path/-/locate-path-5.0.0.tgz: - dependencies: - p-locate: https://registry.npmmirror.com/p-locate/-/p-locate-4.1.0.tgz - - locate-path@https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz: - dependencies: - p-locate: https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz - - lodash-es@https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz: {} - - lodash.debounce@https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz: {} - - lodash.get@https://registry.npmmirror.com/lodash.get/-/lodash.get-4.4.2.tgz: {} - - lodash.ismatch@https://registry.npmmirror.com/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz: {} - - lodash.isplainobject@https://registry.npmmirror.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz: - optional: true - - lodash.map@https://registry.npmmirror.com/lodash.map/-/lodash.map-4.6.0.tgz: {} - - lodash.memoize@https://registry.npmmirror.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz: {} - - lodash.merge@https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz: {} - - lodash.mergewith@https://registry.npmmirror.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz: - optional: true - - lodash.sortby@https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz: {} - - lodash.truncate@https://registry.npmmirror.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz: {} - - lodash.uniq@https://registry.npmmirror.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz: - optional: true - - lodash@https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz: {} - - lodash@https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz: {} - - log-symbols@https://registry.npmmirror.com/log-symbols/-/log-symbols-4.1.0.tgz: - dependencies: - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - is-unicode-supported: https://registry.npmmirror.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz - - log-update@https://registry.npmmirror.com/log-update/-/log-update-4.0.0.tgz: - dependencies: - ansi-escapes: https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz - cli-cursor: https://registry.npmmirror.com/cli-cursor/-/cli-cursor-3.1.0.tgz - slice-ansi: https://registry.npmmirror.com/slice-ansi/-/slice-ansi-4.0.0.tgz - wrap-ansi: https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz - - logalot@https://registry.npmmirror.com/logalot/-/logalot-2.1.0.tgz: - dependencies: - figures: https://registry.npmmirror.com/figures/-/figures-1.7.0.tgz - squeak: https://registry.npmmirror.com/squeak/-/squeak-1.3.0.tgz - - longest@https://registry.npmmirror.com/longest/-/longest-1.0.1.tgz: {} - - longest@https://registry.npmmirror.com/longest/-/longest-2.0.1.tgz: {} - - loose-envify@https://registry.npmmirror.com/loose-envify/-/loose-envify-1.4.0.tgz: - dependencies: - js-tokens: https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz - - loud-rejection@https://registry.npmmirror.com/loud-rejection/-/loud-rejection-1.6.0.tgz: - dependencies: - currently-unhandled: https://registry.npmmirror.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz - signal-exit: https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz - - lower-case@https://registry.npmmirror.com/lower-case/-/lower-case-2.0.2.tgz: - dependencies: - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - - lowercase-keys@https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz: {} - - lowercase-keys@https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz: {} - - lowercase-keys@https://registry.npmmirror.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz: {} - - lpad-align@https://registry.npmmirror.com/lpad-align/-/lpad-align-1.1.2.tgz: - dependencies: - get-stdin: https://registry.npmmirror.com/get-stdin/-/get-stdin-4.0.1.tgz - indent-string: https://registry.npmmirror.com/indent-string/-/indent-string-2.1.0.tgz - longest: https://registry.npmmirror.com/longest/-/longest-1.0.1.tgz - meow: https://registry.npmmirror.com/meow/-/meow-3.7.0.tgz - - lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz: - dependencies: - pseudomap: https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz - yallist: https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz - - lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz: - dependencies: - yallist: https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz - - lru-cache@https://registry.npmmirror.com/lru-cache/-/lru-cache-4.1.5.tgz: - dependencies: - pseudomap: https://registry.npmmirror.com/pseudomap/-/pseudomap-1.0.2.tgz - yallist: https://registry.npmmirror.com/yallist/-/yallist-2.1.2.tgz - - lru-cache@https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz: - dependencies: - yallist: https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz - - lru-cache@https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz: - dependencies: - yallist: https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz - - luxon@https://registry.npmmirror.com/luxon/-/luxon-1.28.1.tgz: {} - - magic-string@https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz: - dependencies: - sourcemap-codec: https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz - - magic-string@https://registry.npmmirror.com/magic-string/-/magic-string-0.25.9.tgz: - dependencies: - sourcemap-codec: https://registry.npmmirror.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz - - magic-string@https://registry.npmmirror.com/magic-string/-/magic-string-0.26.7.tgz: - dependencies: - sourcemap-codec: https://registry.npmmirror.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz - - magic-string@https://registry.npmmirror.com/magic-string/-/magic-string-0.30.2.tgz: - dependencies: - '@jridgewell/sourcemap-codec': https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz - - make-dir@https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz: - dependencies: - pify: https://registry.npmmirror.com/pify/-/pify-3.0.0.tgz - - make-dir@https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz: - dependencies: - pify: https://registry.npmmirror.com/pify/-/pify-4.0.1.tgz - semver: https://registry.npmmirror.com/semver/-/semver-5.7.2.tgz - optional: true - - make-dir@https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz: - dependencies: - semver: https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz - - make-dir@https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz: - dependencies: - semver: https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz - - make-error@https://registry.npmmirror.com/make-error/-/make-error-1.3.6.tgz: {} - - makeerror@https://registry.npmmirror.com/makeerror/-/makeerror-1.0.12.tgz: - dependencies: - tmpl: https://registry.npmmirror.com/tmpl/-/tmpl-1.0.5.tgz - - map-cache@https://registry.npmmirror.com/map-cache/-/map-cache-0.2.2.tgz: {} - - map-obj@https://registry.npmmirror.com/map-obj/-/map-obj-1.0.1.tgz: {} - - map-obj@https://registry.npmmirror.com/map-obj/-/map-obj-4.3.0.tgz: {} - - map-visit@https://registry.npmmirror.com/map-visit/-/map-visit-1.0.0.tgz: - dependencies: - object-visit: https://registry.npmmirror.com/object-visit/-/object-visit-1.0.1.tgz - - mathml-tag-names@https://registry.npmmirror.com/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz: {} - - md5@https://registry.npmmirror.com/md5/-/md5-2.3.0.tgz: - dependencies: - charenc: https://registry.npmmirror.com/charenc/-/charenc-0.0.2.tgz - crypt: https://registry.npmmirror.com/crypt/-/crypt-0.0.2.tgz - is-buffer: https://registry.npmmirror.com/is-buffer/-/is-buffer-1.1.6.tgz - - mdn-data@https://registry.npmmirror.com/mdn-data/-/mdn-data-2.0.14.tgz: {} - - memorystream@https://registry.npmmirror.com/memorystream/-/memorystream-0.3.1.tgz: {} - - meow@https://registry.npmmirror.com/meow/-/meow-3.7.0.tgz: - dependencies: - camelcase-keys: https://registry.npmmirror.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz - decamelize: https://registry.npmmirror.com/decamelize/-/decamelize-1.2.0.tgz - loud-rejection: https://registry.npmmirror.com/loud-rejection/-/loud-rejection-1.6.0.tgz - map-obj: https://registry.npmmirror.com/map-obj/-/map-obj-1.0.1.tgz - minimist: https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz - normalize-package-data: https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz - object-assign: https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz - read-pkg-up: https://registry.npmmirror.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz - redent: https://registry.npmmirror.com/redent/-/redent-1.0.0.tgz - trim-newlines: https://registry.npmmirror.com/trim-newlines/-/trim-newlines-1.0.0.tgz - - meow@https://registry.npmmirror.com/meow/-/meow-8.1.2.tgz: - dependencies: - '@types/minimist': https://registry.npmmirror.com/@types/minimist/-/minimist-1.2.2.tgz - camelcase-keys: https://registry.npmmirror.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz - decamelize-keys: https://registry.npmmirror.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz - hard-rejection: https://registry.npmmirror.com/hard-rejection/-/hard-rejection-2.1.0.tgz - minimist-options: https://registry.npmmirror.com/minimist-options/-/minimist-options-4.1.0.tgz - normalize-package-data: https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz - read-pkg-up: https://registry.npmmirror.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz - redent: https://registry.npmmirror.com/redent/-/redent-3.0.0.tgz - trim-newlines: https://registry.npmmirror.com/trim-newlines/-/trim-newlines-3.0.1.tgz - type-fest: https://registry.npmmirror.com/type-fest/-/type-fest-0.18.1.tgz - yargs-parser: https://registry.npmmirror.com/yargs-parser/-/yargs-parser-20.2.9.tgz - - meow@https://registry.npmmirror.com/meow/-/meow-9.0.0.tgz: - dependencies: - '@types/minimist': https://registry.npmmirror.com/@types/minimist/-/minimist-1.2.2.tgz - camelcase-keys: https://registry.npmmirror.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz - decamelize: https://registry.npmmirror.com/decamelize/-/decamelize-1.2.0.tgz - decamelize-keys: https://registry.npmmirror.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz - hard-rejection: https://registry.npmmirror.com/hard-rejection/-/hard-rejection-2.1.0.tgz - minimist-options: https://registry.npmmirror.com/minimist-options/-/minimist-options-4.1.0.tgz - normalize-package-data: https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz - read-pkg-up: https://registry.npmmirror.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz - redent: https://registry.npmmirror.com/redent/-/redent-3.0.0.tgz - trim-newlines: https://registry.npmmirror.com/trim-newlines/-/trim-newlines-3.0.1.tgz - type-fest: https://registry.npmmirror.com/type-fest/-/type-fest-0.18.1.tgz - yargs-parser: https://registry.npmmirror.com/yargs-parser/-/yargs-parser-20.2.9.tgz - - merge-options@https://registry.npmmirror.com/merge-options/-/merge-options-1.0.1.tgz: - dependencies: - is-plain-obj: https://registry.npmmirror.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz - - merge-stream@https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz: {} - - merge-stream@https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz: {} - - merge2@https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz: {} - - merge@https://registry.npmmirror.com/merge/-/merge-2.1.1.tgz: {} - - micromatch@https://registry.npmmirror.com/micromatch/-/micromatch-3.1.0.tgz: - dependencies: - arr-diff: https://registry.npmmirror.com/arr-diff/-/arr-diff-4.0.0.tgz - array-unique: https://registry.npmmirror.com/array-unique/-/array-unique-0.3.2.tgz - braces: https://registry.npmmirror.com/braces/-/braces-2.3.2.tgz - define-property: https://registry.npmmirror.com/define-property/-/define-property-1.0.0.tgz - extend-shallow: https://registry.npmmirror.com/extend-shallow/-/extend-shallow-2.0.1.tgz - extglob: https://registry.npmmirror.com/extglob/-/extglob-2.0.4.tgz - fragment-cache: https://registry.npmmirror.com/fragment-cache/-/fragment-cache-0.2.1.tgz - kind-of: https://registry.npmmirror.com/kind-of/-/kind-of-5.1.0.tgz - nanomatch: https://registry.npmmirror.com/nanomatch/-/nanomatch-1.2.13.tgz - object.pick: https://registry.npmmirror.com/object.pick/-/object.pick-1.3.0.tgz - regex-not: https://registry.npmmirror.com/regex-not/-/regex-not-1.0.2.tgz - snapdragon: https://registry.npmmirror.com/snapdragon/-/snapdragon-0.8.2.tgz - to-regex: https://registry.npmmirror.com/to-regex/-/to-regex-3.0.2.tgz - transitivePeerDependencies: - - supports-color - - micromatch@https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz: - dependencies: - braces: https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz - picomatch: https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz - - mime-db@https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz: {} - - mime-db@https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz: {} - - mime-types@https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz: - dependencies: - mime-db: https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz - - mime@https://registry.npmjs.org/mime/-/mime-1.6.0.tgz: - optional: true - - mime@https://registry.npmmirror.com/mime/-/mime-1.6.0.tgz: {} - - mimic-fn@https://registry.npmmirror.com/mimic-fn/-/mimic-fn-1.2.0.tgz: {} - - mimic-fn@https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz: {} - - mimic-response@https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz: {} - - mimic-response@https://registry.npmmirror.com/mimic-response/-/mimic-response-1.0.1.tgz: {} - - min-indent@https://registry.npmmirror.com/min-indent/-/min-indent-1.0.1.tgz: {} - - minimatch@https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz: - dependencies: - brace-expansion: https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz - - minimatch@https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz: - dependencies: - brace-expansion: https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz - - minimatch@https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz: - dependencies: - brace-expansion: https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz - - minimatch@https://registry.npmmirror.com/minimatch/-/minimatch-5.1.6.tgz: - dependencies: - brace-expansion: https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz - - minimist-options@https://registry.npmmirror.com/minimist-options/-/minimist-options-4.1.0.tgz: - dependencies: - arrify: https://registry.npmmirror.com/arrify/-/arrify-1.0.1.tgz - is-plain-obj: https://registry.npmmirror.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz - kind-of: https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz - - minimist@https://registry.npmmirror.com/minimist/-/minimist-1.2.5.tgz: {} - - minimist@https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz: {} - - mitt@https://registry.npmmirror.com/mitt/-/mitt-2.1.0.tgz: {} - - mitt@https://registry.npmmirror.com/mitt/-/mitt-3.0.1.tgz: {} - - mixin-deep@https://registry.npmmirror.com/mixin-deep/-/mixin-deep-1.3.2.tgz: - dependencies: - for-in: https://registry.npmmirror.com/for-in/-/for-in-1.0.2.tgz - is-extendable: https://registry.npmmirror.com/is-extendable/-/is-extendable-1.0.1.tgz - - mkdirp@https://registry.npmmirror.com/mkdirp/-/mkdirp-0.5.6.tgz: - dependencies: - minimist: https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz - - mockjs@https://registry.npmmirror.com/mockjs/-/mockjs-1.1.0.tgz: - dependencies: - commander: https://registry.npmmirror.com/commander/-/commander-11.0.0.tgz - - modify-values@https://registry.npmmirror.com/modify-values/-/modify-values-1.0.1.tgz: {} - - mousetrap@https://registry.npmmirror.com/mousetrap/-/mousetrap-1.6.5.tgz: {} - - mozjpeg@https://registry.npmmirror.com/mozjpeg/-/mozjpeg-7.1.1.tgz: - dependencies: - bin-build: https://registry.npmmirror.com/bin-build/-/bin-build-3.0.0.tgz - bin-wrapper: bin-wrapper-china@https://registry.npmjs.org/bin-wrapper-china/-/bin-wrapper-china-0.1.0.tgz - - mri@https://registry.npmmirror.com/mri/-/mri-1.2.0.tgz: {} - - ms@https://registry.npmjs.org/ms/-/ms-2.1.2.tgz: {} - - ms@https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz: {} - - ms@https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz: {} - - ms@https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz: {} - - multimatch@https://registry.npmmirror.com/multimatch/-/multimatch-4.0.0.tgz: - dependencies: - '@types/minimatch': https://registry.npmmirror.com/@types/minimatch/-/minimatch-3.0.5.tgz - array-differ: https://registry.npmmirror.com/array-differ/-/array-differ-3.0.0.tgz - array-union: https://registry.npmmirror.com/array-union/-/array-union-2.1.0.tgz - arrify: https://registry.npmmirror.com/arrify/-/arrify-2.0.1.tgz - minimatch: https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz - - mute-stream@https://registry.npmmirror.com/mute-stream/-/mute-stream-0.0.7.tgz: {} - - mute-stream@https://registry.npmmirror.com/mute-stream/-/mute-stream-0.0.8.tgz: {} - - nanoid@https://registry.npmmirror.com/nanoid/-/nanoid-3.3.6.tgz: {} - - nanomatch@https://registry.npmmirror.com/nanomatch/-/nanomatch-1.2.13.tgz: - dependencies: - arr-diff: https://registry.npmmirror.com/arr-diff/-/arr-diff-4.0.0.tgz - array-unique: https://registry.npmmirror.com/array-unique/-/array-unique-0.3.2.tgz - define-property: https://registry.npmmirror.com/define-property/-/define-property-2.0.2.tgz - extend-shallow: https://registry.npmmirror.com/extend-shallow/-/extend-shallow-3.0.2.tgz - fragment-cache: https://registry.npmmirror.com/fragment-cache/-/fragment-cache-0.2.1.tgz - is-windows: https://registry.npmmirror.com/is-windows/-/is-windows-1.0.2.tgz - kind-of: https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz - object.pick: https://registry.npmmirror.com/object.pick/-/object.pick-1.3.0.tgz - regex-not: https://registry.npmmirror.com/regex-not/-/regex-not-1.0.2.tgz - snapdragon: https://registry.npmmirror.com/snapdragon/-/snapdragon-0.8.2.tgz - to-regex: https://registry.npmmirror.com/to-regex/-/to-regex-3.0.2.tgz - transitivePeerDependencies: - - supports-color - - nanopop@https://registry.npmmirror.com/nanopop/-/nanopop-2.3.0.tgz: {} - - natural-compare@https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz: {} - - needle@https://registry.npmjs.org/needle/-/needle-2.9.1.tgz: - dependencies: - debug: https://registry.npmmirror.com/debug/-/debug-3.2.7.tgz - iconv-lite: https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz - sax: https://registry.npmmirror.com/sax/-/sax-1.2.4.tgz - transitivePeerDependencies: - - supports-color - optional: true - - neo-async@https://registry.npmmirror.com/neo-async/-/neo-async-2.6.2.tgz: {} - - nice-try@https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz: {} - - nice-try@https://registry.npmmirror.com/nice-try/-/nice-try-1.0.5.tgz: {} - - no-case@https://registry.npmmirror.com/no-case/-/no-case-3.0.4.tgz: - dependencies: - lower-case: https://registry.npmmirror.com/lower-case/-/lower-case-2.0.2.tgz - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - - node-fetch@https://registry.npmmirror.com/node-fetch/-/node-fetch-2.6.12.tgz: - dependencies: - whatwg-url: https://registry.npmmirror.com/whatwg-url/-/whatwg-url-5.0.0.tgz - - node-html-parser@https://registry.npmmirror.com/node-html-parser/-/node-html-parser-5.4.2.tgz: - dependencies: - css-select: https://registry.npmmirror.com/css-select/-/css-select-4.3.0.tgz - he: https://registry.npmmirror.com/he/-/he-1.2.0.tgz - - node-int64@https://registry.npmmirror.com/node-int64/-/node-int64-0.4.0.tgz: {} - - node-releases@https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz: {} - - node-releases@https://registry.npmmirror.com/node-releases/-/node-releases-2.0.13.tgz: {} - - normalize-package-data@https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz: - dependencies: - hosted-git-info: https://registry.npmmirror.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz - resolve: https://registry.npmmirror.com/resolve/-/resolve-1.22.4.tgz - semver: https://registry.npmmirror.com/semver/-/semver-5.7.2.tgz - validate-npm-package-license: https://registry.npmmirror.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz - - normalize-package-data@https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz: - dependencies: - hosted-git-info: https://registry.npmmirror.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz - is-core-module: https://registry.npmmirror.com/is-core-module/-/is-core-module-2.13.0.tgz - semver: https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz - validate-npm-package-license: https://registry.npmmirror.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz - - normalize-path@https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz: {} - - normalize-range@https://registry.npmmirror.com/normalize-range/-/normalize-range-0.1.2.tgz: {} - - normalize-selector@https://registry.npmmirror.com/normalize-selector/-/normalize-selector-0.2.0.tgz: {} - - normalize-url@https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz: - dependencies: - prepend-http: https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz - query-string: https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz - sort-keys: https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz - - npm-conf@https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz: - dependencies: - config-chain: https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz - pify: https://registry.npmjs.org/pify/-/pify-3.0.0.tgz - - npm-conf@https://registry.npmmirror.com/npm-conf/-/npm-conf-1.1.3.tgz: - dependencies: - config-chain: https://registry.npmmirror.com/config-chain/-/config-chain-1.1.13.tgz - pify: https://registry.npmmirror.com/pify/-/pify-3.0.0.tgz - - npm-run-all@https://registry.npmmirror.com/npm-run-all/-/npm-run-all-4.1.5.tgz: - dependencies: - ansi-styles: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz - cross-spawn: https://registry.npmmirror.com/cross-spawn/-/cross-spawn-6.0.5.tgz - memorystream: https://registry.npmmirror.com/memorystream/-/memorystream-0.3.1.tgz - minimatch: https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz - pidtree: https://registry.npmmirror.com/pidtree/-/pidtree-0.3.1.tgz - read-pkg: https://registry.npmmirror.com/read-pkg/-/read-pkg-3.0.0.tgz - shell-quote: https://registry.npmmirror.com/shell-quote/-/shell-quote-1.8.1.tgz - string.prototype.padend: https://registry.npmmirror.com/string.prototype.padend/-/string.prototype.padend-3.1.4.tgz - - npm-run-path@https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz: - dependencies: - path-key: https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz - - npm-run-path@https://registry.npmmirror.com/npm-run-path/-/npm-run-path-2.0.2.tgz: - dependencies: - path-key: https://registry.npmmirror.com/path-key/-/path-key-2.0.1.tgz - - npm-run-path@https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz: - dependencies: - path-key: https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz - - nprogress@https://registry.npmmirror.com/nprogress/-/nprogress-0.2.0.tgz: {} - - nth-check@https://registry.npmmirror.com/nth-check/-/nth-check-2.1.1.tgz: - dependencies: - boolbase: https://registry.npmmirror.com/boolbase/-/boolbase-1.0.0.tgz - - nwsapi@https://registry.npmmirror.com/nwsapi/-/nwsapi-2.2.7.tgz: {} - - object-assign@https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz: {} - - object-assign@https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz: {} - - object-copy@https://registry.npmmirror.com/object-copy/-/object-copy-0.1.0.tgz: - dependencies: - copy-descriptor: https://registry.npmmirror.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz - define-property: https://registry.npmmirror.com/define-property/-/define-property-0.2.5.tgz - kind-of: https://registry.npmmirror.com/kind-of/-/kind-of-3.2.2.tgz - - object-inspect@https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz: {} - - object-inspect@https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.3.tgz: {} - - object-keys@https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz: {} - - object-keys@https://registry.npmmirror.com/object-keys/-/object-keys-1.1.1.tgz: {} - - object-visit@https://registry.npmmirror.com/object-visit/-/object-visit-1.0.1.tgz: - dependencies: - isobject: https://registry.npmmirror.com/isobject/-/isobject-3.0.1.tgz - - object.assign@https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz: - dependencies: - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - define-properties: https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz - has-symbols: https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz - object-keys: https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz - - object.assign@https://registry.npmmirror.com/object.assign/-/object.assign-4.1.4.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - define-properties: https://registry.npmmirror.com/define-properties/-/define-properties-1.2.0.tgz - has-symbols: https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz - object-keys: https://registry.npmmirror.com/object-keys/-/object-keys-1.1.1.tgz - - object.pick@https://registry.npmmirror.com/object.pick/-/object.pick-1.3.0.tgz: - dependencies: - isobject: https://registry.npmmirror.com/isobject/-/isobject-3.0.1.tgz - - on-finished@https://registry.npmmirror.com/on-finished/-/on-finished-2.3.0.tgz: - dependencies: - ee-first: https://registry.npmmirror.com/ee-first/-/ee-first-1.1.1.tgz - - once@https://registry.npmjs.org/once/-/once-1.4.0.tgz: - dependencies: - wrappy: https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz - - once@https://registry.npmmirror.com/once/-/once-1.4.0.tgz: - dependencies: - wrappy: https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz - - onetime@https://registry.npmmirror.com/onetime/-/onetime-2.0.1.tgz: - dependencies: - mimic-fn: https://registry.npmmirror.com/mimic-fn/-/mimic-fn-1.2.0.tgz - - onetime@https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz: - dependencies: - mimic-fn: https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz - - open@https://registry.npmmirror.com/open/-/open-8.4.2.tgz: - dependencies: - define-lazy-prop: https://registry.npmmirror.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz - is-docker: https://registry.npmmirror.com/is-docker/-/is-docker-2.2.1.tgz - is-wsl: https://registry.npmmirror.com/is-wsl/-/is-wsl-2.2.0.tgz - - opener@https://registry.npmmirror.com/opener/-/opener-1.5.2.tgz: {} - - optionator@https://registry.npmmirror.com/optionator/-/optionator-0.9.3.tgz: - dependencies: - '@aashutoshrathi/word-wrap': https://registry.npmmirror.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz - deep-is: https://registry.npmmirror.com/deep-is/-/deep-is-0.1.4.tgz - fast-levenshtein: https://registry.npmmirror.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz - levn: https://registry.npmmirror.com/levn/-/levn-0.4.1.tgz - prelude-ls: https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz - type-check: https://registry.npmmirror.com/type-check/-/type-check-0.4.0.tgz - - optipng-bin@https://registry.npmmirror.com/optipng-bin/-/optipng-bin-7.0.1.tgz: - dependencies: - bin-build: https://registry.npmmirror.com/bin-build/-/bin-build-3.0.0.tgz - bin-wrapper: bin-wrapper-china@https://registry.npmjs.org/bin-wrapper-china/-/bin-wrapper-china-0.1.0.tgz - - ora@https://registry.npmmirror.com/ora/-/ora-5.4.1.tgz: - dependencies: - bl: https://registry.npmmirror.com/bl/-/bl-4.1.0.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - cli-cursor: https://registry.npmmirror.com/cli-cursor/-/cli-cursor-3.1.0.tgz - cli-spinners: https://registry.npmmirror.com/cli-spinners/-/cli-spinners-2.9.0.tgz - is-interactive: https://registry.npmmirror.com/is-interactive/-/is-interactive-1.0.0.tgz - is-unicode-supported: https://registry.npmmirror.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz - log-symbols: https://registry.npmmirror.com/log-symbols/-/log-symbols-4.1.0.tgz - strip-ansi: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz - wcwidth: https://registry.npmmirror.com/wcwidth/-/wcwidth-1.0.1.tgz - - os-filter-obj@https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz: - dependencies: - arch: https://registry.npmjs.org/arch/-/arch-2.2.0.tgz - - os-tmpdir@https://registry.npmmirror.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz: {} - - ow@https://registry.npmmirror.com/ow/-/ow-0.17.0.tgz: - dependencies: - type-fest: https://registry.npmmirror.com/type-fest/-/type-fest-0.11.0.tgz - - p-cancelable@https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz: {} - - p-cancelable@https://registry.npmmirror.com/p-cancelable/-/p-cancelable-0.3.0.tgz: {} - - p-event@https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz: - dependencies: - p-timeout: https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz - - p-event@https://registry.npmmirror.com/p-event/-/p-event-1.3.0.tgz: - dependencies: - p-timeout: https://registry.npmmirror.com/p-timeout/-/p-timeout-1.2.1.tgz - - p-finally@https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz: {} - - p-finally@https://registry.npmmirror.com/p-finally/-/p-finally-1.0.0.tgz: {} - - p-is-promise@https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz: {} - - p-limit@https://registry.npmmirror.com/p-limit/-/p-limit-1.3.0.tgz: - dependencies: - p-try: https://registry.npmmirror.com/p-try/-/p-try-1.0.0.tgz - - p-limit@https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz: - dependencies: - p-try: https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz - - p-limit@https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz: - dependencies: - yocto-queue: https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz - - p-locate@https://registry.npmmirror.com/p-locate/-/p-locate-2.0.0.tgz: - dependencies: - p-limit: https://registry.npmmirror.com/p-limit/-/p-limit-1.3.0.tgz - - p-locate@https://registry.npmmirror.com/p-locate/-/p-locate-4.1.0.tgz: - dependencies: - p-limit: https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz - - p-locate@https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz: - dependencies: - p-limit: https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz - - p-map-series@https://registry.npmmirror.com/p-map-series/-/p-map-series-1.0.0.tgz: - dependencies: - p-reduce: https://registry.npmmirror.com/p-reduce/-/p-reduce-1.0.0.tgz - - p-map@https://registry.npmmirror.com/p-map/-/p-map-4.0.0.tgz: - dependencies: - aggregate-error: https://registry.npmmirror.com/aggregate-error/-/aggregate-error-3.1.0.tgz - - p-pipe@https://registry.npmmirror.com/p-pipe/-/p-pipe-3.1.0.tgz: {} - - p-reduce@https://registry.npmmirror.com/p-reduce/-/p-reduce-1.0.0.tgz: {} - - p-timeout@https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz: - dependencies: - p-finally: https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz - - p-timeout@https://registry.npmmirror.com/p-timeout/-/p-timeout-1.2.1.tgz: - dependencies: - p-finally: https://registry.npmmirror.com/p-finally/-/p-finally-1.0.0.tgz - - p-try@https://registry.npmmirror.com/p-try/-/p-try-1.0.0.tgz: {} - - p-try@https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz: {} - - param-case@https://registry.npmmirror.com/param-case/-/param-case-3.0.4.tgz: - dependencies: - dot-case: https://registry.npmmirror.com/dot-case/-/dot-case-3.0.4.tgz - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - - parent-module@https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz: - dependencies: - callsites: https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz - - parse-json@https://registry.npmmirror.com/parse-json/-/parse-json-2.2.0.tgz: - dependencies: - error-ex: https://registry.npmmirror.com/error-ex/-/error-ex-1.3.2.tgz - - parse-json@https://registry.npmmirror.com/parse-json/-/parse-json-4.0.0.tgz: - dependencies: - error-ex: https://registry.npmmirror.com/error-ex/-/error-ex-1.3.2.tgz - json-parse-better-errors: https://registry.npmmirror.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz - - parse-json@https://registry.npmmirror.com/parse-json/-/parse-json-5.2.0.tgz: - dependencies: - '@babel/code-frame': https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.22.10.tgz - error-ex: https://registry.npmmirror.com/error-ex/-/error-ex-1.3.2.tgz - json-parse-even-better-errors: https://registry.npmmirror.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz - lines-and-columns: https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz - - parse-node-version@https://registry.npmmirror.com/parse-node-version/-/parse-node-version-1.0.1.tgz: {} - - parse-passwd@https://registry.npmmirror.com/parse-passwd/-/parse-passwd-1.0.0.tgz: {} - - parse5@https://registry.npmmirror.com/parse5/-/parse5-6.0.1.tgz: {} - - parseurl@https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz: {} - - pascal-case@https://registry.npmmirror.com/pascal-case/-/pascal-case-3.1.2.tgz: - dependencies: - no-case: https://registry.npmmirror.com/no-case/-/no-case-3.0.4.tgz - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - - pascalcase@https://registry.npmmirror.com/pascalcase/-/pascalcase-0.1.1.tgz: {} - - path-case@https://registry.npmmirror.com/path-case/-/path-case-3.0.4.tgz: - dependencies: - dot-case: https://registry.npmmirror.com/dot-case/-/dot-case-3.0.4.tgz - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - - path-exists@https://registry.npmmirror.com/path-exists/-/path-exists-2.1.0.tgz: - dependencies: - pinkie-promise: https://registry.npmmirror.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz - - path-exists@https://registry.npmmirror.com/path-exists/-/path-exists-3.0.0.tgz: {} - - path-exists@https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz: {} - - path-is-absolute@https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz: {} - - path-is-absolute@https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz: {} - - path-key@https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz: {} - - path-key@https://registry.npmmirror.com/path-key/-/path-key-2.0.1.tgz: {} - - path-key@https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz: {} - - path-parse@https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz: {} - - path-parse@https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz: {} - - path-to-regexp@https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-6.2.0.tgz: {} - - path-type@https://registry.npmmirror.com/path-type/-/path-type-1.1.0.tgz: - dependencies: - graceful-fs: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz - pify: https://registry.npmmirror.com/pify/-/pify-2.3.0.tgz - pinkie-promise: https://registry.npmmirror.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz - - path-type@https://registry.npmmirror.com/path-type/-/path-type-3.0.0.tgz: - dependencies: - pify: https://registry.npmmirror.com/pify/-/pify-3.0.0.tgz - - path-type@https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz: {} - - pathe@https://registry.npmmirror.com/pathe/-/pathe-0.2.0.tgz: {} - - pend@https://registry.npmjs.org/pend/-/pend-1.2.0.tgz: {} - - pend@https://registry.npmmirror.com/pend/-/pend-1.2.0.tgz: {} - - performance-now@https://registry.npmmirror.com/performance-now/-/performance-now-2.1.0.tgz: - optional: true - - picocolors@https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz: {} - - picocolors@https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz: {} - - picomatch@https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz: {} - - picomatch@https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz: {} - - pidtree@https://registry.npmmirror.com/pidtree/-/pidtree-0.3.1.tgz: {} - - pidtree@https://registry.npmmirror.com/pidtree/-/pidtree-0.5.0.tgz: {} - - pify@https://registry.npmjs.org/pify/-/pify-2.3.0.tgz: {} - - pify@https://registry.npmjs.org/pify/-/pify-3.0.0.tgz: {} - - pify@https://registry.npmjs.org/pify/-/pify-4.0.1.tgz: {} - - pify@https://registry.npmmirror.com/pify/-/pify-2.3.0.tgz: {} - - pify@https://registry.npmmirror.com/pify/-/pify-3.0.0.tgz: {} - - pify@https://registry.npmmirror.com/pify/-/pify-4.0.1.tgz: - optional: true - - pinia@https://registry.npmmirror.com/pinia/-/pinia-2.0.12.tgz(typescript@4.6.3)(vue@3.2.33): - dependencies: - '@vue/devtools-api': https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz - typescript: https://registry.npmmirror.com/typescript/-/typescript-4.6.3.tgz - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - vue-demi: https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.5.tgz(vue@3.2.33) - - pinkie-promise@https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz: - dependencies: - pinkie: https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz - - pinkie-promise@https://registry.npmmirror.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz: - dependencies: - pinkie: https://registry.npmmirror.com/pinkie/-/pinkie-2.0.4.tgz - - pinkie@https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz: {} - - pinkie@https://registry.npmmirror.com/pinkie/-/pinkie-2.0.4.tgz: {} - - pinyin-pro@https://registry.npmmirror.com/pinyin-pro/-/pinyin-pro-3.11.0.tgz: {} - - pirates@https://registry.npmmirror.com/pirates/-/pirates-4.0.6.tgz: {} - - pkg-dir@https://registry.npmmirror.com/pkg-dir/-/pkg-dir-4.2.0.tgz: - dependencies: - find-up: https://registry.npmmirror.com/find-up/-/find-up-4.1.0.tgz - - pngjs@https://registry.npmmirror.com/pngjs/-/pngjs-5.0.0.tgz: {} - - pngquant-bin@https://registry.npmmirror.com/pngquant-bin/-/pngquant-bin-6.0.1.tgz: - dependencies: - bin-build: https://registry.npmmirror.com/bin-build/-/bin-build-3.0.0.tgz - bin-wrapper: bin-wrapper-china@https://registry.npmjs.org/bin-wrapper-china/-/bin-wrapper-china-0.1.0.tgz - execa: https://registry.npmmirror.com/execa/-/execa-4.1.0.tgz - - portfinder@https://registry.npmmirror.com/portfinder/-/portfinder-1.0.32.tgz: - dependencies: - async: https://registry.npmmirror.com/async/-/async-2.6.4.tgz - debug: https://registry.npmmirror.com/debug/-/debug-3.2.7.tgz - mkdirp: https://registry.npmmirror.com/mkdirp/-/mkdirp-0.5.6.tgz - transitivePeerDependencies: - - supports-color - - posix-character-classes@https://registry.npmmirror.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz: {} - - postcss-html@https://registry.npmmirror.com/postcss-html/-/postcss-html-1.4.1.tgz: - dependencies: - htmlparser2: https://registry.npmmirror.com/htmlparser2/-/htmlparser2-7.2.0.tgz - postcss: https://registry.npmmirror.com/postcss/-/postcss-8.4.12.tgz - postcss-safe-parser: https://registry.npmmirror.com/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz(postcss@8.4.12) - - postcss-less@https://registry.npmmirror.com/postcss-less/-/postcss-less-6.0.0.tgz(postcss@8.4.12): - dependencies: - postcss: https://registry.npmmirror.com/postcss/-/postcss-8.4.12.tgz - - postcss-media-query-parser@https://registry.npmmirror.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz: {} - - postcss-prefix-selector@https://registry.npmmirror.com/postcss-prefix-selector/-/postcss-prefix-selector-1.16.0.tgz(postcss@5.2.18): - dependencies: - postcss: https://registry.npmmirror.com/postcss/-/postcss-5.2.18.tgz - - postcss-resolve-nested-selector@https://registry.npmmirror.com/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz: {} - - postcss-safe-parser@https://registry.npmmirror.com/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz(postcss@8.4.12): - dependencies: - postcss: https://registry.npmmirror.com/postcss/-/postcss-8.4.12.tgz - - postcss-selector-parser@https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz: - dependencies: - cssesc: https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz - util-deprecate: https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz - - postcss-sorting@https://registry.npmmirror.com/postcss-sorting/-/postcss-sorting-7.0.1.tgz(postcss@8.4.12): - dependencies: - postcss: https://registry.npmmirror.com/postcss/-/postcss-8.4.12.tgz - - postcss-value-parser@https://registry.npmmirror.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz: {} - - postcss@https://registry.npmmirror.com/postcss/-/postcss-5.2.18.tgz: - dependencies: - chalk: https://registry.npmmirror.com/chalk/-/chalk-1.1.3.tgz - js-base64: https://registry.npmmirror.com/js-base64/-/js-base64-2.6.4.tgz - source-map: https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz - supports-color: https://registry.npmmirror.com/supports-color/-/supports-color-3.2.3.tgz - - postcss@https://registry.npmmirror.com/postcss/-/postcss-8.4.12.tgz: - dependencies: - nanoid: https://registry.npmmirror.com/nanoid/-/nanoid-3.3.6.tgz - picocolors: https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz - source-map-js: https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz - - postcss@https://registry.npmmirror.com/postcss/-/postcss-8.4.27.tgz: - dependencies: - nanoid: https://registry.npmmirror.com/nanoid/-/nanoid-3.3.6.tgz - picocolors: https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz - source-map-js: https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz - - posthtml-parser@https://registry.npmmirror.com/posthtml-parser/-/posthtml-parser-0.2.1.tgz: - dependencies: - htmlparser2: https://registry.npmmirror.com/htmlparser2/-/htmlparser2-3.10.1.tgz - isobject: https://registry.npmmirror.com/isobject/-/isobject-2.1.0.tgz - - posthtml-rename-id@https://registry.npmmirror.com/posthtml-rename-id/-/posthtml-rename-id-1.0.12.tgz: - dependencies: - escape-string-regexp: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz - - posthtml-render@https://registry.npmmirror.com/posthtml-render/-/posthtml-render-1.4.0.tgz: {} - - posthtml-svg-mode@https://registry.npmmirror.com/posthtml-svg-mode/-/posthtml-svg-mode-1.0.3.tgz: - dependencies: - merge-options: https://registry.npmmirror.com/merge-options/-/merge-options-1.0.1.tgz - posthtml: https://registry.npmmirror.com/posthtml/-/posthtml-0.9.2.tgz - posthtml-parser: https://registry.npmmirror.com/posthtml-parser/-/posthtml-parser-0.2.1.tgz - posthtml-render: https://registry.npmmirror.com/posthtml-render/-/posthtml-render-1.4.0.tgz - - posthtml@https://registry.npmmirror.com/posthtml/-/posthtml-0.9.2.tgz: - dependencies: - posthtml-parser: https://registry.npmmirror.com/posthtml-parser/-/posthtml-parser-0.2.1.tgz - posthtml-render: https://registry.npmmirror.com/posthtml-render/-/posthtml-render-1.4.0.tgz - - preact@https://registry.npmmirror.com/preact/-/preact-10.16.0.tgz: {} - - prelude-ls@https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz: {} - - prepend-http@https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz: {} - - prepend-http@https://registry.npmmirror.com/prepend-http/-/prepend-http-1.0.4.tgz: {} - - prettier-linter-helpers@https://registry.npmmirror.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz: - dependencies: - fast-diff: https://registry.npmmirror.com/fast-diff/-/fast-diff-1.3.0.tgz - - prettier@https://registry.npmmirror.com/prettier/-/prettier-2.6.2.tgz: {} - - pretty-bytes@https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz: {} - - pretty-bytes@https://registry.npmmirror.com/pretty-bytes/-/pretty-bytes-6.1.1.tgz: {} - - pretty-format@https://registry.npmmirror.com/pretty-format/-/pretty-format-27.5.1.tgz: - dependencies: - ansi-regex: https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz - ansi-styles: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-5.2.0.tgz - react-is: https://registry.npmmirror.com/react-is/-/react-is-17.0.2.tgz - - pretty-quick@https://registry.npmmirror.com/pretty-quick/-/pretty-quick-3.1.1.tgz(prettier@2.6.2): - dependencies: - chalk: https://registry.npmmirror.com/chalk/-/chalk-3.0.0.tgz - execa: https://registry.npmmirror.com/execa/-/execa-4.1.0.tgz - find-up: https://registry.npmmirror.com/find-up/-/find-up-4.1.0.tgz - ignore: https://registry.npmmirror.com/ignore/-/ignore-5.2.4.tgz - mri: https://registry.npmmirror.com/mri/-/mri-1.2.0.tgz - multimatch: https://registry.npmmirror.com/multimatch/-/multimatch-4.0.0.tgz - prettier: https://registry.npmmirror.com/prettier/-/prettier-2.6.2.tgz - - print-js@https://registry.npmmirror.com/print-js/-/print-js-1.6.0.tgz: {} - - printj@https://registry.npmmirror.com/printj/-/printj-1.1.2.tgz: {} - - process-nextick-args@https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz: {} - - process-nextick-args@https://registry.npmmirror.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz: {} - - prompts@https://registry.npmmirror.com/prompts/-/prompts-2.4.2.tgz: - dependencies: - kleur: https://registry.npmmirror.com/kleur/-/kleur-3.0.3.tgz - sisteransi: https://registry.npmmirror.com/sisteransi/-/sisteransi-1.0.5.tgz - - proto-list@https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz: {} - - proto-list@https://registry.npmmirror.com/proto-list/-/proto-list-1.2.4.tgz: {} - - prr@https://registry.npmmirror.com/prr/-/prr-1.0.1.tgz: - optional: true - - pseudomap@https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz: {} - - pseudomap@https://registry.npmmirror.com/pseudomap/-/pseudomap-1.0.2.tgz: {} - - psl@https://registry.npmmirror.com/psl/-/psl-1.9.0.tgz: {} - - pug-error@https://registry.npmmirror.com/pug-error/-/pug-error-2.0.0.tgz: {} - - pug-lexer@https://registry.npmmirror.com/pug-lexer/-/pug-lexer-5.0.1.tgz: - dependencies: - character-parser: https://registry.npmmirror.com/character-parser/-/character-parser-2.2.0.tgz - is-expression: https://registry.npmmirror.com/is-expression/-/is-expression-4.0.0.tgz - pug-error: https://registry.npmmirror.com/pug-error/-/pug-error-2.0.0.tgz - - pug-parser@https://registry.npmmirror.com/pug-parser/-/pug-parser-6.0.0.tgz: - dependencies: - pug-error: https://registry.npmmirror.com/pug-error/-/pug-error-2.0.0.tgz - token-stream: https://registry.npmmirror.com/token-stream/-/token-stream-1.0.0.tgz - - pump@https://registry.npmjs.org/pump/-/pump-3.0.0.tgz: - dependencies: - end-of-stream: https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz - once: https://registry.npmjs.org/once/-/once-1.4.0.tgz - - pump@https://registry.npmmirror.com/pump/-/pump-3.0.0.tgz: - dependencies: - end-of-stream: https://registry.npmmirror.com/end-of-stream/-/end-of-stream-1.4.4.tgz - once: https://registry.npmmirror.com/once/-/once-1.4.0.tgz - - punycode@https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz: {} - - punycode@https://registry.npmmirror.com/punycode/-/punycode-2.3.0.tgz: {} - - q@https://registry.npmmirror.com/q/-/q-1.5.1.tgz: {} - - qrcode@https://registry.npmmirror.com/qrcode/-/qrcode-1.5.0.tgz: - dependencies: - dijkstrajs: https://registry.npmmirror.com/dijkstrajs/-/dijkstrajs-1.0.3.tgz - encode-utf8: https://registry.npmmirror.com/encode-utf8/-/encode-utf8-1.0.3.tgz - pngjs: https://registry.npmmirror.com/pngjs/-/pngjs-5.0.0.tgz - yargs: https://registry.npmmirror.com/yargs/-/yargs-15.4.1.tgz - - qrcodejs2@https://registry.npmmirror.com/qrcodejs2/-/qrcodejs2-0.0.2.tgz: {} - - qs@https://registry.npmmirror.com/qs/-/qs-6.10.3.tgz: - dependencies: - side-channel: https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz - - qs@https://registry.npmmirror.com/qs/-/qs-6.11.2.tgz: - dependencies: - side-channel: https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz - - query-string@https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz: - dependencies: - decode-uri-component: https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz - object-assign: https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz - strict-uri-encode: https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz - - query-string@https://registry.npmmirror.com/query-string/-/query-string-4.3.4.tgz: - dependencies: - object-assign: https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz - strict-uri-encode: https://registry.npmmirror.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz - - querystringify@https://registry.npmmirror.com/querystringify/-/querystringify-2.2.0.tgz: {} - - queue-microtask@https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz: {} - - quick-lru@https://registry.npmmirror.com/quick-lru/-/quick-lru-4.0.1.tgz: {} - - raf@https://registry.npmmirror.com/raf/-/raf-3.4.1.tgz: - dependencies: - performance-now: https://registry.npmmirror.com/performance-now/-/performance-now-2.1.0.tgz - optional: true - - randombytes@https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz: - dependencies: - safe-buffer: https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz - - react-is@https://registry.npmmirror.com/react-is/-/react-is-17.0.2.tgz: {} - - read-pkg-up@https://registry.npmmirror.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz: - dependencies: - find-up: https://registry.npmmirror.com/find-up/-/find-up-1.1.2.tgz - read-pkg: https://registry.npmmirror.com/read-pkg/-/read-pkg-1.1.0.tgz - - read-pkg-up@https://registry.npmmirror.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz: - dependencies: - find-up: https://registry.npmmirror.com/find-up/-/find-up-2.1.0.tgz - read-pkg: https://registry.npmmirror.com/read-pkg/-/read-pkg-3.0.0.tgz - - read-pkg-up@https://registry.npmmirror.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz: - dependencies: - find-up: https://registry.npmmirror.com/find-up/-/find-up-4.1.0.tgz - read-pkg: https://registry.npmmirror.com/read-pkg/-/read-pkg-5.2.0.tgz - type-fest: https://registry.npmmirror.com/type-fest/-/type-fest-0.8.1.tgz - - read-pkg@https://registry.npmmirror.com/read-pkg/-/read-pkg-1.1.0.tgz: - dependencies: - load-json-file: https://registry.npmmirror.com/load-json-file/-/load-json-file-1.1.0.tgz - normalize-package-data: https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz - path-type: https://registry.npmmirror.com/path-type/-/path-type-1.1.0.tgz - - read-pkg@https://registry.npmmirror.com/read-pkg/-/read-pkg-3.0.0.tgz: - dependencies: - load-json-file: https://registry.npmmirror.com/load-json-file/-/load-json-file-4.0.0.tgz - normalize-package-data: https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz - path-type: https://registry.npmmirror.com/path-type/-/path-type-3.0.0.tgz - - read-pkg@https://registry.npmmirror.com/read-pkg/-/read-pkg-5.2.0.tgz: - dependencies: - '@types/normalize-package-data': https://registry.npmmirror.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz - normalize-package-data: https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz - parse-json: https://registry.npmmirror.com/parse-json/-/parse-json-5.2.0.tgz - type-fest: https://registry.npmmirror.com/type-fest/-/type-fest-0.6.0.tgz - - readable-stream@https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz: - dependencies: - core-util-is: https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz - inherits: https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz - isarray: https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz - process-nextick-args: https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz - safe-buffer: https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz - string_decoder: https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz - util-deprecate: https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz - - readable-stream@https://registry.npmmirror.com/readable-stream/-/readable-stream-2.3.8.tgz: - dependencies: - core-util-is: https://registry.npmmirror.com/core-util-is/-/core-util-is-1.0.3.tgz - inherits: https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz - isarray: https://registry.npmmirror.com/isarray/-/isarray-1.0.0.tgz - process-nextick-args: https://registry.npmmirror.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz - safe-buffer: https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz - string_decoder: https://registry.npmmirror.com/string_decoder/-/string_decoder-1.1.1.tgz - util-deprecate: https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz - - readable-stream@https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz: - dependencies: - inherits: https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz - string_decoder: https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz - util-deprecate: https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz - - readdirp@https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz: - dependencies: - picomatch: https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz - - redent@https://registry.npmmirror.com/redent/-/redent-1.0.0.tgz: - dependencies: - indent-string: https://registry.npmmirror.com/indent-string/-/indent-string-2.1.0.tgz - strip-indent: https://registry.npmmirror.com/strip-indent/-/strip-indent-1.0.1.tgz - - redent@https://registry.npmmirror.com/redent/-/redent-3.0.0.tgz: - dependencies: - indent-string: https://registry.npmmirror.com/indent-string/-/indent-string-4.0.0.tgz - strip-indent: https://registry.npmmirror.com/strip-indent/-/strip-indent-3.0.0.tgz - - regenerate-unicode-properties@https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz: - dependencies: - regenerate: https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz - - regenerate@https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz: {} - - regenerator-runtime@https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz: {} - - regenerator-runtime@https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz: {} - - regenerator-runtime@https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz: {} - - regenerator-runtime@https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz: {} - - regenerator-transform@https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz: - dependencies: - '@babel/runtime': https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.10.tgz - - regex-not@https://registry.npmmirror.com/regex-not/-/regex-not-1.0.2.tgz: - dependencies: - extend-shallow: https://registry.npmmirror.com/extend-shallow/-/extend-shallow-3.0.2.tgz - safe-regex: https://registry.npmmirror.com/safe-regex/-/safe-regex-1.1.0.tgz - - regexp.prototype.flags@https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz: - dependencies: - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - define-properties: https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz - functions-have-names: https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz - - regexp.prototype.flags@https://registry.npmmirror.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - define-properties: https://registry.npmmirror.com/define-properties/-/define-properties-1.2.0.tgz - functions-have-names: https://registry.npmmirror.com/functions-have-names/-/functions-have-names-1.2.3.tgz - - regexpp@https://registry.npmmirror.com/regexpp/-/regexpp-3.2.0.tgz: {} - - regexpu-core@https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz: - dependencies: - '@babel/regjsgen': https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz - regenerate: https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz - regenerate-unicode-properties: https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz - regjsparser: https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz - unicode-match-property-ecmascript: https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz - unicode-match-property-value-ecmascript: https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz - - regjsparser@https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz: - dependencies: - jsesc: https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz - - relateurl@https://registry.npmmirror.com/relateurl/-/relateurl-0.2.7.tgz: {} - - repeat-element@https://registry.npmmirror.com/repeat-element/-/repeat-element-1.1.4.tgz: {} - - repeat-string@https://registry.npmmirror.com/repeat-string/-/repeat-string-1.6.1.tgz: {} - - repeating@https://registry.npmmirror.com/repeating/-/repeating-2.0.1.tgz: - dependencies: - is-finite: https://registry.npmmirror.com/is-finite/-/is-finite-1.1.0.tgz - - replace-ext@https://registry.npmmirror.com/replace-ext/-/replace-ext-1.0.1.tgz: {} - - require-directory@https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz: {} - - require-from-string@https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz: {} - - require-from-string@https://registry.npmmirror.com/require-from-string/-/require-from-string-2.0.2.tgz: {} - - require-main-filename@https://registry.npmmirror.com/require-main-filename/-/require-main-filename-2.0.0.tgz: {} - - requires-port@https://registry.npmmirror.com/requires-port/-/requires-port-1.0.0.tgz: {} - - resize-observer-polyfill@https://registry.npmmirror.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz: {} - - resolve-cwd@https://registry.npmmirror.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz: - dependencies: - resolve-from: https://registry.npmmirror.com/resolve-from/-/resolve-from-5.0.0.tgz - - resolve-dir@https://registry.npmmirror.com/resolve-dir/-/resolve-dir-1.0.1.tgz: - dependencies: - expand-tilde: https://registry.npmmirror.com/expand-tilde/-/expand-tilde-2.0.2.tgz - global-modules: https://registry.npmmirror.com/global-modules/-/global-modules-1.0.0.tgz - - resolve-from@https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz: {} - - resolve-from@https://registry.npmmirror.com/resolve-from/-/resolve-from-5.0.0.tgz: {} - - resolve-global@https://registry.npmmirror.com/resolve-global/-/resolve-global-1.0.0.tgz: - dependencies: - global-dirs: https://registry.npmmirror.com/global-dirs/-/global-dirs-0.1.1.tgz - - resolve-url@https://registry.npmmirror.com/resolve-url/-/resolve-url-0.2.1.tgz: {} - - resolve.exports@https://registry.npmmirror.com/resolve.exports/-/resolve.exports-1.1.1.tgz: {} - - resolve@https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz: - dependencies: - is-core-module: https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz - path-parse: https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz - supports-preserve-symlinks-flag: https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz - - resolve@https://registry.npmmirror.com/resolve/-/resolve-1.22.4.tgz: - dependencies: - is-core-module: https://registry.npmmirror.com/is-core-module/-/is-core-module-2.13.0.tgz - path-parse: https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz - supports-preserve-symlinks-flag: https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz - - responselike@https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz: - dependencies: - lowercase-keys: https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz - - restore-cursor@https://registry.npmmirror.com/restore-cursor/-/restore-cursor-2.0.0.tgz: - dependencies: - onetime: https://registry.npmmirror.com/onetime/-/onetime-2.0.1.tgz - signal-exit: https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz - - restore-cursor@https://registry.npmmirror.com/restore-cursor/-/restore-cursor-3.1.0.tgz: - dependencies: - onetime: https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz - signal-exit: https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz - - ret@https://registry.npmmirror.com/ret/-/ret-0.1.15.tgz: {} - - reusify@https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz: {} - - rfdc@https://registry.npmmirror.com/rfdc/-/rfdc-1.3.0.tgz: {} - - rgbcolor@https://registry.npmmirror.com/rgbcolor/-/rgbcolor-1.0.1.tgz: - optional: true - - rimraf@https://registry.npmmirror.com/rimraf/-/rimraf-2.7.1.tgz: - dependencies: - glob: https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz - - rimraf@https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz: - dependencies: - glob: https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz - - rollup-plugin-purge-icons@https://registry.npmmirror.com/rollup-plugin-purge-icons/-/rollup-plugin-purge-icons-0.8.1.tgz: - dependencies: - '@purge-icons/core': https://registry.npmmirror.com/@purge-icons/core/-/core-0.8.0.tgz - '@purge-icons/generated': https://registry.npmmirror.com/@purge-icons/generated/-/generated-0.8.1.tgz - transitivePeerDependencies: - - encoding - - supports-color - - rollup-plugin-terser@https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz(rollup@2.79.1): - dependencies: - '@babel/code-frame': https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.10.tgz - jest-worker: https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz - rollup: https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz - serialize-javascript: https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz - terser: https://registry.npmjs.org/terser/-/terser-5.19.2.tgz - - rollup-plugin-visualizer@https://registry.npmmirror.com/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.6.0.tgz(rollup@2.72.0): - dependencies: - nanoid: https://registry.npmmirror.com/nanoid/-/nanoid-3.3.6.tgz - open: https://registry.npmmirror.com/open/-/open-8.4.2.tgz - rollup: https://registry.npmjs.org/rollup/-/rollup-2.72.0.tgz - source-map: https://registry.npmmirror.com/source-map/-/source-map-0.7.4.tgz - yargs: https://registry.npmmirror.com/yargs/-/yargs-17.7.2.tgz - - rollup@https://registry.npmjs.org/rollup/-/rollup-2.72.0.tgz: - optionalDependencies: - fsevents: https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz - - rollup@https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz: - optionalDependencies: - fsevents: https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz - - run-async@https://registry.npmmirror.com/run-async/-/run-async-2.4.1.tgz: {} - - run-parallel@https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz: - dependencies: - queue-microtask: https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz - - rxjs@https://registry.npmmirror.com/rxjs/-/rxjs-6.6.7.tgz: - dependencies: - tslib: https://registry.npmmirror.com/tslib/-/tslib-1.14.1.tgz - - rxjs@https://registry.npmmirror.com/rxjs/-/rxjs-7.8.1.tgz: - dependencies: - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - - safe-array-concat@https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz: - dependencies: - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - get-intrinsic: https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz - has-symbols: https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz - isarray: https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz - - safe-array-concat@https://registry.npmmirror.com/safe-array-concat/-/safe-array-concat-1.0.0.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - get-intrinsic: https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz - has-symbols: https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz - isarray: https://registry.npmmirror.com/isarray/-/isarray-2.0.5.tgz - - safe-buffer@https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz: {} - - safe-buffer@https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz: {} - - safe-buffer@https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz: {} - - safe-buffer@https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz: {} - - safe-regex-test@https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz: - dependencies: - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - get-intrinsic: https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz - is-regex: https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz - - safe-regex-test@https://registry.npmmirror.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - get-intrinsic: https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz - is-regex: https://registry.npmmirror.com/is-regex/-/is-regex-1.1.4.tgz - - safe-regex@https://registry.npmmirror.com/safe-regex/-/safe-regex-1.1.0.tgz: - dependencies: - ret: https://registry.npmmirror.com/ret/-/ret-0.1.15.tgz - - safer-buffer@https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz: {} - - sax@https://registry.npmmirror.com/sax/-/sax-1.2.4.tgz: - optional: true - - saxes@https://registry.npmmirror.com/saxes/-/saxes-5.0.1.tgz: - dependencies: - xmlchars: https://registry.npmmirror.com/xmlchars/-/xmlchars-2.2.0.tgz - - scroll-into-view-if-needed@https://registry.npmmirror.com/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.31.tgz: - dependencies: - compute-scroll-into-view: https://registry.npmmirror.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.20.tgz - - scrollparent@https://registry.npmmirror.com/scrollparent/-/scrollparent-2.1.0.tgz: {} - - secure-compare@https://registry.npmmirror.com/secure-compare/-/secure-compare-3.0.1.tgz: {} - - seek-bzip@https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz: - dependencies: - commander: https://registry.npmjs.org/commander/-/commander-2.20.3.tgz - - seek-bzip@https://registry.npmmirror.com/seek-bzip/-/seek-bzip-1.0.6.tgz: - dependencies: - commander: https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz - - select@https://registry.npmmirror.com/select/-/select-1.1.2.tgz: {} - - semver-regex@https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz: {} - - semver-truncate@https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz: - dependencies: - semver: https://registry.npmjs.org/semver/-/semver-5.7.2.tgz - - semver@https://registry.npmjs.org/semver/-/semver-5.7.2.tgz: {} - - semver@https://registry.npmjs.org/semver/-/semver-6.3.1.tgz: {} - - semver@https://registry.npmmirror.com/semver/-/semver-5.7.2.tgz: {} - - semver@https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz: {} - - semver@https://registry.npmmirror.com/semver/-/semver-7.3.7.tgz: - dependencies: - lru-cache: https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz - - semver@https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz: - dependencies: - lru-cache: https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz - - sentence-case@https://registry.npmmirror.com/sentence-case/-/sentence-case-3.0.4.tgz: - dependencies: - no-case: https://registry.npmmirror.com/no-case/-/no-case-3.0.4.tgz - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - upper-case-first: https://registry.npmmirror.com/upper-case-first/-/upper-case-first-2.0.2.tgz - - serialize-javascript@https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz: - dependencies: - randombytes: https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz - - set-blocking@https://registry.npmmirror.com/set-blocking/-/set-blocking-2.0.0.tgz: {} - - set-value@https://registry.npmmirror.com/set-value/-/set-value-2.0.1.tgz: - dependencies: - extend-shallow: https://registry.npmmirror.com/extend-shallow/-/extend-shallow-2.0.1.tgz - is-extendable: https://registry.npmmirror.com/is-extendable/-/is-extendable-0.1.1.tgz - is-plain-object: https://registry.npmmirror.com/is-plain-object/-/is-plain-object-2.0.4.tgz - split-string: https://registry.npmmirror.com/split-string/-/split-string-3.1.0.tgz - - shallow-equal@https://registry.npmmirror.com/shallow-equal/-/shallow-equal-1.2.1.tgz: {} - - shebang-command@https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz: - dependencies: - shebang-regex: https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz - - shebang-command@https://registry.npmmirror.com/shebang-command/-/shebang-command-1.2.0.tgz: - dependencies: - shebang-regex: https://registry.npmmirror.com/shebang-regex/-/shebang-regex-1.0.0.tgz - - shebang-command@https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz: - dependencies: - shebang-regex: https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz - - shebang-regex@https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz: {} - - shebang-regex@https://registry.npmmirror.com/shebang-regex/-/shebang-regex-1.0.0.tgz: {} - - shebang-regex@https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz: {} - - shell-quote@https://registry.npmmirror.com/shell-quote/-/shell-quote-1.8.1.tgz: {} - - showdown@https://registry.npmmirror.com/showdown/-/showdown-2.1.0.tgz: - dependencies: - commander: https://registry.npmmirror.com/commander/-/commander-9.5.0.tgz - - side-channel@https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz: - dependencies: - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - get-intrinsic: https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz - object-inspect: https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz - - side-channel@https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - get-intrinsic: https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz - object-inspect: https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.3.tgz - - signal-exit@https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz: {} - - signal-exit@https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz: {} - - sisteransi@https://registry.npmmirror.com/sisteransi/-/sisteransi-1.0.5.tgz: {} - - slash@https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz: {} - - slice-ansi@https://registry.npmmirror.com/slice-ansi/-/slice-ansi-3.0.0.tgz: - dependencies: - ansi-styles: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz - astral-regex: https://registry.npmmirror.com/astral-regex/-/astral-regex-2.0.0.tgz - is-fullwidth-code-point: https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz - - slice-ansi@https://registry.npmmirror.com/slice-ansi/-/slice-ansi-4.0.0.tgz: - dependencies: - ansi-styles: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz - astral-regex: https://registry.npmmirror.com/astral-regex/-/astral-regex-2.0.0.tgz - is-fullwidth-code-point: https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz - - slice-ansi@https://registry.npmmirror.com/slice-ansi/-/slice-ansi-5.0.0.tgz: - dependencies: - ansi-styles: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-6.2.1.tgz - is-fullwidth-code-point: https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz - - snake-case@https://registry.npmmirror.com/snake-case/-/snake-case-3.0.4.tgz: - dependencies: - dot-case: https://registry.npmmirror.com/dot-case/-/dot-case-3.0.4.tgz - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - - snapdragon-node@https://registry.npmmirror.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz: - dependencies: - define-property: https://registry.npmmirror.com/define-property/-/define-property-1.0.0.tgz - isobject: https://registry.npmmirror.com/isobject/-/isobject-3.0.1.tgz - snapdragon-util: https://registry.npmmirror.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz - - snapdragon-util@https://registry.npmmirror.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz: - dependencies: - kind-of: https://registry.npmmirror.com/kind-of/-/kind-of-3.2.2.tgz - - snapdragon@https://registry.npmmirror.com/snapdragon/-/snapdragon-0.8.2.tgz: - dependencies: - base: https://registry.npmmirror.com/base/-/base-0.11.2.tgz - debug: https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz - define-property: https://registry.npmmirror.com/define-property/-/define-property-0.2.5.tgz - extend-shallow: https://registry.npmmirror.com/extend-shallow/-/extend-shallow-2.0.1.tgz - map-cache: https://registry.npmmirror.com/map-cache/-/map-cache-0.2.2.tgz - source-map: https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz - source-map-resolve: https://registry.npmmirror.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz - use: https://registry.npmmirror.com/use/-/use-3.1.1.tgz - transitivePeerDependencies: - - supports-color - - sort-keys-length@https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz: - dependencies: - sort-keys: https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz - - sort-keys-length@https://registry.npmmirror.com/sort-keys-length/-/sort-keys-length-1.0.1.tgz: - dependencies: - sort-keys: https://registry.npmmirror.com/sort-keys/-/sort-keys-1.1.2.tgz - - sort-keys@https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz: - dependencies: - is-plain-obj: https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz - - sort-keys@https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz: - dependencies: - is-plain-obj: https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz - - sort-keys@https://registry.npmmirror.com/sort-keys/-/sort-keys-1.1.2.tgz: - dependencies: - is-plain-obj: https://registry.npmmirror.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz - - sortablejs@https://registry.npmmirror.com/sortablejs/-/sortablejs-1.14.0.tgz: {} - - sortablejs@https://registry.npmmirror.com/sortablejs/-/sortablejs-1.15.0.tgz: {} - - source-map-js@https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz: {} - - source-map-resolve@https://registry.npmmirror.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz: - dependencies: - atob: https://registry.npmmirror.com/atob/-/atob-2.1.2.tgz - decode-uri-component: https://registry.npmmirror.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz - resolve-url: https://registry.npmmirror.com/resolve-url/-/resolve-url-0.2.1.tgz - source-map-url: https://registry.npmmirror.com/source-map-url/-/source-map-url-0.4.1.tgz - urix: https://registry.npmmirror.com/urix/-/urix-0.1.0.tgz - - source-map-support@https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz: - dependencies: - buffer-from: https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz - source-map: https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz - - source-map-support@https://registry.npmmirror.com/source-map-support/-/source-map-support-0.5.21.tgz: - dependencies: - buffer-from: https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz - source-map: https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz - - source-map-url@https://registry.npmmirror.com/source-map-url/-/source-map-url-0.4.1.tgz: {} - - source-map@https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz: {} - - source-map@https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz: {} - - source-map@https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz: {} - - source-map@https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz: - dependencies: - whatwg-url: https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz - - source-map@https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz: {} - - source-map@https://registry.npmmirror.com/source-map/-/source-map-0.7.4.tgz: {} - - sourcemap-codec@https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz: {} - - sourcemap-codec@https://registry.npmmirror.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz: {} - - spdx-correct@https://registry.npmmirror.com/spdx-correct/-/spdx-correct-3.2.0.tgz: - dependencies: - spdx-expression-parse: https://registry.npmmirror.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz - spdx-license-ids: https://registry.npmmirror.com/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz - - spdx-exceptions@https://registry.npmmirror.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz: {} - - spdx-expression-parse@https://registry.npmmirror.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz: - dependencies: - spdx-exceptions: https://registry.npmmirror.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz - spdx-license-ids: https://registry.npmmirror.com/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz - - spdx-license-ids@https://registry.npmmirror.com/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz: {} - - specificity@https://registry.npmmirror.com/specificity/-/specificity-0.4.1.tgz: {} - - split-string@https://registry.npmmirror.com/split-string/-/split-string-3.1.0.tgz: - dependencies: - extend-shallow: https://registry.npmmirror.com/extend-shallow/-/extend-shallow-3.0.2.tgz - - split2@https://registry.npmmirror.com/split2/-/split2-3.2.2.tgz: - dependencies: - readable-stream: https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz - - split@https://registry.npmmirror.com/split/-/split-1.0.1.tgz: - dependencies: - through: https://registry.npmmirror.com/through/-/through-2.3.8.tgz - - sprintf-js@https://registry.npmmirror.com/sprintf-js/-/sprintf-js-1.0.3.tgz: {} - - squeak@https://registry.npmmirror.com/squeak/-/squeak-1.3.0.tgz: - dependencies: - chalk: https://registry.npmmirror.com/chalk/-/chalk-1.1.3.tgz - console-stream: https://registry.npmmirror.com/console-stream/-/console-stream-0.1.1.tgz - lpad-align: https://registry.npmmirror.com/lpad-align/-/lpad-align-1.1.2.tgz - - ssf@https://registry.npmmirror.com/ssf/-/ssf-0.11.2.tgz: - dependencies: - frac: https://registry.npmmirror.com/frac/-/frac-1.1.2.tgz - - stable@https://registry.npmmirror.com/stable/-/stable-0.1.8.tgz: {} - - stack-utils@https://registry.npmmirror.com/stack-utils/-/stack-utils-2.0.6.tgz: - dependencies: - escape-string-regexp: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz - - stackblur-canvas@https://registry.npmmirror.com/stackblur-canvas/-/stackblur-canvas-2.6.0.tgz: - optional: true - - static-extend@https://registry.npmmirror.com/static-extend/-/static-extend-0.1.2.tgz: - dependencies: - define-property: https://registry.npmmirror.com/define-property/-/define-property-0.2.5.tgz - object-copy: https://registry.npmmirror.com/object-copy/-/object-copy-0.1.0.tgz - - statuses@https://registry.npmmirror.com/statuses/-/statuses-1.5.0.tgz: {} - - strict-uri-encode@https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz: {} - - strict-uri-encode@https://registry.npmmirror.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz: {} - - string-argv@https://registry.npmmirror.com/string-argv/-/string-argv-0.3.2.tgz: {} - - string-length@https://registry.npmmirror.com/string-length/-/string-length-4.0.2.tgz: - dependencies: - char-regex: https://registry.npmmirror.com/char-regex/-/char-regex-1.0.2.tgz - strip-ansi: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz - - string-width@https://registry.npmmirror.com/string-width/-/string-width-2.1.1.tgz: - dependencies: - is-fullwidth-code-point: https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz - strip-ansi: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-4.0.0.tgz - - string-width@https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz: - dependencies: - emoji-regex: https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz - is-fullwidth-code-point: https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz - strip-ansi: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz - - string-width@https://registry.npmmirror.com/string-width/-/string-width-5.1.2.tgz: - dependencies: - eastasianwidth: https://registry.npmmirror.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz - emoji-regex: https://registry.npmmirror.com/emoji-regex/-/emoji-regex-9.2.2.tgz - strip-ansi: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-7.1.0.tgz - - string.prototype.matchall@https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz: - dependencies: - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - define-properties: https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz - es-abstract: https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz - get-intrinsic: https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz - has-symbols: https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz - internal-slot: https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz - regexp.prototype.flags: https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz - side-channel: https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz - - string.prototype.padend@https://registry.npmmirror.com/string.prototype.padend/-/string.prototype.padend-3.1.4.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - define-properties: https://registry.npmmirror.com/define-properties/-/define-properties-1.2.0.tgz - es-abstract: https://registry.npmmirror.com/es-abstract/-/es-abstract-1.22.1.tgz - - string.prototype.trim@https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz: - dependencies: - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - define-properties: https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz - es-abstract: https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz - - string.prototype.trim@https://registry.npmmirror.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - define-properties: https://registry.npmmirror.com/define-properties/-/define-properties-1.2.0.tgz - es-abstract: https://registry.npmmirror.com/es-abstract/-/es-abstract-1.22.1.tgz - - string.prototype.trimend@https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz: - dependencies: - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - define-properties: https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz - es-abstract: https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz - - string.prototype.trimend@https://registry.npmmirror.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - define-properties: https://registry.npmmirror.com/define-properties/-/define-properties-1.2.0.tgz - es-abstract: https://registry.npmmirror.com/es-abstract/-/es-abstract-1.22.1.tgz - - string.prototype.trimstart@https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz: - dependencies: - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - define-properties: https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz - es-abstract: https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz - - string.prototype.trimstart@https://registry.npmmirror.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - define-properties: https://registry.npmmirror.com/define-properties/-/define-properties-1.2.0.tgz - es-abstract: https://registry.npmmirror.com/es-abstract/-/es-abstract-1.22.1.tgz - - string_decoder@https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz: - dependencies: - safe-buffer: https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz - - string_decoder@https://registry.npmmirror.com/string_decoder/-/string_decoder-1.1.1.tgz: - dependencies: - safe-buffer: https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz - - string_decoder@https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz: - dependencies: - safe-buffer: https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz - - stringify-object@https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz: - dependencies: - get-own-enumerable-property-symbols: https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz - is-obj: https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz - is-regexp: https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz - - strip-ansi@https://registry.npmmirror.com/strip-ansi/-/strip-ansi-3.0.1.tgz: - dependencies: - ansi-regex: https://registry.npmmirror.com/ansi-regex/-/ansi-regex-2.1.1.tgz - - strip-ansi@https://registry.npmmirror.com/strip-ansi/-/strip-ansi-4.0.0.tgz: - dependencies: - ansi-regex: https://registry.npmmirror.com/ansi-regex/-/ansi-regex-3.0.1.tgz - - strip-ansi@https://registry.npmmirror.com/strip-ansi/-/strip-ansi-5.2.0.tgz: - dependencies: - ansi-regex: https://registry.npmmirror.com/ansi-regex/-/ansi-regex-4.1.1.tgz - - strip-ansi@https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz: - dependencies: - ansi-regex: https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz - - strip-ansi@https://registry.npmmirror.com/strip-ansi/-/strip-ansi-7.1.0.tgz: - dependencies: - ansi-regex: https://registry.npmmirror.com/ansi-regex/-/ansi-regex-6.0.1.tgz - - strip-bom@https://registry.npmmirror.com/strip-bom/-/strip-bom-2.0.0.tgz: - dependencies: - is-utf8: https://registry.npmmirror.com/is-utf8/-/is-utf8-0.2.1.tgz - - strip-bom@https://registry.npmmirror.com/strip-bom/-/strip-bom-3.0.0.tgz: {} - - strip-bom@https://registry.npmmirror.com/strip-bom/-/strip-bom-4.0.0.tgz: {} - - strip-comments@https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz: {} - - strip-dirs@https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz: - dependencies: - is-natural-number: https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz - - strip-dirs@https://registry.npmmirror.com/strip-dirs/-/strip-dirs-2.1.0.tgz: - dependencies: - is-natural-number: https://registry.npmmirror.com/is-natural-number/-/is-natural-number-4.0.1.tgz - - strip-eof@https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz: {} - - strip-eof@https://registry.npmmirror.com/strip-eof/-/strip-eof-1.0.0.tgz: {} - - strip-final-newline@https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz: {} - - strip-indent@https://registry.npmmirror.com/strip-indent/-/strip-indent-1.0.1.tgz: - dependencies: - get-stdin: https://registry.npmmirror.com/get-stdin/-/get-stdin-4.0.1.tgz - - strip-indent@https://registry.npmmirror.com/strip-indent/-/strip-indent-3.0.0.tgz: - dependencies: - min-indent: https://registry.npmmirror.com/min-indent/-/min-indent-1.0.1.tgz - - strip-json-comments@https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.0.1.tgz: {} - - strip-json-comments@https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz: {} - - strip-outer@https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz: - dependencies: - escape-string-regexp: https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz - - strip-outer@https://registry.npmmirror.com/strip-outer/-/strip-outer-1.0.1.tgz: - dependencies: - escape-string-regexp: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz - - strnum@https://registry.npmmirror.com/strnum/-/strnum-1.0.5.tgz: {} - - style-search@https://registry.npmmirror.com/style-search/-/style-search-0.1.0.tgz: {} - - stylelint-config-html@https://registry.npmmirror.com/stylelint-config-html/-/stylelint-config-html-1.1.0.tgz(postcss-html@1.4.1)(stylelint@14.7.1): - dependencies: - postcss-html: https://registry.npmmirror.com/postcss-html/-/postcss-html-1.4.1.tgz - stylelint: https://registry.npmmirror.com/stylelint/-/stylelint-14.7.1.tgz - - stylelint-config-prettier@https://registry.npmmirror.com/stylelint-config-prettier/-/stylelint-config-prettier-9.0.3.tgz(stylelint@14.7.1): - dependencies: - stylelint: https://registry.npmmirror.com/stylelint/-/stylelint-14.7.1.tgz - - stylelint-config-recommended-vue@https://registry.npmmirror.com/stylelint-config-recommended-vue/-/stylelint-config-recommended-vue-1.4.0.tgz(postcss-html@1.4.1)(stylelint@14.7.1): - dependencies: - postcss-html: https://registry.npmmirror.com/postcss-html/-/postcss-html-1.4.1.tgz - semver: https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz - stylelint: https://registry.npmmirror.com/stylelint/-/stylelint-14.7.1.tgz - stylelint-config-html: https://registry.npmmirror.com/stylelint-config-html/-/stylelint-config-html-1.1.0.tgz(postcss-html@1.4.1)(stylelint@14.7.1) - stylelint-config-recommended: https://registry.npmmirror.com/stylelint-config-recommended/-/stylelint-config-recommended-7.0.0.tgz(stylelint@14.7.1) - - stylelint-config-recommended@https://registry.npmmirror.com/stylelint-config-recommended/-/stylelint-config-recommended-7.0.0.tgz(stylelint@14.7.1): - dependencies: - stylelint: https://registry.npmmirror.com/stylelint/-/stylelint-14.7.1.tgz - - stylelint-config-standard@https://registry.npmmirror.com/stylelint-config-standard/-/stylelint-config-standard-25.0.0.tgz(stylelint@14.7.1): - dependencies: - stylelint: https://registry.npmmirror.com/stylelint/-/stylelint-14.7.1.tgz - stylelint-config-recommended: https://registry.npmmirror.com/stylelint-config-recommended/-/stylelint-config-recommended-7.0.0.tgz(stylelint@14.7.1) - - stylelint-order@https://registry.npmmirror.com/stylelint-order/-/stylelint-order-5.0.0.tgz(stylelint@14.7.1): - dependencies: - postcss: https://registry.npmmirror.com/postcss/-/postcss-8.4.12.tgz - postcss-sorting: https://registry.npmmirror.com/postcss-sorting/-/postcss-sorting-7.0.1.tgz(postcss@8.4.12) - stylelint: https://registry.npmmirror.com/stylelint/-/stylelint-14.7.1.tgz - - stylelint@https://registry.npmmirror.com/stylelint/-/stylelint-14.7.1.tgz: - dependencies: - balanced-match: https://registry.npmmirror.com/balanced-match/-/balanced-match-2.0.0.tgz - colord: https://registry.npmmirror.com/colord/-/colord-2.9.3.tgz - cosmiconfig: https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz - css-functions-list: https://registry.npmmirror.com/css-functions-list/-/css-functions-list-3.2.0.tgz - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - execall: https://registry.npmmirror.com/execall/-/execall-2.0.0.tgz - fast-glob: https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.1.tgz - fastest-levenshtein: https://registry.npmmirror.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz - file-entry-cache: https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz - get-stdin: https://registry.npmmirror.com/get-stdin/-/get-stdin-8.0.0.tgz - global-modules: https://registry.npmmirror.com/global-modules/-/global-modules-2.0.0.tgz - globby: https://registry.npmmirror.com/globby/-/globby-11.1.0.tgz - globjoin: https://registry.npmmirror.com/globjoin/-/globjoin-0.1.4.tgz - html-tags: https://registry.npmmirror.com/html-tags/-/html-tags-3.3.1.tgz - ignore: https://registry.npmmirror.com/ignore/-/ignore-5.2.4.tgz - import-lazy: https://registry.npmmirror.com/import-lazy/-/import-lazy-4.0.0.tgz - imurmurhash: https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz - is-plain-object: https://registry.npmmirror.com/is-plain-object/-/is-plain-object-5.0.0.tgz - known-css-properties: https://registry.npmmirror.com/known-css-properties/-/known-css-properties-0.24.0.tgz - mathml-tag-names: https://registry.npmmirror.com/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz - meow: https://registry.npmmirror.com/meow/-/meow-9.0.0.tgz - micromatch: https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz - normalize-path: https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz - normalize-selector: https://registry.npmmirror.com/normalize-selector/-/normalize-selector-0.2.0.tgz - picocolors: https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz - postcss: https://registry.npmmirror.com/postcss/-/postcss-8.4.12.tgz - postcss-media-query-parser: https://registry.npmmirror.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz - postcss-resolve-nested-selector: https://registry.npmmirror.com/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz - postcss-safe-parser: https://registry.npmmirror.com/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz(postcss@8.4.12) - postcss-selector-parser: https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz - postcss-value-parser: https://registry.npmmirror.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz - resolve-from: https://registry.npmmirror.com/resolve-from/-/resolve-from-5.0.0.tgz - specificity: https://registry.npmmirror.com/specificity/-/specificity-0.4.1.tgz - string-width: https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz - strip-ansi: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz - style-search: https://registry.npmmirror.com/style-search/-/style-search-0.1.0.tgz - supports-hyperlinks: https://registry.npmmirror.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz - svg-tags: https://registry.npmmirror.com/svg-tags/-/svg-tags-1.0.0.tgz - table: https://registry.npmmirror.com/table/-/table-6.8.1.tgz - v8-compile-cache: https://registry.npmmirror.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz - write-file-atomic: https://registry.npmmirror.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz - transitivePeerDependencies: - - supports-color - - supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz: - dependencies: - has-flag: https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz - - supports-color@https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz: - dependencies: - has-flag: https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz - - supports-color@https://registry.npmmirror.com/supports-color/-/supports-color-2.0.0.tgz: {} - - supports-color@https://registry.npmmirror.com/supports-color/-/supports-color-3.2.3.tgz: - dependencies: - has-flag: https://registry.npmmirror.com/has-flag/-/has-flag-1.0.0.tgz - - supports-color@https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz: - dependencies: - has-flag: https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz - - supports-color@https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz: - dependencies: - has-flag: https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz - - supports-color@https://registry.npmmirror.com/supports-color/-/supports-color-8.1.1.tgz: - dependencies: - has-flag: https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz - - supports-color@https://registry.npmmirror.com/supports-color/-/supports-color-9.4.0.tgz: {} - - supports-hyperlinks@https://registry.npmmirror.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz: - dependencies: - has-flag: https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz - supports-color: https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz - - supports-preserve-symlinks-flag@https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz: {} - - supports-preserve-symlinks-flag@https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz: {} - - svg-baker@https://registry.npmmirror.com/svg-baker/-/svg-baker-1.7.0.tgz: - dependencies: - bluebird: https://registry.npmmirror.com/bluebird/-/bluebird-3.7.2.tgz - clone: https://registry.npmmirror.com/clone/-/clone-2.1.2.tgz - he: https://registry.npmmirror.com/he/-/he-1.2.0.tgz - image-size: https://registry.npmmirror.com/image-size/-/image-size-0.5.5.tgz - loader-utils: https://registry.npmmirror.com/loader-utils/-/loader-utils-1.4.2.tgz - merge-options: https://registry.npmmirror.com/merge-options/-/merge-options-1.0.1.tgz - micromatch: https://registry.npmmirror.com/micromatch/-/micromatch-3.1.0.tgz - postcss: https://registry.npmmirror.com/postcss/-/postcss-5.2.18.tgz - postcss-prefix-selector: https://registry.npmmirror.com/postcss-prefix-selector/-/postcss-prefix-selector-1.16.0.tgz(postcss@5.2.18) - posthtml-rename-id: https://registry.npmmirror.com/posthtml-rename-id/-/posthtml-rename-id-1.0.12.tgz - posthtml-svg-mode: https://registry.npmmirror.com/posthtml-svg-mode/-/posthtml-svg-mode-1.0.3.tgz - query-string: https://registry.npmmirror.com/query-string/-/query-string-4.3.4.tgz - traverse: https://registry.npmmirror.com/traverse/-/traverse-0.6.7.tgz - transitivePeerDependencies: - - supports-color - - svg-pathdata@https://registry.npmmirror.com/svg-pathdata/-/svg-pathdata-6.0.3.tgz: - optional: true - - svg-tags@https://registry.npmmirror.com/svg-tags/-/svg-tags-1.0.0.tgz: {} - - svgo@https://registry.npmmirror.com/svgo/-/svgo-2.8.0.tgz: - dependencies: - '@trysound/sax': https://registry.npmmirror.com/@trysound/sax/-/sax-0.2.0.tgz - commander: https://registry.npmmirror.com/commander/-/commander-7.2.0.tgz - css-select: https://registry.npmmirror.com/css-select/-/css-select-4.3.0.tgz - css-tree: https://registry.npmmirror.com/css-tree/-/css-tree-1.1.3.tgz - csso: https://registry.npmmirror.com/csso/-/csso-4.2.0.tgz - picocolors: https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz - stable: https://registry.npmmirror.com/stable/-/stable-0.1.8.tgz - - symbol-tree@https://registry.npmmirror.com/symbol-tree/-/symbol-tree-3.2.4.tgz: {} - - systemjs@https://registry.npmmirror.com/systemjs/-/systemjs-6.14.1.tgz: {} - - table@https://registry.npmmirror.com/table/-/table-6.8.1.tgz: - dependencies: - ajv: https://registry.npmmirror.com/ajv/-/ajv-8.12.0.tgz - lodash.truncate: https://registry.npmmirror.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz - slice-ansi: https://registry.npmmirror.com/slice-ansi/-/slice-ansi-4.0.0.tgz - string-width: https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz - strip-ansi: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz - - tar-stream@https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz: - dependencies: - bl: https://registry.npmjs.org/bl/-/bl-1.2.3.tgz - buffer-alloc: https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz - end-of-stream: https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz - fs-constants: https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz - readable-stream: https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz - to-buffer: https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz - xtend: https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz - - tar-stream@https://registry.npmmirror.com/tar-stream/-/tar-stream-1.6.2.tgz: - dependencies: - bl: https://registry.npmmirror.com/bl/-/bl-1.2.3.tgz - buffer-alloc: https://registry.npmmirror.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz - end-of-stream: https://registry.npmmirror.com/end-of-stream/-/end-of-stream-1.4.4.tgz - fs-constants: https://registry.npmmirror.com/fs-constants/-/fs-constants-1.0.0.tgz - readable-stream: https://registry.npmmirror.com/readable-stream/-/readable-stream-2.3.8.tgz - to-buffer: https://registry.npmmirror.com/to-buffer/-/to-buffer-1.1.1.tgz - xtend: https://registry.npmmirror.com/xtend/-/xtend-4.0.2.tgz - - temp-dir@https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz: {} - - temp-dir@https://registry.npmmirror.com/temp-dir/-/temp-dir-1.0.0.tgz: {} - - temp-dir@https://registry.npmmirror.com/temp-dir/-/temp-dir-2.0.0.tgz: {} - - tempfile@https://registry.npmmirror.com/tempfile/-/tempfile-2.0.0.tgz: - dependencies: - temp-dir: https://registry.npmmirror.com/temp-dir/-/temp-dir-1.0.0.tgz - uuid: https://registry.npmmirror.com/uuid/-/uuid-3.4.0.tgz - - tempfile@https://registry.npmmirror.com/tempfile/-/tempfile-3.0.0.tgz: - dependencies: - temp-dir: https://registry.npmmirror.com/temp-dir/-/temp-dir-2.0.0.tgz - uuid: https://registry.npmmirror.com/uuid/-/uuid-3.4.0.tgz - - tempy@https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz: - dependencies: - is-stream: https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz - temp-dir: https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz - type-fest: https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz - unique-string: https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz - - terminal-link@https://registry.npmmirror.com/terminal-link/-/terminal-link-2.1.1.tgz: - dependencies: - ansi-escapes: https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz - supports-hyperlinks: https://registry.npmmirror.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz - - terser@https://registry.npmjs.org/terser/-/terser-5.19.2.tgz: - dependencies: - '@jridgewell/source-map': https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz - acorn: https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz - commander: https://registry.npmjs.org/commander/-/commander-2.20.3.tgz - source-map-support: https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz - - terser@https://registry.npmmirror.com/terser/-/terser-5.19.2.tgz: - dependencies: - '@jridgewell/source-map': https://registry.npmmirror.com/@jridgewell/source-map/-/source-map-0.3.5.tgz - acorn: https://registry.npmmirror.com/acorn/-/acorn-8.10.0.tgz - commander: https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz - source-map-support: https://registry.npmmirror.com/source-map-support/-/source-map-support-0.5.21.tgz - - test-exclude@https://registry.npmmirror.com/test-exclude/-/test-exclude-6.0.0.tgz: - dependencies: - '@istanbuljs/schema': https://registry.npmmirror.com/@istanbuljs/schema/-/schema-0.1.3.tgz - glob: https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz - minimatch: https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz - - text-extensions@https://registry.npmmirror.com/text-extensions/-/text-extensions-1.9.0.tgz: {} - - text-segmentation@https://registry.npmmirror.com/text-segmentation/-/text-segmentation-1.0.3.tgz: - dependencies: - utrie: https://registry.npmmirror.com/utrie/-/utrie-1.0.2.tgz - - text-table@https://registry.npmmirror.com/text-table/-/text-table-0.2.0.tgz: {} - - throat@https://registry.npmmirror.com/throat/-/throat-6.0.2.tgz: {} - - through2@https://registry.npmmirror.com/through2/-/through2-2.0.5.tgz: - dependencies: - readable-stream: https://registry.npmmirror.com/readable-stream/-/readable-stream-2.3.8.tgz - xtend: https://registry.npmmirror.com/xtend/-/xtend-4.0.2.tgz - - through2@https://registry.npmmirror.com/through2/-/through2-4.0.2.tgz: - dependencies: - readable-stream: https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz - - through@https://registry.npmjs.org/through/-/through-2.3.8.tgz: {} - - through@https://registry.npmmirror.com/through/-/through-2.3.8.tgz: {} - - timed-out@https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz: {} - - timed-out@https://registry.npmmirror.com/timed-out/-/timed-out-4.0.1.tgz: {} - - tiny-emitter@https://registry.npmmirror.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz: {} - - tinycolor2@https://registry.npmmirror.com/tinycolor2/-/tinycolor2-1.6.0.tgz: {} - - tinymce@https://registry.npmmirror.com/tinymce/-/tinymce-5.10.3.tgz: {} - - tmp@https://registry.npmmirror.com/tmp/-/tmp-0.0.33.tgz: - dependencies: - os-tmpdir: https://registry.npmmirror.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz - - tmpl@https://registry.npmmirror.com/tmpl/-/tmpl-1.0.5.tgz: {} - - to-buffer@https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz: {} - - to-buffer@https://registry.npmmirror.com/to-buffer/-/to-buffer-1.1.1.tgz: {} - - to-fast-properties@https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz: {} - - to-fast-properties@https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz: {} - - to-object-path@https://registry.npmmirror.com/to-object-path/-/to-object-path-0.3.0.tgz: - dependencies: - kind-of: https://registry.npmmirror.com/kind-of/-/kind-of-3.2.2.tgz - - to-regex-range@https://registry.npmmirror.com/to-regex-range/-/to-regex-range-2.1.1.tgz: - dependencies: - is-number: https://registry.npmmirror.com/is-number/-/is-number-3.0.0.tgz - repeat-string: https://registry.npmmirror.com/repeat-string/-/repeat-string-1.6.1.tgz - - to-regex-range@https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz: - dependencies: - is-number: https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz - - to-regex@https://registry.npmmirror.com/to-regex/-/to-regex-3.0.2.tgz: - dependencies: - define-property: https://registry.npmmirror.com/define-property/-/define-property-2.0.2.tgz - extend-shallow: https://registry.npmmirror.com/extend-shallow/-/extend-shallow-3.0.2.tgz - regex-not: https://registry.npmmirror.com/regex-not/-/regex-not-1.0.2.tgz - safe-regex: https://registry.npmmirror.com/safe-regex/-/safe-regex-1.1.0.tgz - - token-stream@https://registry.npmmirror.com/token-stream/-/token-stream-1.0.0.tgz: {} - - tough-cookie@https://registry.npmmirror.com/tough-cookie/-/tough-cookie-4.1.3.tgz: - dependencies: - psl: https://registry.npmmirror.com/psl/-/psl-1.9.0.tgz - punycode: https://registry.npmmirror.com/punycode/-/punycode-2.3.0.tgz - universalify: https://registry.npmmirror.com/universalify/-/universalify-0.2.0.tgz - url-parse: https://registry.npmmirror.com/url-parse/-/url-parse-1.5.10.tgz - - tr46@https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz: - dependencies: - punycode: https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz - - tr46@https://registry.npmmirror.com/tr46/-/tr46-0.0.3.tgz: {} - - tr46@https://registry.npmmirror.com/tr46/-/tr46-2.1.0.tgz: - dependencies: - punycode: https://registry.npmmirror.com/punycode/-/punycode-2.3.0.tgz - - traverse@https://registry.npmmirror.com/traverse/-/traverse-0.6.7.tgz: {} - - trim-newlines@https://registry.npmmirror.com/trim-newlines/-/trim-newlines-1.0.0.tgz: {} - - trim-newlines@https://registry.npmmirror.com/trim-newlines/-/trim-newlines-3.0.1.tgz: {} - - trim-repeated@https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz: - dependencies: - escape-string-regexp: https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz - - trim-repeated@https://registry.npmmirror.com/trim-repeated/-/trim-repeated-1.0.0.tgz: - dependencies: - escape-string-regexp: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz - - ts-jest@https://registry.npmmirror.com/ts-jest/-/ts-jest-27.0.7.tgz(@babel/core@7.22.10)(@types/jest@27.0.2)(jest@27.3.1)(typescript@4.6.3): - dependencies: - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@types/jest': https://registry.npmmirror.com/@types/jest/-/jest-27.0.2.tgz - bs-logger: https://registry.npmmirror.com/bs-logger/-/bs-logger-0.2.6.tgz - fast-json-stable-stringify: https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz - jest: https://registry.npmmirror.com/jest/-/jest-27.3.1.tgz(ts-node@10.7.0) - jest-util: https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz - json5: https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz - lodash.memoize: https://registry.npmmirror.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz - make-error: https://registry.npmmirror.com/make-error/-/make-error-1.3.6.tgz - semver: https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz - typescript: https://registry.npmmirror.com/typescript/-/typescript-4.6.3.tgz - yargs-parser: https://registry.npmmirror.com/yargs-parser/-/yargs-parser-20.2.9.tgz - - ts-node@https://registry.npmmirror.com/ts-node/-/ts-node-10.7.0.tgz(@types/node@17.0.25)(typescript@4.6.3): - dependencies: - '@cspotcode/source-map-support': https://registry.npmmirror.com/@cspotcode/source-map-support/-/source-map-support-0.7.0.tgz - '@tsconfig/node10': https://registry.npmmirror.com/@tsconfig/node10/-/node10-1.0.9.tgz - '@tsconfig/node12': https://registry.npmmirror.com/@tsconfig/node12/-/node12-1.0.11.tgz - '@tsconfig/node14': https://registry.npmmirror.com/@tsconfig/node14/-/node14-1.0.3.tgz - '@tsconfig/node16': https://registry.npmmirror.com/@tsconfig/node16/-/node16-1.0.4.tgz - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - acorn: https://registry.npmmirror.com/acorn/-/acorn-8.10.0.tgz - acorn-walk: https://registry.npmmirror.com/acorn-walk/-/acorn-walk-8.2.0.tgz - arg: https://registry.npmmirror.com/arg/-/arg-4.1.3.tgz - create-require: https://registry.npmmirror.com/create-require/-/create-require-1.1.1.tgz - diff: https://registry.npmmirror.com/diff/-/diff-4.0.2.tgz - make-error: https://registry.npmmirror.com/make-error/-/make-error-1.3.6.tgz - typescript: https://registry.npmmirror.com/typescript/-/typescript-4.6.3.tgz - v8-compile-cache-lib: https://registry.npmmirror.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz - yn: https://registry.npmmirror.com/yn/-/yn-3.1.1.tgz - - ts-node@https://registry.npmmirror.com/ts-node/-/ts-node-10.9.1.tgz(@types/node@17.0.25)(typescript@4.6.3): - dependencies: - '@cspotcode/source-map-support': https://registry.npmmirror.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz - '@tsconfig/node10': https://registry.npmmirror.com/@tsconfig/node10/-/node10-1.0.9.tgz - '@tsconfig/node12': https://registry.npmmirror.com/@tsconfig/node12/-/node12-1.0.11.tgz - '@tsconfig/node14': https://registry.npmmirror.com/@tsconfig/node14/-/node14-1.0.3.tgz - '@tsconfig/node16': https://registry.npmmirror.com/@tsconfig/node16/-/node16-1.0.4.tgz - '@types/node': https://registry.npmmirror.com/@types/node/-/node-17.0.25.tgz - acorn: https://registry.npmmirror.com/acorn/-/acorn-8.10.0.tgz - acorn-walk: https://registry.npmmirror.com/acorn-walk/-/acorn-walk-8.2.0.tgz - arg: https://registry.npmmirror.com/arg/-/arg-4.1.3.tgz - create-require: https://registry.npmmirror.com/create-require/-/create-require-1.1.1.tgz - diff: https://registry.npmmirror.com/diff/-/diff-4.0.2.tgz - make-error: https://registry.npmmirror.com/make-error/-/make-error-1.3.6.tgz - typescript: https://registry.npmmirror.com/typescript/-/typescript-4.6.3.tgz - v8-compile-cache-lib: https://registry.npmmirror.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz - yn: https://registry.npmmirror.com/yn/-/yn-3.1.1.tgz - - ts-node@https://registry.npmmirror.com/ts-node/-/ts-node-10.9.1.tgz(@types/node@20.4.7)(typescript@4.9.5): - dependencies: - '@cspotcode/source-map-support': https://registry.npmmirror.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz - '@tsconfig/node10': https://registry.npmmirror.com/@tsconfig/node10/-/node10-1.0.9.tgz - '@tsconfig/node12': https://registry.npmmirror.com/@tsconfig/node12/-/node12-1.0.11.tgz - '@tsconfig/node14': https://registry.npmmirror.com/@tsconfig/node14/-/node14-1.0.3.tgz - '@tsconfig/node16': https://registry.npmmirror.com/@tsconfig/node16/-/node16-1.0.4.tgz - '@types/node': https://registry.npmmirror.com/@types/node/-/node-20.4.7.tgz - acorn: https://registry.npmmirror.com/acorn/-/acorn-8.10.0.tgz - acorn-walk: https://registry.npmmirror.com/acorn-walk/-/acorn-walk-8.2.0.tgz - arg: https://registry.npmmirror.com/arg/-/arg-4.1.3.tgz - create-require: https://registry.npmmirror.com/create-require/-/create-require-1.1.1.tgz - diff: https://registry.npmmirror.com/diff/-/diff-4.0.2.tgz - make-error: https://registry.npmmirror.com/make-error/-/make-error-1.3.6.tgz - typescript: https://registry.npmmirror.com/typescript/-/typescript-4.9.5.tgz - v8-compile-cache-lib: https://registry.npmmirror.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz - yn: https://registry.npmmirror.com/yn/-/yn-3.1.1.tgz - optional: true - - tslib@https://registry.npmmirror.com/tslib/-/tslib-1.14.1.tgz: {} - - tslib@https://registry.npmmirror.com/tslib/-/tslib-2.3.0.tgz: {} - - tslib@https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz: {} - - tsutils@https://registry.npmmirror.com/tsutils/-/tsutils-3.21.0.tgz(typescript@4.6.3): - dependencies: - tslib: https://registry.npmmirror.com/tslib/-/tslib-1.14.1.tgz - typescript: https://registry.npmmirror.com/typescript/-/typescript-4.6.3.tgz - - tunnel-agent@https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz: - dependencies: - safe-buffer: https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz - - tunnel-agent@https://registry.npmmirror.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz: - dependencies: - safe-buffer: https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz - - type-check@https://registry.npmmirror.com/type-check/-/type-check-0.4.0.tgz: - dependencies: - prelude-ls: https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz - - type-detect@https://registry.npmmirror.com/type-detect/-/type-detect-4.0.8.tgz: {} - - type-fest@https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz: {} - - type-fest@https://registry.npmmirror.com/type-fest/-/type-fest-0.11.0.tgz: {} - - type-fest@https://registry.npmmirror.com/type-fest/-/type-fest-0.18.1.tgz: {} - - type-fest@https://registry.npmmirror.com/type-fest/-/type-fest-0.20.2.tgz: {} - - type-fest@https://registry.npmmirror.com/type-fest/-/type-fest-0.21.3.tgz: {} - - type-fest@https://registry.npmmirror.com/type-fest/-/type-fest-0.6.0.tgz: {} - - type-fest@https://registry.npmmirror.com/type-fest/-/type-fest-0.8.1.tgz: {} - - typed-array-buffer@https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz: - dependencies: - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - get-intrinsic: https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz - is-typed-array: https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz - - typed-array-buffer@https://registry.npmmirror.com/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - get-intrinsic: https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz - is-typed-array: https://registry.npmmirror.com/is-typed-array/-/is-typed-array-1.1.12.tgz - - typed-array-byte-length@https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz: - dependencies: - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - for-each: https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz - has-proto: https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz - is-typed-array: https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz - - typed-array-byte-length@https://registry.npmmirror.com/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - for-each: https://registry.npmmirror.com/for-each/-/for-each-0.3.3.tgz - has-proto: https://registry.npmmirror.com/has-proto/-/has-proto-1.0.1.tgz - is-typed-array: https://registry.npmmirror.com/is-typed-array/-/is-typed-array-1.1.12.tgz - - typed-array-byte-offset@https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz: - dependencies: - available-typed-arrays: https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - for-each: https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz - has-proto: https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz - is-typed-array: https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz - - typed-array-byte-offset@https://registry.npmmirror.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz: - dependencies: - available-typed-arrays: https://registry.npmmirror.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - for-each: https://registry.npmmirror.com/for-each/-/for-each-0.3.3.tgz - has-proto: https://registry.npmmirror.com/has-proto/-/has-proto-1.0.1.tgz - is-typed-array: https://registry.npmmirror.com/is-typed-array/-/is-typed-array-1.1.12.tgz - - typed-array-length@https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz: - dependencies: - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - for-each: https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz - is-typed-array: https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz - - typed-array-length@https://registry.npmmirror.com/typed-array-length/-/typed-array-length-1.0.4.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - for-each: https://registry.npmmirror.com/for-each/-/for-each-0.3.3.tgz - is-typed-array: https://registry.npmmirror.com/is-typed-array/-/is-typed-array-1.1.12.tgz - - typedarray-to-buffer@https://registry.npmmirror.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz: - dependencies: - is-typedarray: https://registry.npmmirror.com/is-typedarray/-/is-typedarray-1.0.0.tgz - - typescript@https://registry.npmmirror.com/typescript/-/typescript-4.6.3.tgz: {} - - typescript@https://registry.npmmirror.com/typescript/-/typescript-4.9.5.tgz: - optional: true - - uglify-js@https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz: - optional: true - - unbox-primitive@https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz: - dependencies: - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - has-bigints: https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz - has-symbols: https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz - which-boxed-primitive: https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz - - unbox-primitive@https://registry.npmmirror.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz: - dependencies: - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - has-bigints: https://registry.npmmirror.com/has-bigints/-/has-bigints-1.0.2.tgz - has-symbols: https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz - which-boxed-primitive: https://registry.npmmirror.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz - - unbzip2-stream@https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz: - dependencies: - buffer: https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz - through: https://registry.npmjs.org/through/-/through-2.3.8.tgz - - unbzip2-stream@https://registry.npmmirror.com/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz: - dependencies: - buffer: https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz - through: https://registry.npmmirror.com/through/-/through-2.3.8.tgz - - unicode-canonical-property-names-ecmascript@https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz: {} - - unicode-match-property-ecmascript@https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz: - dependencies: - unicode-canonical-property-names-ecmascript: https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz - unicode-property-aliases-ecmascript: https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz - - unicode-match-property-value-ecmascript@https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz: {} - - unicode-property-aliases-ecmascript@https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz: {} - - union-value@https://registry.npmmirror.com/union-value/-/union-value-1.0.1.tgz: - dependencies: - arr-union: https://registry.npmmirror.com/arr-union/-/arr-union-3.1.0.tgz - get-value: https://registry.npmmirror.com/get-value/-/get-value-2.0.6.tgz - is-extendable: https://registry.npmmirror.com/is-extendable/-/is-extendable-0.1.1.tgz - set-value: https://registry.npmmirror.com/set-value/-/set-value-2.0.1.tgz - - union@https://registry.npmmirror.com/union/-/union-0.5.0.tgz: - dependencies: - qs: https://registry.npmmirror.com/qs/-/qs-6.10.3.tgz - - unique-string@https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz: - dependencies: - crypto-random-string: https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz - - universal-user-agent@https://registry.npmmirror.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz: {} - - universalify@https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz: {} - - universalify@https://registry.npmmirror.com/universalify/-/universalify-0.1.2.tgz: {} - - universalify@https://registry.npmmirror.com/universalify/-/universalify-0.2.0.tgz: {} - - universalify@https://registry.npmmirror.com/universalify/-/universalify-2.0.0.tgz: {} - - unpipe@https://registry.npmmirror.com/unpipe/-/unpipe-1.0.0.tgz: {} - - unset-value@https://registry.npmmirror.com/unset-value/-/unset-value-1.0.0.tgz: - dependencies: - has-value: https://registry.npmmirror.com/has-value/-/has-value-0.3.1.tgz - isobject: https://registry.npmmirror.com/isobject/-/isobject-3.0.1.tgz - - upath@https://registry.npmjs.org/upath/-/upath-1.2.0.tgz: {} - - upath@https://registry.npmmirror.com/upath/-/upath-2.0.1.tgz: {} - - update-browserslist-db@https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz(browserslist@4.21.10): - dependencies: - browserslist: https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz - escalade: https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz - picocolors: https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz - - update-browserslist-db@https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz(browserslist@4.21.10): - dependencies: - browserslist: https://registry.npmmirror.com/browserslist/-/browserslist-4.21.10.tgz - escalade: https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz - picocolors: https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz - - upper-case-first@https://registry.npmmirror.com/upper-case-first/-/upper-case-first-2.0.2.tgz: - dependencies: - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - - upper-case@https://registry.npmmirror.com/upper-case/-/upper-case-2.0.2.tgz: - dependencies: - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz - - uri-js@https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz: - dependencies: - punycode: https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz - - uri-js@https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz: - dependencies: - punycode: https://registry.npmmirror.com/punycode/-/punycode-2.3.0.tgz - - urix@https://registry.npmmirror.com/urix/-/urix-0.1.0.tgz: {} - - url-join@https://registry.npmmirror.com/url-join/-/url-join-4.0.1.tgz: {} - - url-parse-lax@https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz: - dependencies: - prepend-http: https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz - - url-parse-lax@https://registry.npmmirror.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz: - dependencies: - prepend-http: https://registry.npmmirror.com/prepend-http/-/prepend-http-1.0.4.tgz - - url-parse@https://registry.npmmirror.com/url-parse/-/url-parse-1.5.10.tgz: - dependencies: - querystringify: https://registry.npmmirror.com/querystringify/-/querystringify-2.2.0.tgz - requires-port: https://registry.npmmirror.com/requires-port/-/requires-port-1.0.0.tgz - - url-to-options@https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz: {} - - url-to-options@https://registry.npmmirror.com/url-to-options/-/url-to-options-1.0.1.tgz: {} - - use@https://registry.npmmirror.com/use/-/use-3.1.1.tgz: {} - - util-deprecate@https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz: {} - - util-deprecate@https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz: {} - - utils-merge@https://registry.npmmirror.com/utils-merge/-/utils-merge-1.0.1.tgz: {} - - utrie@https://registry.npmmirror.com/utrie/-/utrie-1.0.2.tgz: - dependencies: - base64-arraybuffer: https://registry.npmmirror.com/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz - - uuid@https://registry.npmmirror.com/uuid/-/uuid-3.4.0.tgz: {} - - v8-compile-cache-lib@https://registry.npmmirror.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz: {} - - v8-compile-cache@https://registry.npmmirror.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz: {} - - v8-to-istanbul@https://registry.npmmirror.com/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz: - dependencies: - '@types/istanbul-lib-coverage': https://registry.npmmirror.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz - convert-source-map: https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz - source-map: https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz - - validate-npm-package-license@https://registry.npmmirror.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz: - dependencies: - spdx-correct: https://registry.npmmirror.com/spdx-correct/-/spdx-correct-3.2.0.tgz - spdx-expression-parse: https://registry.npmmirror.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz - - vary@https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz: {} - - vditor@https://registry.npmmirror.com/vditor/-/vditor-3.8.13.tgz: - dependencies: - diff-match-patch: https://registry.npmmirror.com/diff-match-patch/-/diff-match-patch-1.0.5.tgz - - vite-plugin-compression@https://registry.npmmirror.com/vite-plugin-compression/-/vite-plugin-compression-0.5.1.tgz(vite@3.0.2): - dependencies: - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - fs-extra: https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz - vite: https://registry.npmmirror.com/vite/-/vite-3.0.2.tgz(less@4.1.2)(terser@5.19.2) - transitivePeerDependencies: - - supports-color - - vite-plugin-html@https://registry.npmmirror.com/vite-plugin-html/-/vite-plugin-html-3.2.0.tgz(vite@3.0.2): - dependencies: - '@rollup/pluginutils': https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz - colorette: https://registry.npmmirror.com/colorette/-/colorette-2.0.20.tgz - connect-history-api-fallback: https://registry.npmmirror.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz - consola: https://registry.npmmirror.com/consola/-/consola-2.15.3.tgz - dotenv: https://registry.npmmirror.com/dotenv/-/dotenv-16.0.0.tgz - dotenv-expand: https://registry.npmmirror.com/dotenv-expand/-/dotenv-expand-8.0.3.tgz - ejs: https://registry.npmmirror.com/ejs/-/ejs-3.1.9.tgz - fast-glob: https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.1.tgz - fs-extra: https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz - html-minifier-terser: https://registry.npmmirror.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz - node-html-parser: https://registry.npmmirror.com/node-html-parser/-/node-html-parser-5.4.2.tgz - pathe: https://registry.npmmirror.com/pathe/-/pathe-0.2.0.tgz - vite: https://registry.npmmirror.com/vite/-/vite-3.0.2.tgz(less@4.1.2)(terser@5.19.2) - - vite-plugin-imagemin@https://registry.npmmirror.com/vite-plugin-imagemin/-/vite-plugin-imagemin-0.6.1.tgz(vite@3.0.2): - dependencies: - '@types/imagemin': https://registry.npmmirror.com/@types/imagemin/-/imagemin-7.0.1.tgz - '@types/imagemin-gifsicle': https://registry.npmmirror.com/@types/imagemin-gifsicle/-/imagemin-gifsicle-7.0.1.tgz - '@types/imagemin-jpegtran': https://registry.npmmirror.com/@types/imagemin-jpegtran/-/imagemin-jpegtran-5.0.1.tgz - '@types/imagemin-mozjpeg': https://registry.npmmirror.com/@types/imagemin-mozjpeg/-/imagemin-mozjpeg-8.0.1.tgz - '@types/imagemin-optipng': https://registry.npmmirror.com/@types/imagemin-optipng/-/imagemin-optipng-5.2.1.tgz - '@types/imagemin-svgo': https://registry.npmmirror.com/@types/imagemin-svgo/-/imagemin-svgo-10.0.2.tgz - '@types/imagemin-webp': https://registry.npmmirror.com/@types/imagemin-webp/-/imagemin-webp-7.0.0.tgz - '@types/svgo': https://registry.npmmirror.com/@types/svgo/-/svgo-2.6.4.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - esbuild: https://registry.npmmirror.com/esbuild/-/esbuild-0.14.54.tgz - fs-extra: https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz - gifsicle: https://registry.npmmirror.com/gifsicle/-/gifsicle-5.2.0.tgz - imagemin: https://registry.npmmirror.com/imagemin/-/imagemin-7.0.1.tgz - imagemin-gifsicle: https://registry.npmmirror.com/imagemin-gifsicle/-/imagemin-gifsicle-7.0.0.tgz - imagemin-jpegtran: https://registry.npmmirror.com/imagemin-jpegtran/-/imagemin-jpegtran-7.0.0.tgz - imagemin-mozjpeg: https://registry.npmmirror.com/imagemin-mozjpeg/-/imagemin-mozjpeg-9.0.0.tgz - imagemin-optipng: https://registry.npmmirror.com/imagemin-optipng/-/imagemin-optipng-8.0.0.tgz - imagemin-pngquant: https://registry.npmmirror.com/imagemin-pngquant/-/imagemin-pngquant-9.0.2.tgz - imagemin-svgo: https://registry.npmmirror.com/imagemin-svgo/-/imagemin-svgo-9.0.0.tgz - imagemin-webp: https://registry.npmmirror.com/imagemin-webp/-/imagemin-webp-6.1.0.tgz - jpegtran-bin: https://registry.npmmirror.com/jpegtran-bin/-/jpegtran-bin-6.0.1.tgz - pathe: https://registry.npmmirror.com/pathe/-/pathe-0.2.0.tgz - vite: https://registry.npmmirror.com/vite/-/vite-3.0.2.tgz(less@4.1.2)(terser@5.19.2) - transitivePeerDependencies: - - supports-color - - vite-plugin-mkcert@https://registry.npmmirror.com/vite-plugin-mkcert/-/vite-plugin-mkcert-1.10.1.tgz(vite@3.0.2): - dependencies: - '@octokit/rest': https://registry.npmmirror.com/@octokit/rest/-/rest-19.0.13.tgz - axios: https://registry.npmmirror.com/axios/-/axios-0.21.4.tgz(debug@4.3.4) - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - picocolors: https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz - vite: https://registry.npmmirror.com/vite/-/vite-3.0.2.tgz(less@4.1.2)(terser@5.19.2) - transitivePeerDependencies: - - encoding - - supports-color - - vite-plugin-mock@https://registry.npmmirror.com/vite-plugin-mock/-/vite-plugin-mock-2.9.6.tgz(mockjs@1.1.0)(rollup@2.72.0)(vite@3.0.2): - dependencies: - '@rollup/plugin-node-resolve': https://registry.npmmirror.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.3.0.tgz(rollup@2.72.0) - '@types/mockjs': https://registry.npmmirror.com/@types/mockjs/-/mockjs-1.0.6.tgz - chalk: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz - chokidar: https://registry.npmmirror.com/chokidar/-/chokidar-3.5.3.tgz - connect: https://registry.npmmirror.com/connect/-/connect-3.7.0.tgz - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - esbuild: https://registry.npmmirror.com/esbuild/-/esbuild-0.11.3.tgz - fast-glob: https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.1.tgz - mockjs: https://registry.npmmirror.com/mockjs/-/mockjs-1.1.0.tgz - path-to-regexp: https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-6.2.0.tgz - vite: https://registry.npmmirror.com/vite/-/vite-3.0.2.tgz(less@4.1.2)(terser@5.19.2) - transitivePeerDependencies: - - rollup - - supports-color - - vite-plugin-optimize-persist@https://registry.npmmirror.com/vite-plugin-optimize-persist/-/vite-plugin-optimize-persist-0.1.2.tgz(vite-plugin-package-config@0.1.1)(vite@3.0.2): - dependencies: - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - fs-extra: https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz - vite: https://registry.npmmirror.com/vite/-/vite-3.0.2.tgz(less@4.1.2)(terser@5.19.2) - vite-plugin-package-config: https://registry.npmmirror.com/vite-plugin-package-config/-/vite-plugin-package-config-0.1.1.tgz(vite@3.0.2) - transitivePeerDependencies: - - supports-color - - vite-plugin-package-config@https://registry.npmmirror.com/vite-plugin-package-config/-/vite-plugin-package-config-0.1.1.tgz(vite@3.0.2): - dependencies: - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - vite: https://registry.npmmirror.com/vite/-/vite-3.0.2.tgz(less@4.1.2)(terser@5.19.2) - transitivePeerDependencies: - - supports-color - - vite-plugin-purge-icons@https://registry.npmmirror.com/vite-plugin-purge-icons/-/vite-plugin-purge-icons-0.8.2.tgz(vite@3.0.2): - dependencies: - '@purge-icons/core': https://registry.npmmirror.com/@purge-icons/core/-/core-0.8.0.tgz - '@purge-icons/generated': https://registry.npmmirror.com/@purge-icons/generated/-/generated-0.8.1.tgz - rollup-plugin-purge-icons: https://registry.npmmirror.com/rollup-plugin-purge-icons/-/rollup-plugin-purge-icons-0.8.1.tgz - vite: https://registry.npmmirror.com/vite/-/vite-3.0.2.tgz(less@4.1.2)(terser@5.19.2) - transitivePeerDependencies: - - encoding - - supports-color - - vite-plugin-pwa@https://registry.npmmirror.com/vite-plugin-pwa/-/vite-plugin-pwa-0.12.3.tgz(vite@3.0.2)(workbox-build@6.6.0)(workbox-window@6.6.0): - dependencies: - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - fast-glob: https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.1.tgz - pretty-bytes: https://registry.npmmirror.com/pretty-bytes/-/pretty-bytes-6.1.1.tgz - rollup: https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz - vite: https://registry.npmmirror.com/vite/-/vite-3.0.2.tgz(less@4.1.2)(terser@5.19.2) - workbox-build: https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.0.tgz - workbox-window: https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.0.tgz - transitivePeerDependencies: - - supports-color - - vite-plugin-style-import@https://registry.npmmirror.com/vite-plugin-style-import/-/vite-plugin-style-import-2.0.0.tgz(vite@3.0.2): - dependencies: - '@rollup/pluginutils': https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz - change-case: https://registry.npmmirror.com/change-case/-/change-case-4.1.2.tgz - console: https://registry.npmmirror.com/console/-/console-0.7.2.tgz - es-module-lexer: https://registry.npmmirror.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz - fs-extra: https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz - magic-string: https://registry.npmmirror.com/magic-string/-/magic-string-0.25.9.tgz - pathe: https://registry.npmmirror.com/pathe/-/pathe-0.2.0.tgz - vite: https://registry.npmmirror.com/vite/-/vite-3.0.2.tgz(less@4.1.2)(terser@5.19.2) - - vite-plugin-svg-icons@https://registry.npmmirror.com/vite-plugin-svg-icons/-/vite-plugin-svg-icons-2.0.1.tgz(vite@3.0.2): - dependencies: - '@types/svgo': https://registry.npmmirror.com/@types/svgo/-/svgo-2.6.4.tgz - cors: https://registry.npmmirror.com/cors/-/cors-2.8.5.tgz - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - etag: https://registry.npmmirror.com/etag/-/etag-1.8.1.tgz - fs-extra: https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz - pathe: https://registry.npmmirror.com/pathe/-/pathe-0.2.0.tgz - svg-baker: https://registry.npmmirror.com/svg-baker/-/svg-baker-1.7.0.tgz - svgo: https://registry.npmmirror.com/svgo/-/svgo-2.8.0.tgz - vite: https://registry.npmmirror.com/vite/-/vite-3.0.2.tgz(less@4.1.2)(terser@5.19.2) - transitivePeerDependencies: - - supports-color - - vite-plugin-vue-setup-extend-plus@https://registry.npmmirror.com/vite-plugin-vue-setup-extend-plus/-/vite-plugin-vue-setup-extend-plus-0.1.0.tgz: {} - - vite-plugin-windicss@https://registry.npmmirror.com/vite-plugin-windicss/-/vite-plugin-windicss-1.8.7.tgz(vite@3.0.2): - dependencies: - '@windicss/plugin-utils': https://registry.npmmirror.com/@windicss/plugin-utils/-/plugin-utils-1.8.7.tgz - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - kolorist: https://registry.npmmirror.com/kolorist/-/kolorist-1.8.0.tgz - vite: https://registry.npmmirror.com/vite/-/vite-3.0.2.tgz(less@4.1.2)(terser@5.19.2) - windicss: https://registry.npmmirror.com/windicss/-/windicss-3.5.6.tgz - transitivePeerDependencies: - - supports-color - - vite@https://registry.npmmirror.com/vite/-/vite-3.0.2.tgz(less@4.1.2)(terser@5.19.2): - dependencies: - esbuild: https://registry.npmmirror.com/esbuild/-/esbuild-0.14.54.tgz - less: https://registry.npmmirror.com/less/-/less-4.1.2.tgz - postcss: https://registry.npmmirror.com/postcss/-/postcss-8.4.27.tgz - resolve: https://registry.npmmirror.com/resolve/-/resolve-1.22.4.tgz - rollup: https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz - terser: https://registry.npmjs.org/terser/-/terser-5.19.2.tgz - optionalDependencies: - fsevents: https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz - - vscode-jsonrpc@https://registry.npmmirror.com/vscode-jsonrpc/-/vscode-jsonrpc-8.1.0.tgz: {} - - vscode-languageserver-textdocument@https://registry.npmmirror.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.8.tgz: {} - - vscode-languageserver-types@https://registry.npmmirror.com/vscode-languageserver-types/-/vscode-languageserver-types-3.17.3.tgz: {} - - vscode-uri@https://registry.npmmirror.com/vscode-uri/-/vscode-uri-3.0.7.tgz: {} - - vue-clipboard3@https://registry.npmmirror.com/vue-clipboard3/-/vue-clipboard3-2.0.0.tgz: - dependencies: - clipboard: https://registry.npmmirror.com/clipboard/-/clipboard-2.0.8.tgz - - vue-count-to2@https://registry.npmmirror.com/vue-count-to2/-/vue-count-to2-1.0.6.tgz(vue@3.2.33): - dependencies: - core-js: https://registry.npmmirror.com/core-js/-/core-js-3.32.0.tgz - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - vue-count-to: https://registry.npmmirror.com/vue-count-to/-/vue-count-to-1.0.13.tgz - - vue-count-to@https://registry.npmmirror.com/vue-count-to/-/vue-count-to-1.0.13.tgz: {} - - vue-cropper@https://registry.npmmirror.com/vue-cropper/-/vue-cropper-0.5.6.tgz: {} - - vue-cropperjs@https://registry.npmmirror.com/vue-cropperjs/-/vue-cropperjs-5.0.0.tgz(vue@3.2.33): - dependencies: - cropperjs: https://registry.npmmirror.com/cropperjs/-/cropperjs-1.5.12.tgz - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - - vue-demi@https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.5.tgz(vue@3.2.33): - dependencies: - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - - vue-demi@https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.5.tgz(vue@3.3.4): - dependencies: - vue: https://registry.npmmirror.com/vue/-/vue-3.3.4.tgz - - vue-eslint-parser@https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-8.3.0.tgz(eslint@8.22.0): - dependencies: - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - eslint: https://registry.npmmirror.com/eslint/-/eslint-8.22.0.tgz - eslint-scope: https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.2.2.tgz - eslint-visitor-keys: https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz - espree: https://registry.npmmirror.com/espree/-/espree-9.6.1.tgz - esquery: https://registry.npmmirror.com/esquery/-/esquery-1.5.0.tgz - lodash: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz - semver: https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz - transitivePeerDependencies: - - supports-color - - vue-eslint-parser@https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-9.3.1.tgz(eslint@8.22.0): - dependencies: - debug: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz(supports-color@9.4.0) - eslint: https://registry.npmmirror.com/eslint/-/eslint-8.22.0.tgz - eslint-scope: https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.2.2.tgz - eslint-visitor-keys: https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz - espree: https://registry.npmmirror.com/espree/-/espree-9.6.1.tgz - esquery: https://registry.npmmirror.com/esquery/-/esquery-1.5.0.tgz - lodash: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz - semver: https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz - transitivePeerDependencies: - - supports-color - - vue-grid-layout@https://registry.npmmirror.com/vue-grid-layout/-/vue-grid-layout-3.0.0-beta1.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18): - dependencies: - '@interactjs/actions': https://registry.npmmirror.com/@interactjs/actions/-/actions-1.10.18.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18) - '@interactjs/auto-start': https://registry.npmmirror.com/@interactjs/auto-start/-/auto-start-1.10.18.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18) - '@interactjs/dev-tools': https://registry.npmmirror.com/@interactjs/dev-tools/-/dev-tools-1.10.18.tgz(@interactjs/modifiers@1.10.18)(@interactjs/utils@1.10.18) - '@interactjs/interactjs': https://registry.npmmirror.com/@interactjs/interactjs/-/interactjs-1.10.18.tgz - '@interactjs/modifiers': https://registry.npmmirror.com/@interactjs/modifiers/-/modifiers-1.10.18.tgz(@interactjs/core@1.10.18)(@interactjs/utils@1.10.18) - element-resize-detector: https://registry.npmmirror.com/element-resize-detector/-/element-resize-detector-1.2.4.tgz - mitt: https://registry.npmmirror.com/mitt/-/mitt-2.1.0.tgz - transitivePeerDependencies: - - '@interactjs/core' - - '@interactjs/utils' - - vue-i18n@https://registry.npmmirror.com/vue-i18n/-/vue-i18n-9.1.9.tgz(vue@3.2.33): - dependencies: - '@intlify/core-base': https://registry.npmmirror.com/@intlify/core-base/-/core-base-9.1.9.tgz - '@intlify/shared': https://registry.npmmirror.com/@intlify/shared/-/shared-9.1.9.tgz - '@intlify/vue-devtools': https://registry.npmmirror.com/@intlify/vue-devtools/-/vue-devtools-9.1.9.tgz - '@vue/devtools-api': https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - - vue-infinite-scroll@https://registry.npmmirror.com/vue-infinite-scroll/-/vue-infinite-scroll-2.0.2.tgz: {} - - vue-json-pretty@https://registry.npmmirror.com/vue-json-pretty/-/vue-json-pretty-2.0.6.tgz(vue@3.2.33): - dependencies: - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - - vue-observe-visibility@https://registry.npmmirror.com/vue-observe-visibility/-/vue-observe-visibility-0.4.6.tgz: {} - - vue-print-nb-jeecg@https://registry.npmmirror.com/vue-print-nb-jeecg/-/vue-print-nb-jeecg-1.0.12.tgz: - dependencies: - babel-plugin-transform-runtime: https://registry.npmmirror.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz - - vue-resize@https://registry.npmmirror.com/vue-resize/-/vue-resize-0.4.5.tgz(vue@3.2.33): - dependencies: - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - - vue-router@https://registry.npmmirror.com/vue-router/-/vue-router-4.0.14.tgz(vue@3.2.33): - dependencies: - '@vue/devtools-api': https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - - vue-tsc@https://registry.npmmirror.com/vue-tsc/-/vue-tsc-0.33.9.tgz(typescript@4.6.3): - dependencies: - '@volar/vue-typescript': https://registry.npmmirror.com/@volar/vue-typescript/-/vue-typescript-0.33.9.tgz - typescript: https://registry.npmmirror.com/typescript/-/typescript-4.6.3.tgz - - vue-types@https://registry.npmmirror.com/vue-types/-/vue-types-3.0.2.tgz(vue@3.2.33): - dependencies: - is-plain-object: https://registry.npmmirror.com/is-plain-object/-/is-plain-object-3.0.1.tgz - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - - vue-types@https://registry.npmmirror.com/vue-types/-/vue-types-4.1.1.tgz(vue@3.2.33): - dependencies: - is-plain-object: https://registry.npmmirror.com/is-plain-object/-/is-plain-object-5.0.0.tgz - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - - vue-types@https://registry.npmmirror.com/vue-types/-/vue-types-4.1.1.tgz(vue@3.3.4): - dependencies: - is-plain-object: https://registry.npmmirror.com/is-plain-object/-/is-plain-object-5.0.0.tgz - vue: https://registry.npmmirror.com/vue/-/vue-3.3.4.tgz - - vue-virtual-scroller@https://registry.npmmirror.com/vue-virtual-scroller/-/vue-virtual-scroller-1.1.2.tgz(vue@3.2.33): - dependencies: - scrollparent: https://registry.npmmirror.com/scrollparent/-/scrollparent-2.1.0.tgz - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - vue-observe-visibility: https://registry.npmmirror.com/vue-observe-visibility/-/vue-observe-visibility-0.4.6.tgz - vue-resize: https://registry.npmmirror.com/vue-resize/-/vue-resize-0.4.5.tgz(vue@3.2.33) - - vue3-colorpicker@https://registry.npmmirror.com/vue3-colorpicker/-/vue3-colorpicker-2.2.0.tgz: - dependencies: - '@aesoper/normal-utils': https://registry.npmmirror.com/@aesoper/normal-utils/-/normal-utils-0.1.5.tgz - '@popperjs/core': https://registry.npmmirror.com/@popperjs/core/-/core-2.11.8.tgz - '@vueuse/core': https://registry.npmmirror.com/@vueuse/core/-/core-10.3.0.tgz(vue@3.3.4) - gradient-parser: https://registry.npmmirror.com/gradient-parser/-/gradient-parser-1.0.2.tgz - lodash-es: https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz - tinycolor2: https://registry.npmmirror.com/tinycolor2/-/tinycolor2-1.6.0.tgz - vue: https://registry.npmmirror.com/vue/-/vue-3.3.4.tgz - vue-types: https://registry.npmmirror.com/vue-types/-/vue-types-4.1.1.tgz(vue@3.3.4) - transitivePeerDependencies: - - '@vue/composition-api' - - vue@https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz: - dependencies: - '@vue/compiler-dom': https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.2.33.tgz - '@vue/compiler-sfc': https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.2.33.tgz - '@vue/runtime-dom': https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.2.33.tgz - '@vue/server-renderer': https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.2.33.tgz(vue@3.2.33) - '@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.2.33.tgz - - vue@https://registry.npmmirror.com/vue/-/vue-3.3.4.tgz: - dependencies: - '@vue/compiler-dom': https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz - '@vue/compiler-sfc': https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz - '@vue/runtime-dom': https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz - '@vue/server-renderer': https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.3.4.tgz(vue@3.3.4) - '@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz - - vuedraggable@https://registry.npmmirror.com/vuedraggable/-/vuedraggable-4.1.0.tgz(vue@3.2.33): - dependencies: - sortablejs: https://registry.npmmirror.com/sortablejs/-/sortablejs-1.14.0.tgz - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - - vxe-table-plugin-antd@https://registry.npmmirror.com/vxe-table-plugin-antd/-/vxe-table-plugin-antd-3.0.5.tgz(vxe-table@4.1.0): - dependencies: - vxe-table: https://registry.npmmirror.com/vxe-table/-/vxe-table-4.1.0.tgz(vue@3.2.33)(xe-utils@3.3.1) - - vxe-table@https://registry.npmmirror.com/vxe-table/-/vxe-table-4.1.0.tgz(vue@3.2.33)(xe-utils@3.3.1): - dependencies: - vue: https://registry.npmmirror.com/vue/-/vue-3.2.33.tgz - xe-utils: https://registry.npmmirror.com/xe-utils/-/xe-utils-3.3.1.tgz - - w3c-hr-time@https://registry.npmmirror.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz: - dependencies: - browser-process-hrtime: https://registry.npmmirror.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz - - w3c-xmlserializer@https://registry.npmmirror.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz: - dependencies: - xml-name-validator: https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz - - walker@https://registry.npmmirror.com/walker/-/walker-1.0.8.tgz: - dependencies: - makeerror: https://registry.npmmirror.com/makeerror/-/makeerror-1.0.12.tgz - - warning@https://registry.npmmirror.com/warning/-/warning-4.0.3.tgz: - dependencies: - loose-envify: https://registry.npmmirror.com/loose-envify/-/loose-envify-1.4.0.tgz - - wcwidth@https://registry.npmmirror.com/wcwidth/-/wcwidth-1.0.1.tgz: - dependencies: - defaults: https://registry.npmmirror.com/defaults/-/defaults-1.0.4.tgz - - webidl-conversions@https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz: {} - - webidl-conversions@https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz: {} - - webidl-conversions@https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz: {} - - webidl-conversions@https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz: {} - - whatwg-encoding@https://registry.npmmirror.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz: - dependencies: - iconv-lite: https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz - - whatwg-encoding@https://registry.npmmirror.com/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz: - dependencies: - iconv-lite: https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.6.3.tgz - - whatwg-mimetype@https://registry.npmmirror.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz: {} - - whatwg-url@https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz: - dependencies: - lodash.sortby: https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz - tr46: https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz - webidl-conversions: https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz - - whatwg-url@https://registry.npmmirror.com/whatwg-url/-/whatwg-url-5.0.0.tgz: - dependencies: - tr46: https://registry.npmmirror.com/tr46/-/tr46-0.0.3.tgz - webidl-conversions: https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz - - whatwg-url@https://registry.npmmirror.com/whatwg-url/-/whatwg-url-8.7.0.tgz: - dependencies: - lodash: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz - tr46: https://registry.npmmirror.com/tr46/-/tr46-2.1.0.tgz - webidl-conversions: https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz - - which-boxed-primitive@https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz: - dependencies: - is-bigint: https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz - is-boolean-object: https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz - is-number-object: https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz - is-string: https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz - is-symbol: https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz - - which-boxed-primitive@https://registry.npmmirror.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz: - dependencies: - is-bigint: https://registry.npmmirror.com/is-bigint/-/is-bigint-1.0.4.tgz - is-boolean-object: https://registry.npmmirror.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz - is-number-object: https://registry.npmmirror.com/is-number-object/-/is-number-object-1.0.7.tgz - is-string: https://registry.npmmirror.com/is-string/-/is-string-1.0.7.tgz - is-symbol: https://registry.npmmirror.com/is-symbol/-/is-symbol-1.0.4.tgz - - which-module@https://registry.npmmirror.com/which-module/-/which-module-2.0.1.tgz: {} - - which-typed-array@https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz: - dependencies: - available-typed-arrays: https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz - call-bind: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz - for-each: https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz - gopd: https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz - has-tostringtag: https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz - - which-typed-array@https://registry.npmmirror.com/which-typed-array/-/which-typed-array-1.1.11.tgz: - dependencies: - available-typed-arrays: https://registry.npmmirror.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz - call-bind: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz - for-each: https://registry.npmmirror.com/for-each/-/for-each-0.3.3.tgz - gopd: https://registry.npmmirror.com/gopd/-/gopd-1.0.1.tgz - has-tostringtag: https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz - - which@https://registry.npmjs.org/which/-/which-1.3.1.tgz: - dependencies: - isexe: https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz - - which@https://registry.npmmirror.com/which/-/which-1.3.1.tgz: - dependencies: - isexe: https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz - - which@https://registry.npmmirror.com/which/-/which-2.0.2.tgz: - dependencies: - isexe: https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz - - windicss@https://registry.npmmirror.com/windicss/-/windicss-3.5.6.tgz: {} - - wmf@https://registry.npmmirror.com/wmf/-/wmf-1.0.2.tgz: {} - - word-wrap@https://registry.npmmirror.com/word-wrap/-/word-wrap-1.2.5.tgz: {} - - word@https://registry.npmmirror.com/word/-/word-0.3.0.tgz: {} - - wordwrap@https://registry.npmmirror.com/wordwrap/-/wordwrap-1.0.0.tgz: {} - - workbox-background-sync@https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.0.tgz: - dependencies: - idb: https://registry.npmjs.org/idb/-/idb-7.1.1.tgz - workbox-core: https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz - - workbox-broadcast-update@https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.0.tgz: - dependencies: - workbox-core: https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz - - workbox-build@https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.0.tgz: - dependencies: - '@apideck/better-ajv-errors': https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz(ajv@8.12.0) - '@babel/core': https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz - '@babel/preset-env': https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.10.tgz(@babel/core@7.22.10) - '@babel/runtime': https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.10.tgz - '@rollup/plugin-babel': https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz(@babel/core@7.22.10)(rollup@2.79.1) - '@rollup/plugin-node-resolve': https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz(rollup@2.79.1) - '@rollup/plugin-replace': https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz(rollup@2.79.1) - '@surma/rollup-plugin-off-main-thread': https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz - ajv: https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz - common-tags: https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz - fast-json-stable-stringify: https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz - fs-extra: https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz - glob: https://registry.npmjs.org/glob/-/glob-7.2.3.tgz - lodash: https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz - pretty-bytes: https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz - rollup: https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz - rollup-plugin-terser: https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz(rollup@2.79.1) - source-map: https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz - stringify-object: https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz - strip-comments: https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz - tempy: https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz - upath: https://registry.npmjs.org/upath/-/upath-1.2.0.tgz - workbox-background-sync: https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.0.tgz - workbox-broadcast-update: https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.0.tgz - workbox-cacheable-response: https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.0.tgz - workbox-core: https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz - workbox-expiration: https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.0.tgz - workbox-google-analytics: https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.0.tgz - workbox-navigation-preload: https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.0.tgz - workbox-precaching: https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.0.tgz - workbox-range-requests: https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.0.tgz - workbox-recipes: https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.0.tgz - workbox-routing: https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz - workbox-strategies: https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz - workbox-streams: https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.0.tgz - workbox-sw: https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.0.tgz - workbox-window: https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.0.tgz - transitivePeerDependencies: - - '@types/babel__core' - - supports-color - - workbox-cacheable-response@https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.0.tgz: - dependencies: - workbox-core: https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz - - workbox-core@https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz: {} - - workbox-expiration@https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.0.tgz: - dependencies: - idb: https://registry.npmjs.org/idb/-/idb-7.1.1.tgz - workbox-core: https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz - - workbox-google-analytics@https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.0.tgz: - dependencies: - workbox-background-sync: https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.0.tgz - workbox-core: https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz - workbox-routing: https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz - workbox-strategies: https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz - - workbox-navigation-preload@https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.0.tgz: - dependencies: - workbox-core: https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz - - workbox-precaching@https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.0.tgz: - dependencies: - workbox-core: https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz - workbox-routing: https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz - workbox-strategies: https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz - - workbox-range-requests@https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.0.tgz: - dependencies: - workbox-core: https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz - - workbox-recipes@https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.0.tgz: - dependencies: - workbox-cacheable-response: https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.0.tgz - workbox-core: https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz - workbox-expiration: https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.0.tgz - workbox-precaching: https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.0.tgz - workbox-routing: https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz - workbox-strategies: https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz - - workbox-routing@https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz: - dependencies: - workbox-core: https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz - - workbox-strategies@https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz: - dependencies: - workbox-core: https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz - - workbox-streams@https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.0.tgz: - dependencies: - workbox-core: https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz - workbox-routing: https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz - - workbox-sw@https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.0.tgz: {} - - workbox-window@https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.0.tgz: - dependencies: - '@types/trusted-types': https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.3.tgz - workbox-core: https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz - - wrap-ansi@https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz: - dependencies: - ansi-styles: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz - string-width: https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz - strip-ansi: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz - - wrap-ansi@https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz: - dependencies: - ansi-styles: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz - string-width: https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz - strip-ansi: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz - - wrappy@https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz: {} - - wrappy@https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz: {} - - write-file-atomic@https://registry.npmmirror.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz: - dependencies: - imurmurhash: https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz - is-typedarray: https://registry.npmmirror.com/is-typedarray/-/is-typedarray-1.0.0.tgz - signal-exit: https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz - typedarray-to-buffer: https://registry.npmmirror.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz - - write-file-atomic@https://registry.npmmirror.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz: - dependencies: - imurmurhash: https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz - signal-exit: https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz - - ws@https://registry.npmmirror.com/ws/-/ws-7.5.9.tgz: {} - - xe-utils@https://registry.npmmirror.com/xe-utils/-/xe-utils-3.3.1.tgz: {} - - xlsx@https://registry.npmmirror.com/xlsx/-/xlsx-0.17.5.tgz: - dependencies: - adler-32: https://registry.npmmirror.com/adler-32/-/adler-32-1.2.0.tgz - cfb: https://registry.npmmirror.com/cfb/-/cfb-1.2.2.tgz - codepage: https://registry.npmmirror.com/codepage/-/codepage-1.15.0.tgz - crc-32: https://registry.npmmirror.com/crc-32/-/crc-32-1.2.2.tgz - ssf: https://registry.npmmirror.com/ssf/-/ssf-0.11.2.tgz - wmf: https://registry.npmmirror.com/wmf/-/wmf-1.0.2.tgz - word: https://registry.npmmirror.com/word/-/word-0.3.0.tgz - - xml-name-validator@https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz: {} - - xml-name-validator@https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz: {} - - xmlchars@https://registry.npmmirror.com/xmlchars/-/xmlchars-2.2.0.tgz: {} - - xss@https://registry.npmmirror.com/xss/-/xss-1.0.13.tgz: - dependencies: - commander: https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz - cssfilter: https://registry.npmmirror.com/cssfilter/-/cssfilter-0.0.10.tgz - - xtend@https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz: {} - - xtend@https://registry.npmmirror.com/xtend/-/xtend-4.0.2.tgz: {} - - y18n@https://registry.npmmirror.com/y18n/-/y18n-4.0.3.tgz: {} - - y18n@https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz: {} - - yallist@https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz: {} - - yallist@https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz: {} - - yallist@https://registry.npmmirror.com/yallist/-/yallist-2.1.2.tgz: {} - - yallist@https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz: {} - - yallist@https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz: {} - - yaml@https://registry.npmmirror.com/yaml/-/yaml-1.10.2.tgz: {} - - yargs-parser@https://registry.npmmirror.com/yargs-parser/-/yargs-parser-18.1.3.tgz: - dependencies: - camelcase: https://registry.npmmirror.com/camelcase/-/camelcase-5.3.1.tgz - decamelize: https://registry.npmmirror.com/decamelize/-/decamelize-1.2.0.tgz - - yargs-parser@https://registry.npmmirror.com/yargs-parser/-/yargs-parser-20.2.9.tgz: {} - - yargs-parser@https://registry.npmmirror.com/yargs-parser/-/yargs-parser-21.1.1.tgz: {} - - yargs@https://registry.npmmirror.com/yargs/-/yargs-15.4.1.tgz: - dependencies: - cliui: https://registry.npmmirror.com/cliui/-/cliui-6.0.0.tgz - decamelize: https://registry.npmmirror.com/decamelize/-/decamelize-1.2.0.tgz - find-up: https://registry.npmmirror.com/find-up/-/find-up-4.1.0.tgz - get-caller-file: https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz - require-directory: https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz - require-main-filename: https://registry.npmmirror.com/require-main-filename/-/require-main-filename-2.0.0.tgz - set-blocking: https://registry.npmmirror.com/set-blocking/-/set-blocking-2.0.0.tgz - string-width: https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz - which-module: https://registry.npmmirror.com/which-module/-/which-module-2.0.1.tgz - y18n: https://registry.npmmirror.com/y18n/-/y18n-4.0.3.tgz - yargs-parser: https://registry.npmmirror.com/yargs-parser/-/yargs-parser-18.1.3.tgz - - yargs@https://registry.npmmirror.com/yargs/-/yargs-16.2.0.tgz: - dependencies: - cliui: https://registry.npmmirror.com/cliui/-/cliui-7.0.4.tgz - escalade: https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz - get-caller-file: https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz - require-directory: https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz - string-width: https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz - y18n: https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz - yargs-parser: https://registry.npmmirror.com/yargs-parser/-/yargs-parser-20.2.9.tgz - - yargs@https://registry.npmmirror.com/yargs/-/yargs-17.7.2.tgz: - dependencies: - cliui: https://registry.npmmirror.com/cliui/-/cliui-8.0.1.tgz - escalade: https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz - get-caller-file: https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz - require-directory: https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz - string-width: https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz - y18n: https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz - yargs-parser: https://registry.npmmirror.com/yargs-parser/-/yargs-parser-21.1.1.tgz - - yauzl@https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz: - dependencies: - buffer-crc32: https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz - fd-slicer: https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz - - yauzl@https://registry.npmmirror.com/yauzl/-/yauzl-2.10.0.tgz: - dependencies: - buffer-crc32: https://registry.npmmirror.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz - fd-slicer: https://registry.npmmirror.com/fd-slicer/-/fd-slicer-1.1.0.tgz - - yn@https://registry.npmmirror.com/yn/-/yn-3.1.1.tgz: {} - - yocto-queue@https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz: {} - - zrender@https://registry.npmmirror.com/zrender/-/zrender-5.3.1.tgz: - dependencies: - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.3.0.tgz - - zrender@https://registry.npmmirror.com/zrender/-/zrender-5.4.4.tgz: - dependencies: - tslib: https://registry.npmmirror.com/tslib/-/tslib-2.3.0.tgz From 76171e1f6745f0613ed0bee85111b47547de3071 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=AE=B6=E4=B8=9C?= <1654135867@qq.com> Date: Tue, 30 Jul 2024 22:00:34 +0800 Subject: [PATCH 25/43] =?UTF-8?q?=E4=BF=AE=E6=94=B9@Param?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../demo/TongfenCompinfo/mapper/TongfenCompinfoMapper.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/TongfenCompinfo/mapper/TongfenCompinfoMapper.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/TongfenCompinfo/mapper/TongfenCompinfoMapper.java index f95bc712..97906e3d 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/TongfenCompinfo/mapper/TongfenCompinfoMapper.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/TongfenCompinfo/mapper/TongfenCompinfoMapper.java @@ -2,6 +2,7 @@ package org.jeecg.modules.demo.TongfenCompinfo.mapper; import java.util.List; +import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import org.apache.ibatis.annotations.Update; import org.jeecg.modules.demo.TongfenCompinfo.entity.TongfenCompinfo; @@ -23,5 +24,5 @@ public interface TongfenCompinfoMapper extends BaseMapper { String geturl(String enrollCode); @Update("UPDATE score_persion SET score=#{score} where enroll_code =#{ccode}") - Integer updateScore(String score, String ccode); + Integer updateScore(@Param("score") String score, @Param("ccode") String ccode); } From 7c3e917d970506a37b11a5b2b55ee4eacf3a613b Mon Sep 17 00:00:00 2001 From: Gitea Date: Tue, 30 Jul 2024 22:10:19 +0800 Subject: [PATCH 26/43] =?UTF-8?q?=E5=A5=96=E9=A1=B9=E5=AF=BC=E5=85=A5?= =?UTF-8?q?=E6=8A=A5=E9=94=99=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/AwardPersionController.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java index 7bcc2424..91e6e9dd 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java @@ -18,6 +18,7 @@ import org.jeecg.common.system.query.QueryGenerator; import org.jeecg.common.system.vo.LoginUser; import org.jeecg.common.util.oConvertUtils; import org.jeecg.config.JeecgBaseConfig; +import org.jeecg.modules.demo.annual.service.IAnnualService; import org.jeecg.modules.demo.annualCompPoint.entity.AnnualCompPoint; import org.jeecg.modules.demo.annualCompPoint.service.IAnnualCompPointService; import org.jeecg.modules.demo.annualcomp.entity.AnnualComp; @@ -96,6 +97,8 @@ public class AwardPersionController extends JeecgController queryWrappertm = QueryGenerator.initQueryWrapper(teamManagement, request.getParameterMap()); queryWrappertm.eq("enroll_code",list.get(i).getEnrollCode()); List listtm = teamManagementService.list(queryWrappertm); + try { + list.get(i).setAnnualid(annualService.getannualthisid(list.get(i).getAnnualid())); + }catch (Exception e){ + return Result.error("文件导入失败:第"+(i+1)+"行年度不存在"); + } + try { for (int l = 0 ; l < listtm.size() ; l++){ SysUser sysUser = sysUserService.getById(listtm.get(l).getUserId()); list.get(i).setStudentorg(sysDepartService.queryDepartsByUsername(sysUser.getUsername()).get(0).getId()); + if(listaca.get(0).getFirstPrize().equals(list.get(i).getAwardname())){ list.get(i).setAwardsort(1); list.get(i).setAwardid(listaca.get(0).getId()); From 818d6a1943ba6ca8880edbc57a919820895bdc07 Mon Sep 17 00:00:00 2001 From: significative <163999932+significative@users.noreply.github.com> Date: Tue, 30 Jul 2024 22:10:33 +0800 Subject: [PATCH 27/43] =?UTF-8?q?=E7=A6=81=E7=94=A8=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/AwardPersionModal.vue | 131 +++++++++--------- 1 file changed, 68 insertions(+), 63 deletions(-) diff --git a/jeecgboot-vue3-master/src/views/awardpersion/components/AwardPersionModal.vue b/jeecgboot-vue3-master/src/views/awardpersion/components/AwardPersionModal.vue index 7380cc03..b2f7493c 100644 --- a/jeecgboot-vue3-master/src/views/awardpersion/components/AwardPersionModal.vue +++ b/jeecgboot-vue3-master/src/views/awardpersion/components/AwardPersionModal.vue @@ -1,77 +1,82 @@ From 3e7dd7ad222277b96df02433c740a1f7a09e40ce Mon Sep 17 00:00:00 2001 From: fhv Date: Tue, 30 Jul 2024 22:17:42 +0800 Subject: [PATCH 28/43] =?UTF-8?q?=E7=A7=AF=E5=88=86=E6=B1=87=E6=80=BB?= =?UTF-8?q?=E4=BF=9D=E7=95=992=E4=BD=8D=E5=B0=8F=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/DepartCompTotalScoreServiceImpl.java | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualScore/service/impl/DepartCompTotalScoreServiceImpl.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualScore/service/impl/DepartCompTotalScoreServiceImpl.java index d5e4b482..e1b884b4 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualScore/service/impl/DepartCompTotalScoreServiceImpl.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualScore/service/impl/DepartCompTotalScoreServiceImpl.java @@ -1,6 +1,7 @@ package org.jeecg.modules.demo.annualScore.service.impl; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import org.apache.commons.lang3.StringUtils; import org.jeecg.modules.demo.annualScore.entity.DepartCompTotalScore; import org.jeecg.modules.demo.annualScore.entity.PersonalCompScore; @@ -9,10 +10,10 @@ import org.jeecg.modules.demo.annualScore.service.IDepartCompTotalScoreService; import org.jeecg.modules.demo.annualScore.service.IPersonalCompScoreService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; - -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import org.springframework.util.ObjectUtils; +import java.math.RoundingMode; +import java.text.DecimalFormat; import java.util.Date; import java.util.List; @@ -44,10 +45,14 @@ public class DepartCompTotalScoreServiceImpl extends ServiceImpl Date: Tue, 30 Jul 2024 22:43:33 +0800 Subject: [PATCH 29/43] =?UTF-8?q?=E5=A5=96=E9=A1=B9=E5=AF=BC=E5=85=A5?= =?UTF-8?q?=E6=8A=A5=E9=94=99=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../awardpersion/controller/AwardPersionController.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java index 91e6e9dd..acfbb31a 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java @@ -539,12 +539,11 @@ public class AwardPersionController extends JeecgController queryWrappertm = QueryGenerator.initQueryWrapper(teamManagement, request.getParameterMap()); queryWrappertm.eq("enroll_code",list.get(i).getEnrollCode()); List listtm = teamManagementService.list(queryWrappertm); - try { - list.get(i).setAnnualid(annualService.getannualthisid(list.get(i).getAnnualid())); - }catch (Exception e){ + if(annualService.getannualthisid(list.get(i).getAnnualid())==null){ return Result.error("文件导入失败:第"+(i+1)+"行年度不存在"); + }else{ + list.get(i).setAnnualid(annualService.getannualthisid(list.get(i).getAnnualid())); } - try { for (int l = 0 ; l < listtm.size() ; l++){ SysUser sysUser = sysUserService.getById(listtm.get(l).getUserId()); From 42a7a411706f757595e03948692cfe17ecf0ed57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=AE=B6=E4=B8=9C?= <1654135867@qq.com> Date: Tue, 30 Jul 2024 23:08:27 +0800 Subject: [PATCH 30/43] =?UTF-8?q?=E5=AD=A6=E7=94=9F=E6=8A=A5=E5=90=8D?= =?UTF-8?q?=E5=BC=B9=E5=87=BA=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...petitionProjectRegistrationController.java | 30 +++++++++++++++++++ ...nnualCompetitionProjectRegistration.api.ts | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualcompetitionprojectregistration/controller/AnnualCompetitionProjectRegistrationController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualcompetitionprojectregistration/controller/AnnualCompetitionProjectRegistrationController.java index 0d82f476..682ec7b7 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualcompetitionprojectregistration/controller/AnnualCompetitionProjectRegistrationController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualcompetitionprojectregistration/controller/AnnualCompetitionProjectRegistrationController.java @@ -123,6 +123,35 @@ public class AnnualCompetitionProjectRegistrationController { return Result.OK(); } + /** + * 1分页列表查询 + * + * @param annualCompetitionProjectRegistration + * @param pageNo + * @param pageSize + * @param req + * @return + */ + //@AutoLog(value = "年度比赛项目报名-分页列表查询") + @ApiOperation(value = "年度比赛项目报名-分页列表查询", notes = "年度比赛项目报名-分页列表查询") + @GetMapping(value = "/liststu") + public Result> liststu(AnnualCompetitionProjectRegistration annualCompetitionProjectRegistration, + @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo, + @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize, + HttpServletRequest req) { + //处理查询信息 + QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(annualCompetitionProjectRegistration, req.getParameterMap()); + Page page = new Page(pageNo, pageSize); + //根据用户角色决定查询信息 + queryWrapperAddRoleInfo(queryWrapper); + //查询 + IPage pageList = annualCompetitionProjectRegistrationService.page(page, queryWrapper); + //处理返回信息 + processData(pageList.getRecords()); + + return Result.OK(pageList); + } + /** * 1分页列表查询 @@ -249,6 +278,7 @@ public class AnnualCompetitionProjectRegistrationController { QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(annualCompetitionProjectRegistration, req.getParameterMap()); Page page = new Page(pageNo, pageSize); LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); + //根据登录信息查询负责比赛 List compList =compService.query().eq("comp_admin",loginUser.getUsername()).list(); //判空 diff --git a/jeecgboot-vue3-master/src/views/annualcompetitionprojectregistration/student/AnnualCompetitionProjectRegistration.api.ts b/jeecgboot-vue3-master/src/views/annualcompetitionprojectregistration/student/AnnualCompetitionProjectRegistration.api.ts index fd07cd18..a10007e9 100644 --- a/jeecgboot-vue3-master/src/views/annualcompetitionprojectregistration/student/AnnualCompetitionProjectRegistration.api.ts +++ b/jeecgboot-vue3-master/src/views/annualcompetitionprojectregistration/student/AnnualCompetitionProjectRegistration.api.ts @@ -4,7 +4,7 @@ import {useMessage} from "/src/hooks/web/useMessage"; const {createConfirm} = useMessage(); enum Api { - list = '/annualcompetitionprojectregistration/annualCompetitionProjectRegistration/list', + list = '/annualcompetitionprojectregistration/annualCompetitionProjectRegistration/liststu', choose = '/annualcompetitionprojectregistration/annualCompetitionProjectRegistration/choose', save = '/annualcompetitionprojectregistration/annualCompetitionProjectRegistration/add', edit = '/annualcompetitionprojectregistration/annualCompetitionProjectRegistration/edit', From a9f89d25f0afc376f466c127f35a8559ebd78cfc Mon Sep 17 00:00:00 2001 From: Gitea Date: Tue, 30 Jul 2024 23:17:10 +0800 Subject: [PATCH 31/43] =?UTF-8?q?=E5=A5=96=E9=A1=B9=E5=AF=BC=E5=85=A5?= =?UTF-8?q?=E6=8A=A5=E9=94=99=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/AwardPersionController.java | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java index acfbb31a..0e9babc7 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java @@ -539,10 +539,23 @@ public class AwardPersionController extends JeecgController queryWrappertm = QueryGenerator.initQueryWrapper(teamManagement, request.getParameterMap()); queryWrappertm.eq("enroll_code",list.get(i).getEnrollCode()); List listtm = teamManagementService.list(queryWrappertm); - if(annualService.getannualthisid(list.get(i).getAnnualid())==null){ + String nd = annualService.getannualthisid(list.get(i).getAnnualid()); + if(nd==null){ return Result.error("文件导入失败:第"+(i+1)+"行年度不存在"); }else{ - list.get(i).setAnnualid(annualService.getannualthisid(list.get(i).getAnnualid())); + list.get(i).setAnnualid(nd); + } + QueryWrapper queryWrapperndbs = new QueryWrapper<>(); + queryWrapperndbs.eq("name",list.get(i).getAnnalComp()); + List listndbs = annualCompService.list(queryWrapperndbs); + if(listndbs.size()==0){ + return Result.error("文件导入失败:第"+(i+1)+"行年度比赛不存在"); + } + QueryWrapper queryWrapperndbsxm = new QueryWrapper<>(); + queryWrapperndbsxm.eq("obj_name",list.get(i).getAnnualCompP()); + List listndbsxm = annualCompPointService.list(queryWrapperndbsxm); + if(listndbsxm.size()==0){ + return Result.error("文件导入失败:第"+(i+1)+"行年度比赛项目不存在"); } try { for (int l = 0 ; l < listtm.size() ; l++){ From 55b613ccc7e60ab5e5eaed5973ed16c88215e46c Mon Sep 17 00:00:00 2001 From: fhv Date: Tue, 30 Jul 2024 23:30:56 +0800 Subject: [PATCH 32/43] =?UTF-8?q?=E9=83=A8=E9=97=A8=E7=A7=AF=E5=88=86?= =?UTF-8?q?=E3=80=81=E9=83=A8=E9=97=A8=E8=83=BD=E5=8A=9B=20=E9=83=A8?= =?UTF-8?q?=E9=97=A8=E4=B8=BA=E7=A9=BA=E6=97=B6=E6=B1=87=E6=80=BB=E6=89=80?= =?UTF-8?q?=E6=9C=89=E9=83=A8=E9=97=A8,=20=E4=B8=8D=E4=B8=BA=E7=A9=BA?= =?UTF-8?q?=E6=97=B6=E6=B1=87=E6=80=BB=E8=AF=A5=E9=83=A8=E9=97=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DepartAbilityEvaluationController.java | 20 +++++++++++++ .../IDepartAbilityEvaluationService.java | 2 ++ .../DepartAbilityEvaluationServiceImpl.java | 28 +++++++++++++++---- .../DepartCompTotalScoreController.java | 20 +++++++++++++ .../service/IDepartCompTotalScoreService.java | 1 + .../impl/DepartCompTotalScoreServiceImpl.java | 23 +++++++++++++++ .../depart/DepartAbilityEvaluation.api.ts | 6 ++-- .../depart/DepartAbilityEvaluation.data.ts | 10 +++---- .../DepartCompTotalScore.api.ts | 6 ++-- .../DepartCompTotalScore.data.ts | 10 +++---- 10 files changed, 106 insertions(+), 20 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/controller/DepartAbilityEvaluationController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/controller/DepartAbilityEvaluationController.java index 3a92f324..01d32acf 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/controller/DepartAbilityEvaluationController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/controller/DepartAbilityEvaluationController.java @@ -1,5 +1,6 @@ package org.jeecg.modules.demo.abilityEvaluation.controller; +import cn.hutool.core.util.StrUtil; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; @@ -68,6 +69,25 @@ public class DepartAbilityEvaluationController extends JeecgController + * @Author: z.h.c + * @Date: 2024/7/30 23:03 + */ + @ApiOperation(value = "院系年度能力评价-汇总所有部门", notes = "院系年度能力评价-汇总所有部门") + @PostMapping(value = "/collectAllDepart") + public Result collectAllDepart(@RequestBody DepartAbilityEvaluation departAbilityEvaluation) { + if (StrUtil.isNotBlank(departAbilityEvaluation.getDepetId())) {//部门不为空时汇总该部门 + departAbilityEvaluationService.collectAbilityEvaluation(departAbilityEvaluation); + } else { + departAbilityEvaluationService.collectAllDepart(departAbilityEvaluation); + } + return Result.OK("添加成功!"); + } + @ApiOperation(value = "院系年度能力评价-重新汇算", notes = "院系年度能力评价-重新汇算") @PostMapping(value = "/reCollectAbilityEvaluation") public Result reCollectAbilityEvaluation(@RequestBody DepartAbilityEvaluation departAbilityEvaluation) { diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/service/IDepartAbilityEvaluationService.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/service/IDepartAbilityEvaluationService.java index feafabef..4fe739d8 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/service/IDepartAbilityEvaluationService.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/service/IDepartAbilityEvaluationService.java @@ -12,4 +12,6 @@ import com.baomidou.mybatisplus.extension.service.IService; public interface IDepartAbilityEvaluationService extends IService { void collectAbilityEvaluation(DepartAbilityEvaluation departAbilityEvaluation); + + void collectAllDepart(DepartAbilityEvaluation departAbilityEvaluation); } diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/service/impl/DepartAbilityEvaluationServiceImpl.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/service/impl/DepartAbilityEvaluationServiceImpl.java index f2d20a61..4d62b2bf 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/service/impl/DepartAbilityEvaluationServiceImpl.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/service/impl/DepartAbilityEvaluationServiceImpl.java @@ -8,14 +8,12 @@ import org.jeecg.modules.demo.abilityEvaluation.entity.PersonalAbilityEvaluation import org.jeecg.modules.demo.abilityEvaluation.mapper.DepartAbilityEvaluationMapper; import org.jeecg.modules.demo.abilityEvaluation.service.IDepartAbilityEvaluationService; import org.jeecg.modules.demo.abilityEvaluation.service.IPersonalAbilityEvaluationService; -import org.jeecg.modules.demo.basicsskill.service.IBasicsskillService; +import org.jeecg.modules.system.entity.SysDepart; +import org.jeecg.modules.system.service.ISysDepartService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; -import java.util.Date; -import java.util.LinkedList; -import java.util.List; -import java.util.Map; +import java.util.*; import java.util.stream.Collectors; /** @@ -30,6 +28,11 @@ public class DepartAbilityEvaluationServiceImpl extends ServiceImpl saveList = new LinkedList<>(); - depetListMap.keySet().stream().forEach(k -> { + Optional.ofNullable(depetListMap).orElse(new LinkedHashMap<>()).keySet().stream().forEach(k -> { List evaluationList = depetListMap.get(k); DepartAbilityEvaluation bean = new DepartAbilityEvaluation(); bean.setAnnualId(departAbilityEvaluation.getAnnualId()); @@ -64,4 +67,17 @@ public class DepartAbilityEvaluationServiceImpl extends ServiceImpl().eq(DepartAbilityEvaluation::getAnnualId, param.getAnnualId())); + List departList = iSysDepartService.list(new LambdaQueryWrapper().eq(SysDepart::getParentId, PARENT_ID)); + Optional.ofNullable(departList).orElse(new LinkedList<>()).stream().forEach(e -> { + DepartAbilityEvaluation depart = new DepartAbilityEvaluation(); + depart.setAnnualId(param.getAnnualId()); + depart.setDepetId(e.getId()); + this.collectAbilityEvaluation(depart); + }); + } } diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualScore/controller/DepartCompTotalScoreController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualScore/controller/DepartCompTotalScoreController.java index 620bded2..4d2fcc5c 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualScore/controller/DepartCompTotalScoreController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualScore/controller/DepartCompTotalScoreController.java @@ -1,5 +1,6 @@ package org.jeecg.modules.demo.annualScore.controller; +import cn.hutool.core.util.StrUtil; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; @@ -55,6 +56,25 @@ public class DepartCompTotalScoreController extends JeecgController + * @Author: z.h.c + * @Date: 2024/7/30 22:26 + */ + @ApiOperation(value = "院系总积分-汇总所有部门", notes = "院系总积分-汇总所有部门") + @PostMapping(value = "/collectAllDepart") + public Result collectAllDepart(@RequestBody DepartCompTotalScore departCompTotalScore) { + if (StrUtil.isNotBlank(departCompTotalScore.getDepet())) {//部门不为空时汇总该部门 + departCompTotalScoreService.collectScore(departCompTotalScore); + } else { + departCompTotalScoreService.collectAllDepart(departCompTotalScore); + } + return Result.OK("添加成功!"); + } + /** * 分页列表查询 * diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualScore/service/IDepartCompTotalScoreService.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualScore/service/IDepartCompTotalScoreService.java index ab1f1273..32302cee 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualScore/service/IDepartCompTotalScoreService.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualScore/service/IDepartCompTotalScoreService.java @@ -13,4 +13,5 @@ public interface IDepartCompTotalScoreService extends IService().eq(DepartCompTotalScore::getAnnualId, param.getAnnualId())); + List departList = iSysDepartService.list(new LambdaQueryWrapper().eq(SysDepart::getParentId, PARENT_ID)); + Optional.ofNullable(departList).orElse(new LinkedList<>()).stream().forEach(e -> { + DepartCompTotalScore depart = new DepartCompTotalScore(); + depart.setAnnualId(param.getAnnualId()); + depart.setDepet(e.getId()); + this.collectScore(depart); + }); + } } diff --git a/jeecgboot-vue3-master/src/views/abilityEvaluation/depart/DepartAbilityEvaluation.api.ts b/jeecgboot-vue3-master/src/views/abilityEvaluation/depart/DepartAbilityEvaluation.api.ts index 217517ae..62855d6e 100644 --- a/jeecgboot-vue3-master/src/views/abilityEvaluation/depart/DepartAbilityEvaluation.api.ts +++ b/jeecgboot-vue3-master/src/views/abilityEvaluation/depart/DepartAbilityEvaluation.api.ts @@ -5,7 +5,8 @@ const { createConfirm } = useMessage(); enum Api { list = '/abilityEvaluation/departAbilityEvaluation/list', - save='/abilityEvaluation/departAbilityEvaluation/add', + // save='/abilityEvaluation/departAbilityEvaluation/add', + collectAllDepart='/abilityEvaluation/departAbilityEvaluation/collectAllDepart', edit='/abilityEvaluation/departAbilityEvaluation/edit', deleteOne = '/abilityEvaluation/departAbilityEvaluation/delete', deleteBatch = '/abilityEvaluation/departAbilityEvaluation/deleteBatch', @@ -60,7 +61,8 @@ export const batchDelete = (params, handleSuccess) => { * @param params */ export const saveOrUpdate = (params, isUpdate) => { - let url = isUpdate ? Api.edit : Api.save; + // let url = isUpdate ? Api.edit : Api.save; + let url = isUpdate ? Api.edit : Api.collectAllDepart; return defHttp.post({url: url, params}); } diff --git a/jeecgboot-vue3-master/src/views/abilityEvaluation/depart/DepartAbilityEvaluation.data.ts b/jeecgboot-vue3-master/src/views/abilityEvaluation/depart/DepartAbilityEvaluation.data.ts index 9e10be25..580d8f93 100644 --- a/jeecgboot-vue3-master/src/views/abilityEvaluation/depart/DepartAbilityEvaluation.data.ts +++ b/jeecgboot-vue3-master/src/views/abilityEvaluation/depart/DepartAbilityEvaluation.data.ts @@ -61,11 +61,11 @@ export const formSchema: FormSchema[] = [ componentProps: { dictCode:"sys_depart,depart_name,id,parent_id='1693446350597038081'" }, - dynamicRules: ({model, schema}) => { - return [ - {required: true, message: '请输入所属部门!'}, - ]; - }, + // dynamicRules: ({model, schema}) => { + // return [ + // {required: true, message: '请输入所属部门!'}, + // ]; + // }, }, { label: '年度', diff --git a/jeecgboot-vue3-master/src/views/annualScore/departCompTotalScore/DepartCompTotalScore.api.ts b/jeecgboot-vue3-master/src/views/annualScore/departCompTotalScore/DepartCompTotalScore.api.ts index 8af1e96d..98e6a08c 100644 --- a/jeecgboot-vue3-master/src/views/annualScore/departCompTotalScore/DepartCompTotalScore.api.ts +++ b/jeecgboot-vue3-master/src/views/annualScore/departCompTotalScore/DepartCompTotalScore.api.ts @@ -5,7 +5,8 @@ const { createConfirm } = useMessage(); enum Api { list = '/annualScore/departCompTotalScore/list', - save='/annualScore/departCompTotalScore/add', + // save='/annualScore/departCompTotalScore/add', + collectAllDepart='/annualScore/departCompTotalScore/collectAllDepart', edit='/annualScore/departCompTotalScore/edit', deleteOne = '/annualScore/departCompTotalScore/delete', deleteBatch = '/annualScore/departCompTotalScore/deleteBatch', @@ -60,7 +61,8 @@ export const batchDelete = (params, handleSuccess) => { * @param params */ export const saveOrUpdate = (params, isUpdate) => { - let url = isUpdate ? Api.edit : Api.save; + // let url = isUpdate ? Api.edit : Api.save; + let url = isUpdate ? Api.edit : Api.collectAllDepart; return defHttp.post({url: url, params}); } diff --git a/jeecgboot-vue3-master/src/views/annualScore/departCompTotalScore/DepartCompTotalScore.data.ts b/jeecgboot-vue3-master/src/views/annualScore/departCompTotalScore/DepartCompTotalScore.data.ts index eeda545d..f754f2ef 100644 --- a/jeecgboot-vue3-master/src/views/annualScore/departCompTotalScore/DepartCompTotalScore.data.ts +++ b/jeecgboot-vue3-master/src/views/annualScore/departCompTotalScore/DepartCompTotalScore.data.ts @@ -67,11 +67,11 @@ export const formSchema: FormSchema[] = [ // dictCode: "sys_user,realname,id,username!='admin' order by create_time", }, - dynamicRules: ({model,schema}) => { - return [ - { required: true, message: '请输入所属部门!'}, - ]; - }, + // dynamicRules: ({model,schema}) => { + // return [ + // { required: true, message: '请输入所属部门!'}, + // ]; + // }, }, { label: '年度', From e31e6f3488a2da355aa627dad25270cf6638b2cd Mon Sep 17 00:00:00 2001 From: Gitea Date: Tue, 30 Jul 2024 23:34:38 +0800 Subject: [PATCH 33/43] =?UTF-8?q?=E5=A5=96=E9=A1=B9=E5=AF=BC=E5=85=A5?= =?UTF-8?q?=E6=8A=A5=E9=94=99=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../demo/awardpersion/controller/AwardPersionController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java index 0e9babc7..55b6f8d1 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java @@ -546,13 +546,13 @@ public class AwardPersionController extends JeecgController queryWrapperndbs = new QueryWrapper<>(); - queryWrapperndbs.eq("name",list.get(i).getAnnalComp()); + queryWrapperndbs.eq("name",list.get(i).getAnnalComp()).or().eq("id",list.get(i).getAnnalComp()); List listndbs = annualCompService.list(queryWrapperndbs); if(listndbs.size()==0){ return Result.error("文件导入失败:第"+(i+1)+"行年度比赛不存在"); } QueryWrapper queryWrapperndbsxm = new QueryWrapper<>(); - queryWrapperndbsxm.eq("obj_name",list.get(i).getAnnualCompP()); + queryWrapperndbsxm.eq("obj_name",list.get(i).getAnnualCompP()).or().eq("id",list.get(i).getAnnualCompP()); List listndbsxm = annualCompPointService.list(queryWrapperndbsxm); if(listndbsxm.size()==0){ return Result.error("文件导入失败:第"+(i+1)+"行年度比赛项目不存在"); From 8f5d582027b9fe0c7d10f16181caa1096c898f33 Mon Sep 17 00:00:00 2001 From: Gitea Date: Tue, 30 Jul 2024 23:44:22 +0800 Subject: [PATCH 34/43] =?UTF-8?q?=E5=A5=96=E9=A1=B9=E5=AF=BC=E5=85=A5?= =?UTF-8?q?=E6=8A=A5=E9=94=99=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/AwardPersionController.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java index 55b6f8d1..2cb7b065 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/awardpersion/controller/AwardPersionController.java @@ -512,6 +512,12 @@ public class AwardPersionController extends JeecgController queryWrapperndbsxm = new QueryWrapper<>(); + queryWrapperndbsxm.eq("obj_name",list.get(i).getAnnualCompP()).or().eq("id",list.get(i).getAnnualCompP()); + List listndbsxm = annualCompPointService.list(queryWrapperndbsxm); + if(listndbsxm.size()==0){ + return Result.error("文件导入失败:第"+(i+1)+"行年度比赛项目不存在"); + } AnnualCompetitionProjectRegistration annualCompetitionProjectRegistration = new AnnualCompetitionProjectRegistration(); QueryWrapper queryWrappera = QueryGenerator.initQueryWrapper(annualCompetitionProjectRegistration, request.getParameterMap()); queryWrappera.eq("annual_compid",list.get(i).getAnnualCompP()); @@ -551,12 +557,7 @@ public class AwardPersionController extends JeecgController queryWrapperndbsxm = new QueryWrapper<>(); - queryWrapperndbsxm.eq("obj_name",list.get(i).getAnnualCompP()).or().eq("id",list.get(i).getAnnualCompP()); - List listndbsxm = annualCompPointService.list(queryWrapperndbsxm); - if(listndbsxm.size()==0){ - return Result.error("文件导入失败:第"+(i+1)+"行年度比赛项目不存在"); - } + try { for (int l = 0 ; l < listtm.size() ; l++){ SysUser sysUser = sysUserService.getById(listtm.get(l).getUserId()); From 2b4488c9e3a44048050fc8558dab736c27046e42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=88=86=E7=B1=B3=E8=8A=B1?= <417727563@qq.com> Date: Wed, 31 Jul 2024 01:02:02 +0800 Subject: [PATCH 35/43] =?UTF-8?q?31-=E9=9A=90=E8=97=8F=20=E7=A7=AF?= =?UTF-8?q?=E5=88=86=E7=BB=9F=E8=AE=A1=E9=83=A8=E9=97=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../PersonalAbilityEvaluationCollect.data.ts | 8 ++++---- .../personalCompTotalScore/PersonalCompTotalScore.data.ts | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/jeecgboot-vue3-master/src/views/abilityEvaluation/persanlCollect/PersonalAbilityEvaluationCollect.data.ts b/jeecgboot-vue3-master/src/views/abilityEvaluation/persanlCollect/PersonalAbilityEvaluationCollect.data.ts index e390ed45..7025190c 100644 --- a/jeecgboot-vue3-master/src/views/abilityEvaluation/persanlCollect/PersonalAbilityEvaluationCollect.data.ts +++ b/jeecgboot-vue3-master/src/views/abilityEvaluation/persanlCollect/PersonalAbilityEvaluationCollect.data.ts @@ -1,11 +1,11 @@ import {BasicColumn, FormSchema} from '/@/components/Table'; //列表数据 export const columns: BasicColumn[] = [ - { +/* { title: '所属部门', align: "center", dataIndex: 'depetId_dictText' - }, + },*/ { title: '学号', align: "center", @@ -29,7 +29,7 @@ export const columns: BasicColumn[] = [ ]; //查询数据 export const searchFormSchema: FormSchema[] = [ - { + /*{ label: "所属部门", field: 'depetId', component: 'JDictSelectTag', @@ -37,7 +37,7 @@ export const searchFormSchema: FormSchema[] = [ dictCode: "sys_depart,depart_name,id" }, colProps: {span: 6}, - }, + },*/ { label: "能力名称", field: 'capacityId', diff --git a/jeecgboot-vue3-master/src/views/annualScore/personalCompTotalScore/PersonalCompTotalScore.data.ts b/jeecgboot-vue3-master/src/views/annualScore/personalCompTotalScore/PersonalCompTotalScore.data.ts index 4a8d6b1d..13b6b214 100644 --- a/jeecgboot-vue3-master/src/views/annualScore/personalCompTotalScore/PersonalCompTotalScore.data.ts +++ b/jeecgboot-vue3-master/src/views/annualScore/personalCompTotalScore/PersonalCompTotalScore.data.ts @@ -1,11 +1,11 @@ import {BasicColumn, FormSchema} from '/@/components/Table'; //列表数据 export const columns: BasicColumn[] = [ - { +/* { title: '院系', align: "center", dataIndex: 'depet_dictText' - }, + },*/ { title: '姓名', align: "center", @@ -29,7 +29,7 @@ export const columns: BasicColumn[] = [ ]; //查询数据 export const searchFormSchema: FormSchema[] = [ - { + /* { label: "院系", field: 'depet', component: 'JDictSelectTag', @@ -37,7 +37,7 @@ export const searchFormSchema: FormSchema[] = [ dictCode: "sys_depart,depart_name,id" }, colProps: {span: 6}, - }, + },*/ { label: "学号", field: 'workOn', From 302a3db87c1cba30fc40ee30bd61716f1d928edf Mon Sep 17 00:00:00 2001 From: Gitea Date: Wed, 31 Jul 2024 01:05:50 +0800 Subject: [PATCH 36/43] =?UTF-8?q?=E6=AF=94=E8=B5=9B=E4=B8=93=E5=AE=B6?= =?UTF-8?q?=E7=BC=96=E8=BE=91=E7=8A=B6=E6=80=81=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/demo/expert/controller/ExpertController.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/expert/controller/ExpertController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/expert/controller/ExpertController.java index 6ea35bca..28cbacb6 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/expert/controller/ExpertController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/expert/controller/ExpertController.java @@ -259,7 +259,9 @@ public class ExpertController extends JeecgController { } sbCompid.append(item.getCompid()); sbCompName.append(item.getCompName()); - sbStat.append(item.getStat()); + if("".equals(sbStat)){ + sbStat.append(item.getStat()); + } } // 将 StringBuilder 转换为 String Compid = sbCompid.toString(); @@ -447,7 +449,7 @@ public class ExpertController extends JeecgController { } return result; } - + /** * 导出excel模板 From c2b1a1235349c360aaa6f71710b00d35b6e60a49 Mon Sep 17 00:00:00 2001 From: Gitea Date: Wed, 31 Jul 2024 01:11:25 +0800 Subject: [PATCH 37/43] =?UTF-8?q?=E6=AF=94=E8=B5=9B=E4=B8=93=E5=AE=B6?= =?UTF-8?q?=E7=BC=96=E8=BE=91=E7=8A=B6=E6=80=81=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/demo/expert/controller/ExpertController.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/expert/controller/ExpertController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/expert/controller/ExpertController.java index 28cbacb6..e375d25e 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/expert/controller/ExpertController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/expert/controller/ExpertController.java @@ -259,9 +259,7 @@ public class ExpertController extends JeecgController { } sbCompid.append(item.getCompid()); sbCompName.append(item.getCompName()); - if("".equals(sbStat)){ - sbStat.append(item.getStat()); - } + sbStat.append(item.getStat()); } // 将 StringBuilder 转换为 String Compid = sbCompid.toString(); From e63c2ddca079d4da77bbb347ea607fc8464b033e Mon Sep 17 00:00:00 2001 From: Gitea Date: Wed, 31 Jul 2024 01:36:58 +0800 Subject: [PATCH 38/43] =?UTF-8?q?=E4=B8=93=E5=AE=B6=E5=88=86=E7=BB=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../jeecg/modules/demo/expert/controller/ExpertController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/expert/controller/ExpertController.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/expert/controller/ExpertController.java index e375d25e..a2423599 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/expert/controller/ExpertController.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/expert/controller/ExpertController.java @@ -140,7 +140,7 @@ public class ExpertController extends JeecgController { ExpGroup expGroup = new ExpGroup(); QueryWrapper queryWrappereg = QueryGenerator.initQueryWrapper(expGroup, req.getParameterMap()); queryWrappereg.eq("grouid",listce.get(i).getExpid()); - //queryWrappereg.eq("ann_comp_groupid",ndbsxzid); + queryWrappereg.eq("ann_comp_groupid",ndbsxzid); List listeg = expGroupService.list(queryWrappereg); if(listeg.size()==0){ expids = expids+listce.get(i).getExpid()+","; From fa08beb74c936d2ed342366902915ce4dbd50cca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=88=86=E7=B1=B3=E8=8A=B1?= <417727563@qq.com> Date: Wed, 31 Jul 2024 07:34:53 +0800 Subject: [PATCH 39/43] =?UTF-8?q?31-=20=E7=A7=AF=E5=88=86=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1=E9=83=A8=E9=97=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../PersonalAbilityEvaluationCollect.data.ts | 6 +++--- .../personalCompTotalScore/PersonalCompTotalScore.data.ts | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/jeecgboot-vue3-master/src/views/abilityEvaluation/persanlCollect/PersonalAbilityEvaluationCollect.data.ts b/jeecgboot-vue3-master/src/views/abilityEvaluation/persanlCollect/PersonalAbilityEvaluationCollect.data.ts index 7025190c..e069daf3 100644 --- a/jeecgboot-vue3-master/src/views/abilityEvaluation/persanlCollect/PersonalAbilityEvaluationCollect.data.ts +++ b/jeecgboot-vue3-master/src/views/abilityEvaluation/persanlCollect/PersonalAbilityEvaluationCollect.data.ts @@ -29,15 +29,15 @@ export const columns: BasicColumn[] = [ ]; //查询数据 export const searchFormSchema: FormSchema[] = [ - /*{ - label: "所属部门", + { + label: "院系", field: 'depetId', component: 'JDictSelectTag', componentProps: { dictCode: "sys_depart,depart_name,id" }, colProps: {span: 6}, - },*/ + }, { label: "能力名称", field: 'capacityId', diff --git a/jeecgboot-vue3-master/src/views/annualScore/personalCompTotalScore/PersonalCompTotalScore.data.ts b/jeecgboot-vue3-master/src/views/annualScore/personalCompTotalScore/PersonalCompTotalScore.data.ts index 13b6b214..4a8d6b1d 100644 --- a/jeecgboot-vue3-master/src/views/annualScore/personalCompTotalScore/PersonalCompTotalScore.data.ts +++ b/jeecgboot-vue3-master/src/views/annualScore/personalCompTotalScore/PersonalCompTotalScore.data.ts @@ -1,11 +1,11 @@ import {BasicColumn, FormSchema} from '/@/components/Table'; //列表数据 export const columns: BasicColumn[] = [ -/* { + { title: '院系', align: "center", dataIndex: 'depet_dictText' - },*/ + }, { title: '姓名', align: "center", @@ -29,7 +29,7 @@ export const columns: BasicColumn[] = [ ]; //查询数据 export const searchFormSchema: FormSchema[] = [ - /* { + { label: "院系", field: 'depet', component: 'JDictSelectTag', @@ -37,7 +37,7 @@ export const searchFormSchema: FormSchema[] = [ dictCode: "sys_depart,depart_name,id" }, colProps: {span: 6}, - },*/ + }, { label: "学号", field: 'workOn', From 56dfc29e805614a5692190937608693060dc785f Mon Sep 17 00:00:00 2001 From: zhc077 <565291854@qq.com> Date: Wed, 31 Jul 2024 08:25:52 +0800 Subject: [PATCH 40/43] =?UTF-8?q?=E4=B8=AA=E4=BA=BA=E7=A7=AF=E5=88=86?= =?UTF-8?q?=E6=B1=87=E6=80=BB=E9=83=A8=E9=97=A8=E4=B8=8D=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E9=97=AE=E9=A2=98=20=E4=BF=AE=E6=94=B9=207.31?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/PersonalCompScoreServiceImpl.java | 14 +++++++++----- .../committee/AnnualCompPointList.vue | 2 +- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualScore/service/impl/PersonalCompScoreServiceImpl.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualScore/service/impl/PersonalCompScoreServiceImpl.java index d98e7fae..3e23cbd6 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualScore/service/impl/PersonalCompScoreServiceImpl.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/annualScore/service/impl/PersonalCompScoreServiceImpl.java @@ -73,6 +73,9 @@ public class PersonalCompScoreServiceImpl extends ServiceImpl() - .eq(AnnualCompPoint::getAnnualCompId, annualCompId) +// .eq(AnnualCompPoint::getAnnualCompId, annualCompId) + .eq(AnnualCompPoint::getId, personalCompScore.getAnnualCompP()) .eq(AnnualCompPoint::getIsPj, new Integer(1)) ); @@ -176,8 +180,8 @@ public class PersonalCompScoreServiceImpl extends ServiceImpl().eq(SysDepart::getOrgCode,sysUser.getOrgCode())); + bean.setDepet(sysDepart.getId()); bean.setScore(score.get()); saveList.add(bean); }); @@ -191,8 +195,8 @@ public class PersonalCompScoreServiceImpl extends ServiceImpl().eq(SysDepart::getOrgCode,sysUser.getOrgCode())); + bean.setDepet(sysDepart.getId()); bean.setScore(score.get()); saveList.add(bean); } diff --git a/jeecgboot-vue3-master/src/views/annualCompPoint/committee/AnnualCompPointList.vue b/jeecgboot-vue3-master/src/views/annualCompPoint/committee/AnnualCompPointList.vue index 16e1676f..c7a1a974 100644 --- a/jeecgboot-vue3-master/src/views/annualCompPoint/committee/AnnualCompPointList.vue +++ b/jeecgboot-vue3-master/src/views/annualCompPoint/committee/AnnualCompPointList.vue @@ -255,7 +255,7 @@ * 个人积分汇总 */ function handleCollectScoreApply(record: Recordable) { - collectScore({id: record.id, annualCompId: record.annualCompId}, handleSuccess); + collectScore({id: record.id, annualCompId: record.annualCompId, annualCompP: record.id}, handleSuccess); } /** From 3ed5f25c1b66c73d568a775105743f4415cac8e0 Mon Sep 17 00:00:00 2001 From: zhc077 <565291854@qq.com> Date: Wed, 31 Jul 2024 09:02:13 +0800 Subject: [PATCH 41/43] =?UTF-8?q?=E4=B8=AA=E4=BA=BA=E8=83=BD=E5=8A=9B?= =?UTF-8?q?=E6=B1=87=E6=80=BB=E9=83=A8=E9=97=A8=E4=B8=8D=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E9=97=AE=E9=A2=98=20=E4=BF=AE=E6=94=B9=207.31?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../PersonalAbilityEvaluationCollectServiceImpl.java | 9 ++++++++- .../PersonalAbilityEvaluationCollect.data.ts | 4 ++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/service/impl/PersonalAbilityEvaluationCollectServiceImpl.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/service/impl/PersonalAbilityEvaluationCollectServiceImpl.java index 011b203c..f94b3c01 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/service/impl/PersonalAbilityEvaluationCollectServiceImpl.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/abilityEvaluation/service/impl/PersonalAbilityEvaluationCollectServiceImpl.java @@ -7,7 +7,9 @@ import org.jeecg.modules.demo.abilityEvaluation.entity.PersonalAbilityEvaluation import org.jeecg.modules.demo.abilityEvaluation.mapper.PersonalAbilityEvaluationCollectMapper; import org.jeecg.modules.demo.abilityEvaluation.service.IPersonalAbilityEvaluationCollectService; import org.jeecg.modules.demo.abilityEvaluation.service.IPersonalAbilityEvaluationService; +import org.jeecg.modules.system.entity.SysDepart; import org.jeecg.modules.system.entity.SysUser; +import org.jeecg.modules.system.service.ISysDepartService; import org.jeecg.modules.system.service.ISysUserService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @@ -35,6 +37,9 @@ public class PersonalAbilityEvaluationCollectServiceImpl extends ServiceImpl list = capacityListMap.get(k); PersonalAbilityEvaluationCollect person = new PersonalAbilityEvaluationCollect(); person.setAnnualCompP(projectId); - person.setDepetId(sysUser.getDepartIds()); + SysDepart sysDepart = iSysDepartService.getOne(new LambdaQueryWrapper().eq(SysDepart::getOrgCode,sysUser.getOrgCode())); +// bean.setDepet(sysDepart.getId()); + person.setDepetId(sysDepart.getId()); person.setWorkOn(workNo); person.setName(sysUser.getRealname()); person.setCapacityId(list.get(0).getCapacityId()); diff --git a/jeecgboot-vue3-master/src/views/abilityEvaluation/persanlCollect/PersonalAbilityEvaluationCollect.data.ts b/jeecgboot-vue3-master/src/views/abilityEvaluation/persanlCollect/PersonalAbilityEvaluationCollect.data.ts index e069daf3..6d0e7a5e 100644 --- a/jeecgboot-vue3-master/src/views/abilityEvaluation/persanlCollect/PersonalAbilityEvaluationCollect.data.ts +++ b/jeecgboot-vue3-master/src/views/abilityEvaluation/persanlCollect/PersonalAbilityEvaluationCollect.data.ts @@ -1,11 +1,11 @@ import {BasicColumn, FormSchema} from '/@/components/Table'; //列表数据 export const columns: BasicColumn[] = [ -/* { + { title: '所属部门', align: "center", dataIndex: 'depetId_dictText' - },*/ + }, { title: '学号', align: "center", From 039f5bd70b33d4b6492fabe929eb1bea8ed0347b Mon Sep 17 00:00:00 2001 From: zhc077 <565291854@qq.com> Date: Wed, 31 Jul 2024 10:00:55 +0800 Subject: [PATCH 42/43] =?UTF-8?q?=E4=B8=AA=E4=BA=BA=E8=83=BD=E5=8A=9B?= =?UTF-8?q?=E6=B1=87=E6=80=BB=E9=83=A8=E9=97=A8=E4=B8=8D=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E9=97=AE=E9=A2=98=20=E4=BF=AE=E6=94=B9=207.31?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/annualCompPoint/committee/AnnualCompPointList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jeecgboot-vue3-master/src/views/annualCompPoint/committee/AnnualCompPointList.vue b/jeecgboot-vue3-master/src/views/annualCompPoint/committee/AnnualCompPointList.vue index c7a1a974..e833fb10 100644 --- a/jeecgboot-vue3-master/src/views/annualCompPoint/committee/AnnualCompPointList.vue +++ b/jeecgboot-vue3-master/src/views/annualCompPoint/committee/AnnualCompPointList.vue @@ -408,7 +408,7 @@ 是否已凭奖为1且未汇总过时,可以积分汇总操作 * 状态:0待提交、1已提交(待审核)、2已审核(已通过)、3待驳回、4已驳回、5-已报名、6-已选题、7-已上传作品、8-已评分、9-已评奖,10-积分已汇总 */ - if (record.isPj == 1 && record.annualCompState != "10") { + if (record.isPj == 1 /*&& record.annualCompState != "10"*/) { actions.unshift({ label: '个人积分汇总', onClick: handleCollectScoreApply.bind(null, record), From 1d938aec08aef036d32eb0c13613e9a50dde492f Mon Sep 17 00:00:00 2001 From: zhc077 <565291854@qq.com> Date: Wed, 31 Jul 2024 11:13:48 +0800 Subject: [PATCH 43/43] =?UTF-8?q?=E5=8D=95=E9=A1=B9=E6=AF=94=E8=B5=9B?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E4=BF=AE=E6=94=B9=207.31?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/CompSystemBigScreenServiceImpl.java | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/bigScreen/service/CompSystemBigScreenServiceImpl.java b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/bigScreen/service/CompSystemBigScreenServiceImpl.java index 28b0bcfc..a3c2c50e 100644 --- a/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/bigScreen/service/CompSystemBigScreenServiceImpl.java +++ b/jeecg-boot-master/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/bigScreen/service/CompSystemBigScreenServiceImpl.java @@ -489,10 +489,11 @@ public class CompSystemBigScreenServiceImpl implements CompSystemBigScreenServic //比赛数 last5YearDataVo.setCompCount(1); - AnnualCompPoint annualCompPoint = iAnnualCompPointService.getOne(new LambdaQueryWrapper().eq(AnnualCompPoint::getAnnualCompId, ac.getId())); - if (!ObjectUtils.isEmpty(annualCompPoint)) { + List annualCompPoints = iAnnualCompPointService.list(new LambdaQueryWrapper().eq(AnnualCompPoint::getAnnualCompId, ac.getId())); + if (!ObjectUtils.isEmpty(annualCompPoints)) { + Set pids = annualCompPoints.stream().map(e -> e.getId()).collect(Collectors.toSet()); long personCount4CompTemp = iAnnualCompetitionProjectRegistrationService.count(new LambdaQueryWrapper(). - eq(AnnualCompetitionProjectRegistration::getAnnualCompid, annualCompPoint.getId())); + in(AnnualCompetitionProjectRegistration::getAnnualCompid, pids)); personCount4Comp.getAndUpdate(val -> val.add(new BigDecimal(personCount4CompTemp))); last5YearDataVo.setPersonCount(personCount4Comp.get().intValue()); } @@ -667,6 +668,9 @@ public class CompSystemBigScreenServiceImpl implements CompSystemBigScreenServic List> last4YearData = new LinkedList<>(); List years = DateUtils.getLastxYear(4); List annualList = iAnnualService.list(new LambdaQueryWrapper().in(Annual::getAnnualName, years).orderByAsc(Annual::getAnnualName)); + DecimalFormat decimalFormat = new DecimalFormat(); + decimalFormat.setMaximumFractionDigits(2); // 保留两位小数 + decimalFormat.setRoundingMode(RoundingMode.HALF_UP); // 设置具体的进位机制 annualList.forEach(annual -> { AtomicReference baseScore = new AtomicReference<>(BigDecimal.ZERO); Map yearData = new LinkedHashMap<>(); @@ -678,7 +682,7 @@ public class CompSystemBigScreenServiceImpl implements CompSystemBigScreenServic double sum = compScoreList.stream().mapToDouble(PersonalCompScore::getScore).sum(); baseScore.getAndUpdate(val -> val.add(new BigDecimal(sum))); } - yearData.put("score", baseScore); + yearData.put("score", decimalFormat.format(baseScore.get())); last4YearData.add(yearData); }); studentInfoMap.put("last4YearData", last4YearData);