diff --git a/.cz-config.js b/.cz-config.js index 42a3e376..9e890f6b 100644 --- a/.cz-config.js +++ b/.cz-config.js @@ -1,5 +1,4 @@ module.exports = { - // type 类型(定义之后,可通过上下键选择) types: [ { value: 'feat', name: 'feat: 新增功能' }, { value: 'fix', name: 'fix: 修复bug' }, @@ -13,8 +12,6 @@ module.exports = { { value: 'chore', name: 'chore: 对构建过程或辅助工具和库的更改(不影响源文件、测试用例)' }, { value: 'revert', name: 'revert: 回滚 commit' } ], - - // scope 类型(定义之后,可通过上下键选择) scopes: [ ['projects', '项目搭建'], ['components', '组件相关'], @@ -25,7 +22,6 @@ module.exports = { ['deps', '项目依赖'], ['auth', '对 auth 修改'], ['other', '其他修改'], - // 如果选择 custom,后面会让你再输入一个自定义的 scope。也可以不设置此项,把后面的 allowCustomScopes 设置为 true ['custom', '以上都不是?我要自定义'] ].map(([value, description]) => { return { @@ -33,30 +29,17 @@ module.exports = { name: `${value.padEnd(30)} (${description})` } }), - - // 交互提示信息 messages: { type: '确保本次提交遵循 Angular 规范!\n选择你要提交的类型:', scope: '\n选择一个 scope(可选):', - // 选择 scope: custom 时会出下面的提示 customScope: '请输入自定义的 scope:', subject: '填写简短精炼的变更描述:\n', - body: - '填写更加详细的变更描述(可选)。使用 "|" 换行:\n', + body: '填写更加详细的变更描述(可选)。使用 "|" 换行:\n', breaking: '列举非兼容性重大的变更(可选):\n', footer: '列举出所有变更的 ISSUES CLOSED(可选)。 例如: #31, #34:\n', confirmCommit: '确认提交?' }, - - // 设置只有 type 选择了 feat 或 fix,才询问 breaking message allowBreakingChanges: ['feat', 'fix'], - - // 跳过要询问的步骤 - // skipQuestions: ['body', 'footer'], - - // subject 限制长度 subjectLimit: 100, - breaklineChar: '|', // 支持 body 和 footer - // footerPrefix : 'ISSUES CLOSED:' - // askForBreakingChangeFirst : true, + breaklineChar: '|' } diff --git a/.eslintignore b/.eslintignore index 5ee0fc7c..e25b5e5b 100644 --- a/.eslintignore +++ b/.eslintignore @@ -10,7 +10,5 @@ lib /mock/ /public /docs -# /build .vscode .local -# vite.config.ts diff --git a/build/plugins/index.ts b/build/plugins/index.ts index 20316afd..f78b23b0 100644 --- a/build/plugins/index.ts +++ b/build/plugins/index.ts @@ -1,9 +1,9 @@ -import WindiCSS from 'vite-plugin-windicss'; import vue from './vue'; import html from './html'; import iconify from './iconify'; +import windicss from './windicss'; import visualizer from './visualizer'; -const plugins = [vue, ...html, ...iconify, WindiCSS(), visualizer]; +const plugins = [vue, ...html, ...iconify, windicss, visualizer]; export default plugins; diff --git a/build/plugins/windicss.ts b/build/plugins/windicss.ts new file mode 100644 index 00000000..79bd6a5a --- /dev/null +++ b/build/plugins/windicss.ts @@ -0,0 +1,3 @@ +import windiCSS from 'vite-plugin-windicss'; + +export default windiCSS(); diff --git a/doc/css书写规范.md b/doc/css书写规范.md new file mode 100644 index 00000000..83309f68 --- /dev/null +++ b/doc/css书写规范.md @@ -0,0 +1,20 @@ +css书写顺序 + +1.定位属性:position display float left top right bottom overflow clear z-index +2.自身属性:width height padding border margin background +3.文字样式:font-family font-size font-style font-weight font-varient color +4.文本属性:text-align vertical-align text-wrap text-transform text-indent text-decoration letter-spacing word-spacing white-space text-overflow +5.css3中新增属性:content box-shadow border-radius transform…… + +class类名的顺序: +1.自定义的class类名(遵循BEM命名法) +2.css插件提供的类名按照以上的css属性对应的顺序 + +例如:自定义类名结合tailwind css + +
+ diff --git a/doc/vue+TS书写规范.md b/doc/vue+TS书写规范.md new file mode 100644 index 00000000..41ce6094 --- /dev/null +++ b/doc/vue+TS书写规范.md @@ -0,0 +1,43 @@ +推荐script-setup写法 + +第一部分书写 +template + +第二部分 +script + +一、import的顺序 + +1.vue模块 +2.vue相关类型 +3.vue-router模块 +4.vue-router相关类型 +5.UI框架模块 +6.UI框架相关类型 +7.第三方依赖 +8.第三方依赖相关类型 +9.@/enum +10.@/setting +11.@/plugins +12.@/layouts +13.@/views +14.@/components +15.@/hooks +16.@/store +17.@/context +18.@/router +19.@/service +20.@/utils +21.@/interface +22.@/assets +23.相对路径依赖 + +二、TS类型声明 + +三、defineProps、defineEmits、defineExpose、withDefaults + +四、响应式use函数 + +五、变量、函数声明 + +六、vue生命周期函数、nextTick执行 diff --git a/package.json b/package.json index bd5db920..fd4e137b 100644 --- a/package.json +++ b/package.json @@ -25,21 +25,21 @@ "clipboard": "^2.0.8", "dayjs": "^1.10.7", "form-data": "^4.0.0", - "naive-ui": "^2.20.0", + "naive-ui": "^2.20.1", "pinia": "^2.0.0", "qs": "^6.10.1", "vue": "^3.2.20", "vue-router": "^4.0.11" }, "devDependencies": { - "@commitlint/cli": "^13.2.1", - "@commitlint/config-conventional": "^13.2.0", + "@commitlint/cli": "^14.1.0", + "@commitlint/config-conventional": "^14.1.0", "@iconify/json": "^1.1.417", "@iconify/vue": "^3.0.0", "@types/chroma-js": "^2.1.3", "@types/qs": "^6.9.7", - "@typescript-eslint/eslint-plugin": "^5.2.0", - "@typescript-eslint/parser": "^5.2.0", + "@typescript-eslint/eslint-plugin": "^5.3.0", + "@typescript-eslint/parser": "^5.3.0", "@vicons/antd": "^0.11.0", "@vicons/carbon": "^0.11.0", "@vicons/fa": "^0.11.0", @@ -49,9 +49,9 @@ "@vicons/material": "^0.11.0", "@vicons/tabler": "^0.11.0", "@vitejs/plugin-vue": "^1.9.4", - "@vue/compiler-sfc": "^3.2.20", + "@vue/compiler-sfc": "^3.2.21", "@vue/eslint-config-prettier": "^6.0.0", - "@vue/eslint-config-typescript": "^8.0.0", + "@vue/eslint-config-typescript": "^9.0.0", "commitizen": "^4.2.4", "cz-conventional-changelog": "^3.3.0", "cz-customizable": "^6.3.0", @@ -70,8 +70,8 @@ "rollup-plugin-visualizer": "^5.5.2", "sass": "^1.43.4", "typescript": "^4.4.4", - "unplugin-icons": "^0.12.16", - "unplugin-vue-components": "^0.16.0", + "unplugin-icons": "^0.12.17", + "unplugin-vue-components": "^0.17.0", "vite": "^2.6.13", "vite-plugin-html": "^2.1.1", "vite-plugin-windicss": "^1.4.12", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2383cdba..7ac3067a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2,14 +2,14 @@ lockfileVersion: 5.3 specifiers: '@better-scroll/core': ^2.4.2 - '@commitlint/cli': ^13.2.1 - '@commitlint/config-conventional': ^13.2.0 + '@commitlint/cli': ^14.1.0 + '@commitlint/config-conventional': ^14.1.0 '@iconify/json': ^1.1.417 '@iconify/vue': ^3.0.0 '@types/chroma-js': ^2.1.3 '@types/qs': ^6.9.7 - '@typescript-eslint/eslint-plugin': ^5.2.0 - '@typescript-eslint/parser': ^5.2.0 + '@typescript-eslint/eslint-plugin': ^5.3.0 + '@typescript-eslint/parser': ^5.3.0 '@vicons/antd': ^0.11.0 '@vicons/carbon': ^0.11.0 '@vicons/fa': ^0.11.0 @@ -19,9 +19,9 @@ specifiers: '@vicons/material': ^0.11.0 '@vicons/tabler': ^0.11.0 '@vitejs/plugin-vue': ^1.9.4 - '@vue/compiler-sfc': ^3.2.20 + '@vue/compiler-sfc': ^3.2.21 '@vue/eslint-config-prettier': ^6.0.0 - '@vue/eslint-config-typescript': ^8.0.0 + '@vue/eslint-config-typescript': ^9.0.0 '@vueuse/core': ^6.7.4 axios: ^0.24.0 chroma-js: ^2.1.2 @@ -40,7 +40,7 @@ specifiers: form-data: ^4.0.0 husky: ^7.0.4 lint-staged: ^11.2.6 - naive-ui: ^2.20.0 + naive-ui: ^2.20.1 patch-package: ^6.4.7 pinia: ^2.0.0 postinstall-postinstall: ^2.1.0 @@ -49,8 +49,8 @@ specifiers: rollup-plugin-visualizer: ^5.5.2 sass: ^1.43.4 typescript: ^4.4.4 - unplugin-icons: ^0.12.16 - unplugin-vue-components: ^0.16.0 + unplugin-icons: ^0.12.17 + unplugin-vue-components: ^0.17.0 vite: ^2.6.13 vite-plugin-html: ^2.1.1 vite-plugin-windicss: ^1.4.12 @@ -68,21 +68,21 @@ dependencies: clipboard: registry.nlark.com/clipboard/2.0.8 dayjs: registry.nlark.com/dayjs/1.10.7 form-data: 4.0.0 - naive-ui: registry.npmmirror.com/naive-ui/2.20.0_eslint@8.1.0+vue@3.2.20 + naive-ui: registry.npmmirror.com/naive-ui/2.20.1_eslint@8.1.0+vue@3.2.20 pinia: registry.npmmirror.com/pinia/2.0.0_typescript@4.4.4+vue@3.2.20 qs: 6.10.1 vue: registry.npmmirror.com/vue/3.2.20 vue-router: registry.nlark.com/vue-router/4.0.11_vue@3.2.20 devDependencies: - '@commitlint/cli': registry.npmmirror.com/@commitlint/cli/13.2.1 - '@commitlint/config-conventional': registry.npmmirror.com/@commitlint/config-conventional/13.2.0 + '@commitlint/cli': registry.npmmirror.com/@commitlint/cli/14.1.0 + '@commitlint/config-conventional': registry.npmmirror.com/@commitlint/config-conventional/14.1.0 '@iconify/json': registry.npmmirror.com/@iconify/json/1.1.417 '@iconify/vue': registry.nlark.com/@iconify/vue/3.0.0_vue@3.2.20 '@types/chroma-js': registry.nlark.com/@types/chroma-js/2.1.3 '@types/qs': registry.nlark.com/@types/qs/6.9.7 - '@typescript-eslint/eslint-plugin': registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.2.0_9a56ca1c5fc1d82b3da3317a5c6f9ab1 - '@typescript-eslint/parser': registry.npmmirror.com/@typescript-eslint/parser/5.2.0_eslint@8.1.0+typescript@4.4.4 + '@typescript-eslint/eslint-plugin': registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.3.0_f8873316f48f7781ccc3e081fc76e214 + '@typescript-eslint/parser': registry.npmmirror.com/@typescript-eslint/parser/5.3.0_eslint@8.1.0+typescript@4.4.4 '@vicons/antd': registry.nlark.com/@vicons/antd/0.11.0 '@vicons/carbon': registry.nlark.com/@vicons/carbon/0.11.0 '@vicons/fa': registry.nlark.com/@vicons/fa/0.11.0 @@ -92,9 +92,9 @@ devDependencies: '@vicons/material': registry.nlark.com/@vicons/material/0.11.0 '@vicons/tabler': registry.nlark.com/@vicons/tabler/0.11.0 '@vitejs/plugin-vue': registry.npmmirror.com/@vitejs/plugin-vue/1.9.4_vite@2.6.13 - '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc/3.2.20 + '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc/3.2.21 '@vue/eslint-config-prettier': 6.0.0_91df2dbc49a694d3127d896fd063ef53 - '@vue/eslint-config-typescript': registry.npmmirror.com/@vue/eslint-config-typescript/8.0.0_0f379a1a1772a0a439b573e54e1379e8 + '@vue/eslint-config-typescript': registry.npmmirror.com/@vue/eslint-config-typescript/9.0.0_6e2aa7baa83ea64b77c81400f52e762e commitizen: registry.nlark.com/commitizen/4.2.4 cz-conventional-changelog: registry.nlark.com/cz-conventional-changelog/3.3.0 cz-customizable: registry.nlark.com/cz-customizable/6.3.0 @@ -113,8 +113,8 @@ devDependencies: rollup-plugin-visualizer: registry.nlark.com/rollup-plugin-visualizer/5.5.2 sass: registry.npmmirror.com/sass/1.43.4 typescript: registry.npmmirror.com/typescript/4.4.4 - unplugin-icons: registry.npmmirror.com/unplugin-icons/0.12.16_8d243728697ba143b290806bcef1890d - unplugin-vue-components: registry.npmmirror.com/unplugin-vue-components/0.16.0_vite@2.6.13+vue@3.2.20 + unplugin-icons: registry.npmmirror.com/unplugin-icons/0.12.17_ffe6ba4676d23562dbecd516d3abe553 + unplugin-vue-components: registry.npmmirror.com/unplugin-vue-components/0.17.0_vite@2.6.13+vue@3.2.20 vite: registry.npmmirror.com/vite/2.6.13_sass@1.43.4 vite-plugin-html: registry.npmmirror.com/vite-plugin-html/2.1.1_vite@2.6.13 vite-plugin-windicss: registry.npmmirror.com/vite-plugin-windicss/1.4.12_vite@2.6.13 @@ -229,13 +229,6 @@ packages: object.entries: registry.nlark.com/object.entries/1.1.4 dev: true - /esquery/1.4.0: - resolution: {integrity: sha1-IUj/w4uC6McFff7UhCWz5h8PJKU=, tarball: esquery/download/esquery-1.4.0.tgz} - engines: {node: '>=0.10'} - dependencies: - estraverse: registry.npmmirror.com/estraverse/5.2.0 - dev: true - /expand-tilde/2.0.2: resolution: {integrity: sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=, tarball: expand-tilde/download/expand-tilde-2.0.2.tgz} engines: {node: '>=0.10.0'} @@ -396,15 +389,6 @@ packages: brace-expansion: registry.nlark.com/brace-expansion/1.1.11 dev: true - /minimist-options/4.1.0: - resolution: {integrity: sha1-wGVXE8U6ii69d/+iR9NCxA8BBhk=, tarball: minimist-options/download/minimist-options-4.1.0.tgz} - engines: {node: '>= 6'} - dependencies: - arrify: registry.nlark.com/arrify/1.0.1 - is-plain-obj: registry.nlark.com/is-plain-obj/1.1.0 - kind-of: registry.nlark.com/kind-of/6.0.3 - dev: true - /minimist/1.2.5: resolution: {integrity: sha1-Z9ZgFLZqaoqqDAg8X9WN9OTpdgI=, tarball: minimist/download/minimist-1.2.5.tgz} dev: true @@ -518,11 +502,6 @@ packages: hasBin: true dev: true - /semver/6.3.0: - resolution: {integrity: sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=, tarball: semver/download/semver-6.3.0.tgz} - hasBin: true - dev: true - /shebang-command/1.2.0: resolution: {integrity: sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=, tarball: shebang-command/download/shebang-command-1.2.0.tgz} engines: {node: '>=0.10.0'} @@ -636,7 +615,7 @@ packages: dev: true registry.nlark.com/@antfu/utils/0.3.0: - resolution: {integrity: sha1-YwbEO1Kog72Olz4+2N1kJIQYvMQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@antfu/utils/download/@antfu/utils-0.3.0.tgz} + resolution: {integrity: sha1-YwbEO1Kog72Olz4+2N1kJIQYvMQ=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@antfu/utils/download/@antfu/utils-0.3.0.tgz} name: '@antfu/utils' version: 0.3.0 dependencies: @@ -672,7 +651,7 @@ packages: dev: true registry.nlark.com/@css-render/plugin-bem/0.15.6: - resolution: {integrity: sha1-9/6kdN9PMmLvn7gBetocuXEs14o=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@css-render/plugin-bem/download/@css-render/plugin-bem-0.15.6.tgz} + resolution: {integrity: sha1-9/6kdN9PMmLvn7gBetocuXEs14o=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@css-render/plugin-bem/download/@css-render/plugin-bem-0.15.6.tgz} name: '@css-render/plugin-bem' version: 0.15.6 dependencies: @@ -680,7 +659,7 @@ packages: dev: false registry.nlark.com/@css-render/vue3-ssr/0.15.6_vue@3.2.20: - resolution: {integrity: sha1-TtwpS9p+bKIV9sfsniyDhWRQacM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@css-render/vue3-ssr/download/@css-render/vue3-ssr-0.15.6.tgz} + resolution: {integrity: sha1-TtwpS9p+bKIV9sfsniyDhWRQacM=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@css-render/vue3-ssr/download/@css-render/vue3-ssr-0.15.6.tgz} id: registry.nlark.com/@css-render/vue3-ssr/0.15.6 name: '@css-render/vue3-ssr' version: 0.15.6 @@ -717,7 +696,7 @@ packages: name: '@emotion/hash' version: 0.8.0 - registry.nlark.com/@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2_4b317b069e4dad36c8619feea2045a32: + registry.nlark.com/@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2_3fdcc7bc724bd900a681b5e9457ed94a: resolution: {integrity: sha1-7qRjWCjd43KDiwkJaT69mq/uwi0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@endemolshinegroup/cosmiconfig-typescript-loader/download/@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2.tgz} id: registry.nlark.com/@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2 name: '@endemolshinegroup/cosmiconfig-typescript-loader' @@ -729,7 +708,7 @@ packages: cosmiconfig: registry.nlark.com/cosmiconfig/7.0.1 lodash.get: registry.nlark.com/lodash.get/4.4.2 make-error: registry.nlark.com/make-error/1.3.6 - ts-node: registry.nlark.com/ts-node/9.1.1_typescript@4.4.3 + ts-node: registry.nlark.com/ts-node/9.1.1_typescript@4.4.4 tslib: registry.nlark.com/tslib/2.3.1 transitivePeerDependencies: - typescript @@ -753,7 +732,7 @@ packages: dev: true registry.nlark.com/@nodelib/fs.scandir/2.1.5: - resolution: {integrity: sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@nodelib/fs.scandir/download/@nodelib/fs.scandir-2.1.5.tgz} + resolution: {integrity: sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@nodelib/fs.scandir/download/@nodelib/fs.scandir-2.1.5.tgz} name: '@nodelib/fs.scandir' version: 2.1.5 engines: {node: '>= 8'} @@ -763,14 +742,14 @@ packages: dev: true registry.nlark.com/@nodelib/fs.stat/2.0.5: - resolution: {integrity: sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@nodelib/fs.stat/download/@nodelib/fs.stat-2.0.5.tgz} + resolution: {integrity: sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@nodelib/fs.stat/download/@nodelib/fs.stat-2.0.5.tgz} name: '@nodelib/fs.stat' version: 2.0.5 engines: {node: '>= 8'} dev: true registry.nlark.com/@nodelib/fs.walk/1.2.8: - resolution: {integrity: sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@nodelib/fs.walk/download/@nodelib/fs.walk-1.2.8.tgz} + resolution: {integrity: sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@nodelib/fs.walk/download/@nodelib/fs.walk-1.2.8.tgz} name: '@nodelib/fs.walk' version: 1.2.8 engines: {node: '>= 8'} @@ -780,7 +759,7 @@ packages: dev: true registry.nlark.com/@rollup/pluginutils/4.1.1: - resolution: {integrity: sha1-HU2obdTt7RVlalfZM/2iuaCNR+w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@rollup/pluginutils/download/@rollup/pluginutils-4.1.1.tgz} + resolution: {integrity: sha1-HU2obdTt7RVlalfZM/2iuaCNR+w=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@rollup/pluginutils/download/@rollup/pluginutils-4.1.1.tgz} name: '@rollup/pluginutils' version: 4.1.1 engines: {node: '>= 8.0.0'} @@ -823,7 +802,7 @@ packages: pretty-format: registry.npmmirror.com/pretty-format/26.6.2 registry.nlark.com/@types/json-schema/7.0.9: - resolution: {integrity: sha1-l+3JA36gw4WFMgsolk3eOznkZg0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/json-schema/download/@types/json-schema-7.0.9.tgz} + resolution: {integrity: sha1-l+3JA36gw4WFMgsolk3eOznkZg0=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/json-schema/download/@types/json-schema-7.0.9.tgz} name: '@types/json-schema' version: 7.0.9 dev: true @@ -835,7 +814,7 @@ packages: dev: true registry.nlark.com/@types/lodash-es/4.17.5: - resolution: {integrity: sha1-HD/dFoSdhK6kOJCxxg2jeftQE1M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/lodash-es/download/@types/lodash-es-4.17.5.tgz} + resolution: {integrity: sha1-HD/dFoSdhK6kOJCxxg2jeftQE1M=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/lodash-es/download/@types/lodash-es-4.17.5.tgz} name: '@types/lodash-es' version: 4.17.5 dependencies: @@ -843,13 +822,13 @@ packages: dev: false registry.nlark.com/@types/minimist/1.2.2: - resolution: {integrity: sha1-7nceK6Sz3Fs3KTXVSf2WF780W4w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/minimist/download/@types/minimist-1.2.2.tgz} + resolution: {integrity: sha1-7nceK6Sz3Fs3KTXVSf2WF780W4w=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/minimist/download/@types/minimist-1.2.2.tgz} name: '@types/minimist' version: 1.2.2 dev: true registry.nlark.com/@types/normalize-package-data/2.4.1: - resolution: {integrity: sha1-0zV0eaD9/dWQf+Z+F+CoXJBuEwE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/normalize-package-data/download/@types/normalize-package-data-2.4.1.tgz} + resolution: {integrity: sha1-0zV0eaD9/dWQf+Z+F+CoXJBuEwE=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/normalize-package-data/download/@types/normalize-package-data-2.4.1.tgz} name: '@types/normalize-package-data' version: 2.4.1 dev: true @@ -867,7 +846,7 @@ packages: dev: true registry.nlark.com/@types/throttle-debounce/2.1.0: - resolution: {integrity: sha1-HD32JL/Eti+ZLTASuExW1B6rN3Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/throttle-debounce/download/@types/throttle-debounce-2.1.0.tgz} + resolution: {integrity: sha1-HD32JL/Eti+ZLTASuExW1B6rN3Y=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/throttle-debounce/download/@types/throttle-debounce-2.1.0.tgz} name: '@types/throttle-debounce' version: 2.1.0 dev: true @@ -926,7 +905,7 @@ packages: dev: true registry.nlark.com/JSONStream/1.3.5: - resolution: {integrity: sha1-MgjB8I06TZkmGrZPkjArwV4RHKA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/JSONStream/download/JSONStream-1.3.5.tgz} + resolution: {integrity: sha1-MgjB8I06TZkmGrZPkjArwV4RHKA=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/JSONStream/download/JSONStream-1.3.5.tgz} name: JSONStream version: 1.3.5 hasBin: true @@ -935,17 +914,6 @@ packages: through: registry.nlark.com/through/2.3.8 dev: true - registry.nlark.com/acorn-jsx/5.3.2_acorn@7.4.1: - resolution: {integrity: sha1-ftW7VZCLOy8bxVxq8WU7rafweTc=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/acorn-jsx/download/acorn-jsx-5.3.2.tgz} - id: registry.nlark.com/acorn-jsx/5.3.2 - name: acorn-jsx - version: 5.3.2 - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - acorn: registry.nlark.com/acorn/7.4.1 - dev: true - registry.nlark.com/acorn-jsx/5.3.2_acorn@8.5.0: resolution: {integrity: sha1-ftW7VZCLOy8bxVxq8WU7rafweTc=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/acorn-jsx/download/acorn-jsx-5.3.2.tgz} id: registry.nlark.com/acorn-jsx/5.3.2 @@ -1048,7 +1016,7 @@ packages: color-convert: registry.nlark.com/color-convert/2.0.1 registry.nlark.com/anymatch/3.1.2: - resolution: {integrity: sha1-wFV8CWrzLxBhmPT04qODU343hxY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/anymatch/download/anymatch-3.1.2.tgz} + resolution: {integrity: sha1-wFV8CWrzLxBhmPT04qODU343hxY=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/anymatch/download/anymatch-3.1.2.tgz} name: anymatch version: 3.1.2 engines: {node: '>= 8'} @@ -1078,20 +1046,20 @@ packages: dev: true registry.nlark.com/array-ify/1.0.0: - resolution: {integrity: sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/array-ify/download/array-ify-1.0.0.tgz} + resolution: {integrity: sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/array-ify/download/array-ify-1.0.0.tgz} name: array-ify version: 1.0.0 dev: true registry.nlark.com/array-union/2.1.0: - resolution: {integrity: sha1-t5hCCtvrHego2ErNii4j0+/oXo0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/array-union/download/array-union-2.1.0.tgz} + resolution: {integrity: sha1-t5hCCtvrHego2ErNii4j0+/oXo0=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/array-union/download/array-union-2.1.0.tgz} name: array-union version: 2.1.0 engines: {node: '>=8'} dev: true registry.nlark.com/arrify/1.0.1: - resolution: {integrity: sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/arrify/download/arrify-1.0.1.tgz} + resolution: {integrity: sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/arrify/download/arrify-1.0.1.tgz} name: arrify version: 1.0.1 engines: {node: '>=0.10.0'} @@ -1144,7 +1112,7 @@ packages: dev: true registry.nlark.com/binary-extensions/2.2.0: - resolution: {integrity: sha1-dfUC7q+f/eQvyYgpZFvk6na9ni0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/binary-extensions/download/binary-extensions-2.2.0.tgz} + resolution: {integrity: sha1-dfUC7q+f/eQvyYgpZFvk6na9ni0=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/binary-extensions/download/binary-extensions-2.2.0.tgz} name: binary-extensions version: 2.2.0 engines: {node: '>=8'} @@ -1175,7 +1143,7 @@ packages: dev: true registry.nlark.com/builtins/4.0.0: - resolution: {integrity: sha1-qDRUIN6CBo/cTWVZ0EVkA6j7GQU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/builtins/download/builtins-4.0.0.tgz} + resolution: {integrity: sha1-qDRUIN6CBo/cTWVZ0EVkA6j7GQU=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/builtins/download/builtins-4.0.0.tgz} name: builtins version: 4.0.0 dependencies: @@ -1208,7 +1176,7 @@ packages: dev: true registry.nlark.com/camelcase/5.3.1: - resolution: {integrity: sha1-48mzFWnhBoEd8kL3FXJaH0xJQyA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/camelcase/download/camelcase-5.3.1.tgz} + resolution: {integrity: sha1-48mzFWnhBoEd8kL3FXJaH0xJQyA=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/camelcase/download/camelcase-5.3.1.tgz} name: camelcase version: 5.3.1 engines: {node: '>=6'} @@ -1243,7 +1211,7 @@ packages: dev: true registry.nlark.com/chokidar/3.5.2: - resolution: {integrity: sha1-26OXb8rbAW9m/TZQIdkWANAcHnU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/chokidar/download/chokidar-3.5.2.tgz} + resolution: {integrity: sha1-26OXb8rbAW9m/TZQIdkWANAcHnU=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/chokidar/download/chokidar-3.5.2.tgz} name: chokidar version: 3.5.2 engines: {node: '>= 8.10.0'} @@ -1360,7 +1328,7 @@ packages: dev: true registry.nlark.com/compare-func/2.0.0: - resolution: {integrity: sha1-+2XnXtvd/S5WhVTotbBf/3pR/LM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/compare-func/download/compare-func-2.0.0.tgz?cache=0&sync_timestamp=1631584885192&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcompare-func%2Fdownload%2Fcompare-func-2.0.0.tgz} + resolution: {integrity: sha1-+2XnXtvd/S5WhVTotbBf/3pR/LM=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/compare-func/download/compare-func-2.0.0.tgz?cache=0&sync_timestamp=1631584885192&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcompare-func%2Fdownload%2Fcompare-func-2.0.0.tgz} name: compare-func version: 2.0.0 dependencies: @@ -1390,7 +1358,7 @@ packages: dev: true registry.nlark.com/conventional-changelog-angular/5.0.12: - resolution: {integrity: sha1-yXm4uSHL/iZALrPaW7/aAthlork=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/conventional-changelog-angular/download/conventional-changelog-angular-5.0.12.tgz} + resolution: {integrity: sha1-yXm4uSHL/iZALrPaW7/aAthlork=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/conventional-changelog-angular/download/conventional-changelog-angular-5.0.12.tgz} name: conventional-changelog-angular version: 5.0.12 engines: {node: '>=10'} @@ -1410,21 +1378,6 @@ packages: q: registry.nlark.com/q/1.5.1 dev: true - registry.nlark.com/conventional-commits-parser/3.2.2: - resolution: {integrity: sha1-GQ+5kAxuAr4MC8qbA9V+JJgmOf0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/conventional-commits-parser/download/conventional-commits-parser-3.2.2.tgz} - name: conventional-commits-parser - version: 3.2.2 - engines: {node: '>=10'} - hasBin: true - dependencies: - is-text-path: registry.nlark.com/is-text-path/1.0.1 - JSONStream: registry.nlark.com/JSONStream/1.3.5 - lodash: registry.nlark.com/lodash/4.17.21 - meow: registry.nlark.com/meow/8.1.2 - split2: registry.nlark.com/split2/3.2.2 - through2: registry.nlark.com/through2/4.0.2 - dev: true - registry.nlark.com/cosmiconfig/7.0.1: resolution: {integrity: sha1-cU11ZSLKzoZ4Z8y0R0xdAbuuXW0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cosmiconfig/download/cosmiconfig-7.0.1.tgz} name: cosmiconfig @@ -1497,7 +1450,7 @@ packages: longest: 2.0.1 word-wrap: 1.2.3 optionalDependencies: - '@commitlint/load': registry.npmmirror.com/@commitlint/load/13.2.1 + '@commitlint/load': registry.npmmirror.com/@commitlint/load/14.1.0 dev: true registry.nlark.com/cz-conventional-changelog/3.3.0: @@ -1513,7 +1466,7 @@ packages: longest: 2.0.1 word-wrap: 1.2.3 optionalDependencies: - '@commitlint/load': registry.npmmirror.com/@commitlint/load/13.2.1 + '@commitlint/load': registry.npmmirror.com/@commitlint/load/14.1.0 dev: true registry.nlark.com/cz-customizable/6.3.0: @@ -1531,14 +1484,14 @@ packages: dev: true registry.nlark.com/dargs/7.0.0: - resolution: {integrity: sha1-BAFcQd4Ly2nshAUPPZvgyvjW1cw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/dargs/download/dargs-7.0.0.tgz} + resolution: {integrity: sha1-BAFcQd4Ly2nshAUPPZvgyvjW1cw=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/dargs/download/dargs-7.0.0.tgz} name: dargs version: 7.0.0 engines: {node: '>=8'} dev: true registry.nlark.com/date-fns-tz/1.1.6_date-fns@2.25.0: - resolution: {integrity: sha1-k8vzVOKuss0xL/oy5GLBlDzyCo4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/date-fns-tz/download/date-fns-tz-1.1.6.tgz} + resolution: {integrity: sha1-k8vzVOKuss0xL/oy5GLBlDzyCo4=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/date-fns-tz/download/date-fns-tz-1.1.6.tgz} id: registry.nlark.com/date-fns-tz/1.1.6 name: date-fns-tz version: 1.1.6 @@ -1571,7 +1524,7 @@ packages: dev: true registry.nlark.com/debug/4.3.2: - resolution: {integrity: sha1-8KScGKyHeeMdSgxgKd+3aHPHQos=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/debug/download/debug-4.3.2.tgz} + resolution: {integrity: sha1-8KScGKyHeeMdSgxgKd+3aHPHQos=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/debug/download/debug-4.3.2.tgz} name: debug version: 4.3.2 engines: {node: '>=6.0'} @@ -1585,7 +1538,7 @@ packages: dev: true registry.nlark.com/debug/4.3.2_supports-color@8.1.1: - resolution: {integrity: sha1-8KScGKyHeeMdSgxgKd+3aHPHQos=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/debug/download/debug-4.3.2.tgz} + resolution: {integrity: sha1-8KScGKyHeeMdSgxgKd+3aHPHQos=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/debug/download/debug-4.3.2.tgz} id: registry.nlark.com/debug/4.3.2 name: debug version: 4.3.2 @@ -1601,13 +1554,13 @@ packages: dev: true registry.nlark.com/decamelize-keys/1.1.0: - resolution: {integrity: sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/decamelize-keys/download/decamelize-keys-1.1.0.tgz} + resolution: {integrity: sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/decamelize-keys/download/decamelize-keys-1.1.0.tgz} name: decamelize-keys version: 1.1.0 engines: {node: '>=0.10.0'} dependencies: decamelize: registry.npmmirror.com/decamelize/1.2.0 - map-obj: registry.nlark.com/map-obj/1.0.1 + map-obj: registry.npmmirror.com/map-obj/1.0.1 dev: true registry.nlark.com/deep-is/0.1.3: @@ -1652,7 +1605,7 @@ packages: dev: true registry.nlark.com/dir-glob/3.0.1: - resolution: {integrity: sha1-Vtv3PZkqSpO6FYT0U0Bj/S5BcX8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/dir-glob/download/dir-glob-3.0.1.tgz} + resolution: {integrity: sha1-Vtv3PZkqSpO6FYT0U0Bj/S5BcX8=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/dir-glob/download/dir-glob-3.0.1.tgz} name: dir-glob version: 3.0.1 engines: {node: '>=8'} @@ -1729,7 +1682,7 @@ packages: dev: true registry.nlark.com/dot-prop/5.3.0: - resolution: {integrity: sha1-kMzOcIzZzYLMTcjD3dmr3VWyDog=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/dot-prop/download/dot-prop-5.3.0.tgz} + resolution: {integrity: sha1-kMzOcIzZzYLMTcjD3dmr3VWyDog=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/dot-prop/download/dot-prop-5.3.0.tgz} name: dot-prop version: 5.3.0 engines: {node: '>=8'} @@ -1917,7 +1870,7 @@ packages: dev: true registry.nlark.com/eslint-scope/5.1.1: - resolution: {integrity: sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eslint-scope/download/eslint-scope-5.1.1.tgz?cache=0&sync_timestamp=1631500167228&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-scope%2Fdownload%2Feslint-scope-5.1.1.tgz} + resolution: {integrity: sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eslint-scope/download/eslint-scope-5.1.1.tgz?cache=0&sync_timestamp=1631500167228&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-scope%2Fdownload%2Feslint-scope-5.1.1.tgz} name: eslint-scope version: 5.1.1 engines: {node: '>=8.0.0'} @@ -1948,13 +1901,6 @@ packages: eslint-visitor-keys: registry.nlark.com/eslint-visitor-keys/2.1.0 dev: true - registry.nlark.com/eslint-visitor-keys/1.3.0: - resolution: {integrity: sha1-MOvR73wv3/AcOk8VEESvJfqwUj4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz} - name: eslint-visitor-keys - version: 1.3.0 - engines: {node: '>=4'} - dev: true - registry.nlark.com/eslint-visitor-keys/2.1.0: resolution: {integrity: sha1-9lMoJZMFknOSyTjtROsKXJsr0wM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-2.1.0.tgz} name: eslint-visitor-keys @@ -1968,17 +1914,6 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - registry.nlark.com/espree/6.2.1: - resolution: {integrity: sha1-d/xy4f10SiBSwg84pbV1gy6Cc0o=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/espree/download/espree-6.2.1.tgz} - name: espree - version: 6.2.1 - engines: {node: '>=6.0.0'} - dependencies: - acorn: registry.nlark.com/acorn/7.4.1 - acorn-jsx: registry.nlark.com/acorn-jsx/5.3.2_acorn@7.4.1 - eslint-visitor-keys: registry.nlark.com/eslint-visitor-keys/1.3.0 - dev: true - registry.nlark.com/espree/9.0.0: resolution: {integrity: sha1-6QopZWmCKFAudxx6WEibGp0QcJA=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/espree/download/espree-9.0.0.tgz} name: espree @@ -2023,7 +1958,7 @@ packages: dev: true registry.nlark.com/estree-walker/2.0.2: - resolution: {integrity: sha1-UvAQF4wqTBF6d1fP6UKtt9LaTKw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/estree-walker/download/estree-walker-2.0.2.tgz} + resolution: {integrity: sha1-UvAQF4wqTBF6d1fP6UKtt9LaTKw=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/estree-walker/download/estree-walker-2.0.2.tgz} name: estree-walker version: 2.0.2 @@ -2074,7 +2009,7 @@ packages: dev: true registry.nlark.com/fast-glob/3.2.7: - resolution: {integrity: sha1-/Wy3otfpqnp4RhEehaGW1rL3ZqE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fast-glob/download/fast-glob-3.2.7.tgz} + resolution: {integrity: sha1-/Wy3otfpqnp4RhEehaGW1rL3ZqE=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fast-glob/download/fast-glob-3.2.7.tgz} name: fast-glob version: 3.2.7 engines: {node: '>=8'} @@ -2099,7 +2034,7 @@ packages: dev: true registry.nlark.com/fastq/1.11.1: - resolution: {integrity: sha1-XYF1quF9thlH+LFiz8f2MmTSKAc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fastq/download/fastq-1.11.1.tgz} + resolution: {integrity: sha1-XYF1quF9thlH+LFiz8f2MmTSKAc=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fastq/download/fastq-1.11.1.tgz} name: fastq version: 1.11.1 dependencies: @@ -2235,7 +2170,7 @@ packages: dev: true registry.nlark.com/fsevents/2.3.2: - resolution: {integrity: sha1-ilJveLj99GI7cJ4Ll1xSwkwC/Ro=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fsevents/download/fsevents-2.3.2.tgz} + resolution: {integrity: sha1-ilJveLj99GI7cJ4Ll1xSwkwC/Ro=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fsevents/download/fsevents-2.3.2.tgz} name: fsevents version: 2.3.2 engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -2295,7 +2230,7 @@ packages: dev: true registry.nlark.com/git-raw-commits/2.0.10: - resolution: {integrity: sha1-4iVe2VY7HJw+pr0FgGQQKQKXu8E=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/git-raw-commits/download/git-raw-commits-2.0.10.tgz} + resolution: {integrity: sha1-4iVe2VY7HJw+pr0FgGQQKQKXu8E=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/git-raw-commits/download/git-raw-commits-2.0.10.tgz} name: git-raw-commits version: 2.0.10 engines: {node: '>=10'} @@ -2304,7 +2239,7 @@ packages: dargs: registry.nlark.com/dargs/7.0.0 lodash: registry.nlark.com/lodash/4.17.21 meow: registry.nlark.com/meow/8.1.2 - split2: registry.nlark.com/split2/3.2.2 + split2: registry.npmmirror.com/split2/3.2.2 through2: registry.nlark.com/through2/4.0.2 dev: true @@ -2335,7 +2270,7 @@ packages: dev: true registry.nlark.com/global-dirs/0.1.1: - resolution: {integrity: sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/global-dirs/download/global-dirs-0.1.1.tgz} + resolution: {integrity: sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/global-dirs/download/global-dirs-0.1.1.tgz} name: global-dirs version: 0.1.1 engines: {node: '>=4'} @@ -2353,7 +2288,7 @@ packages: dev: true registry.nlark.com/globby/11.0.4: - resolution: {integrity: sha1-LLr/d8Lypi5x6bKBOme5ejowAaU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/globby/download/globby-11.0.4.tgz} + resolution: {integrity: sha1-LLr/d8Lypi5x6bKBOme5ejowAaU=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/globby/download/globby-11.0.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobby%2Fdownload%2Fglobby-11.0.4.tgz} name: globby version: 11.0.4 engines: {node: '>=10'} @@ -2381,7 +2316,7 @@ packages: dev: true registry.nlark.com/hard-rejection/2.1.0: - resolution: {integrity: sha1-HG7aXBaFxjlCdm15u0Cudzzs2IM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/hard-rejection/download/hard-rejection-2.1.0.tgz} + resolution: {integrity: sha1-HG7aXBaFxjlCdm15u0Cudzzs2IM=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/hard-rejection/download/hard-rejection-2.1.0.tgz} name: hard-rejection version: 2.1.0 engines: {node: '>=6'} @@ -2438,13 +2373,13 @@ packages: dev: true registry.nlark.com/hosted-git-info/2.8.9: - resolution: {integrity: sha1-3/wL+aIcAiCQkPKqaUKeFBTa8/k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/hosted-git-info/download/hosted-git-info-2.8.9.tgz} + resolution: {integrity: sha1-3/wL+aIcAiCQkPKqaUKeFBTa8/k=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/hosted-git-info/download/hosted-git-info-2.8.9.tgz} name: hosted-git-info version: 2.8.9 dev: true registry.nlark.com/hosted-git-info/4.0.2: - resolution: {integrity: sha1-XkJVB+7eT+qEa3Ji8IOEVsQgmWE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/hosted-git-info/download/hosted-git-info-4.0.2.tgz} + resolution: {integrity: sha1-XkJVB+7eT+qEa3Ji8IOEVsQgmWE=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/hosted-git-info/download/hosted-git-info-4.0.2.tgz} name: hosted-git-info version: 4.0.2 engines: {node: '>=10'} @@ -2503,7 +2438,7 @@ packages: dev: true registry.nlark.com/ignore/5.1.8: - resolution: {integrity: sha1-8VCotQo0KJsz4i9YiavU2AFvDlc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ignore/download/ignore-5.1.8.tgz} + resolution: {integrity: sha1-8VCotQo0KJsz4i9YiavU2AFvDlc=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ignore/download/ignore-5.1.8.tgz} name: ignore version: 5.1.8 engines: {node: '>= 4'} @@ -2549,7 +2484,7 @@ packages: dev: true registry.nlark.com/ini/1.3.8: - resolution: {integrity: sha1-op2kJbSIBvNHZ6Tvzjlyaa8oQyw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ini/download/ini-1.3.8.tgz} + resolution: {integrity: sha1-op2kJbSIBvNHZ6Tvzjlyaa8oQyw=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ini/download/ini-1.3.8.tgz} name: ini version: 1.3.8 dev: true @@ -2601,7 +2536,7 @@ packages: dev: true registry.nlark.com/is-binary-path/2.1.0: - resolution: {integrity: sha1-6h9/O4DwZCNug0cPhsCcJU+0Wwk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-binary-path/download/is-binary-path-2.1.0.tgz} + resolution: {integrity: sha1-6h9/O4DwZCNug0cPhsCcJU+0Wwk=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-binary-path/download/is-binary-path-2.1.0.tgz} name: is-binary-path version: 2.1.0 engines: {node: '>=8'} @@ -2697,14 +2632,14 @@ packages: dev: true registry.nlark.com/is-obj/2.0.0: - resolution: {integrity: sha1-Rz+wXZc3BeP9liBUUBjKjiLvSYI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-obj/download/is-obj-2.0.0.tgz} + resolution: {integrity: sha1-Rz+wXZc3BeP9liBUUBjKjiLvSYI=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-obj/download/is-obj-2.0.0.tgz} name: is-obj version: 2.0.0 engines: {node: '>=8'} dev: true registry.nlark.com/is-plain-obj/1.1.0: - resolution: {integrity: sha1-caUMhCnfync8kqOQpKA7OfzVHT4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-plain-obj/download/is-plain-obj-1.1.0.tgz} + resolution: {integrity: sha1-caUMhCnfync8kqOQpKA7OfzVHT4=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-plain-obj/download/is-plain-obj-1.1.0.tgz} name: is-plain-obj version: 1.1.0 engines: {node: '>=0.10.0'} @@ -2759,7 +2694,7 @@ packages: dev: true registry.nlark.com/is-text-path/1.0.1: - resolution: {integrity: sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-text-path/download/is-text-path-1.0.1.tgz} + resolution: {integrity: sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-text-path/download/is-text-path-1.0.1.tgz} name: is-text-path version: 1.0.1 engines: {node: '>=0.10.0'} @@ -2874,7 +2809,7 @@ packages: dev: true registry.nlark.com/jsonparse/1.3.1: - resolution: {integrity: sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/jsonparse/download/jsonparse-1.3.1.tgz} + resolution: {integrity: sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/jsonparse/download/jsonparse-1.3.1.tgz} name: jsonparse version: 1.3.1 engines: {'0': node >= 0.2.0} @@ -2890,7 +2825,7 @@ packages: dev: true registry.nlark.com/kind-of/6.0.3: - resolution: {integrity: sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz} + resolution: {integrity: sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/kind-of/download/kind-of-6.0.3.tgz} name: kind-of version: 6.0.3 engines: {node: '>=0.10.0'} @@ -2905,7 +2840,7 @@ packages: dev: true registry.nlark.com/kolorist/1.5.0: - resolution: {integrity: sha1-oG990R0bX9t0PXnIrNTh7Ly9ibM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/kolorist/download/kolorist-1.5.0.tgz} + resolution: {integrity: sha1-oG990R0bX9t0PXnIrNTh7Ly9ibM=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/kolorist/download/kolorist-1.5.0.tgz} name: kolorist version: 1.5.0 dev: true @@ -2927,7 +2862,7 @@ packages: dev: true registry.nlark.com/locate-path/2.0.0: - resolution: {integrity: sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/locate-path/download/locate-path-2.0.0.tgz} + resolution: {integrity: sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/locate-path/download/locate-path-2.0.0.tgz} name: locate-path version: 2.0.0 engines: {node: '>=4'} @@ -2937,7 +2872,7 @@ packages: dev: true registry.nlark.com/locate-path/5.0.0: - resolution: {integrity: sha1-Gvujlq/WdqbUJQTQpno6frn2KqA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/locate-path/download/locate-path-5.0.0.tgz} + resolution: {integrity: sha1-Gvujlq/WdqbUJQTQpno6frn2KqA=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/locate-path/download/locate-path-5.0.0.tgz} name: locate-path version: 5.0.0 engines: {node: '>=8'} @@ -2946,7 +2881,7 @@ packages: dev: true registry.nlark.com/locate-path/6.0.0: - resolution: {integrity: sha1-VTIeswn+u8WcSAHZMackUqaB0oY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/locate-path/download/locate-path-6.0.0.tgz} + resolution: {integrity: sha1-VTIeswn+u8WcSAHZMackUqaB0oY=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/locate-path/download/locate-path-6.0.0.tgz} name: locate-path version: 6.0.0 engines: {node: '>=10'} @@ -2955,7 +2890,7 @@ packages: dev: true registry.nlark.com/lodash-es/4.17.21: - resolution: {integrity: sha1-Q+YmxG5lkbd1C+srUBFzkMYJ4+4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lodash-es/download/lodash-es-4.17.21.tgz} + resolution: {integrity: sha1-Q+YmxG5lkbd1C+srUBFzkMYJ4+4=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lodash-es/download/lodash-es-4.17.21.tgz} name: lodash-es version: 4.17.21 dev: false @@ -2973,7 +2908,7 @@ packages: dev: true registry.nlark.com/lodash/4.17.21: - resolution: {integrity: sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lodash/download/lodash-4.17.21.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Flodash%2Fdownload%2Flodash-4.17.21.tgz} + resolution: {integrity: sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lodash/download/lodash-4.17.21.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Flodash%2Fdownload%2Flodash-4.17.21.tgz} name: lodash version: 4.17.21 @@ -3007,22 +2942,8 @@ packages: version: 1.3.6 dev: true - registry.nlark.com/map-obj/1.0.1: - resolution: {integrity: sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/map-obj/download/map-obj-1.0.1.tgz} - name: map-obj - version: 1.0.1 - engines: {node: '>=0.10.0'} - dev: true - - registry.nlark.com/map-obj/4.2.1: - resolution: {integrity: sha1-5Oo5nbyXmuc1yDyGPdMb3zZCd7c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/map-obj/download/map-obj-4.2.1.tgz} - name: map-obj - version: 4.2.1 - engines: {node: '>=8'} - dev: true - registry.nlark.com/meow/8.1.2: - resolution: {integrity: sha1-vL5FvaDuFynTUMA8/8g5WjbE6Jc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/meow/download/meow-8.1.2.tgz} + resolution: {integrity: sha1-vL5FvaDuFynTUMA8/8g5WjbE6Jc=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/meow/download/meow-8.1.2.tgz} name: meow version: 8.1.2 engines: {node: '>=10'} @@ -3031,9 +2952,9 @@ packages: camelcase-keys: registry.npmmirror.com/camelcase-keys/6.2.2 decamelize-keys: registry.nlark.com/decamelize-keys/1.1.0 hard-rejection: registry.nlark.com/hard-rejection/2.1.0 - minimist-options: 4.1.0 + minimist-options: registry.nlark.com/minimist-options/4.1.0 normalize-package-data: registry.nlark.com/normalize-package-data/3.0.3 - read-pkg-up: registry.nlark.com/read-pkg-up/7.0.1 + read-pkg-up: registry.npmmirror.com/read-pkg-up/7.0.1 redent: registry.nlark.com/redent/3.0.0 trim-newlines: registry.nlark.com/trim-newlines/3.0.1 type-fest: registry.npmmirror.com/type-fest/0.18.1 @@ -3053,7 +2974,7 @@ packages: dev: true registry.nlark.com/merge2/1.4.1: - resolution: {integrity: sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/merge2/download/merge2-1.4.1.tgz} + resolution: {integrity: sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/merge2/download/merge2-1.4.1.tgz} name: merge2 version: 1.4.1 engines: {node: '>= 8'} @@ -3100,7 +3021,7 @@ packages: dev: true registry.nlark.com/min-indent/1.0.1: - resolution: {integrity: sha1-pj9oFnOzBXH76LwlaGrnRu76mGk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/min-indent/download/min-indent-1.0.1.tgz} + resolution: {integrity: sha1-pj9oFnOzBXH76LwlaGrnRu76mGk=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/min-indent/download/min-indent-1.0.1.tgz} name: min-indent version: 1.0.1 engines: {node: '>=4'} @@ -3114,6 +3035,17 @@ packages: brace-expansion: registry.nlark.com/brace-expansion/1.1.11 dev: true + registry.nlark.com/minimist-options/4.1.0: + resolution: {integrity: sha1-wGVXE8U6ii69d/+iR9NCxA8BBhk=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/minimist-options/download/minimist-options-4.1.0.tgz} + name: minimist-options + version: 4.1.0 + engines: {node: '>= 6'} + dependencies: + arrify: registry.nlark.com/arrify/1.0.1 + is-plain-obj: registry.nlark.com/is-plain-obj/1.1.0 + kind-of: registry.nlark.com/kind-of/6.0.3 + dev: true + registry.nlark.com/minimist/1.2.5: resolution: {integrity: sha1-Z9ZgFLZqaoqqDAg8X9WN9OTpdgI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/minimist/download/minimist-1.2.5.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz} name: minimist @@ -3142,7 +3074,7 @@ packages: dev: true registry.nlark.com/normalize-package-data/2.5.0: - resolution: {integrity: sha1-5m2xg4sgDB38IzIl0SyzZSDiNKg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/normalize-package-data/download/normalize-package-data-2.5.0.tgz} + resolution: {integrity: sha1-5m2xg4sgDB38IzIl0SyzZSDiNKg=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/normalize-package-data/download/normalize-package-data-2.5.0.tgz} name: normalize-package-data version: 2.5.0 dependencies: @@ -3153,7 +3085,7 @@ packages: dev: true registry.nlark.com/normalize-package-data/3.0.3: - resolution: {integrity: sha1-28w+LaWVCaCYNCKITNFy7v36Ul4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/normalize-package-data/download/normalize-package-data-3.0.3.tgz} + resolution: {integrity: sha1-28w+LaWVCaCYNCKITNFy7v36Ul4=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/normalize-package-data/download/normalize-package-data-3.0.3.tgz} name: normalize-package-data version: 3.0.3 engines: {node: '>=10'} @@ -3271,7 +3203,7 @@ packages: dev: true registry.nlark.com/p-limit/1.3.0: - resolution: {integrity: sha1-uGvV8MJWkJEcdZD8v8IBDVSzzLg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/p-limit/download/p-limit-1.3.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-1.3.0.tgz} + resolution: {integrity: sha1-uGvV8MJWkJEcdZD8v8IBDVSzzLg=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/p-limit/download/p-limit-1.3.0.tgz?cache=0&sync_timestamp=1631506045209&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-1.3.0.tgz} name: p-limit version: 1.3.0 engines: {node: '>=4'} @@ -3280,7 +3212,7 @@ packages: dev: true registry.nlark.com/p-limit/2.3.0: - resolution: {integrity: sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/p-limit/download/p-limit-2.3.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-2.3.0.tgz} + resolution: {integrity: sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/p-limit/download/p-limit-2.3.0.tgz?cache=0&sync_timestamp=1631506045209&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-2.3.0.tgz} name: p-limit version: 2.3.0 engines: {node: '>=6'} @@ -3289,7 +3221,7 @@ packages: dev: true registry.nlark.com/p-limit/3.1.0: - resolution: {integrity: sha1-4drMvnjQ0TiMoYxk/qOOPlfjcGs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/p-limit/download/p-limit-3.1.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-3.1.0.tgz} + resolution: {integrity: sha1-4drMvnjQ0TiMoYxk/qOOPlfjcGs=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/p-limit/download/p-limit-3.1.0.tgz?cache=0&sync_timestamp=1631506045209&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-3.1.0.tgz} name: p-limit version: 3.1.0 engines: {node: '>=10'} @@ -3298,7 +3230,7 @@ packages: dev: true registry.nlark.com/p-locate/2.0.0: - resolution: {integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/p-locate/download/p-locate-2.0.0.tgz} + resolution: {integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/p-locate/download/p-locate-2.0.0.tgz} name: p-locate version: 2.0.0 engines: {node: '>=4'} @@ -3307,7 +3239,7 @@ packages: dev: true registry.nlark.com/p-locate/4.1.0: - resolution: {integrity: sha1-o0KLtwiLOmApL2aRkni3wpetTwc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/p-locate/download/p-locate-4.1.0.tgz} + resolution: {integrity: sha1-o0KLtwiLOmApL2aRkni3wpetTwc=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/p-locate/download/p-locate-4.1.0.tgz} name: p-locate version: 4.1.0 engines: {node: '>=8'} @@ -3316,7 +3248,7 @@ packages: dev: true registry.nlark.com/p-locate/5.0.0: - resolution: {integrity: sha1-g8gxXGeFAF470CGDlBHJ4RDm2DQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/p-locate/download/p-locate-5.0.0.tgz} + resolution: {integrity: sha1-g8gxXGeFAF470CGDlBHJ4RDm2DQ=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/p-locate/download/p-locate-5.0.0.tgz} name: p-locate version: 5.0.0 engines: {node: '>=10'} @@ -3384,14 +3316,14 @@ packages: dev: true registry.nlark.com/path-exists/3.0.0: - resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-exists/download/path-exists-3.0.0.tgz} + resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-exists/download/path-exists-3.0.0.tgz} name: path-exists version: 3.0.0 engines: {node: '>=4'} dev: true registry.nlark.com/path-exists/4.0.0: - resolution: {integrity: sha1-UTvb4tO5XXdi6METfvoZXGxhtbM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-exists/download/path-exists-4.0.0.tgz} + resolution: {integrity: sha1-UTvb4tO5XXdi6METfvoZXGxhtbM=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-exists/download/path-exists-4.0.0.tgz} name: path-exists version: 4.0.0 engines: {node: '>=8'} @@ -3598,38 +3530,27 @@ packages: dev: true registry.nlark.com/q/1.5.1: - resolution: {integrity: sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/q/download/q-1.5.1.tgz} + resolution: {integrity: sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/q/download/q-1.5.1.tgz} name: q version: 1.5.1 engines: {node: '>=0.6.0', teleport: '>=0.2.0'} dev: true registry.nlark.com/queue-microtask/1.2.3: - resolution: {integrity: sha1-SSkii7xyTfrEPg77BYyve2z7YkM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/queue-microtask/download/queue-microtask-1.2.3.tgz} + resolution: {integrity: sha1-SSkii7xyTfrEPg77BYyve2z7YkM=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/queue-microtask/download/queue-microtask-1.2.3.tgz} name: queue-microtask version: 1.2.3 dev: true registry.nlark.com/quick-lru/4.0.1: - resolution: {integrity: sha1-W4h48ROlgheEjGSCAmxz4bpXcn8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/quick-lru/download/quick-lru-4.0.1.tgz} + resolution: {integrity: sha1-W4h48ROlgheEjGSCAmxz4bpXcn8=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/quick-lru/download/quick-lru-4.0.1.tgz} name: quick-lru version: 4.0.1 engines: {node: '>=8'} dev: true - registry.nlark.com/read-pkg-up/7.0.1: - resolution: {integrity: sha1-86YTV1hFlzOuK5VjgFbhhU5+9Qc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/read-pkg-up/download/read-pkg-up-7.0.1.tgz} - name: read-pkg-up - version: 7.0.1 - engines: {node: '>=8'} - dependencies: - find-up: registry.npmmirror.com/find-up/4.1.0 - read-pkg: registry.nlark.com/read-pkg/5.2.0 - type-fest: registry.npmmirror.com/type-fest/0.8.1 - dev: true - registry.nlark.com/read-pkg/5.2.0: - resolution: {integrity: sha1-e/KVQ4yloz5WzTDgU7NO5yUMk8w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/read-pkg/download/read-pkg-5.2.0.tgz} + resolution: {integrity: sha1-e/KVQ4yloz5WzTDgU7NO5yUMk8w=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/read-pkg/download/read-pkg-5.2.0.tgz} name: read-pkg version: 5.2.0 engines: {node: '>=8'} @@ -3641,7 +3562,7 @@ packages: dev: true registry.nlark.com/readable-stream/3.6.0: - resolution: {integrity: sha1-M3u9o63AcGvT4CRCaihtS0sskZg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/readable-stream/download/readable-stream-3.6.0.tgz} + resolution: {integrity: sha1-M3u9o63AcGvT4CRCaihtS0sskZg=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/readable-stream/download/readable-stream-3.6.0.tgz} name: readable-stream version: 3.6.0 engines: {node: '>= 6'} @@ -3652,7 +3573,7 @@ packages: dev: true registry.nlark.com/readdirp/3.6.0: - resolution: {integrity: sha1-dKNwvYVxFuJFspzJc0DNQxoCpsc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/readdirp/download/readdirp-3.6.0.tgz} + resolution: {integrity: sha1-dKNwvYVxFuJFspzJc0DNQxoCpsc=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/readdirp/download/readdirp-3.6.0.tgz} name: readdirp version: 3.6.0 engines: {node: '>=8.10.0'} @@ -3661,7 +3582,7 @@ packages: dev: true registry.nlark.com/redent/3.0.0: - resolution: {integrity: sha1-5Ve3mYMWu1PJ8fVvpiY1LGljBZ8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/redent/download/redent-3.0.0.tgz} + resolution: {integrity: sha1-5Ve3mYMWu1PJ8fVvpiY1LGljBZ8=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/redent/download/redent-3.0.0.tgz} name: redent version: 3.0.0 engines: {node: '>=8'} @@ -3710,14 +3631,14 @@ packages: dev: true registry.nlark.com/resolve-from/5.0.0: - resolution: {integrity: sha1-w1IlhD3493bfIcV1V7wIfp39/Gk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/resolve-from/download/resolve-from-5.0.0.tgz} + resolution: {integrity: sha1-w1IlhD3493bfIcV1V7wIfp39/Gk=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/resolve-from/download/resolve-from-5.0.0.tgz} name: resolve-from version: 5.0.0 engines: {node: '>=8'} dev: true registry.nlark.com/resolve-global/1.0.0: - resolution: {integrity: sha1-oqed9K8so/Sb93753azTItrRklU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/resolve-global/download/resolve-global-1.0.0.tgz} + resolution: {integrity: sha1-oqed9K8so/Sb93753azTItrRklU=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/resolve-global/download/resolve-global-1.0.0.tgz} name: resolve-global version: 1.0.0 engines: {node: '>=8'} @@ -3745,7 +3666,7 @@ packages: dev: true registry.nlark.com/reusify/1.0.4: - resolution: {integrity: sha1-kNo4Kx4SbvwCFG6QhFqI2xKSXXY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/reusify/download/reusify-1.0.4.tgz} + resolution: {integrity: sha1-kNo4Kx4SbvwCFG6QhFqI2xKSXXY=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/reusify/download/reusify-1.0.4.tgz} name: reusify version: 1.0.4 engines: {iojs: '>=1.0.0', node: '>=0.10.0'} @@ -3776,7 +3697,7 @@ packages: dev: true registry.nlark.com/run-parallel/1.2.0: - resolution: {integrity: sha1-ZtE2jae9+SHrnZW9GpIp5/IaQ+4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/run-parallel/download/run-parallel-1.2.0.tgz} + resolution: {integrity: sha1-ZtE2jae9+SHrnZW9GpIp5/IaQ+4=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/run-parallel/download/run-parallel-1.2.0.tgz} name: run-parallel version: 1.2.0 dependencies: @@ -3793,7 +3714,7 @@ packages: dev: true registry.nlark.com/safe-buffer/5.2.1: - resolution: {integrity: sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/safe-buffer/download/safe-buffer-5.2.1.tgz} + resolution: {integrity: sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/safe-buffer/download/safe-buffer-5.2.1.tgz} name: safe-buffer version: 5.2.1 dev: true @@ -3818,7 +3739,7 @@ packages: dev: true registry.nlark.com/semver/6.3.0: - resolution: {integrity: sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/semver/download/semver-6.3.0.tgz} + resolution: {integrity: sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/semver/download/semver-6.3.0.tgz} name: semver version: 6.3.0 hasBin: true @@ -3866,7 +3787,7 @@ packages: dev: true registry.nlark.com/slash/3.0.0: - resolution: {integrity: sha1-ZTm+hwwWWtvVJAIg2+Nh8bxNRjQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/slash/download/slash-3.0.0.tgz} + resolution: {integrity: sha1-ZTm+hwwWWtvVJAIg2+Nh8bxNRjQ=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/slash/download/slash-3.0.0.tgz} name: slash version: 3.0.0 engines: {node: '>=8'} @@ -3910,7 +3831,7 @@ packages: dev: true registry.nlark.com/source-map/0.6.1: - resolution: {integrity: sha1-dHIq8y6WFOnCh6jQu95IteLxomM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz} + resolution: {integrity: sha1-dHIq8y6WFOnCh6jQu95IteLxomM=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz} name: source-map version: 0.6.1 engines: {node: '>=0.10.0'} @@ -3928,7 +3849,7 @@ packages: version: 1.4.8 registry.nlark.com/spdx-correct/3.1.1: - resolution: {integrity: sha1-3s6BrJweZxPl99G28X1Gj6U9iak=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/spdx-correct/download/spdx-correct-3.1.1.tgz} + resolution: {integrity: sha1-3s6BrJweZxPl99G28X1Gj6U9iak=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/spdx-correct/download/spdx-correct-3.1.1.tgz} name: spdx-correct version: 3.1.1 dependencies: @@ -3937,13 +3858,13 @@ packages: dev: true registry.nlark.com/spdx-exceptions/2.3.0: - resolution: {integrity: sha1-PyjOGnegA3JoPq3kpDMYNSeiFj0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/spdx-exceptions/download/spdx-exceptions-2.3.0.tgz} + resolution: {integrity: sha1-PyjOGnegA3JoPq3kpDMYNSeiFj0=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/spdx-exceptions/download/spdx-exceptions-2.3.0.tgz} name: spdx-exceptions version: 2.3.0 dev: true registry.nlark.com/spdx-expression-parse/3.0.1: - resolution: {integrity: sha1-z3D1BILu/cmOPOCmgz5KU87rpnk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/spdx-expression-parse/download/spdx-expression-parse-3.0.1.tgz} + resolution: {integrity: sha1-z3D1BILu/cmOPOCmgz5KU87rpnk=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/spdx-expression-parse/download/spdx-expression-parse-3.0.1.tgz} name: spdx-expression-parse version: 3.0.1 dependencies: @@ -3952,19 +3873,11 @@ packages: dev: true registry.nlark.com/spdx-license-ids/3.0.10: - resolution: {integrity: sha1-DZvszN5wA9bGWNSH3UijLwvzAUs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/spdx-license-ids/download/spdx-license-ids-3.0.10.tgz} + resolution: {integrity: sha1-DZvszN5wA9bGWNSH3UijLwvzAUs=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/spdx-license-ids/download/spdx-license-ids-3.0.10.tgz} name: spdx-license-ids version: 3.0.10 dev: true - registry.nlark.com/split2/3.2.2: - resolution: {integrity: sha1-vyzyo32DgxLCSciSBv16F90SNl8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/split2/download/split2-3.2.2.tgz} - name: split2 - version: 3.2.2 - dependencies: - readable-stream: registry.nlark.com/readable-stream/3.6.0 - dev: true - registry.nlark.com/sprintf-js/1.0.3: resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/sprintf-js/download/sprintf-js-1.0.3.tgz} name: sprintf-js @@ -3997,7 +3910,7 @@ packages: dev: true registry.nlark.com/string_decoder/1.3.0: - resolution: {integrity: sha1-QvEUWUpGzxqOMLCoT1bHjD7awh4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/string_decoder/download/string_decoder-1.3.0.tgz} + resolution: {integrity: sha1-QvEUWUpGzxqOMLCoT1bHjD7awh4=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/string_decoder/download/string_decoder-1.3.0.tgz} name: string_decoder version: 1.3.0 dependencies: @@ -4037,7 +3950,7 @@ packages: dev: true registry.nlark.com/strip-indent/3.0.0: - resolution: {integrity: sha1-wy4c7pQLazQyx3G8LFS8znPNMAE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/strip-indent/download/strip-indent-3.0.0.tgz} + resolution: {integrity: sha1-wy4c7pQLazQyx3G8LFS8znPNMAE=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/strip-indent/download/strip-indent-3.0.0.tgz} name: strip-indent version: 3.0.0 engines: {node: '>=8'} @@ -4091,7 +4004,7 @@ packages: dev: true registry.nlark.com/text-extensions/1.9.0: - resolution: {integrity: sha1-GFPkX+45yUXOb2w2stZZtaq8KiY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/text-extensions/download/text-extensions-1.9.0.tgz} + resolution: {integrity: sha1-GFPkX+45yUXOb2w2stZZtaq8KiY=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/text-extensions/download/text-extensions-1.9.0.tgz} name: text-extensions version: 1.9.0 engines: {node: '>=0.10'} @@ -4110,7 +4023,7 @@ packages: dev: true registry.nlark.com/through2/4.0.2: - resolution: {integrity: sha1-p846wqeosLlmyA58SfBITDsjl2Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/through2/download/through2-4.0.2.tgz} + resolution: {integrity: sha1-p846wqeosLlmyA58SfBITDsjl2Q=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/through2/download/through2-4.0.2.tgz} name: through2 version: 4.0.2 dependencies: @@ -4146,19 +4059,19 @@ packages: dev: true registry.nlark.com/treemate/0.3.8: - resolution: {integrity: sha1-eRwM1urlvb0s0EATQpOF9TZv3/Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/treemate/download/treemate-0.3.8.tgz} + resolution: {integrity: sha1-eRwM1urlvb0s0EATQpOF9TZv3/Q=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/treemate/download/treemate-0.3.8.tgz} name: treemate version: 0.3.8 dev: false registry.nlark.com/trim-newlines/3.0.1: - resolution: {integrity: sha1-Jgpdli2LdSQlsy86fbDcrNF2wUQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/trim-newlines/download/trim-newlines-3.0.1.tgz} + resolution: {integrity: sha1-Jgpdli2LdSQlsy86fbDcrNF2wUQ=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/trim-newlines/download/trim-newlines-3.0.1.tgz} name: trim-newlines version: 3.0.1 engines: {node: '>=8'} dev: true - registry.nlark.com/ts-node/9.1.1_typescript@4.4.3: + registry.nlark.com/ts-node/9.1.1_typescript@4.4.4: resolution: {integrity: sha1-UamkUKPpWUAb2l8ASnLVS5NtN20=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ts-node/download/ts-node-9.1.1.tgz} id: registry.nlark.com/ts-node/9.1.1 name: ts-node @@ -4173,7 +4086,7 @@ packages: diff: registry.nlark.com/diff/4.0.2 make-error: registry.nlark.com/make-error/1.3.6 source-map-support: registry.nlark.com/source-map-support/0.5.19 - typescript: registry.npmmirror.com/typescript/4.4.3 + typescript: registry.npmmirror.com/typescript/4.4.4 yn: registry.nlark.com/yn/3.1.1 dev: true @@ -4189,7 +4102,7 @@ packages: dev: true registry.nlark.com/tslib/1.14.1: - resolution: {integrity: sha1-zy04vcNKE0vK8QkcQfZhni9nLQA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/tslib/download/tslib-1.14.1.tgz} + resolution: {integrity: sha1-zy04vcNKE0vK8QkcQfZhni9nLQA=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/tslib/download/tslib-1.14.1.tgz} name: tslib version: 1.14.1 dev: true @@ -4201,7 +4114,7 @@ packages: dev: true registry.nlark.com/tsutils/3.21.0_typescript@4.4.4: - resolution: {integrity: sha1-tIcX05TOpsHglpg+7Vjp1hcVtiM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/tsutils/download/tsutils-3.21.0.tgz} + resolution: {integrity: sha1-tIcX05TOpsHglpg+7Vjp1hcVtiM=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/tsutils/download/tsutils-3.21.0.tgz?cache=0&sync_timestamp=1631500162348&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftsutils%2Fdownload%2Ftsutils-3.21.0.tgz} id: registry.nlark.com/tsutils/3.21.0 name: tsutils version: 3.21.0 @@ -4256,7 +4169,7 @@ packages: dev: true registry.nlark.com/util-deprecate/1.0.2: - resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/util-deprecate/download/util-deprecate-1.0.2.tgz} + resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/util-deprecate/download/util-deprecate-1.0.2.tgz} name: util-deprecate version: 1.0.2 dev: true @@ -4268,7 +4181,7 @@ packages: dev: true registry.nlark.com/validate-npm-package-license/3.0.4: - resolution: {integrity: sha1-/JH2uce6FchX9MssXe/uw51PQQo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/validate-npm-package-license/download/validate-npm-package-license-3.0.4.tgz} + resolution: {integrity: sha1-/JH2uce6FchX9MssXe/uw51PQQo=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/validate-npm-package-license/download/validate-npm-package-license-3.0.4.tgz} name: validate-npm-package-license version: 3.0.4 dependencies: @@ -4289,7 +4202,7 @@ packages: vue: registry.npmmirror.com/vue/3.2.20 registry.nlark.com/vfonts/0.1.0: - resolution: {integrity: sha1-wWrzfKBEsnJa5VVTBJKA775iIqk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vfonts/download/vfonts-0.1.0.tgz} + resolution: {integrity: sha1-wWrzfKBEsnJa5VVTBJKA775iIqk=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vfonts/download/vfonts-0.1.0.tgz} name: vfonts version: 0.1.0 dev: false @@ -4319,27 +4232,6 @@ packages: version: 3.0.2 dev: true - registry.nlark.com/vue-eslint-parser/7.10.0_eslint@8.1.0: - resolution: {integrity: sha1-6k5LEP0QqjXIp5rHg0iNirzSm+g=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vue-eslint-parser/download/vue-eslint-parser-7.10.0.tgz} - id: registry.nlark.com/vue-eslint-parser/7.10.0 - name: vue-eslint-parser - version: 7.10.0 - engines: {node: '>=8.10'} - peerDependencies: - eslint: '>=5.0.0' - dependencies: - debug: registry.nlark.com/debug/4.3.2 - eslint: registry.npmmirror.com/eslint/8.1.0 - eslint-scope: registry.nlark.com/eslint-scope/5.1.1 - eslint-visitor-keys: registry.nlark.com/eslint-visitor-keys/1.3.0 - espree: registry.nlark.com/espree/6.2.1 - esquery: 1.4.0 - lodash: 4.17.21 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: true - registry.nlark.com/vue-router/4.0.11_vue@3.2.20: resolution: {integrity: sha1-zWSaCUHGNSgXY6IJZbWZZD3caO0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vue-router/download/vue-router-4.0.11.tgz} id: registry.nlark.com/vue-router/4.0.11 @@ -4353,7 +4245,7 @@ packages: dev: false registry.nlark.com/webpack-virtual-modules/0.4.3: - resolution: {integrity: sha1-zVl8bVHVpey0c+6hmDpY+ooX3tk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/webpack-virtual-modules/download/webpack-virtual-modules-0.4.3.tgz} + resolution: {integrity: sha1-zVl8bVHVpey0c+6hmDpY+ooX3tk=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/webpack-virtual-modules/download/webpack-virtual-modules-0.4.3.tgz} name: webpack-virtual-modules version: 0.4.3 dev: true @@ -4470,14 +4362,14 @@ packages: dev: true registry.nlark.com/yocto-queue/0.1.0: - resolution: {integrity: sha1-ApTrPe4FAo0x7hpfosVWpqrxChs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/yocto-queue/download/yocto-queue-0.1.0.tgz} + resolution: {integrity: sha1-ApTrPe4FAo0x7hpfosVWpqrxChs=, registry: http://registry.npm.taobao.org/, tarball: https://registry.nlark.com/yocto-queue/download/yocto-queue-0.1.0.tgz} name: yocto-queue version: 0.1.0 engines: {node: '>=10'} dev: true registry.npmmirror.com/@antfu/install-pkg/0.1.0: - resolution: {integrity: sha1-jYxhggy8MuXDfYLVFUha0+6b0FI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antfu/install-pkg/download/@antfu/install-pkg-0.1.0.tgz} + resolution: {integrity: sha1-jYxhggy8MuXDfYLVFUha0+6b0FI=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antfu/install-pkg/download/@antfu/install-pkg-0.1.0.tgz} name: '@antfu/install-pkg' version: 0.1.0 dependencies: @@ -4495,7 +4387,7 @@ packages: dev: true registry.npmmirror.com/@babel/eslint-parser/7.15.8_eslint@8.1.0: - resolution: {integrity: sha1-iYhmC1nXOVALZ9BYX9TayiGNnxE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/eslint-parser/download/@babel/eslint-parser-7.15.8.tgz} + resolution: {integrity: sha1-iYhmC1nXOVALZ9BYX9TayiGNnxE=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/eslint-parser/download/@babel/eslint-parser-7.15.8.tgz} id: registry.npmmirror.com/@babel/eslint-parser/7.15.8 name: '@babel/eslint-parser' version: 7.15.8 @@ -4511,7 +4403,7 @@ packages: dev: false registry.npmmirror.com/@babel/parser/7.15.6: - resolution: {integrity: sha1-BDuao8MDwHIuU3f++Rl/TPF5ZUk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/download/@babel/parser-7.15.6.tgz} + resolution: {integrity: sha1-BDuao8MDwHIuU3f++Rl/TPF5ZUk=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/download/@babel/parser-7.15.6.tgz} name: '@babel/parser' version: 7.15.6 engines: {node: '>=6.0.0'} @@ -4531,133 +4423,133 @@ packages: version: 2.4.2 dev: false - registry.npmmirror.com/@commitlint/cli/13.2.1: - resolution: {integrity: sha1-gOvUa+72zu07sMCEK82o0Co8kd4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/cli/download/@commitlint/cli-13.2.1.tgz} + registry.npmmirror.com/@commitlint/cli/14.1.0: + resolution: {integrity: sha1-e2V6lV7SLz3zSLqa+mzlpRIf9+s=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/cli/download/@commitlint/cli-14.1.0.tgz} name: '@commitlint/cli' - version: 13.2.1 + version: 14.1.0 engines: {node: '>=v12'} hasBin: true dependencies: - '@commitlint/format': registry.npmmirror.com/@commitlint/format/13.2.0 - '@commitlint/lint': registry.npmmirror.com/@commitlint/lint/13.2.0 - '@commitlint/load': registry.npmmirror.com/@commitlint/load/13.2.1 - '@commitlint/read': registry.npmmirror.com/@commitlint/read/13.2.0 - '@commitlint/types': registry.npmmirror.com/@commitlint/types/13.2.0 + '@commitlint/format': registry.npmmirror.com/@commitlint/format/14.1.0 + '@commitlint/lint': registry.npmmirror.com/@commitlint/lint/14.1.0 + '@commitlint/load': registry.npmmirror.com/@commitlint/load/14.1.0 + '@commitlint/read': registry.npmmirror.com/@commitlint/read/14.0.0 + '@commitlint/types': registry.npmmirror.com/@commitlint/types/14.0.0 lodash: registry.nlark.com/lodash/4.17.21 resolve-from: registry.nlark.com/resolve-from/5.0.0 resolve-global: registry.nlark.com/resolve-global/1.0.0 yargs: registry.npmmirror.com/yargs/17.1.1 dev: true - registry.npmmirror.com/@commitlint/config-conventional/13.2.0: - resolution: {integrity: sha1-KtJP7MVq6WGdvgk0uYqYsYrOC+w=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/config-conventional/download/@commitlint/config-conventional-13.2.0.tgz} + registry.npmmirror.com/@commitlint/config-conventional/14.1.0: + resolution: {integrity: sha1-KeOG7yAPpy1DQYFTqxxJDIkCTe4=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/config-conventional/download/@commitlint/config-conventional-14.1.0.tgz} name: '@commitlint/config-conventional' - version: 13.2.0 + version: 14.1.0 engines: {node: '>=v12'} dependencies: conventional-changelog-conventionalcommits: registry.nlark.com/conventional-changelog-conventionalcommits/4.6.0 dev: true - registry.npmmirror.com/@commitlint/ensure/13.2.0: - resolution: {integrity: sha1-mQwk91N4HR8UwWR8UtNKVzCJLj0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/ensure/download/@commitlint/ensure-13.2.0.tgz} + registry.npmmirror.com/@commitlint/ensure/14.1.0: + resolution: {integrity: sha1-tYsv/ivJW+FD7Y8YhyG5ffEEO6U=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/ensure/download/@commitlint/ensure-14.1.0.tgz} name: '@commitlint/ensure' - version: 13.2.0 + version: 14.1.0 engines: {node: '>=v12'} dependencies: - '@commitlint/types': registry.npmmirror.com/@commitlint/types/13.2.0 + '@commitlint/types': registry.npmmirror.com/@commitlint/types/14.0.0 lodash: registry.nlark.com/lodash/4.17.21 dev: true - registry.npmmirror.com/@commitlint/execute-rule/13.2.0: - resolution: {integrity: sha1-4RIVnWZHvFr+L3fCCA7w9hX9VB8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/execute-rule/download/@commitlint/execute-rule-13.2.0.tgz} + registry.npmmirror.com/@commitlint/execute-rule/14.0.0: + resolution: {integrity: sha1-O6RfwlUobjGA+J7U6awe8jcWBzQ=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/execute-rule/download/@commitlint/execute-rule-14.0.0.tgz} name: '@commitlint/execute-rule' - version: 13.2.0 + version: 14.0.0 engines: {node: '>=v12'} dev: true - registry.npmmirror.com/@commitlint/format/13.2.0: - resolution: {integrity: sha1-7M//CgnO2FM6+yGys6HigXaxCdU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/format/download/@commitlint/format-13.2.0.tgz} + registry.npmmirror.com/@commitlint/format/14.1.0: + resolution: {integrity: sha1-CbQIG9ywIWNJa/zs6Y+dRgYji8U=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/format/download/@commitlint/format-14.1.0.tgz} name: '@commitlint/format' - version: 13.2.0 + version: 14.1.0 engines: {node: '>=v12'} dependencies: - '@commitlint/types': registry.npmmirror.com/@commitlint/types/13.2.0 + '@commitlint/types': registry.npmmirror.com/@commitlint/types/14.0.0 chalk: registry.nlark.com/chalk/4.1.2 dev: true - registry.npmmirror.com/@commitlint/is-ignored/13.2.0: - resolution: {integrity: sha1-Uy3ftdYqSJ/0062IvL7kTox9LI8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/is-ignored/download/@commitlint/is-ignored-13.2.0.tgz} + registry.npmmirror.com/@commitlint/is-ignored/14.0.0: + resolution: {integrity: sha1-jIjgUhFRm8GHVYqtB+7gJYEpLsQ=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/is-ignored/download/@commitlint/is-ignored-14.0.0.tgz} name: '@commitlint/is-ignored' - version: 13.2.0 + version: 14.0.0 engines: {node: '>=v12'} dependencies: - '@commitlint/types': registry.npmmirror.com/@commitlint/types/13.2.0 + '@commitlint/types': registry.npmmirror.com/@commitlint/types/14.0.0 semver: registry.nlark.com/semver/7.3.5 dev: true - registry.npmmirror.com/@commitlint/lint/13.2.0: - resolution: {integrity: sha1-tWjJa9Icj6juw1ml4h0idDIGdh8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/lint/download/@commitlint/lint-13.2.0.tgz} + registry.npmmirror.com/@commitlint/lint/14.1.0: + resolution: {integrity: sha1-FnOyFoA9ZcxLvmMfZWElvlT9L2k=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/lint/download/@commitlint/lint-14.1.0.tgz} name: '@commitlint/lint' - version: 13.2.0 + version: 14.1.0 engines: {node: '>=v12'} dependencies: - '@commitlint/is-ignored': registry.npmmirror.com/@commitlint/is-ignored/13.2.0 - '@commitlint/parse': registry.npmmirror.com/@commitlint/parse/13.2.0 - '@commitlint/rules': registry.npmmirror.com/@commitlint/rules/13.2.0 - '@commitlint/types': registry.npmmirror.com/@commitlint/types/13.2.0 + '@commitlint/is-ignored': registry.npmmirror.com/@commitlint/is-ignored/14.0.0 + '@commitlint/parse': registry.npmmirror.com/@commitlint/parse/14.0.0 + '@commitlint/rules': registry.npmmirror.com/@commitlint/rules/14.1.0 + '@commitlint/types': registry.npmmirror.com/@commitlint/types/14.0.0 dev: true - registry.npmmirror.com/@commitlint/load/13.2.1: - resolution: {integrity: sha1-1dkm29BQIcAoN8Q4/xBXAlsot0U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/load/download/@commitlint/load-13.2.1.tgz} + registry.npmmirror.com/@commitlint/load/14.1.0: + resolution: {integrity: sha1-kR6GJc+hqA3ykUuDWDTGBo/f2rQ=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/load/download/@commitlint/load-14.1.0.tgz} name: '@commitlint/load' - version: 13.2.1 + version: 14.1.0 engines: {node: '>=v12'} dependencies: - '@commitlint/execute-rule': registry.npmmirror.com/@commitlint/execute-rule/13.2.0 - '@commitlint/resolve-extends': registry.npmmirror.com/@commitlint/resolve-extends/13.2.0 - '@commitlint/types': registry.npmmirror.com/@commitlint/types/13.2.0 - '@endemolshinegroup/cosmiconfig-typescript-loader': registry.nlark.com/@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2_4b317b069e4dad36c8619feea2045a32 + '@commitlint/execute-rule': registry.npmmirror.com/@commitlint/execute-rule/14.0.0 + '@commitlint/resolve-extends': registry.npmmirror.com/@commitlint/resolve-extends/14.1.0 + '@commitlint/types': registry.npmmirror.com/@commitlint/types/14.0.0 + '@endemolshinegroup/cosmiconfig-typescript-loader': registry.nlark.com/@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2_3fdcc7bc724bd900a681b5e9457ed94a chalk: registry.nlark.com/chalk/4.1.2 cosmiconfig: registry.nlark.com/cosmiconfig/7.0.1 lodash: registry.nlark.com/lodash/4.17.21 resolve-from: registry.nlark.com/resolve-from/5.0.0 - typescript: registry.npmmirror.com/typescript/4.4.3 + typescript: registry.npmmirror.com/typescript/4.4.4 dev: true - registry.npmmirror.com/@commitlint/message/13.2.0: - resolution: {integrity: sha1-GmD1eFUXUKjWtTO+ikBUH8LpKKg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/message/download/@commitlint/message-13.2.0.tgz} + registry.npmmirror.com/@commitlint/message/14.0.0: + resolution: {integrity: sha1-TbhS/NdjUr5UeBHVdwlmdYijm6k=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/message/download/@commitlint/message-14.0.0.tgz} name: '@commitlint/message' - version: 13.2.0 + version: 14.0.0 engines: {node: '>=v12'} dev: true - registry.npmmirror.com/@commitlint/parse/13.2.0: - resolution: {integrity: sha1-SAVGAr1z3Mv/7k+bqLJUnIV7oLc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/parse/download/@commitlint/parse-13.2.0.tgz} + registry.npmmirror.com/@commitlint/parse/14.0.0: + resolution: {integrity: sha1-y29mMjonYXdE+bR5zwmUH/nD+T0=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/parse/download/@commitlint/parse-14.0.0.tgz} name: '@commitlint/parse' - version: 13.2.0 + version: 14.0.0 engines: {node: '>=v12'} dependencies: - '@commitlint/types': registry.npmmirror.com/@commitlint/types/13.2.0 + '@commitlint/types': registry.npmmirror.com/@commitlint/types/14.0.0 conventional-changelog-angular: registry.nlark.com/conventional-changelog-angular/5.0.12 - conventional-commits-parser: registry.nlark.com/conventional-commits-parser/3.2.2 + conventional-commits-parser: registry.npmmirror.com/conventional-commits-parser/3.2.2 dev: true - registry.npmmirror.com/@commitlint/read/13.2.0: - resolution: {integrity: sha1-KvWAMi7GKXR4q6hPqOwk/SfDWlQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/read/download/@commitlint/read-13.2.0.tgz} + registry.npmmirror.com/@commitlint/read/14.0.0: + resolution: {integrity: sha1-+HFgDOgVtUHH8aT9q+LGbYhAwqs=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/read/download/@commitlint/read-14.0.0.tgz} name: '@commitlint/read' - version: 13.2.0 + version: 14.0.0 engines: {node: '>=v12'} dependencies: - '@commitlint/top-level': registry.npmmirror.com/@commitlint/top-level/13.2.0 - '@commitlint/types': registry.npmmirror.com/@commitlint/types/13.2.0 + '@commitlint/top-level': registry.npmmirror.com/@commitlint/top-level/14.0.0 + '@commitlint/types': registry.npmmirror.com/@commitlint/types/14.0.0 fs-extra: registry.nlark.com/fs-extra/10.0.0 git-raw-commits: registry.nlark.com/git-raw-commits/2.0.10 dev: true - registry.npmmirror.com/@commitlint/resolve-extends/13.2.0: - resolution: {integrity: sha1-dPSFEusXhavgczalIIIl/ff+wyc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/resolve-extends/download/@commitlint/resolve-extends-13.2.0.tgz} + registry.npmmirror.com/@commitlint/resolve-extends/14.1.0: + resolution: {integrity: sha1-8jtA2VyVkB/Le1Pt68j+hvVP6Z0=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/resolve-extends/download/@commitlint/resolve-extends-14.1.0.tgz} name: '@commitlint/resolve-extends' - version: 13.2.0 + version: 14.1.0 engines: {node: '>=v12'} dependencies: import-fresh: registry.nlark.com/import-fresh/3.3.0 @@ -4666,39 +4558,39 @@ packages: resolve-global: registry.nlark.com/resolve-global/1.0.0 dev: true - registry.npmmirror.com/@commitlint/rules/13.2.0: - resolution: {integrity: sha1-4nL71AmcL+mLyhJ31/jKo1eLj0M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/rules/download/@commitlint/rules-13.2.0.tgz} + registry.npmmirror.com/@commitlint/rules/14.1.0: + resolution: {integrity: sha1-yuwzmwXEXnU2ysXZ8dsR/Mnj380=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/rules/download/@commitlint/rules-14.1.0.tgz} name: '@commitlint/rules' - version: 13.2.0 + version: 14.1.0 engines: {node: '>=v12'} dependencies: - '@commitlint/ensure': registry.npmmirror.com/@commitlint/ensure/13.2.0 - '@commitlint/message': registry.npmmirror.com/@commitlint/message/13.2.0 - '@commitlint/to-lines': registry.npmmirror.com/@commitlint/to-lines/13.2.0 - '@commitlint/types': registry.npmmirror.com/@commitlint/types/13.2.0 + '@commitlint/ensure': registry.npmmirror.com/@commitlint/ensure/14.1.0 + '@commitlint/message': registry.npmmirror.com/@commitlint/message/14.0.0 + '@commitlint/to-lines': registry.npmmirror.com/@commitlint/to-lines/14.0.0 + '@commitlint/types': registry.npmmirror.com/@commitlint/types/14.0.0 execa: registry.nlark.com/execa/5.1.1 dev: true - registry.npmmirror.com/@commitlint/to-lines/13.2.0: - resolution: {integrity: sha1-5l0WNA81O0lukGCbRS8j9LC+C2o=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/to-lines/download/@commitlint/to-lines-13.2.0.tgz} + registry.npmmirror.com/@commitlint/to-lines/14.0.0: + resolution: {integrity: sha1-2Qx0U7xnjn4tikyuEleDsdTfeqQ=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/to-lines/download/@commitlint/to-lines-14.0.0.tgz} name: '@commitlint/to-lines' - version: 13.2.0 + version: 14.0.0 engines: {node: '>=v12'} dev: true - registry.npmmirror.com/@commitlint/top-level/13.2.0: - resolution: {integrity: sha1-hpgU6KwP7GpuHy6WZaMY5NyXnh4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/top-level/download/@commitlint/top-level-13.2.0.tgz} + registry.npmmirror.com/@commitlint/top-level/14.0.0: + resolution: {integrity: sha1-X+1qx64vXP8C6h9Bvdv6JEh+88g=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/top-level/download/@commitlint/top-level-14.0.0.tgz} name: '@commitlint/top-level' - version: 13.2.0 + version: 14.0.0 engines: {node: '>=v12'} dependencies: find-up: registry.npmmirror.com/find-up/5.0.0 dev: true - registry.npmmirror.com/@commitlint/types/13.2.0: - resolution: {integrity: sha1-7YEo+eQTg/jw7hsDcMckgmgh5YE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/types/download/@commitlint/types-13.2.0.tgz} + registry.npmmirror.com/@commitlint/types/14.0.0: + resolution: {integrity: sha1-F79NGrEXjGeZDOAbNgF9bmeSt1E=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/types/download/@commitlint/types-14.0.0.tgz} name: '@commitlint/types' - version: 13.2.0 + version: 14.0.0 engines: {node: '>=v12'} dependencies: chalk: registry.nlark.com/chalk/4.1.2 @@ -4743,15 +4635,15 @@ packages: dev: true registry.npmmirror.com/@iconify/types/1.0.10: - resolution: {integrity: sha1-lREiwZ03F+MIo86sbqr9onvZmT0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@iconify/types/download/@iconify/types-1.0.10.tgz} + resolution: {integrity: sha1-lREiwZ03F+MIo86sbqr9onvZmT0=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@iconify/types/download/@iconify/types-1.0.10.tgz} name: '@iconify/types' version: 1.0.10 dev: true - registry.npmmirror.com/@iconify/utils/1.0.14: - resolution: {integrity: sha1-/AhO8TKdToJDF44bSnwE5oznEJg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@iconify/utils/download/@iconify/utils-1.0.14.tgz} + registry.npmmirror.com/@iconify/utils/1.0.18: + resolution: {integrity: sha1-Vpc3t4IYA00Z8/Bnr5GWKTpx8UU=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@iconify/utils/download/@iconify/utils-1.0.18.tgz} name: '@iconify/utils' - version: 1.0.14 + version: 1.0.18 dependencies: '@iconify/types': registry.npmmirror.com/@iconify/types/1.0.10 dev: true @@ -4769,7 +4661,7 @@ packages: chalk: registry.nlark.com/chalk/4.1.2 registry.npmmirror.com/@types/lodash/4.14.175: - resolution: {integrity: sha1-t436lZGSsB+uCtkOFmR4dpshX0U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/lodash/download/@types/lodash-4.14.175.tgz} + resolution: {integrity: sha1-t436lZGSsB+uCtkOFmR4dpshX0U=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/lodash/download/@types/lodash-4.14.175.tgz} name: '@types/lodash' version: 4.14.175 dev: false @@ -4796,11 +4688,11 @@ packages: dependencies: '@types/yargs-parser': registry.nlark.com/@types/yargs-parser/20.2.1 - registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.2.0_9a56ca1c5fc1d82b3da3317a5c6f9ab1: - resolution: {integrity: sha1-K9skfMLir85++84Jr7mm8KighDQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/download/@typescript-eslint/eslint-plugin-5.2.0.tgz?cache=0&sync_timestamp=1635228333717&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40typescript-eslint%2Feslint-plugin%2Fdownload%2F%40typescript-eslint%2Feslint-plugin-5.2.0.tgz} - id: registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.2.0 + registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.3.0_f8873316f48f7781ccc3e081fc76e214: + resolution: {integrity: sha1-pVrnLSj/62ut2Bf+RWbJzO0fXik=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/download/@typescript-eslint/eslint-plugin-5.3.0.tgz} + id: registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.3.0 name: '@typescript-eslint/eslint-plugin' - version: 5.2.0 + version: 5.3.0 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -4810,9 +4702,9 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': registry.npmmirror.com/@typescript-eslint/experimental-utils/5.2.0_eslint@8.1.0+typescript@4.4.4 - '@typescript-eslint/parser': registry.npmmirror.com/@typescript-eslint/parser/5.2.0_eslint@8.1.0+typescript@4.4.4 - '@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager/5.2.0 + '@typescript-eslint/experimental-utils': registry.npmmirror.com/@typescript-eslint/experimental-utils/5.3.0_eslint@8.1.0+typescript@4.4.4 + '@typescript-eslint/parser': registry.npmmirror.com/@typescript-eslint/parser/5.3.0_eslint@8.1.0+typescript@4.4.4 + '@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager/5.3.0 debug: registry.nlark.com/debug/4.3.2 eslint: registry.npmmirror.com/eslint/8.1.0 functional-red-black-tree: registry.nlark.com/functional-red-black-tree/1.0.1 @@ -4825,19 +4717,19 @@ packages: - supports-color dev: true - registry.npmmirror.com/@typescript-eslint/experimental-utils/5.2.0_eslint@8.1.0+typescript@4.4.4: - resolution: {integrity: sha1-47LLnNCv+bUPaNmkFMKZ/SawZ+Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/experimental-utils/download/@typescript-eslint/experimental-utils-5.2.0.tgz} - id: registry.npmmirror.com/@typescript-eslint/experimental-utils/5.2.0 + registry.npmmirror.com/@typescript-eslint/experimental-utils/5.3.0_eslint@8.1.0+typescript@4.4.4: + resolution: {integrity: sha1-7la0lXVH7SsPx0USBeQVAuZk9UY=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/experimental-utils/download/@typescript-eslint/experimental-utils-5.3.0.tgz} + id: registry.npmmirror.com/@typescript-eslint/experimental-utils/5.3.0 name: '@typescript-eslint/experimental-utils' - version: 5.2.0 + version: 5.3.0 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' dependencies: '@types/json-schema': registry.nlark.com/@types/json-schema/7.0.9 - '@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager/5.2.0 - '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.2.0 - '@typescript-eslint/typescript-estree': registry.npmmirror.com/@typescript-eslint/typescript-estree/5.2.0_typescript@4.4.4 + '@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager/5.3.0 + '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.3.0 + '@typescript-eslint/typescript-estree': registry.npmmirror.com/@typescript-eslint/typescript-estree/5.3.0_typescript@4.4.4 eslint: registry.npmmirror.com/eslint/8.1.0 eslint-scope: registry.nlark.com/eslint-scope/5.1.1 eslint-utils: registry.nlark.com/eslint-utils/3.0.0_eslint@8.1.0 @@ -4846,11 +4738,11 @@ packages: - typescript dev: true - registry.npmmirror.com/@typescript-eslint/parser/5.2.0_eslint@8.1.0+typescript@4.4.4: - resolution: {integrity: sha1-3AgaqJ3ha1Z2sQIVUZrzqntY+3I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/parser/download/@typescript-eslint/parser-5.2.0.tgz} - id: registry.npmmirror.com/@typescript-eslint/parser/5.2.0 + registry.npmmirror.com/@typescript-eslint/parser/5.3.0_eslint@8.1.0+typescript@4.4.4: + resolution: {integrity: sha1-eHnxXibTcO0/ZT+33QZHlTHtOrk=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/parser/download/@typescript-eslint/parser-5.3.0.tgz} + id: registry.npmmirror.com/@typescript-eslint/parser/5.3.0 name: '@typescript-eslint/parser' - version: 5.2.0 + version: 5.3.0 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -4859,9 +4751,9 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager/5.2.0 - '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.2.0 - '@typescript-eslint/typescript-estree': registry.npmmirror.com/@typescript-eslint/typescript-estree/5.2.0_typescript@4.4.4 + '@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager/5.3.0 + '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.3.0 + '@typescript-eslint/typescript-estree': registry.npmmirror.com/@typescript-eslint/typescript-estree/5.3.0_typescript@4.4.4 debug: registry.nlark.com/debug/4.3.2 eslint: registry.npmmirror.com/eslint/8.1.0 typescript: registry.npmmirror.com/typescript/4.4.4 @@ -4869,28 +4761,28 @@ packages: - supports-color dev: true - registry.npmmirror.com/@typescript-eslint/scope-manager/5.2.0: - resolution: {integrity: sha1-fOjkqyuqoK1SgpE+qOE84D7GoSo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/scope-manager/download/@typescript-eslint/scope-manager-5.2.0.tgz} + registry.npmmirror.com/@typescript-eslint/scope-manager/5.3.0: + resolution: {integrity: sha1-l9DMx8kVjoniAtXiTOa6SQUtQy4=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/scope-manager/download/@typescript-eslint/scope-manager-5.3.0.tgz} name: '@typescript-eslint/scope-manager' - version: 5.2.0 + version: 5.3.0 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.2.0 - '@typescript-eslint/visitor-keys': registry.npmmirror.com/@typescript-eslint/visitor-keys/5.2.0 + '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.3.0 + '@typescript-eslint/visitor-keys': registry.npmmirror.com/@typescript-eslint/visitor-keys/5.3.0 dev: true - registry.npmmirror.com/@typescript-eslint/types/5.2.0: - resolution: {integrity: sha1-etMtFavdsO6WijMPDqGC6lRO988=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/types/download/@typescript-eslint/types-5.2.0.tgz} + registry.npmmirror.com/@typescript-eslint/types/5.3.0: + resolution: {integrity: sha1-ryn9U4Z8LfACjFfDamVb1+ngVBY=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/types/download/@typescript-eslint/types-5.3.0.tgz} name: '@typescript-eslint/types' - version: 5.2.0 + version: 5.3.0 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - registry.npmmirror.com/@typescript-eslint/typescript-estree/5.2.0_typescript@4.4.4: - resolution: {integrity: sha1-wi4P9viko/eFBKgOvWhv4ocKaK4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/typescript-estree/download/@typescript-eslint/typescript-estree-5.2.0.tgz} - id: registry.npmmirror.com/@typescript-eslint/typescript-estree/5.2.0 + registry.npmmirror.com/@typescript-eslint/typescript-estree/5.3.0_typescript@4.4.4: + resolution: {integrity: sha1-T2jd1G3CmDGCQC0qsh+0StlJiM8=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/typescript-estree/download/@typescript-eslint/typescript-estree-5.3.0.tgz} + id: registry.npmmirror.com/@typescript-eslint/typescript-estree/5.3.0 name: '@typescript-eslint/typescript-estree' - version: 5.2.0 + version: 5.3.0 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -4898,8 +4790,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.2.0 - '@typescript-eslint/visitor-keys': registry.npmmirror.com/@typescript-eslint/visitor-keys/5.2.0 + '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.3.0 + '@typescript-eslint/visitor-keys': registry.npmmirror.com/@typescript-eslint/visitor-keys/5.3.0 debug: registry.nlark.com/debug/4.3.2 globby: registry.nlark.com/globby/11.0.4 is-glob: registry.npmmirror.com/is-glob/4.0.3 @@ -4910,13 +4802,13 @@ packages: - supports-color dev: true - registry.npmmirror.com/@typescript-eslint/visitor-keys/5.2.0: - resolution: {integrity: sha1-A1ItNd+YR08I4DVxcafRslmoj1U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/visitor-keys/download/@typescript-eslint/visitor-keys-5.2.0.tgz} + registry.npmmirror.com/@typescript-eslint/visitor-keys/5.3.0: + resolution: {integrity: sha1-piWHkPO3slR/cO2NSh4MNJmZRSM=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/visitor-keys/download/@typescript-eslint/visitor-keys-5.3.0.tgz} name: '@typescript-eslint/visitor-keys' - version: 5.2.0 + version: 5.3.0 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.2.0 + '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.3.0 eslint-visitor-keys: registry.nlark.com/eslint-visitor-keys/3.0.0 dev: true @@ -5002,6 +4894,17 @@ packages: estree-walker: registry.nlark.com/estree-walker/2.0.2 source-map: registry.nlark.com/source-map/0.6.1 + registry.npmmirror.com/@vue/compiler-core/3.2.21: + resolution: {integrity: sha1-JlZsMrKtg4GZ1HHvXfYgqDhG8k4=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-core/download/@vue/compiler-core-3.2.21.tgz} + name: '@vue/compiler-core' + version: 3.2.21 + dependencies: + '@babel/parser': registry.npmmirror.com/@babel/parser/7.15.6 + '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.21 + estree-walker: registry.nlark.com/estree-walker/2.0.2 + source-map: registry.nlark.com/source-map/0.6.1 + dev: true + registry.npmmirror.com/@vue/compiler-dom/3.2.20: resolution: {integrity: sha1-jg7zVEScD69BUZsAv8IEXq4B3LU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-dom/download/@vue/compiler-dom-3.2.20.tgz} name: '@vue/compiler-dom' @@ -5010,8 +4913,17 @@ packages: '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.2.20 '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.20 + registry.npmmirror.com/@vue/compiler-dom/3.2.21: + resolution: {integrity: sha1-1vbIU2TviIj5xOkSK/uhHnj7OYw=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-dom/download/@vue/compiler-dom-3.2.21.tgz} + name: '@vue/compiler-dom' + version: 3.2.21 + dependencies: + '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.2.21 + '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.21 + dev: true + registry.npmmirror.com/@vue/compiler-sfc/3.2.20: - resolution: {integrity: sha1-LXZo528GbFZt18CcFcmszk6Hbgo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-sfc/download/@vue/compiler-sfc-3.2.20.tgz?cache=0&sync_timestamp=1633742387387&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vue%2Fcompiler-sfc%2Fdownload%2F%40vue%2Fcompiler-sfc-3.2.20.tgz} + resolution: {integrity: sha1-LXZo528GbFZt18CcFcmszk6Hbgo=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-sfc/download/@vue/compiler-sfc-3.2.20.tgz} name: '@vue/compiler-sfc' version: 3.2.20 dependencies: @@ -5025,6 +4937,24 @@ packages: magic-string: registry.nlark.com/magic-string/0.25.7 postcss: registry.npmmirror.com/postcss/8.3.6 source-map: registry.nlark.com/source-map/0.6.1 + dev: false + + registry.npmmirror.com/@vue/compiler-sfc/3.2.21: + resolution: {integrity: sha1-QmOe5J5yWvt9jx0ZQOddwXpWACw=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-sfc/download/@vue/compiler-sfc-3.2.21.tgz} + name: '@vue/compiler-sfc' + version: 3.2.21 + dependencies: + '@babel/parser': registry.npmmirror.com/@babel/parser/7.15.6 + '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.2.21 + '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.2.21 + '@vue/compiler-ssr': registry.npmmirror.com/@vue/compiler-ssr/3.2.21 + '@vue/ref-transform': registry.npmmirror.com/@vue/ref-transform/3.2.21 + '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.21 + estree-walker: registry.nlark.com/estree-walker/2.0.2 + magic-string: registry.nlark.com/magic-string/0.25.7 + postcss: registry.npmmirror.com/postcss/8.3.9 + source-map: registry.nlark.com/source-map/0.6.1 + dev: true registry.npmmirror.com/@vue/compiler-ssr/3.2.20: resolution: {integrity: sha1-nM62Jh2ZMstVaCAmEMHCj4bF5SE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-ssr/download/@vue/compiler-ssr-3.2.20.tgz} @@ -5033,6 +4963,16 @@ packages: dependencies: '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.2.20 '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.20 + dev: false + + registry.npmmirror.com/@vue/compiler-ssr/3.2.21: + resolution: {integrity: sha1-N9Ek+J6K3vn9VrhXdd5LUxCgQ24=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-ssr/download/@vue/compiler-ssr-3.2.21.tgz} + name: '@vue/compiler-ssr' + version: 3.2.21 + dependencies: + '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.2.21 + '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.21 + dev: true registry.npmmirror.com/@vue/devtools-api/6.0.0-beta.19: resolution: {integrity: sha1-+OiAWdqkJFFZkkJqDH6lzeB+mb8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/devtools-api/download/@vue/devtools-api-6.0.0-beta.19.tgz} @@ -5040,23 +4980,23 @@ packages: version: 6.0.0-beta.19 dev: false - registry.npmmirror.com/@vue/eslint-config-typescript/8.0.0_0f379a1a1772a0a439b573e54e1379e8: - resolution: {integrity: sha1-56WqDN9fXVngX36jEOiVSkm4/EE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/eslint-config-typescript/download/@vue/eslint-config-typescript-8.0.0.tgz?cache=0&sync_timestamp=1634109955383&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vue%2Feslint-config-typescript%2Fdownload%2F%40vue%2Feslint-config-typescript-8.0.0.tgz} - id: registry.npmmirror.com/@vue/eslint-config-typescript/8.0.0 + registry.npmmirror.com/@vue/eslint-config-typescript/9.0.0_6e2aa7baa83ea64b77c81400f52e762e: + resolution: {integrity: sha1-5qRtT/ssgrY5/hg+xzRWnzO0dgU=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/eslint-config-typescript/download/@vue/eslint-config-typescript-9.0.0.tgz?cache=0&sync_timestamp=1635860043732&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vue%2Feslint-config-typescript%2Fdownload%2F%40vue%2Feslint-config-typescript-9.0.0.tgz} + id: registry.npmmirror.com/@vue/eslint-config-typescript/9.0.0 name: '@vue/eslint-config-typescript' - version: 8.0.0 - engines: {node: ^10.12.0 || >=12.0.0} + version: 9.0.0 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/eslint-plugin': ^5.0.0 '@typescript-eslint/parser': ^5.0.0 eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 eslint-plugin-vue: ^7.17.0 dependencies: - '@typescript-eslint/eslint-plugin': registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.2.0_9a56ca1c5fc1d82b3da3317a5c6f9ab1 - '@typescript-eslint/parser': registry.npmmirror.com/@typescript-eslint/parser/5.2.0_eslint@8.1.0+typescript@4.4.4 + '@typescript-eslint/eslint-plugin': registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.3.0_f8873316f48f7781ccc3e081fc76e214 + '@typescript-eslint/parser': registry.npmmirror.com/@typescript-eslint/parser/5.3.0_eslint@8.1.0+typescript@4.4.4 eslint: registry.npmmirror.com/eslint/8.1.0 eslint-plugin-vue: registry.npmmirror.com/eslint-plugin-vue/8.0.3_eslint@8.1.0 - vue-eslint-parser: registry.nlark.com/vue-eslint-parser/7.10.0_eslint@8.1.0 + vue-eslint-parser: registry.npmmirror.com/vue-eslint-parser/8.0.1_eslint@8.1.0 transitivePeerDependencies: - supports-color dev: true @@ -5078,6 +5018,19 @@ packages: '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.20 estree-walker: registry.nlark.com/estree-walker/2.0.2 magic-string: registry.nlark.com/magic-string/0.25.7 + dev: false + + registry.npmmirror.com/@vue/ref-transform/3.2.21: + resolution: {integrity: sha1-sMVUyfZAw/AF935nYGaqD6upCYQ=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/ref-transform/download/@vue/ref-transform-3.2.21.tgz} + name: '@vue/ref-transform' + version: 3.2.21 + dependencies: + '@babel/parser': registry.npmmirror.com/@babel/parser/7.15.6 + '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.2.21 + '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.21 + estree-walker: registry.nlark.com/estree-walker/2.0.2 + magic-string: registry.nlark.com/magic-string/0.25.7 + dev: true registry.npmmirror.com/@vue/runtime-core/3.2.20: resolution: {integrity: sha1-j2PpVqP4j7dyVBRDxFp3ASEQEss=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/runtime-core/download/@vue/runtime-core-3.2.20.tgz} @@ -5116,6 +5069,12 @@ packages: name: '@vue/shared' version: 3.2.20 + registry.npmmirror.com/@vue/shared/3.2.21: + resolution: {integrity: sha1-TNgMDmLPZaetqyRJ6GtvDLM6Ews=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/shared/download/@vue/shared-3.2.21.tgz} + name: '@vue/shared' + version: 3.2.21 + dev: true + registry.npmmirror.com/@vueuse/core/6.7.4_vue@3.2.20: resolution: {integrity: sha1-jhVSRFQ4ixHJ62/1mmdCYCuXbi8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/core/download/@vueuse/core-6.7.4.tgz} id: registry.npmmirror.com/@vueuse/core/6.7.4 @@ -5206,7 +5165,7 @@ packages: dev: true registry.npmmirror.com/async-validator/4.0.3: - resolution: {integrity: sha1-yOzWso/I4YsUvk7HxwRkH5mdN30=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/async-validator/download/async-validator-4.0.3.tgz} + resolution: {integrity: sha1-yOzWso/I4YsUvk7HxwRkH5mdN30=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/async-validator/download/async-validator-4.0.3.tgz} name: async-validator version: 4.0.3 dev: false @@ -5222,13 +5181,13 @@ packages: dev: false registry.npmmirror.com/camelcase-keys/6.2.2: - resolution: {integrity: sha1-XnVda6UaoiPsfT1S8ld4IQ+dw8A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/camelcase-keys/download/camelcase-keys-6.2.2.tgz} + resolution: {integrity: sha1-XnVda6UaoiPsfT1S8ld4IQ+dw8A=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/camelcase-keys/download/camelcase-keys-6.2.2.tgz} name: camelcase-keys version: 6.2.2 engines: {node: '>=8'} dependencies: camelcase: registry.nlark.com/camelcase/5.3.1 - map-obj: registry.nlark.com/map-obj/4.2.1 + map-obj: registry.npmmirror.com/map-obj/4.2.1 quick-lru: registry.nlark.com/quick-lru/4.0.1 dev: true @@ -5276,15 +5235,30 @@ packages: engines: {node: '>= 12'} dev: true + registry.npmmirror.com/conventional-commits-parser/3.2.2: + resolution: {integrity: sha1-GQ+5kAxuAr4MC8qbA9V+JJgmOf0=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/conventional-commits-parser/download/conventional-commits-parser-3.2.2.tgz} + name: conventional-commits-parser + version: 3.2.2 + engines: {node: '>=10'} + hasBin: true + dependencies: + is-text-path: registry.nlark.com/is-text-path/1.0.1 + JSONStream: registry.nlark.com/JSONStream/1.3.5 + lodash: registry.nlark.com/lodash/4.17.21 + meow: registry.nlark.com/meow/8.1.2 + split2: registry.npmmirror.com/split2/3.2.2 + through2: registry.nlark.com/through2/4.0.2 + dev: true + registry.npmmirror.com/date-fns/2.25.0: - resolution: {integrity: sha1-jFyPHZWL44CamgP0t0LrqJT8VoA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/date-fns/download/date-fns-2.25.0.tgz} + resolution: {integrity: sha1-jFyPHZWL44CamgP0t0LrqJT8VoA=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/date-fns/download/date-fns-2.25.0.tgz} name: date-fns version: 2.25.0 engines: {node: '>=0.11'} dev: false registry.npmmirror.com/decamelize/1.2.0: - resolution: {integrity: sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/decamelize/download/decamelize-1.2.0.tgz} + resolution: {integrity: sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/decamelize/download/decamelize-1.2.0.tgz} name: decamelize version: 1.2.0 engines: {node: '>=0.10.0'} @@ -5325,7 +5299,7 @@ packages: dev: true registry.npmmirror.com/esbuild-android-arm64/0.13.4: - resolution: {integrity: sha1-UXiiDSt6unQaMcGWCfnmezRplrk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-android-arm64/download/esbuild-android-arm64-0.13.4.tgz} + resolution: {integrity: sha1-UXiiDSt6unQaMcGWCfnmezRplrk=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-android-arm64/download/esbuild-android-arm64-0.13.4.tgz} name: esbuild-android-arm64 version: 0.13.4 cpu: [arm64] @@ -5335,7 +5309,7 @@ packages: optional: true registry.npmmirror.com/esbuild-darwin-64/0.13.4: - resolution: {integrity: sha1-ej5myOEnG2UFQbJe7WXITzVkpp0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-darwin-64/download/esbuild-darwin-64-0.13.4.tgz} + resolution: {integrity: sha1-ej5myOEnG2UFQbJe7WXITzVkpp0=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-darwin-64/download/esbuild-darwin-64-0.13.4.tgz} name: esbuild-darwin-64 version: 0.13.4 cpu: [x64] @@ -5345,7 +5319,7 @@ packages: optional: true registry.npmmirror.com/esbuild-darwin-arm64/0.13.4: - resolution: {integrity: sha1-eT/spgMrKlfvKR65stM3aNYKSdY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-darwin-arm64/download/esbuild-darwin-arm64-0.13.4.tgz} + resolution: {integrity: sha1-eT/spgMrKlfvKR65stM3aNYKSdY=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-darwin-arm64/download/esbuild-darwin-arm64-0.13.4.tgz} name: esbuild-darwin-arm64 version: 0.13.4 cpu: [arm64] @@ -5355,7 +5329,7 @@ packages: optional: true registry.npmmirror.com/esbuild-freebsd-64/0.13.4: - resolution: {integrity: sha1-KUrsPCz0tB+2kAIS/Jwz3Y+7tKI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-freebsd-64/download/esbuild-freebsd-64-0.13.4.tgz} + resolution: {integrity: sha1-KUrsPCz0tB+2kAIS/Jwz3Y+7tKI=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-freebsd-64/download/esbuild-freebsd-64-0.13.4.tgz} name: esbuild-freebsd-64 version: 0.13.4 cpu: [x64] @@ -5365,7 +5339,7 @@ packages: optional: true registry.npmmirror.com/esbuild-freebsd-arm64/0.13.4: - resolution: {integrity: sha1-Cf5mx1HBL5uXaXax2D895ZTLJ4c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-freebsd-arm64/download/esbuild-freebsd-arm64-0.13.4.tgz} + resolution: {integrity: sha1-Cf5mx1HBL5uXaXax2D895ZTLJ4c=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-freebsd-arm64/download/esbuild-freebsd-arm64-0.13.4.tgz} name: esbuild-freebsd-arm64 version: 0.13.4 cpu: [arm64] @@ -5375,7 +5349,7 @@ packages: optional: true registry.npmmirror.com/esbuild-linux-32/0.13.4: - resolution: {integrity: sha1-qfB5PXvMnO9PT/pDmMUlh3+6WDk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-32/download/esbuild-linux-32-0.13.4.tgz} + resolution: {integrity: sha1-qfB5PXvMnO9PT/pDmMUlh3+6WDk=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-32/download/esbuild-linux-32-0.13.4.tgz} name: esbuild-linux-32 version: 0.13.4 cpu: [ia32] @@ -5385,7 +5359,7 @@ packages: optional: true registry.npmmirror.com/esbuild-linux-64/0.13.4: - resolution: {integrity: sha1-wNC0ydYuO7+L3yzs43QDqm1g/C4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-64/download/esbuild-linux-64-0.13.4.tgz} + resolution: {integrity: sha1-wNC0ydYuO7+L3yzs43QDqm1g/C4=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-64/download/esbuild-linux-64-0.13.4.tgz} name: esbuild-linux-64 version: 0.13.4 cpu: [x64] @@ -5395,7 +5369,7 @@ packages: optional: true registry.npmmirror.com/esbuild-linux-arm/0.13.4: - resolution: {integrity: sha1-GGzZuIhawTK5lTpKCv5mgWjevRA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-arm/download/esbuild-linux-arm-0.13.4.tgz} + resolution: {integrity: sha1-GGzZuIhawTK5lTpKCv5mgWjevRA=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-arm/download/esbuild-linux-arm-0.13.4.tgz} name: esbuild-linux-arm version: 0.13.4 cpu: [arm] @@ -5405,7 +5379,7 @@ packages: optional: true registry.npmmirror.com/esbuild-linux-arm64/0.13.4: - resolution: {integrity: sha1-EpLZe/pkoI0Sco+KeDe/kndsd5s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-arm64/download/esbuild-linux-arm64-0.13.4.tgz} + resolution: {integrity: sha1-EpLZe/pkoI0Sco+KeDe/kndsd5s=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-arm64/download/esbuild-linux-arm64-0.13.4.tgz} name: esbuild-linux-arm64 version: 0.13.4 cpu: [arm64] @@ -5415,7 +5389,7 @@ packages: optional: true registry.npmmirror.com/esbuild-linux-mips64le/0.13.4: - resolution: {integrity: sha1-QgSb9yvFhoF7SlHMnjIUjRPl6Ac=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-mips64le/download/esbuild-linux-mips64le-0.13.4.tgz} + resolution: {integrity: sha1-QgSb9yvFhoF7SlHMnjIUjRPl6Ac=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-mips64le/download/esbuild-linux-mips64le-0.13.4.tgz} name: esbuild-linux-mips64le version: 0.13.4 cpu: [mips64el] @@ -5425,7 +5399,7 @@ packages: optional: true registry.npmmirror.com/esbuild-linux-ppc64le/0.13.4: - resolution: {integrity: sha1-rfHOLvIwJ1fEODiH2mrE3SW+nU8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-ppc64le/download/esbuild-linux-ppc64le-0.13.4.tgz} + resolution: {integrity: sha1-rfHOLvIwJ1fEODiH2mrE3SW+nU8=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-ppc64le/download/esbuild-linux-ppc64le-0.13.4.tgz} name: esbuild-linux-ppc64le version: 0.13.4 cpu: [ppc64] @@ -5435,7 +5409,7 @@ packages: optional: true registry.npmmirror.com/esbuild-openbsd-64/0.13.4: - resolution: {integrity: sha1-HIEiEBiYxSogyHhpNc8+t6Gbg7Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-openbsd-64/download/esbuild-openbsd-64-0.13.4.tgz} + resolution: {integrity: sha1-HIEiEBiYxSogyHhpNc8+t6Gbg7Q=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-openbsd-64/download/esbuild-openbsd-64-0.13.4.tgz} name: esbuild-openbsd-64 version: 0.13.4 cpu: [x64] @@ -5445,7 +5419,7 @@ packages: optional: true registry.npmmirror.com/esbuild-sunos-64/0.13.4: - resolution: {integrity: sha1-TslfqhSmDylf5IW+v/7/9Ahzkzc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-sunos-64/download/esbuild-sunos-64-0.13.4.tgz?cache=0&sync_timestamp=1635080479854&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fesbuild-sunos-64%2Fdownload%2Fesbuild-sunos-64-0.13.4.tgz} + resolution: {integrity: sha1-TslfqhSmDylf5IW+v/7/9Ahzkzc=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-sunos-64/download/esbuild-sunos-64-0.13.4.tgz} name: esbuild-sunos-64 version: 0.13.4 cpu: [x64] @@ -5455,7 +5429,7 @@ packages: optional: true registry.npmmirror.com/esbuild-windows-32/0.13.4: - resolution: {integrity: sha1-MYLDgEh7eXsE0OwsgMKUVmaGkIA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-32/download/esbuild-windows-32-0.13.4.tgz} + resolution: {integrity: sha1-MYLDgEh7eXsE0OwsgMKUVmaGkIA=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-32/download/esbuild-windows-32-0.13.4.tgz} name: esbuild-windows-32 version: 0.13.4 cpu: [ia32] @@ -5465,7 +5439,7 @@ packages: optional: true registry.npmmirror.com/esbuild-windows-64/0.13.4: - resolution: {integrity: sha1-uemV+S2B9DOgTzNhHmA+gvkjLmk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-64/download/esbuild-windows-64-0.13.4.tgz} + resolution: {integrity: sha1-uemV+S2B9DOgTzNhHmA+gvkjLmk=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-64/download/esbuild-windows-64-0.13.4.tgz} name: esbuild-windows-64 version: 0.13.4 cpu: [x64] @@ -5475,7 +5449,7 @@ packages: optional: true registry.npmmirror.com/esbuild-windows-arm64/0.13.4: - resolution: {integrity: sha1-+yOVMvB7dk0Vj0zHhxeO9Mb621w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-arm64/download/esbuild-windows-arm64-0.13.4.tgz} + resolution: {integrity: sha1-+yOVMvB7dk0Vj0zHhxeO9Mb621w=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-arm64/download/esbuild-windows-arm64-0.13.4.tgz} name: esbuild-windows-arm64 version: 0.13.4 cpu: [arm64] @@ -5613,7 +5587,7 @@ packages: dev: true registry.npmmirror.com/estraverse/4.3.0: - resolution: {integrity: sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/estraverse/download/estraverse-4.3.0.tgz} + resolution: {integrity: sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/estraverse/download/estraverse-4.3.0.tgz?cache=0&sync_timestamp=1635237901372&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Festraverse%2Fdownload%2Festraverse-4.3.0.tgz} name: estraverse version: 4.3.0 engines: {node: '>=4.0'} @@ -5634,7 +5608,7 @@ packages: dev: true registry.npmmirror.com/find-up/4.1.0: - resolution: {integrity: sha1-l6/n1s3AvFkoWEt8jXsW6KmqXRk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/find-up/download/find-up-4.1.0.tgz?cache=0&sync_timestamp=1633619099767&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffind-up%2Fdownload%2Ffind-up-4.1.0.tgz} + resolution: {integrity: sha1-l6/n1s3AvFkoWEt8jXsW6KmqXRk=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/find-up/download/find-up-4.1.0.tgz?cache=0&sync_timestamp=1633619099767&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffind-up%2Fdownload%2Ffind-up-4.1.0.tgz} name: find-up version: 4.1.0 engines: {node: '>=8'} @@ -5644,7 +5618,7 @@ packages: dev: true registry.npmmirror.com/find-up/5.0.0: - resolution: {integrity: sha1-TJKBnstwg1YeT0okCoa+UZj1Nvw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/find-up/download/find-up-5.0.0.tgz?cache=0&sync_timestamp=1633619099767&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffind-up%2Fdownload%2Ffind-up-5.0.0.tgz} + resolution: {integrity: sha1-TJKBnstwg1YeT0okCoa+UZj1Nvw=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/find-up/download/find-up-5.0.0.tgz?cache=0&sync_timestamp=1633619099767&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffind-up%2Fdownload%2Ffind-up-5.0.0.tgz} name: find-up version: 5.0.0 engines: {node: '>=10'} @@ -5654,7 +5628,7 @@ packages: dev: true registry.npmmirror.com/glob-parent/5.1.2: - resolution: {integrity: sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/glob-parent/download/glob-parent-5.1.2.tgz} + resolution: {integrity: sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/glob-parent/download/glob-parent-5.1.2.tgz} name: glob-parent version: 5.1.2 engines: {node: '>= 6'} @@ -5685,7 +5659,7 @@ packages: dev: true registry.npmmirror.com/highlight.js/11.2.0: - resolution: {integrity: sha1-p+O4wf3E8FOLk7LcLd1TpAxqsPA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/highlight.js/download/highlight.js-11.2.0.tgz} + resolution: {integrity: sha1-p+O4wf3E8FOLk7LcLd1TpAxqsPA=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/highlight.js/download/highlight.js-11.2.0.tgz} name: highlight.js version: 11.2.0 engines: {node: '>=12.0.0'} @@ -5700,7 +5674,7 @@ packages: dev: true registry.npmmirror.com/import-meta-resolve/1.1.1: - resolution: {integrity: sha1-JE/VQv0frnNVDU+LPN47uh17Kxg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/import-meta-resolve/download/import-meta-resolve-1.1.1.tgz} + resolution: {integrity: sha1-JE/VQv0frnNVDU+LPN47uh17Kxg=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/import-meta-resolve/download/import-meta-resolve-1.1.1.tgz} name: import-meta-resolve version: 1.1.1 dependencies: @@ -5804,7 +5778,7 @@ packages: dev: true registry.npmmirror.com/local-pkg/0.1.0: - resolution: {integrity: sha1-dCKyro/B47nvLxMrCg6S2HnfUu8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/local-pkg/download/local-pkg-0.1.0.tgz} + resolution: {integrity: sha1-dCKyro/B47nvLxMrCg6S2HnfUu8=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/local-pkg/download/local-pkg-0.1.0.tgz} name: local-pkg version: 0.1.0 dependencies: @@ -5812,7 +5786,7 @@ packages: dev: true registry.npmmirror.com/local-pkg/0.4.0: - resolution: {integrity: sha1-5iIRcYE9WggS3YT6gP+xyPzABTE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/local-pkg/download/local-pkg-0.4.0.tgz} + resolution: {integrity: sha1-5iIRcYE9WggS3YT6gP+xyPzABTE=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/local-pkg/download/local-pkg-0.4.0.tgz} name: local-pkg version: 0.4.0 engines: {node: '>=14'} @@ -5832,8 +5806,22 @@ packages: wrap-ansi: registry.nlark.com/wrap-ansi/6.2.0 dev: true + registry.npmmirror.com/map-obj/1.0.1: + resolution: {integrity: sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/map-obj/download/map-obj-1.0.1.tgz} + name: map-obj + version: 1.0.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.npmmirror.com/map-obj/4.2.1: + resolution: {integrity: sha1-5Oo5nbyXmuc1yDyGPdMb3zZCd7c=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/map-obj/download/map-obj-4.2.1.tgz} + name: map-obj + version: 4.2.1 + engines: {node: '>=8'} + dev: true + registry.npmmirror.com/mlly/0.2.5: - resolution: {integrity: sha1-zXCW0O/PrjEQkewcuFW55YXOJtM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mlly/download/mlly-0.2.5.tgz} + resolution: {integrity: sha1-zXCW0O/PrjEQkewcuFW55YXOJtM=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mlly/download/mlly-0.2.5.tgz} name: mlly version: 0.2.5 dependencies: @@ -5841,7 +5829,7 @@ packages: dev: true registry.npmmirror.com/ms/2.1.2: - resolution: {integrity: sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ms/download/ms-2.1.2.tgz} + resolution: {integrity: sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ms/download/ms-2.1.2.tgz} name: ms version: 2.1.2 dev: true @@ -5852,11 +5840,11 @@ packages: version: 2.1.3 dev: true - registry.npmmirror.com/naive-ui/2.20.0_eslint@8.1.0+vue@3.2.20: - resolution: {integrity: sha1-GguKPbPHe3KsNsbMRumwkdwma9A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/naive-ui/download/naive-ui-2.20.0.tgz} - id: registry.npmmirror.com/naive-ui/2.20.0 + registry.npmmirror.com/naive-ui/2.20.1_eslint@8.1.0+vue@3.2.20: + resolution: {integrity: sha1-OEXAshqoKeYQaveE1ev9z9t6byY=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/naive-ui/download/naive-ui-2.20.1.tgz} + id: registry.npmmirror.com/naive-ui/2.20.1 name: naive-ui - version: 2.20.0 + version: 2.20.1 peerDependencies: vue: ^3.0.0 dependencies: @@ -5891,6 +5879,7 @@ packages: version: 3.1.25 engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true + dev: false registry.npmmirror.com/nanoid/3.1.29: resolution: {integrity: sha1-IU+y16M+GlvvR1e3ed+utqTlrrQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/nanoid/download/nanoid-3.1.29.tgz?cache=0&sync_timestamp=1634176297559&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fnanoid%2Fdownload%2Fnanoid-3.1.29.tgz} @@ -5947,7 +5936,7 @@ packages: dev: true registry.npmmirror.com/p-try/2.2.0: - resolution: {integrity: sha1-yyhoVA4xPWHeWPr741zpAE1VQOY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-try/download/p-try-2.2.0.tgz?cache=0&sync_timestamp=1633367752239&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fp-try%2Fdownload%2Fp-try-2.2.0.tgz} + resolution: {integrity: sha1-yyhoVA4xPWHeWPr741zpAE1VQOY=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-try/download/p-try-2.2.0.tgz?cache=0&sync_timestamp=1633367752239&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fp-try%2Fdownload%2Fp-try-2.2.0.tgz} name: p-try version: 2.2.0 engines: {node: '>=6'} @@ -6007,6 +5996,7 @@ packages: colorette: registry.npmmirror.com/colorette/1.4.0 nanoid: registry.npmmirror.com/nanoid/3.1.25 source-map-js: registry.nlark.com/source-map-js/0.6.2 + dev: false registry.npmmirror.com/postcss/8.3.9: resolution: {integrity: sha1-mHVMqgbE7p61nMSL0HO7a9NDfDE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss/download/postcss-8.3.9.tgz} @@ -6035,6 +6025,17 @@ packages: name: react-is version: 17.0.2 + registry.npmmirror.com/read-pkg-up/7.0.1: + resolution: {integrity: sha1-86YTV1hFlzOuK5VjgFbhhU5+9Qc=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/read-pkg-up/download/read-pkg-up-7.0.1.tgz} + name: read-pkg-up + version: 7.0.1 + engines: {node: '>=8'} + dependencies: + find-up: registry.npmmirror.com/find-up/4.1.0 + read-pkg: registry.nlark.com/read-pkg/5.2.0 + type-fest: registry.npmmirror.com/type-fest/0.8.1 + dev: true + registry.npmmirror.com/rollup/2.58.0: resolution: {integrity: sha1-pkOYM2Xnv39bfGKoMxuYO3xMZ/s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rollup/download/rollup-2.58.0.tgz} name: rollup @@ -6077,6 +6078,14 @@ packages: version: 3.0.3 dev: true + registry.npmmirror.com/split2/3.2.2: + resolution: {integrity: sha1-vyzyo32DgxLCSciSBv16F90SNl8=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/split2/download/split2-3.2.2.tgz} + name: split2 + version: 3.2.2 + dependencies: + readable-stream: registry.nlark.com/readable-stream/3.6.0 + dev: true + registry.npmmirror.com/string-width/4.2.2: resolution: {integrity: sha1-2v1PlVmnWFz7pSnGoKT3NIjr1MU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string-width/download/string-width-4.2.2.tgz} name: string-width @@ -6107,7 +6116,7 @@ packages: dev: true registry.npmmirror.com/type-fest/0.18.1: - resolution: {integrity: sha1-20vBUaSiz07r+a3V23VQjbbMhB8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/type-fest/download/type-fest-0.18.1.tgz?cache=0&sync_timestamp=1635391704698&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ftype-fest%2Fdownload%2Ftype-fest-0.18.1.tgz} + resolution: {integrity: sha1-20vBUaSiz07r+a3V23VQjbbMhB8=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/type-fest/download/type-fest-0.18.1.tgz?cache=0&sync_timestamp=1635391704698&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ftype-fest%2Fdownload%2Ftype-fest-0.18.1.tgz} name: type-fest version: 0.18.1 engines: {node: '>=10'} @@ -6128,27 +6137,19 @@ packages: dev: true registry.npmmirror.com/type-fest/0.6.0: - resolution: {integrity: sha1-jSojcNPfiG61yQraHFv2GIrPg4s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/type-fest/download/type-fest-0.6.0.tgz?cache=0&sync_timestamp=1635391704698&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ftype-fest%2Fdownload%2Ftype-fest-0.6.0.tgz} + resolution: {integrity: sha1-jSojcNPfiG61yQraHFv2GIrPg4s=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/type-fest/download/type-fest-0.6.0.tgz?cache=0&sync_timestamp=1635391704698&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ftype-fest%2Fdownload%2Ftype-fest-0.6.0.tgz} name: type-fest version: 0.6.0 engines: {node: '>=8'} dev: true registry.npmmirror.com/type-fest/0.8.1: - resolution: {integrity: sha1-CeJJ696FHTseSNJ8EFREZn8XuD0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/type-fest/download/type-fest-0.8.1.tgz?cache=0&sync_timestamp=1635391704698&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ftype-fest%2Fdownload%2Ftype-fest-0.8.1.tgz} + resolution: {integrity: sha1-CeJJ696FHTseSNJ8EFREZn8XuD0=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/type-fest/download/type-fest-0.8.1.tgz?cache=0&sync_timestamp=1635391704698&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ftype-fest%2Fdownload%2Ftype-fest-0.8.1.tgz} name: type-fest version: 0.8.1 engines: {node: '>=8'} dev: true - registry.npmmirror.com/typescript/4.4.3: - resolution: {integrity: sha1-vcVAfKorEJ79T4L+EwZW+XeikyQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/typescript/download/typescript-4.4.3.tgz} - name: typescript - version: 4.4.3 - engines: {node: '>=4.2.0'} - hasBin: true - dev: true - registry.npmmirror.com/typescript/4.4.4: resolution: {integrity: sha1-LNAaGh8WBwTTEB/VpY/w+fy4Aww=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/typescript/download/typescript-4.4.4.tgz?cache=0&sync_timestamp=1634085039639&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ftypescript%2Fdownload%2Ftypescript-4.4.4.tgz} name: typescript @@ -6157,11 +6158,11 @@ packages: hasBin: true dev: true - registry.npmmirror.com/unplugin-icons/0.12.16_8d243728697ba143b290806bcef1890d: - resolution: {integrity: sha1-rVKIa3cTQXO0hkxwF1rdRx1gOlU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unplugin-icons/download/unplugin-icons-0.12.16.tgz} - id: registry.npmmirror.com/unplugin-icons/0.12.16 + registry.npmmirror.com/unplugin-icons/0.12.17_ffe6ba4676d23562dbecd516d3abe553: + resolution: {integrity: sha1-MJ/FE9d5mi+epQmh84oB3t8inzQ=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unplugin-icons/download/unplugin-icons-0.12.17.tgz} + id: registry.npmmirror.com/unplugin-icons/0.12.17 name: unplugin-icons - version: 0.12.16 + version: 0.12.17 peerDependencies: '@svgr/core': ^5.5.0 '@vue/compiler-sfc': ^3.0.2 @@ -6179,12 +6180,12 @@ packages: dependencies: '@antfu/install-pkg': registry.npmmirror.com/@antfu/install-pkg/0.1.0 '@antfu/utils': registry.nlark.com/@antfu/utils/0.3.0 - '@iconify/utils': registry.npmmirror.com/@iconify/utils/1.0.14 - '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc/3.2.20 + '@iconify/utils': registry.npmmirror.com/@iconify/utils/1.0.18 + '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc/3.2.21 debug: registry.nlark.com/debug/4.3.2 kolorist: registry.nlark.com/kolorist/1.5.0 local-pkg: registry.npmmirror.com/local-pkg/0.4.0 - unplugin: registry.npmmirror.com/unplugin/0.2.16_vite@2.6.13 + unplugin: registry.npmmirror.com/unplugin/0.2.19_vite@2.6.13 transitivePeerDependencies: - rollup - supports-color @@ -6192,14 +6193,21 @@ packages: - webpack dev: true - registry.npmmirror.com/unplugin-vue-components/0.16.0_vite@2.6.13+vue@3.2.20: - resolution: {integrity: sha1-FaXV0DrWWK4CAlI4Eex2FQd2Vp0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unplugin-vue-components/download/unplugin-vue-components-0.16.0.tgz} - id: registry.npmmirror.com/unplugin-vue-components/0.16.0 + registry.npmmirror.com/unplugin-vue-components/0.17.0_vite@2.6.13+vue@3.2.20: + resolution: {integrity: sha1-/f5OjITtdeLCb5mJGe2cktue1ts=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unplugin-vue-components/download/unplugin-vue-components-0.17.0.tgz} + id: registry.npmmirror.com/unplugin-vue-components/0.17.0 name: unplugin-vue-components - version: 0.16.0 + version: 0.17.0 engines: {node: '>=14'} peerDependencies: + '@babel/parser': ^7.15.8 + '@babel/traverse': ^7.15.4 vue: 2 || 3 + peerDependenciesMeta: + '@babel/parser': + optional: true + '@babel/traverse': + optional: true dependencies: '@antfu/utils': registry.nlark.com/@antfu/utils/0.3.0 '@rollup/pluginutils': registry.nlark.com/@rollup/pluginutils/4.1.1 @@ -6220,7 +6228,7 @@ packages: dev: true registry.npmmirror.com/unplugin/0.2.16_vite@2.6.13: - resolution: {integrity: sha1-bzTp9QaMo+ySo2sBb0e1rYu4dco=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unplugin/download/unplugin-0.2.16.tgz} + resolution: {integrity: sha1-bzTp9QaMo+ySo2sBb0e1rYu4dco=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unplugin/download/unplugin-0.2.16.tgz?cache=0&sync_timestamp=1635478018592&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Funplugin%2Fdownload%2Funplugin-0.2.16.tgz} id: registry.npmmirror.com/unplugin/0.2.16 name: unplugin version: 0.2.16 @@ -6240,6 +6248,27 @@ packages: webpack-virtual-modules: registry.nlark.com/webpack-virtual-modules/0.4.3 dev: true + registry.npmmirror.com/unplugin/0.2.19_vite@2.6.13: + resolution: {integrity: sha1-8WmbNurvFL6Uz16zur/hysN75no=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unplugin/download/unplugin-0.2.19.tgz?cache=0&sync_timestamp=1635478018592&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Funplugin%2Fdownload%2Funplugin-0.2.19.tgz} + id: registry.npmmirror.com/unplugin/0.2.19 + name: unplugin + version: 0.2.19 + peerDependencies: + rollup: ^2.50.0 + vite: ^2.3.0 + webpack: 4 || 5 + peerDependenciesMeta: + rollup: + optional: true + vite: + optional: true + webpack: + optional: true + dependencies: + vite: registry.npmmirror.com/vite/2.6.13_sass@1.43.4 + webpack-virtual-modules: registry.nlark.com/webpack-virtual-modules/0.4.3 + dev: true + registry.npmmirror.com/vite-plugin-html/2.1.1_vite@2.6.13: resolution: {integrity: sha1-AUtEEmpy1FnNRgvRVoAMIl0STL4=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vite-plugin-html/download/vite-plugin-html-2.1.1.tgz} id: registry.npmmirror.com/vite-plugin-html/2.1.1 @@ -6461,7 +6490,7 @@ packages: dev: false registry.npmmirror.com/vue-eslint-parser/8.0.1_eslint@8.1.0: - resolution: {integrity: sha1-JeCLIKQUVRUx8+GfmZkC4ez0XxM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-eslint-parser/download/vue-eslint-parser-8.0.1.tgz} + resolution: {integrity: sha1-JeCLIKQUVRUx8+GfmZkC4ez0XxM=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-eslint-parser/download/vue-eslint-parser-8.0.1.tgz} id: registry.npmmirror.com/vue-eslint-parser/8.0.1 name: vue-eslint-parser version: 8.0.1 @@ -6568,7 +6597,7 @@ packages: dev: true registry.npmmirror.com/yargs/17.1.1: - resolution: {integrity: sha1-wqgJFWS9sZb3wKZ8HRLluFuAZ7o=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yargs/download/yargs-17.1.1.tgz} + resolution: {integrity: sha1-wqgJFWS9sZb3wKZ8HRLluFuAZ7o=, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yargs/download/yargs-17.1.1.tgz} name: yargs version: 17.1.1 engines: {node: '>=12'} diff --git a/src/components/custom/CountTo/index.vue b/src/components/custom/CountTo/index.vue index 81a9285a..9dca9dd3 100644 --- a/src/components/custom/CountTo/index.vue +++ b/src/components/custom/CountTo/index.vue @@ -1,7 +1,5 @@ - - {{ value }} - + {{ value }} + diff --git a/src/views/dashboard/workbench/components/index.ts b/src/views/dashboard/workbench/components/index.ts new file mode 100644 index 00000000..a8834d17 --- /dev/null +++ b/src/views/dashboard/workbench/components/index.ts @@ -0,0 +1,3 @@ +import GradientBg from './GradientBg.vue'; + +export { GradientBg }; diff --git a/src/views/dashboard/workbench/index.vue b/src/views/dashboard/workbench/index.vue index 6a2f7a14..9f597cd0 100644 --- a/src/views/dashboard/workbench/index.vue +++ b/src/views/dashboard/workbench/index.vue @@ -8,9 +8,22 @@