From ffdb556a096db247306eae8eecc1b85718314cdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=87=AF=E9=BE=99?= <502431556@qq.com> Date: Tue, 7 Dec 2021 17:16:17 +0800 Subject: [PATCH] =?UTF-8?q?build:=20=E9=85=8D=E7=BD=AE=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E6=A0=BC=E5=BC=8F=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc.js | 82 +- package.json | 8 +- pnpm-lock.yaml | 5930 ++++++++++++++++++++++++++------- src/App.vue | 17 +- src/components/HelloWorld.vue | 12 +- stylelint.config.js | 25 +- vite.config.ts | 2 +- 7 files changed, 4886 insertions(+), 1190 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 273db8f..c75fe03 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,7 +1,79 @@ -module.exports = { - extends: ['@antfu'], +// @ts-check +const { defineConfig } = require('eslint-define-config') +module.exports = defineConfig({ + root: true, + env: { + browser: true, + node: true, + es6: true + }, + parser: 'vue-eslint-parser', + parserOptions: { + parser: '@typescript-eslint/parser', + ecmaVersion: 2020, + sourceType: 'module', + jsxPragma: 'React', + ecmaFeatures: { + jsx: true + } + }, + extends: [ + 'plugin:vue/vue3-recommended', + 'plugin:@typescript-eslint/recommended', + 'prettier', + 'plugin:prettier/recommended' + ], rules: { - 'comma-dangle': [2, 'never'], - curly: [2, 'multi-line'] + 'vue/script-setup-uses-vars': 'error', + '@typescript-eslint/ban-ts-ignore': 'off', + '@typescript-eslint/explicit-function-return-type': 'off', + '@typescript-eslint/no-explicit-any': 'off', + '@typescript-eslint/no-var-requires': 'off', + '@typescript-eslint/no-empty-function': 'off', + 'vue/custom-event-name-casing': 'off', + 'no-use-before-define': 'off', + '@typescript-eslint/no-use-before-define': 'off', + '@typescript-eslint/ban-ts-comment': 'off', + '@typescript-eslint/ban-types': 'off', + '@typescript-eslint/no-non-null-assertion': 'off', + '@typescript-eslint/explicit-module-boundary-types': 'off', + '@typescript-eslint/no-unused-vars': [ + 'error', + { + argsIgnorePattern: '^_', + varsIgnorePattern: '^_' + } + ], + 'no-unused-vars': [ + 'error', + { + argsIgnorePattern: '^_', + varsIgnorePattern: '^_' + } + ], + 'space-before-function-paren': 'off', + + 'vue/attributes-order': 'off', + 'vue/one-component-per-file': 'off', + 'vue/html-closing-bracket-newline': 'off', + 'vue/max-attributes-per-line': 'off', + 'vue/multiline-html-element-content-newline': 'off', + 'vue/singleline-html-element-content-newline': 'off', + 'vue/attribute-hyphenation': 'off', + 'vue/require-default-prop': 'off', + 'vue/require-explicit-emits': 'off', + 'vue/html-self-closing': [ + 'error', + { + html: { + void: 'always', + normal: 'never', + component: 'always' + }, + svg: 'always', + math: 'always' + } + ], + 'vue/multi-word-component-names': 'off' } -} +}) diff --git a/package.json b/package.json index 9a1a14b..b21a4f9 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,6 @@ "vue-router": "^4.0.12" }, "devDependencies": { - "@antfu/eslint-config": "^0.12.1", "@commitlint/cli": "^15.0.0", "@commitlint/config-conventional": "^15.0.0", "@typescript-eslint/eslint-plugin": "^5.6.0", @@ -38,17 +37,19 @@ "eslint": "^8.4.1", "eslint-config-prettier": "^8.3.0", "eslint-define-config": "^1.2.0", - "eslint-plugin-jest": "^25.3.0", "eslint-plugin-prettier": "^4.0.0", "eslint-plugin-vue": "^8.2.0", "husky": "^7.0.4", "less": "^4.1.2", "lint-staged": "^12.1.2", "postcss": "^8.4.4", + "postcss-html": "^1.3.0", + "postcss-less": "^5.0.0", "prettier": "^2.5.1", "pretty-quick": "^3.1.2", "rimraf": "^3.0.2", "stylelint": "^14.1.0", + "stylelint-config-html": "^1.0.0", "stylelint-config-prettier": "^9.0.3", "stylelint-config-standard": "^24.0.0", "stylelint-order": "^5.0.0", @@ -59,8 +60,7 @@ "vite-plugin-eslint": "^1.3.0", "vite-plugin-vue-setup-extend": "^0.1.0", "vite-plugin-windicss": "^1.5.4", - "vue-eslint-parser": "^8.0.1", "vue-tsc": "^0.3.0", "windicss": "^3.2.1" } -} \ No newline at end of file +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5db87be..da2df00 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -14,17 +14,19 @@ specifiers: eslint: ^8.4.1 eslint-config-prettier: ^8.3.0 eslint-define-config: ^1.2.0 - eslint-plugin-jest: ^25.3.0 eslint-plugin-prettier: ^4.0.0 eslint-plugin-vue: ^8.2.0 husky: ^7.0.4 less: ^4.1.2 lint-staged: ^12.1.2 postcss: ^8.4.4 + postcss-html: ^1.3.0 + postcss-less: ^5.0.0 prettier: ^2.5.1 pretty-quick: ^3.1.2 rimraf: ^3.0.2 stylelint: ^14.1.0 + stylelint-config-html: ^1.0.0 stylelint-config-prettier: ^9.0.3 stylelint-config-standard: ^24.0.0 stylelint-order: ^5.0.0 @@ -36,7 +38,6 @@ specifiers: vite-plugin-vue-setup-extend: ^0.1.0 vite-plugin-windicss: ^1.5.4 vue: ^3.2.16 - vue-eslint-parser: ^8.0.1 vue-router: ^4.0.12 vue-tsc: ^0.3.0 windicss: ^3.2.1 @@ -59,17 +60,19 @@ devDependencies: eslint: registry.npmmirror.com/eslint/8.4.1 eslint-config-prettier: registry.nlark.com/eslint-config-prettier/8.3.0_eslint@8.4.1 eslint-define-config: registry.npmmirror.com/eslint-define-config/1.2.0 - eslint-plugin-jest: registry.npmmirror.com/eslint-plugin-jest/25.3.0_f5f36dc98a2ac4a880db61b9466462f9 eslint-plugin-prettier: registry.npmmirror.com/eslint-plugin-prettier/4.0.0_90bd2ba582f6d1348d73031482d782e2 eslint-plugin-vue: registry.npmmirror.com/eslint-plugin-vue/8.2.0_eslint@8.4.1 husky: registry.npmmirror.com/husky/7.0.4 less: registry.npmmirror.com/less/4.1.2 lint-staged: registry.npmmirror.com/lint-staged/12.1.2 postcss: registry.npmmirror.com/postcss/8.4.4 + postcss-html: registry.npmmirror.com/postcss-html/1.3.0 + postcss-less: registry.nlark.com/postcss-less/5.0.0 prettier: registry.npmmirror.com/prettier/2.5.1 pretty-quick: registry.npmmirror.com/pretty-quick/3.1.2_prettier@2.5.1 rimraf: registry.nlark.com/rimraf/3.0.2 stylelint: registry.npmmirror.com/stylelint/14.1.0 + stylelint-config-html: registry.npmmirror.com/stylelint-config-html/1.0.0_c1fe332c2f0bd1acbb28be685cc2d480 stylelint-config-prettier: registry.npmmirror.com/stylelint-config-prettier/9.0.3_stylelint@14.1.0 stylelint-config-standard: registry.npmmirror.com/stylelint-config-standard/24.0.0_stylelint@14.1.0 stylelint-order: registry.npmmirror.com/stylelint-order/5.0.0_stylelint@14.1.0 @@ -80,14 +83,17 @@ devDependencies: vite-plugin-eslint: registry.nlark.com/vite-plugin-eslint/1.3.0_vite@2.6.14 vite-plugin-vue-setup-extend: registry.npmmirror.com/vite-plugin-vue-setup-extend/0.1.0_vite@2.6.14 vite-plugin-windicss: registry.npmmirror.com/vite-plugin-windicss/1.5.4_vite@2.6.14 - vue-eslint-parser: registry.npmmirror.com/vue-eslint-parser/8.0.1_eslint@8.4.1 vue-tsc: registry.npmmirror.com/vue-tsc/0.3.0_typescript@4.5.2 windicss: registry.npmmirror.com/windicss/3.2.1 packages: - 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: https://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: @@ -95,28 +101,48 @@ packages: dev: true registry.nlark.com/@babel/helper-plugin-utils/7.14.5: - resolution: {integrity: sha1-WsgizpfuxGdBq3ClF5ceRDpwxak=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz} + resolution: + { + integrity: sha1-WsgizpfuxGdBq3ClF5ceRDpwxak=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz + } name: '@babel/helper-plugin-utils' version: 7.14.5 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dev: true registry.nlark.com/@babel/helper-validator-identifier/7.15.7: - resolution: {integrity: sha1-Ig35k7/pBKSmsCq08zhaXr9uI4k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.15.7.tgz} + resolution: + { + integrity: sha1-Ig35k7/pBKSmsCq08zhaXr9uI4k=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.15.7.tgz + } name: '@babel/helper-validator-identifier' version: 7.15.7 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dev: true registry.nlark.com/@babel/helper-validator-option/7.14.5: - resolution: {integrity: sha1-bnKh//GNXfy4eOHmLxoCHEty1aM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/helper-validator-option/download/@babel/helper-validator-option-7.14.5.tgz} + resolution: + { + integrity: sha1-bnKh//GNXfy4eOHmLxoCHEty1aM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/@babel/helper-validator-option/download/@babel/helper-validator-option-7.14.5.tgz + } name: '@babel/helper-validator-option' version: 7.14.5 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dev: true registry.nlark.com/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.16.0: - resolution: {integrity: sha1-7mATSMNw+jNNIge+FYd3SWUh/VE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/plugin-syntax-import-meta/download/@babel/plugin-syntax-import-meta-7.10.4.tgz} + resolution: + { + integrity: sha1-7mATSMNw+jNNIge+FYd3SWUh/VE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/@babel/plugin-syntax-import-meta/download/@babel/plugin-syntax-import-meta-7.10.4.tgz + } id: registry.nlark.com/@babel/plugin-syntax-import-meta/7.10.4 name: '@babel/plugin-syntax-import-meta' version: 7.10.4 @@ -128,7 +154,12 @@ packages: dev: true registry.nlark.com/@emmetio/abbreviation/2.2.2: - resolution: {integrity: sha1-dGdi/Z56jC6mBPWAxi48/iUOaYk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@emmetio/abbreviation/download/@emmetio/abbreviation-2.2.2.tgz} + resolution: + { + integrity: sha1-dGdi/Z56jC6mBPWAxi48/iUOaYk=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/@emmetio/abbreviation/download/@emmetio/abbreviation-2.2.2.tgz + } name: '@emmetio/abbreviation' version: 2.2.2 dependencies: @@ -136,7 +167,12 @@ packages: dev: true registry.nlark.com/@emmetio/css-abbreviation/2.1.4: - resolution: {integrity: sha1-kDYuihEizjt29sMVeQfTAYL1P1Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@emmetio/css-abbreviation/download/@emmetio/css-abbreviation-2.1.4.tgz} + resolution: + { + integrity: sha1-kDYuihEizjt29sMVeQfTAYL1P1Q=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/@emmetio/css-abbreviation/download/@emmetio/css-abbreviation-2.1.4.tgz + } name: '@emmetio/css-abbreviation' version: 2.1.4 dependencies: @@ -144,62 +180,102 @@ packages: dev: true registry.nlark.com/@emmetio/scanner/1.0.0: - resolution: {integrity: sha1-Blsq9iM/50dNRII+PeuJckr0K18=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@emmetio/scanner/download/@emmetio/scanner-1.0.0.tgz} + resolution: + { + integrity: sha1-Blsq9iM/50dNRII+PeuJckr0K18=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/@emmetio/scanner/download/@emmetio/scanner-1.0.0.tgz + } name: '@emmetio/scanner' version: 1.0.0 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: https://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'} + engines: { node: '>= 8' } dependencies: '@nodelib/fs.stat': registry.nlark.com/@nodelib/fs.stat/2.0.5 run-parallel: registry.nlark.com/run-parallel/1.2.0 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: https://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'} + 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: https://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'} + engines: { node: '>= 8' } dependencies: '@nodelib/fs.scandir': registry.nlark.com/@nodelib/fs.scandir/2.1.5 fastq: registry.nlark.com/fastq/1.13.0 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: https://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'} + engines: { node: '>= 8.0.0' } dependencies: estree-walker: registry.nlark.com/estree-walker/2.0.2 picomatch: registry.nlark.com/picomatch/2.3.0 dev: true registry.nlark.com/@types/json5/0.0.29: - resolution: {integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/json5/download/@types/json5-0.0.29.tgz} + resolution: + { + integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/@types/json5/download/@types/json5-0.0.29.tgz + } name: '@types/json5' version: 0.0.29 dev: true registry.nlark.com/@vue/babel-helper-vue-transform-on/1.0.2: - resolution: {integrity: sha1-m5xpHNBvyFUiGiR1w8yDHXdLx9w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vue/babel-helper-vue-transform-on/download/@vue/babel-helper-vue-transform-on-1.0.2.tgz} + resolution: + { + integrity: sha1-m5xpHNBvyFUiGiR1w8yDHXdLx9w=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/@vue/babel-helper-vue-transform-on/download/@vue/babel-helper-vue-transform-on-1.0.2.tgz + } name: '@vue/babel-helper-vue-transform-on' version: 1.0.2 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: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/JSONStream/download/JSONStream-1.3.5.tgz + } name: JSONStream version: 1.3.5 hasBin: true @@ -209,7 +285,12 @@ packages: dev: true registry.nlark.com/acorn-jsx/5.3.2_acorn@7.4.1: - resolution: {integrity: sha1-ftW7VZCLOy8bxVxq8WU7rafweTc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/acorn-jsx/download/acorn-jsx-5.3.2.tgz} + resolution: + { + integrity: sha1-ftW7VZCLOy8bxVxq8WU7rafweTc=, + registry: https://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 @@ -220,7 +301,12 @@ packages: dev: true registry.nlark.com/acorn-jsx/5.3.2_acorn@8.6.0: - resolution: {integrity: sha1-ftW7VZCLOy8bxVxq8WU7rafweTc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/acorn-jsx/download/acorn-jsx-5.3.2.tgz} + resolution: + { + integrity: sha1-ftW7VZCLOy8bxVxq8WU7rafweTc=, + registry: https://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 @@ -231,109 +317,179 @@ packages: dev: true registry.nlark.com/aggregate-error/3.1.0: - resolution: {integrity: sha1-kmcP9Q9TWb23o+DUDQ7DDFc3aHo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/aggregate-error/download/aggregate-error-3.1.0.tgz} + resolution: + { + integrity: sha1-kmcP9Q9TWb23o+DUDQ7DDFc3aHo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/aggregate-error/download/aggregate-error-3.1.0.tgz + } name: aggregate-error version: 3.1.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: clean-stack: registry.nlark.com/clean-stack/2.2.0 indent-string: registry.nlark.com/indent-string/4.0.0 dev: true registry.nlark.com/ansi-colors/4.1.1: - resolution: {integrity: sha1-y7muJWv3UK8eqzRPIpqif+lLo0g=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ansi-colors/download/ansi-colors-4.1.1.tgz} + resolution: + { + integrity: sha1-y7muJWv3UK8eqzRPIpqif+lLo0g=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/ansi-colors/download/ansi-colors-4.1.1.tgz + } name: ansi-colors version: 4.1.1 - engines: {node: '>=6'} + engines: { node: '>=6' } dev: true registry.nlark.com/ansi-escapes/3.2.0: - resolution: {integrity: sha1-h4C5j/nb9WOBUtHx/lwde0RCl2s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ansi-escapes/download/ansi-escapes-3.2.0.tgz} + resolution: + { + integrity: sha1-h4C5j/nb9WOBUtHx/lwde0RCl2s=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/ansi-escapes/download/ansi-escapes-3.2.0.tgz + } name: ansi-escapes version: 3.2.0 - engines: {node: '>=4'} + engines: { node: '>=4' } dev: true registry.nlark.com/ansi-escapes/4.3.2: - resolution: {integrity: sha1-ayKR0dt9mLZSHV8e+kLQ86n+tl4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ansi-escapes/download/ansi-escapes-4.3.2.tgz} + resolution: + { + integrity: sha1-ayKR0dt9mLZSHV8e+kLQ86n+tl4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/ansi-escapes/download/ansi-escapes-4.3.2.tgz + } name: ansi-escapes version: 4.3.2 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: type-fest: registry.npmmirror.com/type-fest/0.21.3 dev: true registry.nlark.com/ansi-regex/3.0.0: - resolution: {integrity: sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ansi-regex/download/ansi-regex-3.0.0.tgz} + resolution: + { + integrity: sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/ansi-regex/download/ansi-regex-3.0.0.tgz + } name: ansi-regex version: 3.0.0 - engines: {node: '>=4'} + engines: { node: '>=4' } dev: true registry.nlark.com/ansi-regex/4.1.0: - resolution: {integrity: sha1-i5+PCM8ay4Q3Vqg5yox+MWjFGZc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ansi-regex/download/ansi-regex-4.1.0.tgz} + resolution: + { + integrity: sha1-i5+PCM8ay4Q3Vqg5yox+MWjFGZc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/ansi-regex/download/ansi-regex-4.1.0.tgz + } name: ansi-regex version: 4.1.0 - engines: {node: '>=6'} + engines: { node: '>=6' } dev: true registry.nlark.com/ansi-regex/5.0.1: - resolution: {integrity: sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ansi-regex/download/ansi-regex-5.0.1.tgz} + resolution: + { + integrity: sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/ansi-regex/download/ansi-regex-5.0.1.tgz + } name: ansi-regex version: 5.0.1 - engines: {node: '>=8'} + engines: { node: '>=8' } dev: true registry.nlark.com/ansi-regex/6.0.1: - resolution: {integrity: sha1-MYPjj66aZdfLXlOUXNWJfQJgoGo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ansi-regex/download/ansi-regex-6.0.1.tgz} + resolution: + { + integrity: sha1-MYPjj66aZdfLXlOUXNWJfQJgoGo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/ansi-regex/download/ansi-regex-6.0.1.tgz + } name: ansi-regex version: 6.0.1 - engines: {node: '>=12'} + engines: { node: '>=12' } dev: true registry.nlark.com/ansi-styles/3.2.1: - resolution: {integrity: sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz} + resolution: + { + integrity: sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz + } name: ansi-styles version: 3.2.1 - engines: {node: '>=4'} + engines: { node: '>=4' } dependencies: color-convert: registry.nlark.com/color-convert/1.9.3 dev: true registry.nlark.com/ansi-styles/4.3.0: - resolution: {integrity: sha1-7dgDYornHATIWuegkG7a00tkiTc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz} + resolution: + { + integrity: sha1-7dgDYornHATIWuegkG7a00tkiTc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz + } name: ansi-styles version: 4.3.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: color-convert: registry.nlark.com/color-convert/2.0.1 dev: true registry.nlark.com/ansi-styles/6.1.0: - resolution: {integrity: sha1-hzE8ECuBGKvVc3GvqzRhi/c1DtM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ansi-styles/download/ansi-styles-6.1.0.tgz} + resolution: + { + integrity: sha1-hzE8ECuBGKvVc3GvqzRhi/c1DtM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/ansi-styles/download/ansi-styles-6.1.0.tgz + } name: ansi-styles version: 6.1.0 - engines: {node: '>=12'} + engines: { node: '>=12' } dev: true 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: https://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'} + engines: { node: '>= 8' } dependencies: normalize-path: registry.nlark.com/normalize-path/3.0.0 picomatch: registry.nlark.com/picomatch/2.3.0 dev: true registry.nlark.com/arg/4.1.3: - resolution: {integrity: sha1-Jp/HrVuOQstjyJbVZmAXJhwUQIk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/arg/download/arg-4.1.3.tgz} + resolution: + { + integrity: sha1-Jp/HrVuOQstjyJbVZmAXJhwUQIk=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/arg/download/arg-4.1.3.tgz + } name: arg version: 4.1.3 dev: true registry.nlark.com/argparse/1.0.10: - resolution: {integrity: sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/argparse/download/argparse-1.0.10.tgz} + resolution: + { + integrity: sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/argparse/download/argparse-1.0.10.tgz + } name: argparse version: 1.0.10 dependencies: @@ -341,116 +497,201 @@ packages: dev: true registry.nlark.com/argparse/2.0.1: - resolution: {integrity: sha1-JG9Q88p4oyQPbJl+ipvR6sSeSzg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/argparse/download/argparse-2.0.1.tgz} + resolution: + { + integrity: sha1-JG9Q88p4oyQPbJl+ipvR6sSeSzg=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/argparse/download/argparse-2.0.1.tgz + } name: argparse version: 2.0.1 dev: true registry.nlark.com/array-differ/3.0.0: - resolution: {integrity: sha1-PLs9DzFoEOr8xHYkc0I31q7krms=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/array-differ/download/array-differ-3.0.0.tgz} + resolution: + { + integrity: sha1-PLs9DzFoEOr8xHYkc0I31q7krms=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/array-differ/download/array-differ-3.0.0.tgz + } name: array-differ version: 3.0.0 - engines: {node: '>=8'} + engines: { node: '>=8' } 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: https://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: https://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'} + 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: https://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'} + engines: { node: '>=0.10.0' } dev: true registry.nlark.com/arrify/2.0.1: - resolution: {integrity: sha1-yWVekzHgq81YjSp8rX6ZVvZnAfo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/arrify/download/arrify-2.0.1.tgz} + resolution: + { + integrity: sha1-yWVekzHgq81YjSp8rX6ZVvZnAfo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/arrify/download/arrify-2.0.1.tgz + } name: arrify version: 2.0.1 - engines: {node: '>=8'} + engines: { node: '>=8' } dev: true registry.nlark.com/asap/2.0.6: - resolution: {integrity: sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/asap/download/asap-2.0.6.tgz} + resolution: + { + integrity: sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/asap/download/asap-2.0.6.tgz + } name: asap version: 2.0.6 dev: true registry.nlark.com/assert-never/1.2.1: - resolution: {integrity: sha1-EfDjY78UYgX7CBk7XHuQ9NHPRP4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/assert-never/download/assert-never-1.2.1.tgz} + resolution: + { + integrity: sha1-EfDjY78UYgX7CBk7XHuQ9NHPRP4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/assert-never/download/assert-never-1.2.1.tgz + } name: assert-never version: 1.2.1 dev: true registry.nlark.com/astral-regex/2.0.0: - resolution: {integrity: sha1-SDFDxWeu7UeFdZwIZXhtx319LjE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/astral-regex/download/astral-regex-2.0.0.tgz} + resolution: + { + integrity: sha1-SDFDxWeu7UeFdZwIZXhtx319LjE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/astral-regex/download/astral-regex-2.0.0.tgz + } name: astral-regex version: 2.0.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dev: true registry.nlark.com/babel-walk/3.0.0-canary-5: - resolution: {integrity: sha1-9m7Ncpg1eu5ElV8jWm71QhkQSxE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/babel-walk/download/babel-walk-3.0.0-canary-5.tgz} + resolution: + { + integrity: sha1-9m7Ncpg1eu5ElV8jWm71QhkQSxE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/babel-walk/download/babel-walk-3.0.0-canary-5.tgz + } name: babel-walk version: 3.0.0-canary-5 - engines: {node: '>= 10.0.0'} + engines: { node: '>= 10.0.0' } dependencies: '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 dev: true registry.nlark.com/balanced-match/1.0.2: - resolution: {integrity: sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/balanced-match/download/balanced-match-1.0.2.tgz} + resolution: + { + integrity: sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/balanced-match/download/balanced-match-1.0.2.tgz + } name: balanced-match version: 1.0.2 dev: true registry.nlark.com/balanced-match/2.0.0: - resolution: {integrity: sha1-3HD5INeNuLhYU1eVhnv0j4IGM9k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/balanced-match/download/balanced-match-2.0.0.tgz} + resolution: + { + integrity: sha1-3HD5INeNuLhYU1eVhnv0j4IGM9k=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/balanced-match/download/balanced-match-2.0.0.tgz + } name: balanced-match version: 2.0.0 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: https://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'} + engines: { node: '>=8' } dev: true registry.nlark.com/braces/3.0.2: - resolution: {integrity: sha1-NFThpGLujVmeI23zNs2epPiv4Qc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/braces/download/braces-3.0.2.tgz} + resolution: + { + integrity: sha1-NFThpGLujVmeI23zNs2epPiv4Qc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/braces/download/braces-3.0.2.tgz + } name: braces version: 3.0.2 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: fill-range: registry.nlark.com/fill-range/7.0.1 dev: true registry.nlark.com/buffer-from/1.1.2: - resolution: {integrity: sha1-KxRqb9cugLT1XSVfNe1Zo6mkG9U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/buffer-from/download/buffer-from-1.1.2.tgz} + resolution: + { + integrity: sha1-KxRqb9cugLT1XSVfNe1Zo6mkG9U=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/buffer-from/download/buffer-from-1.1.2.tgz + } name: buffer-from version: 1.1.2 dev: true registry.nlark.com/builtin-modules/3.2.0: - resolution: {integrity: sha1-RdXbmefuXmvE82LgCL+RerUEmIc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/builtin-modules/download/builtin-modules-3.2.0.tgz} + resolution: + { + integrity: sha1-RdXbmefuXmvE82LgCL+RerUEmIc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/builtin-modules/download/builtin-modules-3.2.0.tgz + } name: builtin-modules version: 3.2.0 - engines: {node: '>=6'} + engines: { node: '>=6' } 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: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/builtins/download/builtins-4.0.0.tgz + } name: builtins version: 4.0.0 dependencies: @@ -458,14 +699,24 @@ packages: dev: true registry.nlark.com/cachedir/2.2.0: - resolution: {integrity: sha1-Ga+kMF4F155BdWaILgyPlg9i/w4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cachedir/download/cachedir-2.2.0.tgz} + resolution: + { + integrity: sha1-Ga+kMF4F155BdWaILgyPlg9i/w4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/cachedir/download/cachedir-2.2.0.tgz + } name: cachedir version: 2.2.0 - engines: {node: '>=6'} + engines: { node: '>=6' } dev: true registry.nlark.com/call-bind/1.0.2: - resolution: {integrity: sha1-sdTonmiBGcPJqQOtMKuy9qkZvjw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/call-bind/download/call-bind-1.0.2.tgz} + resolution: + { + integrity: sha1-sdTonmiBGcPJqQOtMKuy9qkZvjw=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/call-bind/download/call-bind-1.0.2.tgz + } name: call-bind version: 1.0.2 dependencies: @@ -474,14 +725,24 @@ packages: dev: true registry.nlark.com/callsites/3.1.0: - resolution: {integrity: sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz} + resolution: + { + integrity: sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz + } name: callsites version: 3.1.0 - engines: {node: '>=6'} + engines: { node: '>=6' } dev: true registry.nlark.com/character-parser/2.2.0: - resolution: {integrity: sha1-x84o821LzZdE5f/CxfzeHHMmH8A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/character-parser/download/character-parser-2.2.0.tgz} + resolution: + { + integrity: sha1-x84o821LzZdE5f/CxfzeHHMmH8A=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/character-parser/download/character-parser-2.2.0.tgz + } name: character-parser version: 2.2.0 dependencies: @@ -489,47 +750,77 @@ packages: dev: true registry.nlark.com/clean-regexp/1.0.0: - resolution: {integrity: sha1-jffHquUf02h06PjQW5GAvBGj/tc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/clean-regexp/download/clean-regexp-1.0.0.tgz} + resolution: + { + integrity: sha1-jffHquUf02h06PjQW5GAvBGj/tc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/clean-regexp/download/clean-regexp-1.0.0.tgz + } name: clean-regexp version: 1.0.0 - engines: {node: '>=4'} + engines: { node: '>=4' } dependencies: escape-string-regexp: registry.nlark.com/escape-string-regexp/1.0.5 dev: true registry.nlark.com/clean-stack/2.2.0: - resolution: {integrity: sha1-7oRy27Ep5yezHooQpCfe6d/kAIs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/clean-stack/download/clean-stack-2.2.0.tgz} + resolution: + { + integrity: sha1-7oRy27Ep5yezHooQpCfe6d/kAIs=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/clean-stack/download/clean-stack-2.2.0.tgz + } name: clean-stack version: 2.2.0 - engines: {node: '>=6'} + engines: { node: '>=6' } dev: true registry.nlark.com/cli-cursor/2.1.0: - resolution: {integrity: sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cli-cursor/download/cli-cursor-2.1.0.tgz} + resolution: + { + integrity: sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/cli-cursor/download/cli-cursor-2.1.0.tgz + } name: cli-cursor version: 2.1.0 - engines: {node: '>=4'} + engines: { node: '>=4' } dependencies: restore-cursor: registry.nlark.com/restore-cursor/2.0.0 dev: true registry.nlark.com/cli-cursor/3.1.0: - resolution: {integrity: sha1-JkMFp65JDR0Dvwybp8kl0XU68wc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cli-cursor/download/cli-cursor-3.1.0.tgz} + resolution: + { + integrity: sha1-JkMFp65JDR0Dvwybp8kl0XU68wc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/cli-cursor/download/cli-cursor-3.1.0.tgz + } name: cli-cursor version: 3.1.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: restore-cursor: registry.nlark.com/restore-cursor/3.1.0 dev: true registry.nlark.com/cli-width/2.2.1: - resolution: {integrity: sha1-sEM9C06chH7xiGik7xb9X8gnHEg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cli-width/download/cli-width-2.2.1.tgz} + resolution: + { + integrity: sha1-sEM9C06chH7xiGik7xb9X8gnHEg=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/cli-width/download/cli-width-2.2.1.tgz + } name: cli-width version: 2.2.1 dev: true registry.nlark.com/cliui/7.0.4: - resolution: {integrity: sha1-oCZe5lVHb8gHrqnfPfjfd4OAi08=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cliui/download/cliui-7.0.4.tgz} + resolution: + { + integrity: sha1-oCZe5lVHb8gHrqnfPfjfd4OAi08=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/cliui/download/cliui-7.0.4.tgz + } name: cliui version: 7.0.4 dependencies: @@ -539,16 +830,26 @@ packages: dev: true registry.nlark.com/clone-regexp/2.2.0: - resolution: {integrity: sha1-fWXgCIXNh5ZAXDWnN+eoa3Qp428=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/clone-regexp/download/clone-regexp-2.2.0.tgz} + resolution: + { + integrity: sha1-fWXgCIXNh5ZAXDWnN+eoa3Qp428=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/clone-regexp/download/clone-regexp-2.2.0.tgz + } name: clone-regexp version: 2.2.0 - engines: {node: '>=6'} + engines: { node: '>=6' } dependencies: is-regexp: registry.nlark.com/is-regexp/2.1.0 dev: true registry.nlark.com/color-convert/1.9.3: - resolution: {integrity: sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/color-convert/download/color-convert-1.9.3.tgz} + resolution: + { + integrity: sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/color-convert/download/color-convert-1.9.3.tgz + } name: color-convert version: 1.9.3 dependencies: @@ -556,28 +857,48 @@ packages: dev: true registry.nlark.com/color-convert/2.0.1: - resolution: {integrity: sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/color-convert/download/color-convert-2.0.1.tgz} + resolution: + { + integrity: sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/color-convert/download/color-convert-2.0.1.tgz + } name: color-convert version: 2.0.1 - engines: {node: '>=7.0.0'} + engines: { node: '>=7.0.0' } dependencies: color-name: registry.nlark.com/color-name/1.1.4 dev: true registry.nlark.com/color-name/1.1.3: - resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/color-name/download/color-name-1.1.3.tgz} + resolution: + { + integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/color-name/download/color-name-1.1.3.tgz + } name: color-name version: 1.1.3 dev: true registry.nlark.com/color-name/1.1.4: - resolution: {integrity: sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz} + resolution: + { + integrity: sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz + } name: color-name version: 1.1.4 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} + 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 + } name: compare-func version: 2.0.0 dependencies: @@ -586,13 +907,23 @@ packages: dev: true registry.nlark.com/concat-map/0.0.1: - resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/concat-map/download/concat-map-0.0.1.tgz} + resolution: + { + integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/concat-map/download/concat-map-0.0.1.tgz + } name: concat-map version: 0.0.1 dev: true registry.nlark.com/constantinople/4.0.1: - resolution: {integrity: sha1-De8RP6Dk3I3oMzGlz3nIsyUhMVE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/constantinople/download/constantinople-4.0.1.tgz} + resolution: + { + integrity: sha1-De8RP6Dk3I3oMzGlz3nIsyUhMVE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/constantinople/download/constantinople-4.0.1.tgz + } name: constantinople version: 4.0.1 dependencies: @@ -601,20 +932,30 @@ packages: dev: true registry.nlark.com/conventional-changelog-angular/5.0.13: - resolution: {integrity: sha1-iWiF1juRSnDUk0tZ0v573hgysow=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/conventional-changelog-angular/download/conventional-changelog-angular-5.0.13.tgz} + resolution: + { + integrity: sha1-iWiF1juRSnDUk0tZ0v573hgysow=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/conventional-changelog-angular/download/conventional-changelog-angular-5.0.13.tgz + } name: conventional-changelog-angular version: 5.0.13 - engines: {node: '>=10'} + engines: { node: '>=10' } dependencies: compare-func: registry.nlark.com/compare-func/2.0.0 q: registry.nlark.com/q/1.5.1 dev: true registry.nlark.com/conventional-changelog-conventionalcommits/4.6.1: - resolution: {integrity: sha1-9MCSGTcFBnTleNx4dfkINRzPQBQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/conventional-changelog-conventionalcommits/download/conventional-changelog-conventionalcommits-4.6.1.tgz} + resolution: + { + integrity: sha1-9MCSGTcFBnTleNx4dfkINRzPQBQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/conventional-changelog-conventionalcommits/download/conventional-changelog-conventionalcommits-4.6.1.tgz + } name: conventional-changelog-conventionalcommits version: 4.6.1 - engines: {node: '>=10'} + engines: { node: '>=10' } dependencies: compare-func: registry.nlark.com/compare-func/2.0.0 lodash: registry.nlark.com/lodash/4.17.21 @@ -622,13 +963,23 @@ packages: dev: true registry.nlark.com/conventional-commit-types/3.0.0: - resolution: {integrity: sha1-fJIU5Y6uk+hd1m2/uv5+T/+iNls=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/conventional-commit-types/download/conventional-commit-types-3.0.0.tgz} + resolution: + { + integrity: sha1-fJIU5Y6uk+hd1m2/uv5+T/+iNls=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/conventional-commit-types/download/conventional-commit-types-3.0.0.tgz + } name: conventional-commit-types version: 3.0.0 dev: true registry.nlark.com/convert-source-map/1.8.0: - resolution: {integrity: sha1-8zc8MtIbTXgN2ABFFGhPt5HKQ2k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/convert-source-map/download/convert-source-map-1.8.0.tgz} + resolution: + { + integrity: sha1-8zc8MtIbTXgN2ABFFGhPt5HKQ2k=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/convert-source-map/download/convert-source-map-1.8.0.tgz + } name: convert-source-map version: 1.8.0 dependencies: @@ -636,7 +987,12 @@ packages: dev: true registry.nlark.com/copy-anything/2.0.3: - resolution: {integrity: sha1-hCQHugJGaw34RIGbvjuuu+XUXYc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/copy-anything/download/copy-anything-2.0.3.tgz} + resolution: + { + integrity: sha1-hCQHugJGaw34RIGbvjuuu+XUXYc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/copy-anything/download/copy-anything-2.0.3.tgz + } name: copy-anything version: 2.0.3 dependencies: @@ -644,10 +1000,15 @@ packages: 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} + resolution: + { + integrity: sha1-cU11ZSLKzoZ4Z8y0R0xdAbuuXW0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/cosmiconfig/download/cosmiconfig-7.0.1.tgz + } name: cosmiconfig version: 7.0.1 - engines: {node: '>=10'} + engines: { node: '>=10' } dependencies: '@types/parse-json': registry.npmmirror.com/@types/parse-json/4.0.0 import-fresh: registry.nlark.com/import-fresh/3.3.0 @@ -657,16 +1018,26 @@ packages: dev: true registry.nlark.com/create-require/1.1.1: - resolution: {integrity: sha1-wdfo8eX2z8n/ZfnNNS03NIdWwzM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/create-require/download/create-require-1.1.1.tgz} + resolution: + { + integrity: sha1-wdfo8eX2z8n/ZfnNNS03NIdWwzM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/create-require/download/create-require-1.1.1.tgz + } name: create-require version: 1.1.1 dev: true registry.nlark.com/cross-spawn/7.0.3: - resolution: {integrity: sha1-9zqFudXUHQRVUcF34ogtSshXKKY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cross-spawn/download/cross-spawn-7.0.3.tgz} + resolution: + { + integrity: sha1-9zqFudXUHQRVUcF34ogtSshXKKY=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/cross-spawn/download/cross-spawn-7.0.3.tgz + } name: cross-spawn version: 7.0.3 - engines: {node: '>= 8'} + engines: { node: '>= 8' } dependencies: path-key: registry.nlark.com/path-key/3.1.1 shebang-command: registry.nlark.com/shebang-command/2.0.0 @@ -674,18 +1045,28 @@ packages: dev: true registry.nlark.com/cssesc/3.0.0: - resolution: {integrity: sha1-N3QZGZA7hoVl4cCep0dEXNGJg+4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cssesc/download/cssesc-3.0.0.tgz} + resolution: + { + integrity: sha1-N3QZGZA7hoVl4cCep0dEXNGJg+4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/cssesc/download/cssesc-3.0.0.tgz + } name: cssesc version: 3.0.0 - engines: {node: '>=4'} + engines: { node: '>=4' } hasBin: true dev: true registry.nlark.com/cz-conventional-changelog/3.2.0: - resolution: {integrity: sha1-au8fiS1kETND1+RVUpCJrJ8g5Hc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cz-conventional-changelog/download/cz-conventional-changelog-3.2.0.tgz} + resolution: + { + integrity: sha1-au8fiS1kETND1+RVUpCJrJ8g5Hc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/cz-conventional-changelog/download/cz-conventional-changelog-3.2.0.tgz + } name: cz-conventional-changelog version: 3.2.0 - engines: {node: '>= 10'} + engines: { node: '>= 10' } dependencies: chalk: registry.npmmirror.com/chalk/2.4.2 commitizen: registry.npmmirror.com/commitizen/4.2.4 @@ -698,99 +1079,164 @@ 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: https://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'} + engines: { node: '>=8' } 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: https://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'} + engines: { node: '>=0.10.0' } dependencies: decamelize: registry.npmmirror.com/decamelize/1.2.0 map-obj: registry.npmmirror.com/map-obj/1.0.1 dev: true registry.nlark.com/dedent/0.7.0: - resolution: {integrity: sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/dedent/download/dedent-0.7.0.tgz} + resolution: + { + integrity: sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/dedent/download/dedent-0.7.0.tgz + } name: dedent version: 0.7.0 dev: true registry.nlark.com/deep-is/0.1.4: - resolution: {integrity: sha1-pvLc5hL63S7x9Rm3NVHxfoUZmDE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/deep-is/download/deep-is-0.1.4.tgz} + resolution: + { + integrity: sha1-pvLc5hL63S7x9Rm3NVHxfoUZmDE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/deep-is/download/deep-is-0.1.4.tgz + } name: deep-is version: 0.1.4 dev: true registry.nlark.com/define-properties/1.1.3: - resolution: {integrity: sha1-z4jabL7ib+bbcJT2HYcMvYTO6fE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz} + resolution: + { + integrity: sha1-z4jabL7ib+bbcJT2HYcMvYTO6fE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz + } name: define-properties version: 1.1.3 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dependencies: object-keys: registry.nlark.com/object-keys/1.1.1 dev: true registry.nlark.com/detect-file/1.0.0: - resolution: {integrity: sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/detect-file/download/detect-file-1.0.0.tgz} + resolution: + { + integrity: sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/detect-file/download/detect-file-1.0.0.tgz + } name: detect-file version: 1.0.0 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dev: true registry.nlark.com/detect-indent/6.0.0: - resolution: {integrity: sha1-Cr0PVJ9p/GZZolT+lnhhhrb1KP0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/detect-indent/download/detect-indent-6.0.0.tgz} + resolution: + { + integrity: sha1-Cr0PVJ9p/GZZolT+lnhhhrb1KP0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/detect-indent/download/detect-indent-6.0.0.tgz + } name: detect-indent version: 6.0.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dev: true registry.nlark.com/diff/4.0.2: - resolution: {integrity: sha1-YPOuy4nV+uUgwRqhnvwruYKq3n0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/diff/download/diff-4.0.2.tgz} + resolution: + { + integrity: sha1-YPOuy4nV+uUgwRqhnvwruYKq3n0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/diff/download/diff-4.0.2.tgz + } name: diff version: 4.0.2 - engines: {node: '>=0.3.1'} + engines: { node: '>=0.3.1' } 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: https://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'} + engines: { node: '>=8' } dependencies: path-type: registry.nlark.com/path-type/4.0.0 dev: true registry.nlark.com/doctrine/2.1.0: - resolution: {integrity: sha1-XNAfwQFiG0LEzX9dGmYkNxbT850=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/doctrine/download/doctrine-2.1.0.tgz} + resolution: + { + integrity: sha1-XNAfwQFiG0LEzX9dGmYkNxbT850=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/doctrine/download/doctrine-2.1.0.tgz + } name: doctrine version: 2.1.0 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dependencies: esutils: registry.nlark.com/esutils/2.0.3 dev: true registry.nlark.com/doctrine/3.0.0: - resolution: {integrity: sha1-rd6+rXKmV023g2OdyHoSF3OXOWE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/doctrine/download/doctrine-3.0.0.tgz} + resolution: + { + integrity: sha1-rd6+rXKmV023g2OdyHoSF3OXOWE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/doctrine/download/doctrine-3.0.0.tgz + } name: doctrine version: 3.0.0 - engines: {node: '>=6.0.0'} + engines: { node: '>=6.0.0' } dependencies: esutils: registry.nlark.com/esutils/2.0.3 dev: true registry.nlark.com/doctypes/1.1.0: - resolution: {integrity: sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/doctypes/download/doctypes-1.1.0.tgz} + resolution: + { + integrity: sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/doctypes/download/doctypes-1.1.0.tgz + } name: doctypes version: 1.1.0 dev: true registry.nlark.com/dom-serializer/1.3.2: - resolution: {integrity: sha1-YgZDfTLO767HFhgDIwx6ILwbTZE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/dom-serializer/download/dom-serializer-1.3.2.tgz} + resolution: + { + integrity: sha1-YgZDfTLO767HFhgDIwx6ILwbTZE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/dom-serializer/download/dom-serializer-1.3.2.tgz + } name: dom-serializer version: 1.3.2 dependencies: @@ -800,13 +1246,23 @@ packages: dev: true registry.nlark.com/domelementtype/2.2.0: - resolution: {integrity: sha1-mgtsJ4LtahxzI9QiZxg9+b2LHVc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz} + resolution: + { + integrity: sha1-mgtsJ4LtahxzI9QiZxg9+b2LHVc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/domelementtype/download/domelementtype-2.2.0.tgz + } name: domelementtype version: 2.2.0 dev: true registry.nlark.com/domutils/2.8.0: - resolution: {integrity: sha1-RDfe9dtuLR9dbuhZvZXKfQIEgTU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/domutils/download/domutils-2.8.0.tgz} + resolution: + { + integrity: sha1-RDfe9dtuLR9dbuhZvZXKfQIEgTU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/domutils/download/domutils-2.8.0.tgz + } name: domutils version: 2.8.0 dependencies: @@ -816,16 +1272,26 @@ 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: https://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'} + engines: { node: '>=8' } dependencies: is-obj: registry.nlark.com/is-obj/2.0.0 dev: true registry.nlark.com/emmet/2.3.4: - resolution: {integrity: sha1-W6DXpVaaaMdpffqJDHcuTzF50SM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/emmet/download/emmet-2.3.4.tgz} + resolution: + { + integrity: sha1-W6DXpVaaaMdpffqJDHcuTzF50SM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/emmet/download/emmet-2.3.4.tgz + } name: emmet version: 2.3.4 dependencies: @@ -834,7 +1300,12 @@ packages: dev: true registry.nlark.com/end-of-stream/1.4.4: - resolution: {integrity: sha1-WuZKX0UFe682JuwU2gyl5LJDHrA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/end-of-stream/download/end-of-stream-1.4.4.tgz} + resolution: + { + integrity: sha1-WuZKX0UFe682JuwU2gyl5LJDHrA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/end-of-stream/download/end-of-stream-1.4.4.tgz + } name: end-of-stream version: 1.4.4 dependencies: @@ -842,29 +1313,49 @@ packages: dev: true registry.nlark.com/enquirer/2.3.6: - resolution: {integrity: sha1-Kn/l3WNKHkElqXXsmU/1RW3Dc00=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/enquirer/download/enquirer-2.3.6.tgz?cache=0&sync_timestamp=1631501914047&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fenquirer%2Fdownload%2Fenquirer-2.3.6.tgz} + resolution: + { + integrity: sha1-Kn/l3WNKHkElqXXsmU/1RW3Dc00=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/enquirer/download/enquirer-2.3.6.tgz?cache=0&sync_timestamp=1631501914047&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fenquirer%2Fdownload%2Fenquirer-2.3.6.tgz + } name: enquirer version: 2.3.6 - engines: {node: '>=8.6'} + engines: { node: '>=8.6' } dependencies: ansi-colors: registry.nlark.com/ansi-colors/4.1.1 dev: true registry.nlark.com/entities/2.2.0: - resolution: {integrity: sha1-CY3JDruD2N/6CJ1VJWs1HTTE2lU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/entities/download/entities-2.2.0.tgz} + resolution: + { + integrity: sha1-CY3JDruD2N/6CJ1VJWs1HTTE2lU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/entities/download/entities-2.2.0.tgz + } name: entities version: 2.2.0 dev: true registry.nlark.com/entities/3.0.1: - resolution: {integrity: sha1-K4h8piWF6W2zkDSC0zbBAGwwAdQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/entities/download/entities-3.0.1.tgz} + resolution: + { + integrity: sha1-K4h8piWF6W2zkDSC0zbBAGwwAdQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/entities/download/entities-3.0.1.tgz + } name: entities version: 3.0.1 - engines: {node: '>=0.12'} + engines: { node: '>=0.12' } dev: true registry.nlark.com/errno/0.1.8: - resolution: {integrity: sha1-i7Ppx9Rjvkl2/4iPdrSAnrwugR8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/errno/download/errno-0.1.8.tgz} + resolution: + { + integrity: sha1-i7Ppx9Rjvkl2/4iPdrSAnrwugR8=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/errno/download/errno-0.1.8.tgz + } name: errno version: 0.1.8 hasBin: true @@ -875,7 +1366,12 @@ packages: optional: true registry.nlark.com/error-ex/1.3.2: - resolution: {integrity: sha1-tKxAZIEH/c3PriQvQovqihTU8b8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/error-ex/download/error-ex-1.3.2.tgz} + resolution: + { + integrity: sha1-tKxAZIEH/c3PriQvQovqihTU8b8=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/error-ex/download/error-ex-1.3.2.tgz + } name: error-ex version: 1.3.2 dependencies: @@ -883,10 +1379,15 @@ packages: dev: true registry.nlark.com/es-to-primitive/1.2.1: - resolution: {integrity: sha1-5VzUyc3BiLzvsDs2bHNjI/xciYo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/es-to-primitive/download/es-to-primitive-1.2.1.tgz} + resolution: + { + integrity: sha1-5VzUyc3BiLzvsDs2bHNjI/xciYo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/es-to-primitive/download/es-to-primitive-1.2.1.tgz + } name: es-to-primitive version: 1.2.1 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dependencies: is-callable: registry.nlark.com/is-callable/1.2.4 is-date-object: registry.nlark.com/is-date-object/1.0.5 @@ -894,28 +1395,48 @@ packages: dev: true registry.nlark.com/escalade/3.1.1: - resolution: {integrity: sha1-2M/ccACWXFoBdLSoLqpcBVJ0LkA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz} + resolution: + { + integrity: sha1-2M/ccACWXFoBdLSoLqpcBVJ0LkA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz + } name: escalade version: 3.1.1 - engines: {node: '>=6'} + engines: { node: '>=6' } dev: true registry.nlark.com/escape-string-regexp/1.0.5: - resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz} + resolution: + { + integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz + } name: escape-string-regexp version: 1.0.5 - engines: {node: '>=0.8.0'} + engines: { node: '>=0.8.0' } dev: true registry.nlark.com/escape-string-regexp/4.0.0: - resolution: {integrity: sha1-FLqDpdNz49MR5a/KKc9b+tllvzQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-4.0.0.tgz?cache=0&sync_timestamp=1631501921416&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fescape-string-regexp%2Fdownload%2Fescape-string-regexp-4.0.0.tgz} + resolution: + { + integrity: sha1-FLqDpdNz49MR5a/KKc9b+tllvzQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-4.0.0.tgz?cache=0&sync_timestamp=1631501921416&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fescape-string-regexp%2Fdownload%2Fescape-string-regexp-4.0.0.tgz + } name: escape-string-regexp version: 4.0.0 - engines: {node: '>=10'} + engines: { node: '>=10' } dev: true registry.nlark.com/eslint-config-prettier/8.3.0_eslint@8.4.1: - resolution: {integrity: sha1-90cbILb+ipqSVMxoRFQgKIai3Xo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eslint-config-prettier/download/eslint-config-prettier-8.3.0.tgz} + resolution: + { + integrity: sha1-90cbILb+ipqSVMxoRFQgKIai3Xo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/eslint-config-prettier/download/eslint-config-prettier-8.3.0.tgz + } id: registry.nlark.com/eslint-config-prettier/8.3.0 name: eslint-config-prettier version: 8.3.0 @@ -927,7 +1448,12 @@ packages: dev: true registry.nlark.com/eslint-config-standard/16.0.3_79a23b4ffc45aed4cdeb891cd82eaee3: - resolution: {integrity: sha1-bIdh5UTpbFMf+SZC7rh4QrhIhRY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eslint-config-standard/download/eslint-config-standard-16.0.3.tgz} + resolution: + { + integrity: sha1-bIdh5UTpbFMf+SZC7rh4QrhIhRY=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/eslint-config-standard/download/eslint-config-standard-16.0.3.tgz + } id: registry.nlark.com/eslint-config-standard/16.0.3 name: eslint-config-standard version: 16.0.3 @@ -944,7 +1470,12 @@ packages: dev: true registry.nlark.com/eslint-import-resolver-node/0.3.6: - resolution: {integrity: sha1-QEi5WDldqJZoJSAB29nsprg7rL0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eslint-import-resolver-node/download/eslint-import-resolver-node-0.3.6.tgz} + resolution: + { + integrity: sha1-QEi5WDldqJZoJSAB29nsprg7rL0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/eslint-import-resolver-node/download/eslint-import-resolver-node-0.3.6.tgz + } name: eslint-import-resolver-node version: 0.3.6 dependencies: @@ -953,11 +1484,16 @@ packages: dev: true registry.nlark.com/eslint-plugin-es/3.0.1_eslint@8.4.1: - resolution: {integrity: sha1-dafN/czdwFiZNK7rOEF18iHFeJM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eslint-plugin-es/download/eslint-plugin-es-3.0.1.tgz} + resolution: + { + integrity: sha1-dafN/czdwFiZNK7rOEF18iHFeJM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/eslint-plugin-es/download/eslint-plugin-es-3.0.1.tgz + } id: registry.nlark.com/eslint-plugin-es/3.0.1 name: eslint-plugin-es version: 3.0.1 - engines: {node: '>=8.10.0'} + engines: { node: '>=8.10.0' } peerDependencies: eslint: '>=4.19.1' dependencies: @@ -967,11 +1503,16 @@ packages: dev: true registry.nlark.com/eslint-plugin-eslint-comments/3.2.0_eslint@8.4.1: - resolution: {integrity: sha1-nhzXtEE1JquzE5MwcderoFyhL/o=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eslint-plugin-eslint-comments/download/eslint-plugin-eslint-comments-3.2.0.tgz} + resolution: + { + integrity: sha1-nhzXtEE1JquzE5MwcderoFyhL/o=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/eslint-plugin-eslint-comments/download/eslint-plugin-eslint-comments-3.2.0.tgz + } id: registry.nlark.com/eslint-plugin-eslint-comments/3.2.0 name: eslint-plugin-eslint-comments version: 3.2.0 - engines: {node: '>=6.5.0'} + engines: { node: '>=6.5.0' } peerDependencies: eslint: '>=4.19.1' dependencies: @@ -981,11 +1522,16 @@ packages: dev: true registry.nlark.com/eslint-plugin-node/11.1.0_eslint@8.4.1: - resolution: {integrity: sha1-yVVEQW7kraJnQKMEdO78VALcZx0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eslint-plugin-node/download/eslint-plugin-node-11.1.0.tgz} + resolution: + { + integrity: sha1-yVVEQW7kraJnQKMEdO78VALcZx0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/eslint-plugin-node/download/eslint-plugin-node-11.1.0.tgz + } id: registry.nlark.com/eslint-plugin-node/11.1.0 name: eslint-plugin-node version: 11.1.0 - engines: {node: '>=8.10.0'} + engines: { node: '>=8.10.0' } peerDependencies: eslint: '>=5.16.0' dependencies: @@ -999,7 +1545,12 @@ packages: dev: true registry.nlark.com/eslint-template-visitor/2.3.2_eslint@8.4.1: - resolution: {integrity: sha1-tS+W/zEedzo0XXkFPMx4J1u8Rj0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eslint-template-visitor/download/eslint-template-visitor-2.3.2.tgz} + resolution: + { + integrity: sha1-tS+W/zEedzo0XXkFPMx4J1u8Rj0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/eslint-template-visitor/download/eslint-template-visitor-2.3.2.tgz + } id: registry.nlark.com/eslint-template-visitor/2.3.2 name: eslint-template-visitor version: 2.3.2 @@ -1017,20 +1568,30 @@ packages: dev: true registry.nlark.com/eslint-utils/2.1.0: - resolution: {integrity: sha1-0t5eA0JOcH3BDHQGjd7a5wh0Gyc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eslint-utils/download/eslint-utils-2.1.0.tgz} + resolution: + { + integrity: sha1-0t5eA0JOcH3BDHQGjd7a5wh0Gyc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/eslint-utils/download/eslint-utils-2.1.0.tgz + } name: eslint-utils version: 2.1.0 - engines: {node: '>=6'} + engines: { node: '>=6' } dependencies: eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/1.3.0 dev: true registry.nlark.com/eslint-utils/3.0.0_eslint@8.4.1: - resolution: {integrity: sha1-iuuvrOc0W7M1WdsKHxOh0tSMNnI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eslint-utils/download/eslint-utils-3.0.0.tgz} + resolution: + { + integrity: sha1-iuuvrOc0W7M1WdsKHxOh0tSMNnI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/eslint-utils/download/eslint-utils-3.0.0.tgz + } id: registry.nlark.com/eslint-utils/3.0.0 name: eslint-utils version: 3.0.0 - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + engines: { node: ^10.0.0 || ^12.0.0 || >= 14.0.0 } peerDependencies: eslint: '>=5' dependencies: @@ -1039,66 +1600,106 @@ packages: dev: true registry.nlark.com/esprima/4.0.1: - resolution: {integrity: sha1-E7BM2z5sXRnfkatph6hpVhmwqnE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/esprima/download/esprima-4.0.1.tgz} + resolution: + { + integrity: sha1-E7BM2z5sXRnfkatph6hpVhmwqnE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/esprima/download/esprima-4.0.1.tgz + } name: esprima version: 4.0.1 - engines: {node: '>=4'} + engines: { node: '>=4' } hasBin: true dev: true registry.nlark.com/esquery/1.4.0: - resolution: {integrity: sha1-IUj/w4uC6McFff7UhCWz5h8PJKU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/esquery/download/esquery-1.4.0.tgz} + resolution: + { + integrity: sha1-IUj/w4uC6McFff7UhCWz5h8PJKU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/esquery/download/esquery-1.4.0.tgz + } name: esquery version: 1.4.0 - engines: {node: '>=0.10'} + engines: { node: '>=0.10' } dependencies: estraverse: registry.npmmirror.com/estraverse/5.3.0 dev: true registry.nlark.com/esrecurse/4.3.0: - resolution: {integrity: sha1-eteWTWeauyi+5yzsY3WLHF0smSE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/esrecurse/download/esrecurse-4.3.0.tgz} + resolution: + { + integrity: sha1-eteWTWeauyi+5yzsY3WLHF0smSE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/esrecurse/download/esrecurse-4.3.0.tgz + } name: esrecurse version: 4.3.0 - engines: {node: '>=4.0'} + engines: { node: '>=4.0' } dependencies: estraverse: registry.npmmirror.com/estraverse/5.3.0 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: https://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 registry.nlark.com/esutils/2.0.3: - resolution: {integrity: sha1-dNLrTeC42hKTcRkQ1Qd1ubcQ72Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/esutils/download/esutils-2.0.3.tgz} + resolution: + { + integrity: sha1-dNLrTeC42hKTcRkQ1Qd1ubcQ72Q=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/esutils/download/esutils-2.0.3.tgz + } name: esutils version: 2.0.3 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dev: true registry.nlark.com/execall/2.0.0: - resolution: {integrity: sha1-FqBrX+UJnffQC+XZwG7s3tFmO0U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/execall/download/execall-2.0.0.tgz} + resolution: + { + integrity: sha1-FqBrX+UJnffQC+XZwG7s3tFmO0U=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/execall/download/execall-2.0.0.tgz + } name: execall version: 2.0.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: clone-regexp: registry.nlark.com/clone-regexp/2.2.0 dev: true registry.nlark.com/expand-tilde/2.0.2: - resolution: {integrity: sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/expand-tilde/download/expand-tilde-2.0.2.tgz} + resolution: + { + integrity: sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/expand-tilde/download/expand-tilde-2.0.2.tgz + } name: expand-tilde version: 2.0.2 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dependencies: homedir-polyfill: registry.nlark.com/homedir-polyfill/1.0.3 dev: true registry.nlark.com/external-editor/3.1.0: - resolution: {integrity: sha1-ywP3QL764D6k0oPK7SdBqD8zVJU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/external-editor/download/external-editor-3.1.0.tgz} + resolution: + { + integrity: sha1-ywP3QL764D6k0oPK7SdBqD8zVJU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/external-editor/download/external-editor-3.1.0.tgz + } name: external-editor version: 3.1.0 - engines: {node: '>=4'} + engines: { node: '>=4' } dependencies: chardet: registry.npmmirror.com/chardet/0.7.0 iconv-lite: registry.nlark.com/iconv-lite/0.4.24 @@ -1106,22 +1707,37 @@ packages: dev: true registry.nlark.com/fast-deep-equal/3.1.3: - resolution: {integrity: sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz?cache=0&sync_timestamp=1631501914533&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffast-deep-equal%2Fdownload%2Ffast-deep-equal-3.1.3.tgz} + resolution: + { + integrity: sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz?cache=0&sync_timestamp=1631501914533&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffast-deep-equal%2Fdownload%2Ffast-deep-equal-3.1.3.tgz + } name: fast-deep-equal version: 3.1.3 dev: true registry.nlark.com/fast-diff/1.2.0: - resolution: {integrity: sha1-c+4RmC2Gyq95WYKNUZz+kn+sXwM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fast-diff/download/fast-diff-1.2.0.tgz} + resolution: + { + integrity: sha1-c+4RmC2Gyq95WYKNUZz+kn+sXwM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/fast-diff/download/fast-diff-1.2.0.tgz + } name: fast-diff version: 1.2.0 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: https://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'} + engines: { node: '>=8' } dependencies: '@nodelib/fs.stat': registry.nlark.com/@nodelib/fs.stat/2.0.5 '@nodelib/fs.walk': registry.nlark.com/@nodelib/fs.walk/1.2.8 @@ -1131,25 +1747,45 @@ packages: dev: true registry.nlark.com/fast-json-stable-stringify/2.1.0: - resolution: {integrity: sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz} + resolution: + { + integrity: sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz + } name: fast-json-stable-stringify version: 2.1.0 dev: true registry.nlark.com/fast-levenshtein/2.0.6: - resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fast-levenshtein/download/fast-levenshtein-2.0.6.tgz} + resolution: + { + integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/fast-levenshtein/download/fast-levenshtein-2.0.6.tgz + } name: fast-levenshtein version: 2.0.6 dev: true registry.nlark.com/fastest-levenshtein/1.0.12: - resolution: {integrity: sha1-mZD306iMxan/0fF0V0UlFwDUl+I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fastest-levenshtein/download/fastest-levenshtein-1.0.12.tgz} + resolution: + { + integrity: sha1-mZD306iMxan/0fF0V0UlFwDUl+I=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/fastest-levenshtein/download/fastest-levenshtein-1.0.12.tgz + } name: fastest-levenshtein version: 1.0.12 dev: true registry.nlark.com/fastq/1.13.0: - resolution: {integrity: sha1-YWdg+Ip1Jr38WWt8q4wYk4w2uYw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fastq/download/fastq-1.13.0.tgz} + resolution: + { + integrity: sha1-YWdg+Ip1Jr38WWt8q4wYk4w2uYw=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/fastq/download/fastq-1.13.0.tgz + } name: fastq version: 1.13.0 dependencies: @@ -1157,34 +1793,54 @@ packages: dev: true registry.nlark.com/figures/2.0.0: - resolution: {integrity: sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/figures/download/figures-2.0.0.tgz} + resolution: + { + integrity: sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/figures/download/figures-2.0.0.tgz + } name: figures version: 2.0.0 - engines: {node: '>=4'} + engines: { node: '>=4' } dependencies: escape-string-regexp: registry.nlark.com/escape-string-regexp/1.0.5 dev: true registry.nlark.com/file-entry-cache/6.0.1: - resolution: {integrity: sha1-IRst2WWcsDlLBz5zI6w8kz1SICc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/file-entry-cache/download/file-entry-cache-6.0.1.tgz} + resolution: + { + integrity: sha1-IRst2WWcsDlLBz5zI6w8kz1SICc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/file-entry-cache/download/file-entry-cache-6.0.1.tgz + } name: file-entry-cache version: 6.0.1 - engines: {node: ^10.12.0 || >=12.0.0} + engines: { node: ^10.12.0 || >=12.0.0 } dependencies: flat-cache: registry.nlark.com/flat-cache/3.0.4 dev: true registry.nlark.com/fill-range/7.0.1: - resolution: {integrity: sha1-GRmmp8df44ssfHflGYU12prN2kA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fill-range/download/fill-range-7.0.1.tgz} + resolution: + { + integrity: sha1-GRmmp8df44ssfHflGYU12prN2kA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/fill-range/download/fill-range-7.0.1.tgz + } name: fill-range version: 7.0.1 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: to-regex-range: registry.nlark.com/to-regex-range/5.0.1 dev: true registry.nlark.com/find-node-modules/2.1.2: - resolution: {integrity: sha1-V1ZaNFW69nG4NbxrITSpuTi5xTw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/find-node-modules/download/find-node-modules-2.1.2.tgz} + resolution: + { + integrity: sha1-V1ZaNFW69nG4NbxrITSpuTi5xTw=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/find-node-modules/download/find-node-modules-2.1.2.tgz + } name: find-node-modules version: 2.1.2 dependencies: @@ -1193,26 +1849,41 @@ packages: dev: true registry.nlark.com/find-root/1.1.0: - resolution: {integrity: sha1-q8/Iunb3CMQql7PWhbfpRQv7nOQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/find-root/download/find-root-1.1.0.tgz} + resolution: + { + integrity: sha1-q8/Iunb3CMQql7PWhbfpRQv7nOQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/find-root/download/find-root-1.1.0.tgz + } name: find-root version: 1.1.0 dev: true registry.nlark.com/flat-cache/3.0.4: - resolution: {integrity: sha1-YbAzgwKy/p+Vfcwy/CqH8cMEixE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/flat-cache/download/flat-cache-3.0.4.tgz} + resolution: + { + integrity: sha1-YbAzgwKy/p+Vfcwy/CqH8cMEixE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/flat-cache/download/flat-cache-3.0.4.tgz + } name: flat-cache version: 3.0.4 - engines: {node: ^10.12.0 || >=12.0.0} + engines: { node: ^10.12.0 || >=12.0.0 } dependencies: flatted: registry.npmmirror.com/flatted/3.2.4 rimraf: registry.nlark.com/rimraf/3.0.2 dev: true registry.nlark.com/fs-extra/10.0.0: - resolution: {integrity: sha1-n/YbZV3eU/s0qC34S7IUzoAuF8E=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fs-extra/download/fs-extra-10.0.0.tgz} + resolution: + { + integrity: sha1-n/YbZV3eU/s0qC34S7IUzoAuF8E=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/fs-extra/download/fs-extra-10.0.0.tgz + } name: fs-extra version: 10.0.0 - engines: {node: '>=12'} + engines: { node: '>=12' } dependencies: graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8 jsonfile: registry.nlark.com/jsonfile/6.1.0 @@ -1220,10 +1891,15 @@ packages: dev: true registry.nlark.com/fs-extra/8.1.0: - resolution: {integrity: sha1-SdQ8RaiM2Wd2aMt74bRu/bjS4cA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fs-extra/download/fs-extra-8.1.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffs-extra%2Fdownload%2Ffs-extra-8.1.0.tgz} + resolution: + { + integrity: sha1-SdQ8RaiM2Wd2aMt74bRu/bjS4cA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/fs-extra/download/fs-extra-8.1.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffs-extra%2Fdownload%2Ffs-extra-8.1.0.tgz + } name: fs-extra version: 8.1.0 - engines: {node: '>=6 <7 || >=8'} + engines: { node: '>=6 <7 || >=8' } dependencies: graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8 jsonfile: registry.nlark.com/jsonfile/4.0.0 @@ -1231,39 +1907,69 @@ packages: dev: true registry.nlark.com/fs.realpath/1.0.0: - resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fs.realpath/download/fs.realpath-1.0.0.tgz} + resolution: + { + integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/fs.realpath/download/fs.realpath-1.0.0.tgz + } name: fs.realpath version: 1.0.0 dev: true registry.nlark.com/function-bind/1.1.1: - resolution: {integrity: sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/function-bind/download/function-bind-1.1.1.tgz} + resolution: + { + integrity: sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/function-bind/download/function-bind-1.1.1.tgz + } name: function-bind version: 1.1.1 dev: true registry.nlark.com/functional-red-black-tree/1.0.1: - resolution: {integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/functional-red-black-tree/download/functional-red-black-tree-1.0.1.tgz} + resolution: + { + integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/functional-red-black-tree/download/functional-red-black-tree-1.0.1.tgz + } name: functional-red-black-tree version: 1.0.1 dev: true registry.nlark.com/gensync/1.0.0-beta.2: - resolution: {integrity: sha1-MqbudsPX9S1GsrGuXZP+qFgKJeA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/gensync/download/gensync-1.0.0-beta.2.tgz} + resolution: + { + integrity: sha1-MqbudsPX9S1GsrGuXZP+qFgKJeA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/gensync/download/gensync-1.0.0-beta.2.tgz + } name: gensync version: 1.0.0-beta.2 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dev: true registry.nlark.com/get-caller-file/2.0.5: - resolution: {integrity: sha1-T5RBKoLbMvNuOwuXQfipf+sDH34=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/get-caller-file/download/get-caller-file-2.0.5.tgz} + resolution: + { + integrity: sha1-T5RBKoLbMvNuOwuXQfipf+sDH34=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/get-caller-file/download/get-caller-file-2.0.5.tgz + } name: get-caller-file version: 2.0.5 - engines: {node: 6.* || 8.* || >= 10.*} + engines: { node: 6.* || 8.* || >= 10.* } dev: true registry.nlark.com/get-intrinsic/1.1.1: - resolution: {integrity: sha1-FfWfN2+FXERpY5SPDSTNNje0q8Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/get-intrinsic/download/get-intrinsic-1.1.1.tgz} + resolution: + { + integrity: sha1-FfWfN2+FXERpY5SPDSTNNje0q8Y=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/get-intrinsic/download/get-intrinsic-1.1.1.tgz + } name: get-intrinsic version: 1.1.1 dependencies: @@ -1273,43 +1979,68 @@ packages: dev: true registry.nlark.com/get-stdin/8.0.0: - resolution: {integrity: sha1-y61qc/63X27rIrqeAfiaooqpelM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/get-stdin/download/get-stdin-8.0.0.tgz} + resolution: + { + integrity: sha1-y61qc/63X27rIrqeAfiaooqpelM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/get-stdin/download/get-stdin-8.0.0.tgz + } name: get-stdin version: 8.0.0 - engines: {node: '>=10'} + engines: { node: '>=10' } dev: true registry.nlark.com/get-stream/5.2.0: - resolution: {integrity: sha1-SWaheV7lrOZecGxLe+txJX1uItM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/get-stream/download/get-stream-5.2.0.tgz} + resolution: + { + integrity: sha1-SWaheV7lrOZecGxLe+txJX1uItM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/get-stream/download/get-stream-5.2.0.tgz + } name: get-stream version: 5.2.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: pump: registry.nlark.com/pump/3.0.0 dev: true registry.nlark.com/get-stream/6.0.1: - resolution: {integrity: sha1-omLY7vZ6ztV8KFKtYWdSakPL97c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/get-stream/download/get-stream-6.0.1.tgz} + resolution: + { + integrity: sha1-omLY7vZ6ztV8KFKtYWdSakPL97c=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/get-stream/download/get-stream-6.0.1.tgz + } name: get-stream version: 6.0.1 - engines: {node: '>=10'} + engines: { node: '>=10' } dev: true registry.nlark.com/get-symbol-description/1.0.0: - resolution: {integrity: sha1-f9uByQAQH71WTdXxowr1qtweWNY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/get-symbol-description/download/get-symbol-description-1.0.0.tgz} + resolution: + { + integrity: sha1-f9uByQAQH71WTdXxowr1qtweWNY=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/get-symbol-description/download/get-symbol-description-1.0.0.tgz + } name: get-symbol-description version: 1.0.0 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dependencies: call-bind: registry.nlark.com/call-bind/1.0.2 get-intrinsic: registry.nlark.com/get-intrinsic/1.1.1 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: https://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'} + engines: { node: '>=10' } hasBin: true dependencies: dargs: registry.nlark.com/dargs/7.0.0 @@ -1320,19 +2051,29 @@ 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: https://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'} + engines: { node: '>=4' } dependencies: ini: registry.nlark.com/ini/1.3.8 dev: true registry.nlark.com/global-modules/1.0.0: - resolution: {integrity: sha1-bXcPDrUjrHgWTXK15xqIdyZcw+o=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/global-modules/download/global-modules-1.0.0.tgz} + resolution: + { + integrity: sha1-bXcPDrUjrHgWTXK15xqIdyZcw+o=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/global-modules/download/global-modules-1.0.0.tgz + } name: global-modules version: 1.0.0 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dependencies: global-prefix: registry.nlark.com/global-prefix/1.0.2 is-windows: registry.nlark.com/is-windows/1.0.2 @@ -1340,19 +2081,29 @@ packages: dev: true registry.nlark.com/global-modules/2.0.0: - resolution: {integrity: sha1-mXYFrSNF8n9RU5vqJldEISFcd4A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/global-modules/download/global-modules-2.0.0.tgz} + resolution: + { + integrity: sha1-mXYFrSNF8n9RU5vqJldEISFcd4A=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/global-modules/download/global-modules-2.0.0.tgz + } name: global-modules version: 2.0.0 - engines: {node: '>=6'} + engines: { node: '>=6' } dependencies: global-prefix: registry.nlark.com/global-prefix/3.0.0 dev: true registry.nlark.com/global-prefix/1.0.2: - resolution: {integrity: sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/global-prefix/download/global-prefix-1.0.2.tgz} + resolution: + { + integrity: sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/global-prefix/download/global-prefix-1.0.2.tgz + } name: global-prefix version: 1.0.2 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dependencies: expand-tilde: registry.nlark.com/expand-tilde/2.0.2 homedir-polyfill: registry.nlark.com/homedir-polyfill/1.0.3 @@ -1362,10 +2113,15 @@ packages: dev: true registry.nlark.com/global-prefix/3.0.0: - resolution: {integrity: sha1-/IX3MGTfafUEIfR/iD/luRO6m5c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/global-prefix/download/global-prefix-3.0.0.tgz} + resolution: + { + integrity: sha1-/IX3MGTfafUEIfR/iD/luRO6m5c=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/global-prefix/download/global-prefix-3.0.0.tgz + } name: global-prefix version: 3.0.0 - engines: {node: '>=6'} + engines: { node: '>=6' } dependencies: ini: registry.nlark.com/ini/1.3.8 kind-of: registry.nlark.com/kind-of/6.0.3 @@ -1373,10 +2129,15 @@ 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: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/globby/download/globby-11.0.4.tgz + } name: globby version: 11.0.4 - engines: {node: '>=10'} + engines: { node: '>=10' } dependencies: array-union: registry.nlark.com/array-union/2.1.0 dir-glob: registry.nlark.com/dir-glob/3.0.1 @@ -1387,166 +2148,276 @@ packages: dev: true registry.nlark.com/globjoin/0.1.4: - resolution: {integrity: sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/globjoin/download/globjoin-0.1.4.tgz} + resolution: + { + integrity: sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/globjoin/download/globjoin-0.1.4.tgz + } name: globjoin version: 0.1.4 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: https://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'} + engines: { node: '>=6' } dev: true registry.nlark.com/has-bigints/1.0.1: - resolution: {integrity: sha1-ZP5qywIGc+O3jbA1pa9pqp0HsRM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/has-bigints/download/has-bigints-1.0.1.tgz} + resolution: + { + integrity: sha1-ZP5qywIGc+O3jbA1pa9pqp0HsRM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/has-bigints/download/has-bigints-1.0.1.tgz + } name: has-bigints version: 1.0.1 dev: true registry.nlark.com/has-flag/3.0.0: - resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/has-flag/download/has-flag-3.0.0.tgz} + resolution: + { + integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/has-flag/download/has-flag-3.0.0.tgz + } name: has-flag version: 3.0.0 - engines: {node: '>=4'} + engines: { node: '>=4' } dev: true registry.nlark.com/has-flag/4.0.0: - resolution: {integrity: sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz} + resolution: + { + integrity: sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz + } name: has-flag version: 4.0.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dev: true registry.nlark.com/has-symbols/1.0.2: - resolution: {integrity: sha1-Fl0wcMADCXUqEjakeTMeOsVvFCM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/has-symbols/download/has-symbols-1.0.2.tgz} + resolution: + { + integrity: sha1-Fl0wcMADCXUqEjakeTMeOsVvFCM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/has-symbols/download/has-symbols-1.0.2.tgz + } name: has-symbols version: 1.0.2 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dev: true registry.nlark.com/has-tostringtag/1.0.0: - resolution: {integrity: sha1-fhM4GKfTlHNPlB5zw9P5KR5liyU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/has-tostringtag/download/has-tostringtag-1.0.0.tgz} + resolution: + { + integrity: sha1-fhM4GKfTlHNPlB5zw9P5KR5liyU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/has-tostringtag/download/has-tostringtag-1.0.0.tgz + } name: has-tostringtag version: 1.0.0 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dependencies: has-symbols: registry.nlark.com/has-symbols/1.0.2 dev: true registry.nlark.com/has/1.0.3: - resolution: {integrity: sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/has/download/has-1.0.3.tgz} + resolution: + { + integrity: sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/has/download/has-1.0.3.tgz + } name: has version: 1.0.3 - engines: {node: '>= 0.4.0'} + engines: { node: '>= 0.4.0' } dependencies: function-bind: registry.nlark.com/function-bind/1.1.1 dev: true registry.nlark.com/hash-sum/2.0.0: - resolution: {integrity: sha1-gdAbtd6OpKIUrV1urRtSNGCwtFo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/hash-sum/download/hash-sum-2.0.0.tgz} + resolution: + { + integrity: sha1-gdAbtd6OpKIUrV1urRtSNGCwtFo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/hash-sum/download/hash-sum-2.0.0.tgz + } name: hash-sum version: 2.0.0 dev: true registry.nlark.com/homedir-polyfill/1.0.3: - resolution: {integrity: sha1-dDKYzvTlrz4ZQWH7rcwhUdOgWOg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/homedir-polyfill/download/homedir-polyfill-1.0.3.tgz} + resolution: + { + integrity: sha1-dDKYzvTlrz4ZQWH7rcwhUdOgWOg=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/homedir-polyfill/download/homedir-polyfill-1.0.3.tgz + } name: homedir-polyfill version: 1.0.3 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dependencies: parse-passwd: registry.nlark.com/parse-passwd/1.0.0 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: https://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: https://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'} + engines: { node: '>=10' } dependencies: lru-cache: registry.nlark.com/lru-cache/6.0.0 dev: true registry.nlark.com/html-tags/3.1.0: - resolution: {integrity: sha1-e15vfmZen7QfMAB+2eDUHpf7IUA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/html-tags/download/html-tags-3.1.0.tgz} + resolution: + { + integrity: sha1-e15vfmZen7QfMAB+2eDUHpf7IUA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/html-tags/download/html-tags-3.1.0.tgz + } name: html-tags version: 3.1.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dev: true registry.nlark.com/human-signals/1.1.1: - resolution: {integrity: sha1-xbHNFPUK6uCatsWf5jujOV/k36M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/human-signals/download/human-signals-1.1.1.tgz} + resolution: + { + integrity: sha1-xbHNFPUK6uCatsWf5jujOV/k36M=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/human-signals/download/human-signals-1.1.1.tgz + } name: human-signals version: 1.1.1 - engines: {node: '>=8.12.0'} + engines: { node: '>=8.12.0' } dev: true registry.nlark.com/human-signals/2.1.0: - resolution: {integrity: sha1-3JH8ukLk0G5Kuu0zs+ejwC9RTqA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/human-signals/download/human-signals-2.1.0.tgz} + resolution: + { + integrity: sha1-3JH8ukLk0G5Kuu0zs+ejwC9RTqA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/human-signals/download/human-signals-2.1.0.tgz + } name: human-signals version: 2.1.0 - engines: {node: '>=10.17.0'} + engines: { node: '>=10.17.0' } dev: true registry.nlark.com/iconv-lite/0.4.24: - resolution: {integrity: sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz} + resolution: + { + integrity: sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz + } name: iconv-lite version: 0.4.24 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dependencies: safer-buffer: registry.nlark.com/safer-buffer/2.1.2 dev: true registry.nlark.com/image-size/0.5.5: - resolution: {integrity: sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/image-size/download/image-size-0.5.5.tgz} + resolution: + { + integrity: sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/image-size/download/image-size-0.5.5.tgz + } name: image-size version: 0.5.5 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } hasBin: true requiresBuild: true dev: true optional: true registry.nlark.com/import-fresh/3.3.0: - resolution: {integrity: sha1-NxYsJfy566oublPVtNiM4X2eDCs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/import-fresh/download/import-fresh-3.3.0.tgz} + resolution: + { + integrity: sha1-NxYsJfy566oublPVtNiM4X2eDCs=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/import-fresh/download/import-fresh-3.3.0.tgz + } name: import-fresh version: 3.3.0 - engines: {node: '>=6'} + engines: { node: '>=6' } dependencies: parent-module: registry.npmmirror.com/parent-module/1.0.1 resolve-from: registry.nlark.com/resolve-from/4.0.0 dev: true registry.nlark.com/import-lazy/4.0.0: - resolution: {integrity: sha1-6OtidIOgpD2jwD8+NVSL5csMwVM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/import-lazy/download/import-lazy-4.0.0.tgz} + resolution: + { + integrity: sha1-6OtidIOgpD2jwD8+NVSL5csMwVM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/import-lazy/download/import-lazy-4.0.0.tgz + } name: import-lazy version: 4.0.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dev: true registry.nlark.com/imurmurhash/0.1.4: - resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/imurmurhash/download/imurmurhash-0.1.4.tgz} + resolution: + { + integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/imurmurhash/download/imurmurhash-0.1.4.tgz + } name: imurmurhash version: 0.1.4 - engines: {node: '>=0.8.19'} + engines: { node: '>=0.8.19' } dev: true registry.nlark.com/indent-string/4.0.0: - resolution: {integrity: sha1-Yk+PRJfWGbLZdoUx1Y9BIoVNclE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/indent-string/download/indent-string-4.0.0.tgz} + resolution: + { + integrity: sha1-Yk+PRJfWGbLZdoUx1Y9BIoVNclE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/indent-string/download/indent-string-4.0.0.tgz + } name: indent-string version: 4.0.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dev: true registry.nlark.com/inflight/1.0.6: - resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/inflight/download/inflight-1.0.6.tgz} + resolution: + { + integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/inflight/download/inflight-1.0.6.tgz + } name: inflight version: 1.0.6 dependencies: @@ -1555,22 +2426,37 @@ packages: dev: true registry.nlark.com/inherits/2.0.4: - resolution: {integrity: sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/inherits/download/inherits-2.0.4.tgz} + resolution: + { + integrity: sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/inherits/download/inherits-2.0.4.tgz + } name: inherits version: 2.0.4 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: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/ini/download/ini-1.3.8.tgz + } name: ini version: 1.3.8 dev: true registry.nlark.com/internal-slot/1.0.3: - resolution: {integrity: sha1-c0fjB97uovqsKsYgXUvH00ln9Zw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/internal-slot/download/internal-slot-1.0.3.tgz} + resolution: + { + integrity: sha1-c0fjB97uovqsKsYgXUvH00ln9Zw=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/internal-slot/download/internal-slot-1.0.3.tgz + } name: internal-slot version: 1.0.3 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dependencies: get-intrinsic: registry.nlark.com/get-intrinsic/1.1.1 has: registry.nlark.com/has/1.0.3 @@ -1578,13 +2464,23 @@ packages: dev: true registry.nlark.com/is-arrayish/0.2.1: - resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-arrayish/download/is-arrayish-0.2.1.tgz} + resolution: + { + integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-arrayish/download/is-arrayish-0.2.1.tgz + } name: is-arrayish version: 0.2.1 dev: true registry.nlark.com/is-bigint/1.0.4: - resolution: {integrity: sha1-CBR6GHW8KzIAXUHM2Ckd/8ZpHfM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-bigint/download/is-bigint-1.0.4.tgz} + resolution: + { + integrity: sha1-CBR6GHW8KzIAXUHM2Ckd/8ZpHfM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-bigint/download/is-bigint-1.0.4.tgz + } name: is-bigint version: 1.0.4 dependencies: @@ -1592,51 +2488,81 @@ 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: https://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'} + engines: { node: '>=8' } dependencies: binary-extensions: registry.nlark.com/binary-extensions/2.2.0 dev: true registry.nlark.com/is-boolean-object/1.1.2: - resolution: {integrity: sha1-XG3CACRt2TIa5LiFoRS7H3X2Nxk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-boolean-object/download/is-boolean-object-1.1.2.tgz} + resolution: + { + integrity: sha1-XG3CACRt2TIa5LiFoRS7H3X2Nxk=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-boolean-object/download/is-boolean-object-1.1.2.tgz + } name: is-boolean-object version: 1.1.2 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dependencies: call-bind: registry.nlark.com/call-bind/1.0.2 has-tostringtag: registry.nlark.com/has-tostringtag/1.0.0 dev: true registry.nlark.com/is-builtin-module/3.1.0: - resolution: {integrity: sha1-b9skMTscA7dfi5cRwP64wwuQOwA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-builtin-module/download/is-builtin-module-3.1.0.tgz} + resolution: + { + integrity: sha1-b9skMTscA7dfi5cRwP64wwuQOwA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-builtin-module/download/is-builtin-module-3.1.0.tgz + } name: is-builtin-module version: 3.1.0 - engines: {node: '>=6'} + engines: { node: '>=6' } dependencies: builtin-modules: registry.nlark.com/builtin-modules/3.2.0 dev: true registry.nlark.com/is-callable/1.2.4: - resolution: {integrity: sha1-RzAdWN0CWUB4ZVR4U99tYf5HGUU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-callable/download/is-callable-1.2.4.tgz} + resolution: + { + integrity: sha1-RzAdWN0CWUB4ZVR4U99tYf5HGUU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-callable/download/is-callable-1.2.4.tgz + } name: is-callable version: 1.2.4 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dev: true registry.nlark.com/is-date-object/1.0.5: - resolution: {integrity: sha1-CEHVU25yTCVZe/bqYuG9OCmN8x8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-date-object/download/is-date-object-1.0.5.tgz} + resolution: + { + integrity: sha1-CEHVU25yTCVZe/bqYuG9OCmN8x8=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-date-object/download/is-date-object-1.0.5.tgz + } name: is-date-object version: 1.0.5 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dependencies: has-tostringtag: registry.nlark.com/has-tostringtag/1.0.0 dev: true registry.nlark.com/is-expression/4.0.0: - resolution: {integrity: sha1-wzFVliq/IdCv0lUlFNZ9LsFv0qs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-expression/download/is-expression-4.0.0.tgz} + resolution: + { + integrity: sha1-wzFVliq/IdCv0lUlFNZ9LsFv0qs=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-expression/download/is-expression-4.0.0.tgz + } name: is-expression version: 4.0.0 dependencies: @@ -1645,173 +2571,293 @@ packages: dev: true registry.nlark.com/is-extglob/2.1.1: - resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-extglob/download/is-extglob-2.1.1.tgz} + resolution: + { + integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-extglob/download/is-extglob-2.1.1.tgz + } name: is-extglob version: 2.1.1 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dev: true registry.nlark.com/is-fullwidth-code-point/2.0.0: - resolution: {integrity: sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz} + resolution: + { + integrity: sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz + } name: is-fullwidth-code-point version: 2.0.0 - engines: {node: '>=4'} + engines: { node: '>=4' } dev: true registry.nlark.com/is-fullwidth-code-point/3.0.0: - resolution: {integrity: sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz} + resolution: + { + integrity: sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz + } name: is-fullwidth-code-point version: 3.0.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dev: true registry.nlark.com/is-fullwidth-code-point/4.0.0: - resolution: {integrity: sha1-+uMWfHKedGP4RhzlErCApJJoqog=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-fullwidth-code-point/download/is-fullwidth-code-point-4.0.0.tgz} + resolution: + { + integrity: sha1-+uMWfHKedGP4RhzlErCApJJoqog=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-fullwidth-code-point/download/is-fullwidth-code-point-4.0.0.tgz + } name: is-fullwidth-code-point version: 4.0.0 - engines: {node: '>=12'} + engines: { node: '>=12' } dev: true registry.nlark.com/is-negative-zero/2.0.1: - resolution: {integrity: sha1-PedGwY3aIxkkGlNnWQjY92bxHCQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-negative-zero/download/is-negative-zero-2.0.1.tgz} + resolution: + { + integrity: sha1-PedGwY3aIxkkGlNnWQjY92bxHCQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-negative-zero/download/is-negative-zero-2.0.1.tgz + } name: is-negative-zero version: 2.0.1 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dev: true registry.nlark.com/is-number-object/1.0.6: - resolution: {integrity: sha1-anqvg4x/BoalC0VT9+VKlklOifA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-number-object/download/is-number-object-1.0.6.tgz} + resolution: + { + integrity: sha1-anqvg4x/BoalC0VT9+VKlklOifA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-number-object/download/is-number-object-1.0.6.tgz + } name: is-number-object version: 1.0.6 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dependencies: has-tostringtag: registry.nlark.com/has-tostringtag/1.0.0 dev: true registry.nlark.com/is-number/7.0.0: - resolution: {integrity: sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-number/download/is-number-7.0.0.tgz} + resolution: + { + integrity: sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-number/download/is-number-7.0.0.tgz + } name: is-number version: 7.0.0 - engines: {node: '>=0.12.0'} + engines: { node: '>=0.12.0' } 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: https://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'} + 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: https://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'} + engines: { node: '>=0.10.0' } dev: true registry.nlark.com/is-plain-object/5.0.0: - resolution: {integrity: sha1-RCf1CrNCnpAl6n1S6QQ6nvQVk0Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-plain-object/download/is-plain-object-5.0.0.tgz} + resolution: + { + integrity: sha1-RCf1CrNCnpAl6n1S6QQ6nvQVk0Q=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-plain-object/download/is-plain-object-5.0.0.tgz + } name: is-plain-object version: 5.0.0 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dev: true registry.nlark.com/is-promise/2.2.2: - resolution: {integrity: sha1-OauVnMv5p3TPB597QMeib3YxNfE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-promise/download/is-promise-2.2.2.tgz} + resolution: + { + integrity: sha1-OauVnMv5p3TPB597QMeib3YxNfE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-promise/download/is-promise-2.2.2.tgz + } name: is-promise version: 2.2.2 dev: true registry.nlark.com/is-regex/1.1.4: - resolution: {integrity: sha1-7vVmPNWfpMCuM5UFMj32hUuxWVg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-regex/download/is-regex-1.1.4.tgz} + resolution: + { + integrity: sha1-7vVmPNWfpMCuM5UFMj32hUuxWVg=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-regex/download/is-regex-1.1.4.tgz + } name: is-regex version: 1.1.4 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dependencies: call-bind: registry.nlark.com/call-bind/1.0.2 has-tostringtag: registry.nlark.com/has-tostringtag/1.0.0 dev: true registry.nlark.com/is-regexp/2.1.0: - resolution: {integrity: sha1-zXNKVoZOI7lWv058ZsOWpMCyLC0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-regexp/download/is-regexp-2.1.0.tgz} + resolution: + { + integrity: sha1-zXNKVoZOI7lWv058ZsOWpMCyLC0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-regexp/download/is-regexp-2.1.0.tgz + } name: is-regexp version: 2.1.0 - engines: {node: '>=6'} + engines: { node: '>=6' } dev: true registry.nlark.com/is-stream/2.0.1: - resolution: {integrity: sha1-+sHj1TuXrVqdCunO8jifWBClwHc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-stream/download/is-stream-2.0.1.tgz} + resolution: + { + integrity: sha1-+sHj1TuXrVqdCunO8jifWBClwHc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-stream/download/is-stream-2.0.1.tgz + } name: is-stream version: 2.0.1 - engines: {node: '>=8'} + engines: { node: '>=8' } dev: true registry.nlark.com/is-string/1.0.7: - resolution: {integrity: sha1-DdEr8gBvJVu1j2lREO/3SR7rwP0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-string/download/is-string-1.0.7.tgz} + resolution: + { + integrity: sha1-DdEr8gBvJVu1j2lREO/3SR7rwP0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-string/download/is-string-1.0.7.tgz + } name: is-string version: 1.0.7 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dependencies: has-tostringtag: registry.nlark.com/has-tostringtag/1.0.0 dev: true registry.nlark.com/is-symbol/1.0.4: - resolution: {integrity: sha1-ptrJO2NbBjymhyI23oiRClevE5w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-symbol/download/is-symbol-1.0.4.tgz} + resolution: + { + integrity: sha1-ptrJO2NbBjymhyI23oiRClevE5w=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-symbol/download/is-symbol-1.0.4.tgz + } name: is-symbol version: 1.0.4 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dependencies: has-symbols: registry.nlark.com/has-symbols/1.0.2 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: https://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'} + engines: { node: '>=0.10.0' } dependencies: text-extensions: registry.nlark.com/text-extensions/1.9.0 dev: true registry.nlark.com/is-typedarray/1.0.0: - resolution: {integrity: sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-typedarray/download/is-typedarray-1.0.0.tgz} + resolution: + { + integrity: sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-typedarray/download/is-typedarray-1.0.0.tgz + } name: is-typedarray version: 1.0.0 dev: true registry.nlark.com/is-utf8/0.2.1: - resolution: {integrity: sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-utf8/download/is-utf8-0.2.1.tgz} + resolution: + { + integrity: sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-utf8/download/is-utf8-0.2.1.tgz + } name: is-utf8 version: 0.2.1 dev: true registry.nlark.com/is-windows/1.0.2: - resolution: {integrity: sha1-0YUOuXkezRjmGCzhKjDzlmNLsZ0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-windows/download/is-windows-1.0.2.tgz} + resolution: + { + integrity: sha1-0YUOuXkezRjmGCzhKjDzlmNLsZ0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/is-windows/download/is-windows-1.0.2.tgz + } name: is-windows version: 1.0.2 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dev: true registry.nlark.com/isexe/2.0.0: - resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/isexe/download/isexe-2.0.0.tgz} + resolution: + { + integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/isexe/download/isexe-2.0.0.tgz + } name: isexe version: 2.0.0 dev: true registry.nlark.com/js-stringify/1.0.2: - resolution: {integrity: sha1-Fzb939lyTyijaCrcYjCufk6Weds=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/js-stringify/download/js-stringify-1.0.2.tgz} + resolution: + { + integrity: sha1-Fzb939lyTyijaCrcYjCufk6Weds=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/js-stringify/download/js-stringify-1.0.2.tgz + } name: js-stringify version: 1.0.2 dev: true registry.nlark.com/js-tokens/4.0.0: - resolution: {integrity: sha1-GSA/tZmR35jjoocFDUZHzerzJJk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/js-tokens/download/js-tokens-4.0.0.tgz} + resolution: + { + integrity: sha1-GSA/tZmR35jjoocFDUZHzerzJJk=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/js-tokens/download/js-tokens-4.0.0.tgz + } name: js-tokens version: 4.0.0 dev: true registry.nlark.com/js-yaml/3.14.1: - resolution: {integrity: sha1-2ugS/bOCX6MGYJqHFzg8UMNqBTc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/js-yaml/download/js-yaml-3.14.1.tgz} + resolution: + { + integrity: sha1-2ugS/bOCX6MGYJqHFzg8UMNqBTc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/js-yaml/download/js-yaml-3.14.1.tgz + } name: js-yaml version: 3.14.1 hasBin: true @@ -1821,7 +2867,12 @@ packages: dev: true registry.nlark.com/js-yaml/4.1.0: - resolution: {integrity: sha1-wftl+PUBeQHN0slRhkuhhFihBgI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/js-yaml/download/js-yaml-4.1.0.tgz} + resolution: + { + integrity: sha1-wftl+PUBeQHN0slRhkuhhFihBgI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/js-yaml/download/js-yaml-4.1.0.tgz + } name: js-yaml version: 4.1.0 hasBin: true @@ -1830,39 +2881,69 @@ packages: dev: true registry.nlark.com/jsesc/2.5.2: - resolution: {integrity: sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/jsesc/download/jsesc-2.5.2.tgz} + resolution: + { + integrity: sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/jsesc/download/jsesc-2.5.2.tgz + } name: jsesc version: 2.5.2 - engines: {node: '>=4'} + engines: { node: '>=4' } hasBin: true dev: true registry.nlark.com/json-parse-even-better-errors/2.3.1: - resolution: {integrity: sha1-fEeAWpQxmSjgV3dAXcEuH3pO4C0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/json-parse-even-better-errors/download/json-parse-even-better-errors-2.3.1.tgz} + resolution: + { + integrity: sha1-fEeAWpQxmSjgV3dAXcEuH3pO4C0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/json-parse-even-better-errors/download/json-parse-even-better-errors-2.3.1.tgz + } name: json-parse-even-better-errors version: 2.3.1 dev: true registry.nlark.com/json-schema-traverse/0.4.1: - resolution: {integrity: sha1-afaofZUTq4u4/mO9sJecRI5oRmA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/json-schema-traverse/download/json-schema-traverse-0.4.1.tgz} + resolution: + { + integrity: sha1-afaofZUTq4u4/mO9sJecRI5oRmA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/json-schema-traverse/download/json-schema-traverse-0.4.1.tgz + } name: json-schema-traverse version: 0.4.1 dev: true registry.nlark.com/json-schema-traverse/1.0.0: - resolution: {integrity: sha1-rnvLNlard6c7pcSb9lTzjmtoYOI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/json-schema-traverse/download/json-schema-traverse-1.0.0.tgz} + resolution: + { + integrity: sha1-rnvLNlard6c7pcSb9lTzjmtoYOI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/json-schema-traverse/download/json-schema-traverse-1.0.0.tgz + } name: json-schema-traverse version: 1.0.0 dev: true registry.nlark.com/json-stable-stringify-without-jsonify/1.0.1: - resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/json-stable-stringify-without-jsonify/download/json-stable-stringify-without-jsonify-1.0.1.tgz} + resolution: + { + integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/json-stable-stringify-without-jsonify/download/json-stable-stringify-without-jsonify-1.0.1.tgz + } name: json-stable-stringify-without-jsonify version: 1.0.1 dev: true registry.nlark.com/json5/1.0.1: - resolution: {integrity: sha1-d5+wAYYE+oVOrL9iUhgNg1Q+Pb4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/json5/download/json5-1.0.1.tgz} + resolution: + { + integrity: sha1-d5+wAYYE+oVOrL9iUhgNg1Q+Pb4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/json5/download/json5-1.0.1.tgz + } name: json5 version: 1.0.1 hasBin: true @@ -1871,29 +2952,49 @@ packages: dev: true registry.nlark.com/json5/2.2.0: - resolution: {integrity: sha1-Lf7+cgxrpSXZ69kJlQ8FFTFsiaM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/json5/download/json5-2.2.0.tgz} + resolution: + { + integrity: sha1-Lf7+cgxrpSXZ69kJlQ8FFTFsiaM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/json5/download/json5-2.2.0.tgz + } name: json5 version: 2.2.0 - engines: {node: '>=6'} + engines: { node: '>=6' } hasBin: true dependencies: minimist: registry.nlark.com/minimist/1.2.5 dev: true registry.nlark.com/jsonc-parser/2.3.1: - resolution: {integrity: sha1-WVSRULEz8u+sykj+nOHsBlmvI0I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/jsonc-parser/download/jsonc-parser-2.3.1.tgz} + resolution: + { + integrity: sha1-WVSRULEz8u+sykj+nOHsBlmvI0I=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/jsonc-parser/download/jsonc-parser-2.3.1.tgz + } name: jsonc-parser version: 2.3.1 dev: true registry.nlark.com/jsonc-parser/3.0.0: - resolution: {integrity: sha1-q914VwHH5+rKip7IzwcMpRp0WiI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/jsonc-parser/download/jsonc-parser-3.0.0.tgz} + resolution: + { + integrity: sha1-q914VwHH5+rKip7IzwcMpRp0WiI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/jsonc-parser/download/jsonc-parser-3.0.0.tgz + } name: jsonc-parser version: 3.0.0 dev: true registry.nlark.com/jsonfile/4.0.0: - resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/jsonfile/download/jsonfile-4.0.0.tgz} + resolution: + { + integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/jsonfile/download/jsonfile-4.0.0.tgz + } name: jsonfile version: 4.0.0 optionalDependencies: @@ -1901,7 +3002,12 @@ packages: dev: true registry.nlark.com/jsonfile/6.1.0: - resolution: {integrity: sha1-vFWyY0eTxnnsZAMJTrE2mKbsCq4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/jsonfile/download/jsonfile-6.1.0.tgz} + resolution: + { + integrity: sha1-vFWyY0eTxnnsZAMJTrE2mKbsCq4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/jsonfile/download/jsonfile-6.1.0.tgz + } name: jsonfile version: 6.1.0 dependencies: @@ -1911,14 +3017,24 @@ 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: https://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} + engines: { '0': node >= 0.2.0 } dev: true registry.nlark.com/jstransformer/1.0.0: - resolution: {integrity: sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/jstransformer/download/jstransformer-1.0.0.tgz} + resolution: + { + integrity: sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/jstransformer/download/jstransformer-1.0.0.tgz + } name: jstransformer version: 1.0.0 dependencies: @@ -1927,111 +3043,186 @@ packages: dev: true registry.nlark.com/jsx-ast-utils/3.2.1: - resolution: {integrity: sha1-cguXv+fZAbkn2Hw3c2N66OpIeBs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/jsx-ast-utils/download/jsx-ast-utils-3.2.1.tgz} + resolution: + { + integrity: sha1-cguXv+fZAbkn2Hw3c2N66OpIeBs=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/jsx-ast-utils/download/jsx-ast-utils-3.2.1.tgz + } name: jsx-ast-utils version: 3.2.1 - engines: {node: '>=4.0'} + engines: { node: '>=4.0' } dependencies: array-includes: registry.npmmirror.com/array-includes/3.1.4 object.assign: registry.nlark.com/object.assign/4.1.2 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: https://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'} + engines: { node: '>=0.10.0' } dev: true registry.nlark.com/known-css-properties/0.23.0: - resolution: {integrity: sha1-5kPhurKx+LopLuqVVxIcwC6YRqA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/known-css-properties/download/known-css-properties-0.23.0.tgz} + resolution: + { + integrity: sha1-5kPhurKx+LopLuqVVxIcwC6YRqA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/known-css-properties/download/known-css-properties-0.23.0.tgz + } name: known-css-properties version: 0.23.0 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: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/kolorist/download/kolorist-1.5.0.tgz + } name: kolorist version: 1.5.0 dev: true registry.nlark.com/levn/0.4.1: - resolution: {integrity: sha1-rkViwAdHO5MqYgDUAyaN0v/8at4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/levn/download/levn-0.4.1.tgz} + resolution: + { + integrity: sha1-rkViwAdHO5MqYgDUAyaN0v/8at4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/levn/download/levn-0.4.1.tgz + } name: levn version: 0.4.1 - engines: {node: '>= 0.8.0'} + engines: { node: '>= 0.8.0' } dependencies: prelude-ls: registry.nlark.com/prelude-ls/1.2.1 type-check: registry.nlark.com/type-check/0.4.0 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: https://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'} + engines: { node: '>=4' } dependencies: p-locate: registry.nlark.com/p-locate/2.0.0 path-exists: registry.nlark.com/path-exists/3.0.0 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: https://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'} + engines: { node: '>=8' } dependencies: p-locate: registry.nlark.com/p-locate/4.1.0 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: https://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'} + engines: { node: '>=10' } dependencies: p-locate: registry.nlark.com/p-locate/5.0.0 dev: true registry.nlark.com/lodash.get/4.4.2: - resolution: {integrity: sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lodash.get/download/lodash.get-4.4.2.tgz} + resolution: + { + integrity: sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/lodash.get/download/lodash.get-4.4.2.tgz + } name: lodash.get version: 4.4.2 dev: true registry.nlark.com/lodash.map/4.6.0: - resolution: {integrity: sha1-dx7Hg540c9nEzeKLGTlMNWL09tM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lodash.map/download/lodash.map-4.6.0.tgz} + resolution: + { + integrity: sha1-dx7Hg540c9nEzeKLGTlMNWL09tM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/lodash.map/download/lodash.map-4.6.0.tgz + } name: lodash.map version: 4.6.0 dev: true registry.nlark.com/lodash.merge/4.6.2: - resolution: {integrity: sha1-VYqlO0O2YeGSWgr9+japoQhf5Xo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lodash.merge/download/lodash.merge-4.6.2.tgz} + resolution: + { + integrity: sha1-VYqlO0O2YeGSWgr9+japoQhf5Xo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/lodash.merge/download/lodash.merge-4.6.2.tgz + } name: lodash.merge version: 4.6.2 dev: true registry.nlark.com/lodash.truncate/4.4.2: - resolution: {integrity: sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lodash.truncate/download/lodash.truncate-4.4.2.tgz} + resolution: + { + integrity: sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/lodash.truncate/download/lodash.truncate-4.4.2.tgz + } name: lodash.truncate version: 4.4.2 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} + resolution: + { + integrity: sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/lodash/download/lodash-4.17.21.tgz + } name: lodash version: 4.17.21 dev: true registry.nlark.com/longest/2.0.1: - resolution: {integrity: sha1-eB4YMpaqlPbU2RbcM10NF676I/g=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/longest/download/longest-2.0.1.tgz} + resolution: + { + integrity: sha1-eB4YMpaqlPbU2RbcM10NF676I/g=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/longest/download/longest-2.0.1.tgz + } name: longest version: 2.0.1 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dev: true registry.nlark.com/loose-envify/1.4.0: - resolution: {integrity: sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/loose-envify/download/loose-envify-1.4.0.tgz} + resolution: + { + integrity: sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/loose-envify/download/loose-envify-1.4.0.tgz + } name: loose-envify version: 1.4.0 hasBin: true @@ -2040,26 +3231,41 @@ packages: dev: true registry.nlark.com/lru-cache/6.0.0: - resolution: {integrity: sha1-bW/mVw69lqr5D8rR2vo7JWbbOpQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lru-cache/download/lru-cache-6.0.0.tgz} + resolution: + { + integrity: sha1-bW/mVw69lqr5D8rR2vo7JWbbOpQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/lru-cache/download/lru-cache-6.0.0.tgz + } name: lru-cache version: 6.0.0 - engines: {node: '>=10'} + engines: { node: '>=10' } dependencies: yallist: registry.nlark.com/yallist/4.0.0 dev: true registry.nlark.com/magic-string/0.25.7: - resolution: {integrity: sha1-P0l9b9NMZpxnmNy4IfLvMfVEUFE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/magic-string/download/magic-string-0.25.7.tgz} + resolution: + { + integrity: sha1-P0l9b9NMZpxnmNy4IfLvMfVEUFE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/magic-string/download/magic-string-0.25.7.tgz + } name: magic-string version: 0.25.7 dependencies: sourcemap-codec: registry.nlark.com/sourcemap-codec/1.4.8 registry.nlark.com/make-dir/2.1.0: - resolution: {integrity: sha1-XwMQ4YuL6JjMBwCSlaMK5B6R5vU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/make-dir/download/make-dir-2.1.0.tgz} + resolution: + { + integrity: sha1-XwMQ4YuL6JjMBwCSlaMK5B6R5vU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/make-dir/download/make-dir-2.1.0.tgz + } name: make-dir version: 2.1.0 - engines: {node: '>=6'} + engines: { node: '>=6' } requiresBuild: true dependencies: pify: registry.nlark.com/pify/4.0.1 @@ -2068,63 +3274,108 @@ packages: optional: true registry.nlark.com/make-error/1.3.6: - resolution: {integrity: sha1-LrLjfqm2fEiR9oShOUeZr0hM96I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/make-error/download/make-error-1.3.6.tgz} + resolution: + { + integrity: sha1-LrLjfqm2fEiR9oShOUeZr0hM96I=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/make-error/download/make-error-1.3.6.tgz + } name: make-error version: 1.3.6 dev: true registry.nlark.com/merge-stream/2.0.0: - resolution: {integrity: sha1-UoI2KaFN0AyXcPtq1H3GMQ8sH2A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/merge-stream/download/merge-stream-2.0.0.tgz} + resolution: + { + integrity: sha1-UoI2KaFN0AyXcPtq1H3GMQ8sH2A=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/merge-stream/download/merge-stream-2.0.0.tgz + } name: merge-stream version: 2.0.0 dev: true registry.nlark.com/merge/2.1.1: - resolution: {integrity: sha1-We9L9+Cz6HkYZDboSBwGpsFiypg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/merge/download/merge-2.1.1.tgz} + resolution: + { + integrity: sha1-We9L9+Cz6HkYZDboSBwGpsFiypg=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/merge/download/merge-2.1.1.tgz + } name: merge version: 2.1.1 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: https://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'} + engines: { node: '>= 8' } dev: true registry.nlark.com/micromatch/4.0.4: - resolution: {integrity: sha1-iW1Rnf6dsl/OlM63pQCRm/iB6/k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/micromatch/download/micromatch-4.0.4.tgz} + resolution: + { + integrity: sha1-iW1Rnf6dsl/OlM63pQCRm/iB6/k=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/micromatch/download/micromatch-4.0.4.tgz + } name: micromatch version: 4.0.4 - engines: {node: '>=8.6'} + engines: { node: '>=8.6' } dependencies: braces: registry.nlark.com/braces/3.0.2 picomatch: registry.nlark.com/picomatch/2.3.0 dev: true registry.nlark.com/mimic-fn/1.2.0: - resolution: {integrity: sha1-ggyGo5M0ZA6ZUWkovQP8qIBX0CI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/mimic-fn/download/mimic-fn-1.2.0.tgz} + resolution: + { + integrity: sha1-ggyGo5M0ZA6ZUWkovQP8qIBX0CI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/mimic-fn/download/mimic-fn-1.2.0.tgz + } name: mimic-fn version: 1.2.0 - engines: {node: '>=4'} + engines: { node: '>=4' } dev: true registry.nlark.com/mimic-fn/2.1.0: - resolution: {integrity: sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/mimic-fn/download/mimic-fn-2.1.0.tgz} + resolution: + { + integrity: sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/mimic-fn/download/mimic-fn-2.1.0.tgz + } name: mimic-fn version: 2.1.0 - engines: {node: '>=6'} + engines: { node: '>=6' } 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: https://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'} + engines: { node: '>=4' } dev: true registry.nlark.com/minimatch/3.0.4: - resolution: {integrity: sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/minimatch/download/minimatch-3.0.4.tgz} + resolution: + { + integrity: sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/minimatch/download/minimatch-3.0.4.tgz + } name: minimatch version: 3.0.4 dependencies: @@ -2132,10 +3383,15 @@ packages: dev: true registry.nlark.com/minimist-options/4.1.0: - resolution: {integrity: sha1-wGVXE8U6ii69d/+iR9NCxA8BBhk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/minimist-options/download/minimist-options-4.1.0.tgz} + resolution: + { + integrity: sha1-wGVXE8U6ii69d/+iR9NCxA8BBhk=, + registry: https://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'} + engines: { node: '>= 6' } dependencies: arrify: registry.nlark.com/arrify/1.0.1 is-plain-obj: registry.nlark.com/is-plain-obj/1.1.0 @@ -2143,41 +3399,71 @@ packages: 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} + resolution: + { + integrity: sha1-Z9ZgFLZqaoqqDAg8X9WN9OTpdgI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/minimist/download/minimist-1.2.5.tgz + } name: minimist version: 1.2.5 dev: true registry.nlark.com/mri/1.2.0: - resolution: {integrity: sha1-ZyFID+wqEaSImGERWki2y+fMjws=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/mri/download/mri-1.2.0.tgz} + resolution: + { + integrity: sha1-ZyFID+wqEaSImGERWki2y+fMjws=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/mri/download/mri-1.2.0.tgz + } name: mri version: 1.2.0 - engines: {node: '>=4'} + engines: { node: '>=4' } dev: true registry.nlark.com/multimap/1.1.0: - resolution: {integrity: sha1-UmP+vAhaF5HDO1m7OvxqdqKhDKg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/multimap/download/multimap-1.1.0.tgz} + resolution: + { + integrity: sha1-UmP+vAhaF5HDO1m7OvxqdqKhDKg=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/multimap/download/multimap-1.1.0.tgz + } name: multimap version: 1.1.0 dev: true registry.nlark.com/mute-stream/0.0.7: - resolution: {integrity: sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/mute-stream/download/mute-stream-0.0.7.tgz} + resolution: + { + integrity: sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/mute-stream/download/mute-stream-0.0.7.tgz + } name: mute-stream version: 0.0.7 dev: true registry.nlark.com/natural-compare/1.4.0: - resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/natural-compare/download/natural-compare-1.4.0.tgz} + resolution: + { + integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/natural-compare/download/natural-compare-1.4.0.tgz + } name: natural-compare version: 1.4.0 dev: true registry.nlark.com/needle/2.9.1: - resolution: {integrity: sha1-ItHf++NJDCuD4wH3cJtnNs2PJoQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/needle/download/needle-2.9.1.tgz} + resolution: + { + integrity: sha1-ItHf++NJDCuD4wH3cJtnNs2PJoQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/needle/download/needle-2.9.1.tgz + } name: needle version: 2.9.1 - engines: {node: '>= 4.4.x'} + engines: { node: '>= 4.4.x' } hasBin: true requiresBuild: true dependencies: @@ -2188,7 +3474,12 @@ packages: optional: 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: https://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: @@ -2199,10 +3490,15 @@ 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: https://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'} + engines: { node: '>=10' } dependencies: hosted-git-info: registry.nlark.com/hosted-git-info/4.0.2 is-core-module: registry.npmmirror.com/is-core-module/2.8.0 @@ -2211,44 +3507,74 @@ packages: dev: true registry.nlark.com/normalize-path/3.0.0: - resolution: {integrity: sha1-Dc1p/yOhybEf0JeDFmRKA4ghamU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz} + resolution: + { + integrity: sha1-Dc1p/yOhybEf0JeDFmRKA4ghamU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz + } name: normalize-path version: 3.0.0 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dev: true registry.nlark.com/normalize-range/0.1.2: - resolution: {integrity: sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/normalize-range/download/normalize-range-0.1.2.tgz} + resolution: + { + integrity: sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/normalize-range/download/normalize-range-0.1.2.tgz + } name: normalize-range version: 0.1.2 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dev: true registry.nlark.com/normalize-selector/0.2.0: - resolution: {integrity: sha1-0LFF62kRicY6eNIB3E/bEpPvDAM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/normalize-selector/download/normalize-selector-0.2.0.tgz} + resolution: + { + integrity: sha1-0LFF62kRicY6eNIB3E/bEpPvDAM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/normalize-selector/download/normalize-selector-0.2.0.tgz + } name: normalize-selector version: 0.2.0 dev: true registry.nlark.com/object-assign/4.1.1: - resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/object-assign/download/object-assign-4.1.1.tgz} + resolution: + { + integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/object-assign/download/object-assign-4.1.1.tgz + } name: object-assign version: 4.1.1 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dev: true registry.nlark.com/object-keys/1.1.1: - resolution: {integrity: sha1-HEfyct8nfzsdrwYWd9nILiMixg4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz} + resolution: + { + integrity: sha1-HEfyct8nfzsdrwYWd9nILiMixg4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/object-keys/download/object-keys-1.1.1.tgz + } name: object-keys version: 1.1.1 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dev: true registry.nlark.com/object.assign/4.1.2: - resolution: {integrity: sha1-DtVKNC7Os3s4/3brgxoOeIy2OUA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/object.assign/download/object.assign-4.1.2.tgz} + resolution: + { + integrity: sha1-DtVKNC7Os3s4/3brgxoOeIy2OUA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/object.assign/download/object.assign-4.1.2.tgz + } name: object.assign version: 4.1.2 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dependencies: call-bind: registry.nlark.com/call-bind/1.0.2 define-properties: registry.nlark.com/define-properties/1.1.3 @@ -2257,7 +3583,12 @@ packages: dev: true registry.nlark.com/once/1.4.0: - resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/once/download/once-1.4.0.tgz} + resolution: + { + integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/once/download/once-1.4.0.tgz + } name: once version: 1.4.0 dependencies: @@ -2265,28 +3596,43 @@ packages: dev: true registry.nlark.com/onetime/2.0.1: - resolution: {integrity: sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/onetime/download/onetime-2.0.1.tgz} + resolution: + { + integrity: sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/onetime/download/onetime-2.0.1.tgz + } name: onetime version: 2.0.1 - engines: {node: '>=4'} + engines: { node: '>=4' } dependencies: mimic-fn: registry.nlark.com/mimic-fn/1.2.0 dev: true registry.nlark.com/onetime/5.1.2: - resolution: {integrity: sha1-0Oluu1awdHbfHdnEgG5SN5hcpF4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/onetime/download/onetime-5.1.2.tgz} + resolution: + { + integrity: sha1-0Oluu1awdHbfHdnEgG5SN5hcpF4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/onetime/download/onetime-5.1.2.tgz + } name: onetime version: 5.1.2 - engines: {node: '>=6'} + engines: { node: '>=6' } dependencies: mimic-fn: registry.nlark.com/mimic-fn/2.1.0 dev: true registry.nlark.com/optionator/0.9.1: - resolution: {integrity: sha1-TyNqY3Pa4FZqbUPhMmZ09QwpFJk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/optionator/download/optionator-0.9.1.tgz} + resolution: + { + integrity: sha1-TyNqY3Pa4FZqbUPhMmZ09QwpFJk=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/optionator/download/optionator-0.9.1.tgz + } name: optionator version: 0.9.1 - engines: {node: '>= 0.8.0'} + engines: { node: '>= 0.8.0' } dependencies: deep-is: registry.nlark.com/deep-is/0.1.4 fast-levenshtein: registry.nlark.com/fast-levenshtein/2.0.6 @@ -2297,154 +3643,266 @@ packages: dev: true registry.nlark.com/os-tmpdir/1.0.2: - resolution: {integrity: sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/os-tmpdir/download/os-tmpdir-1.0.2.tgz} + resolution: + { + integrity: sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/os-tmpdir/download/os-tmpdir-1.0.2.tgz + } name: os-tmpdir version: 1.0.2 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } 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&sync_timestamp=1631506045209&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-1.3.0.tgz} + 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&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'} + engines: { node: '>=4' } dependencies: p-try: registry.npmmirror.com/p-try/1.0.0 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&sync_timestamp=1631506045209&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-2.3.0.tgz} + 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&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'} + engines: { node: '>=6' } dependencies: p-try: registry.npmmirror.com/p-try/2.2.0 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&sync_timestamp=1631506045209&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fp-limit%2Fdownload%2Fp-limit-3.1.0.tgz} + 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&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'} + engines: { node: '>=10' } dependencies: yocto-queue: registry.nlark.com/yocto-queue/0.1.0 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: https://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'} + engines: { node: '>=4' } dependencies: p-limit: registry.nlark.com/p-limit/1.3.0 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: https://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'} + engines: { node: '>=8' } dependencies: p-limit: registry.nlark.com/p-limit/2.3.0 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: https://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'} + engines: { node: '>=10' } dependencies: p-limit: registry.nlark.com/p-limit/3.1.0 dev: true registry.nlark.com/parse-passwd/1.0.0: - resolution: {integrity: sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/parse-passwd/download/parse-passwd-1.0.0.tgz} + resolution: + { + integrity: sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/parse-passwd/download/parse-passwd-1.0.0.tgz + } name: parse-passwd version: 1.0.0 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } 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?cache=0&sync_timestamp=1631506047425&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpath-exists%2Fdownload%2Fpath-exists-3.0.0.tgz} + 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?cache=0&sync_timestamp=1631506047425&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpath-exists%2Fdownload%2Fpath-exists-3.0.0.tgz + } name: path-exists version: 3.0.0 - engines: {node: '>=4'} + 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: https://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'} + engines: { node: '>=8' } dev: true registry.nlark.com/path-is-absolute/1.0.1: - resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz} + resolution: + { + integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz + } name: path-is-absolute version: 1.0.1 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dev: true registry.nlark.com/path-key/3.1.1: - resolution: {integrity: sha1-WB9q3mWMu6ZaDTOA3ndTKVBU83U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-key/download/path-key-3.1.1.tgz} + resolution: + { + integrity: sha1-WB9q3mWMu6ZaDTOA3ndTKVBU83U=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/path-key/download/path-key-3.1.1.tgz + } name: path-key version: 3.1.1 - engines: {node: '>=8'} + engines: { node: '>=8' } dev: true registry.nlark.com/path-parse/1.0.7: - resolution: {integrity: sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-parse/download/path-parse-1.0.7.tgz} + resolution: + { + integrity: sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/path-parse/download/path-parse-1.0.7.tgz + } name: path-parse version: 1.0.7 dev: true registry.nlark.com/path-type/4.0.0: - resolution: {integrity: sha1-hO0BwKe6OAr+CdkKjBgNzZ0DBDs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-type/download/path-type-4.0.0.tgz} + resolution: + { + integrity: sha1-hO0BwKe6OAr+CdkKjBgNzZ0DBDs=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/path-type/download/path-type-4.0.0.tgz + } name: path-type version: 4.0.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dev: true registry.nlark.com/picomatch/2.3.0: - resolution: {integrity: sha1-8fBh3o9qS/AiiS4tEoI0+5gwKXI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/picomatch/download/picomatch-2.3.0.tgz} + resolution: + { + integrity: sha1-8fBh3o9qS/AiiS4tEoI0+5gwKXI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/picomatch/download/picomatch-2.3.0.tgz + } name: picomatch version: 2.3.0 - engines: {node: '>=8.6'} + engines: { node: '>=8.6' } dev: true registry.nlark.com/pify/4.0.1: - resolution: {integrity: sha1-SyzSXFDVmHNcUCkiJP2MbfQeMjE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pify/download/pify-4.0.1.tgz} + resolution: + { + integrity: sha1-SyzSXFDVmHNcUCkiJP2MbfQeMjE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/pify/download/pify-4.0.1.tgz + } name: pify version: 4.0.1 - engines: {node: '>=6'} + engines: { node: '>=6' } dev: true optional: true registry.nlark.com/pluralize/8.0.0: - resolution: {integrity: sha1-Gm+hajjRKhkB4DIPoBcFHFOc47E=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pluralize/download/pluralize-8.0.0.tgz} + resolution: + { + integrity: sha1-Gm+hajjRKhkB4DIPoBcFHFOc47E=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/pluralize/download/pluralize-8.0.0.tgz + } name: pluralize version: 8.0.0 - engines: {node: '>=4'} + engines: { node: '>=4' } + dev: true + + registry.nlark.com/postcss-less/5.0.0: + resolution: + { + integrity: sha1-P6Nh7Y5SqcPm5P25u5X9kDLzxis=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/postcss-less/download/postcss-less-5.0.0.tgz + } + name: postcss-less + version: 5.0.0 + engines: { node: '>=12' } dev: true registry.nlark.com/postcss-media-query-parser/0.2.3: - resolution: {integrity: sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-media-query-parser/download/postcss-media-query-parser-0.2.3.tgz} + resolution: + { + integrity: sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/postcss-media-query-parser/download/postcss-media-query-parser-0.2.3.tgz + } name: postcss-media-query-parser version: 0.2.3 dev: true registry.nlark.com/postcss-resolve-nested-selector/0.1.1: - resolution: {integrity: sha1-Kcy8fDfe36wwTp//C/FZaz9qDk4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-resolve-nested-selector/download/postcss-resolve-nested-selector-0.1.1.tgz} + resolution: + { + integrity: sha1-Kcy8fDfe36wwTp//C/FZaz9qDk4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/postcss-resolve-nested-selector/download/postcss-resolve-nested-selector-0.1.1.tgz + } name: postcss-resolve-nested-selector version: 0.1.1 dev: true registry.nlark.com/postcss-safe-parser/6.0.0_postcss@8.4.4: - resolution: {integrity: sha1-u0wpiUFxqUvFyZa5owMX70Aq2qE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-safe-parser/download/postcss-safe-parser-6.0.0.tgz} + resolution: + { + integrity: sha1-u0wpiUFxqUvFyZa5owMX70Aq2qE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/postcss-safe-parser/download/postcss-safe-parser-6.0.0.tgz + } id: registry.nlark.com/postcss-safe-parser/6.0.0 name: postcss-safe-parser version: 6.0.0 - engines: {node: '>=12.0'} + engines: { node: '>=12.0' } peerDependencies: postcss: ^8.3.3 dependencies: @@ -2452,40 +3910,65 @@ packages: dev: true registry.nlark.com/postcss-selector-parser/6.0.6: - resolution: {integrity: sha1-LFu6gXSsL2mBq2MaQqsO5UrzMuo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-6.0.6.tgz} + resolution: + { + integrity: sha1-LFu6gXSsL2mBq2MaQqsO5UrzMuo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-6.0.6.tgz + } name: postcss-selector-parser version: 6.0.6 - engines: {node: '>=4'} + engines: { node: '>=4' } dependencies: cssesc: registry.nlark.com/cssesc/3.0.0 util-deprecate: registry.nlark.com/util-deprecate/1.0.2 dev: true registry.nlark.com/prelude-ls/1.2.1: - resolution: {integrity: sha1-3rxkidem5rDnYRiIzsiAM30xY5Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/prelude-ls/download/prelude-ls-1.2.1.tgz} + resolution: + { + integrity: sha1-3rxkidem5rDnYRiIzsiAM30xY5Y=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/prelude-ls/download/prelude-ls-1.2.1.tgz + } name: prelude-ls version: 1.2.1 - engines: {node: '>= 0.8.0'} + engines: { node: '>= 0.8.0' } dev: true registry.nlark.com/prettier-linter-helpers/1.0.0: - resolution: {integrity: sha1-0j1B/hN1ZG3i0BBNNFSjAIgCz3s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/prettier-linter-helpers/download/prettier-linter-helpers-1.0.0.tgz} + resolution: + { + integrity: sha1-0j1B/hN1ZG3i0BBNNFSjAIgCz3s=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/prettier-linter-helpers/download/prettier-linter-helpers-1.0.0.tgz + } name: prettier-linter-helpers version: 1.0.0 - engines: {node: '>=6.0.0'} + engines: { node: '>=6.0.0' } dependencies: fast-diff: registry.nlark.com/fast-diff/1.2.0 dev: true registry.nlark.com/progress/2.0.3: - resolution: {integrity: sha1-foz42PW48jnBvGi+tOt4Vn1XLvg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/progress/download/progress-2.0.3.tgz} + resolution: + { + integrity: sha1-foz42PW48jnBvGi+tOt4Vn1XLvg=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/progress/download/progress-2.0.3.tgz + } name: progress version: 2.0.3 - engines: {node: '>=0.4.0'} + engines: { node: '>=0.4.0' } dev: true registry.nlark.com/promise/7.3.1: - resolution: {integrity: sha1-BktyYCsY+Q8pGSuLG8QY/9Hr078=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/promise/download/promise-7.3.1.tgz} + resolution: + { + integrity: sha1-BktyYCsY+Q8pGSuLG8QY/9Hr078=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/promise/download/promise-7.3.1.tgz + } name: promise version: 7.3.1 dependencies: @@ -2493,7 +3976,12 @@ packages: dev: true registry.nlark.com/prop-types/15.7.2: - resolution: {integrity: sha1-UsQedbjIfnK52TYOAga5ncv/psU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/prop-types/download/prop-types-15.7.2.tgz?cache=0&sync_timestamp=1631518748217&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fprop-types%2Fdownload%2Fprop-types-15.7.2.tgz} + resolution: + { + integrity: sha1-UsQedbjIfnK52TYOAga5ncv/psU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/prop-types/download/prop-types-15.7.2.tgz?cache=0&sync_timestamp=1631518748217&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fprop-types%2Fdownload%2Fprop-types-15.7.2.tgz + } name: prop-types version: 15.7.2 dependencies: @@ -2503,14 +3991,24 @@ packages: dev: true registry.nlark.com/prr/1.0.1: - resolution: {integrity: sha1-0/wRS6BplaRexok/SEzrHXj19HY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/prr/download/prr-1.0.1.tgz} + resolution: + { + integrity: sha1-0/wRS6BplaRexok/SEzrHXj19HY=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/prr/download/prr-1.0.1.tgz + } name: prr version: 1.0.1 dev: true optional: true registry.nlark.com/pug-attrs/3.0.0: - resolution: {integrity: sha1-sQRR4DSBZeMfrRzCPr3dncc0fEE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pug-attrs/download/pug-attrs-3.0.0.tgz} + resolution: + { + integrity: sha1-sQRR4DSBZeMfrRzCPr3dncc0fEE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/pug-attrs/download/pug-attrs-3.0.0.tgz + } name: pug-attrs version: 3.0.0 dependencies: @@ -2520,7 +4018,12 @@ packages: dev: true registry.nlark.com/pug-code-gen/3.0.2: - resolution: {integrity: sha1-rRkPSUMTO/GGtguA3kgxAOEy4s4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pug-code-gen/download/pug-code-gen-3.0.2.tgz} + resolution: + { + integrity: sha1-rRkPSUMTO/GGtguA3kgxAOEy4s4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/pug-code-gen/download/pug-code-gen-3.0.2.tgz + } name: pug-code-gen version: 3.0.2 dependencies: @@ -2535,13 +4038,23 @@ packages: dev: true registry.nlark.com/pug-error/2.0.0: - resolution: {integrity: sha1-XGIXPLCcNN4qLOBPF7it/sdNjKU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pug-error/download/pug-error-2.0.0.tgz} + resolution: + { + integrity: sha1-XGIXPLCcNN4qLOBPF7it/sdNjKU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/pug-error/download/pug-error-2.0.0.tgz + } name: pug-error version: 2.0.0 dev: true registry.nlark.com/pug-filters/4.0.0: - resolution: {integrity: sha1-0+Sa9bqEcum3pm2YDnB86dLMm14=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pug-filters/download/pug-filters-4.0.0.tgz} + resolution: + { + integrity: sha1-0+Sa9bqEcum3pm2YDnB86dLMm14=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/pug-filters/download/pug-filters-4.0.0.tgz + } name: pug-filters version: 4.0.0 dependencies: @@ -2553,7 +4066,12 @@ packages: dev: true registry.nlark.com/pug-lexer/5.0.1: - resolution: {integrity: sha1-rkRijFvvmxkLZlaDsojKkCS4sNU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pug-lexer/download/pug-lexer-5.0.1.tgz} + resolution: + { + integrity: sha1-rkRijFvvmxkLZlaDsojKkCS4sNU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/pug-lexer/download/pug-lexer-5.0.1.tgz + } name: pug-lexer version: 5.0.1 dependencies: @@ -2563,7 +4081,12 @@ packages: dev: true registry.nlark.com/pug-linker/4.0.0: - resolution: {integrity: sha1-EsvAWU/Fo+Brn8Web5PBRpYqdwg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pug-linker/download/pug-linker-4.0.0.tgz} + resolution: + { + integrity: sha1-EsvAWU/Fo+Brn8Web5PBRpYqdwg=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/pug-linker/download/pug-linker-4.0.0.tgz + } name: pug-linker version: 4.0.0 dependencies: @@ -2572,7 +4095,12 @@ packages: dev: true registry.nlark.com/pug-load/3.0.0: - resolution: {integrity: sha1-n9nNpSICsIrbEdJWgfufNL1BtmI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pug-load/download/pug-load-3.0.0.tgz} + resolution: + { + integrity: sha1-n9nNpSICsIrbEdJWgfufNL1BtmI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/pug-load/download/pug-load-3.0.0.tgz + } name: pug-load version: 3.0.0 dependencies: @@ -2581,7 +4109,12 @@ packages: dev: true registry.nlark.com/pug-parser/6.0.0: - resolution: {integrity: sha1-qP3ANYY6lbLB3F6/Ts+AtOdqEmA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pug-parser/download/pug-parser-6.0.0.tgz} + resolution: + { + integrity: sha1-qP3ANYY6lbLB3F6/Ts+AtOdqEmA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/pug-parser/download/pug-parser-6.0.0.tgz + } name: pug-parser version: 6.0.0 dependencies: @@ -2590,13 +4123,23 @@ packages: dev: true registry.nlark.com/pug-runtime/3.0.1: - resolution: {integrity: sha1-9jaXYgRyPzWoxfb61qzaKhkbg9c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pug-runtime/download/pug-runtime-3.0.1.tgz} + resolution: + { + integrity: sha1-9jaXYgRyPzWoxfb61qzaKhkbg9c=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/pug-runtime/download/pug-runtime-3.0.1.tgz + } name: pug-runtime version: 3.0.1 dev: true registry.nlark.com/pug-strip-comments/2.0.0: - resolution: {integrity: sha1-+UsH/WtJVSMzD0kKf1VLT/h2MD4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pug-strip-comments/download/pug-strip-comments-2.0.0.tgz} + resolution: + { + integrity: sha1-+UsH/WtJVSMzD0kKf1VLT/h2MD4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/pug-strip-comments/download/pug-strip-comments-2.0.0.tgz + } name: pug-strip-comments version: 2.0.0 dependencies: @@ -2604,13 +4147,23 @@ packages: dev: true registry.nlark.com/pug-walk/2.0.0: - resolution: {integrity: sha1-QXqrwpIyu0SZtbUGmistKiTV9f4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pug-walk/download/pug-walk-2.0.0.tgz} + resolution: + { + integrity: sha1-QXqrwpIyu0SZtbUGmistKiTV9f4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/pug-walk/download/pug-walk-2.0.0.tgz + } name: pug-walk version: 2.0.0 dev: true registry.nlark.com/pug/3.0.2: - resolution: {integrity: sha1-81xxBzQ0VOQ7wnrg/3bHMbeOpTU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pug/download/pug-3.0.2.tgz} + resolution: + { + integrity: sha1-81xxBzQ0VOQ7wnrg/3bHMbeOpTU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/pug/download/pug-3.0.2.tgz + } name: pug version: 3.0.2 dependencies: @@ -2625,7 +4178,12 @@ packages: dev: true registry.nlark.com/pump/3.0.0: - resolution: {integrity: sha1-tKIRaBW94vTh6mAjVOjHVWUQemQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pump/download/pump-3.0.0.tgz} + resolution: + { + integrity: sha1-tKIRaBW94vTh6mAjVOjHVWUQemQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/pump/download/pump-3.0.0.tgz + } name: pump version: 3.0.0 dependencies: @@ -2634,30 +4192,50 @@ packages: dev: true registry.nlark.com/punycode/2.1.1: - resolution: {integrity: sha1-tYsBCsQMIsVldhbI0sLALHv0eew=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/punycode/download/punycode-2.1.1.tgz} + resolution: + { + integrity: sha1-tYsBCsQMIsVldhbI0sLALHv0eew=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/punycode/download/punycode-2.1.1.tgz + } name: punycode version: 2.1.1 - engines: {node: '>=6'} + engines: { node: '>=6' } 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?cache=0&sync_timestamp=1631583865511&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fq%2Fdownload%2Fq-1.5.1.tgz} + resolution: + { + integrity: sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/q/download/q-1.5.1.tgz?cache=0&sync_timestamp=1631583865511&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fq%2Fdownload%2Fq-1.5.1.tgz + } name: q version: 1.5.1 - engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + 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: https://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/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: https://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'} + engines: { node: '>=8' } dependencies: '@types/normalize-package-data': registry.npmmirror.com/@types/normalize-package-data/2.4.1 normalize-package-data: registry.nlark.com/normalize-package-data/2.5.0 @@ -2666,10 +4244,15 @@ 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: https://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'} + engines: { node: '>= 6' } dependencies: inherits: registry.nlark.com/inherits/2.0.4 string_decoder: registry.nlark.com/string_decoder/1.3.0 @@ -2677,90 +4260,145 @@ 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: https://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'} + engines: { node: '>=8.10.0' } dependencies: picomatch: registry.nlark.com/picomatch/2.3.0 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: https://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'} + engines: { node: '>=8' } dependencies: indent-string: registry.nlark.com/indent-string/4.0.0 strip-indent: registry.nlark.com/strip-indent/3.0.0 dev: true registry.nlark.com/regexp.prototype.flags/1.3.1: - resolution: {integrity: sha1-fvNSro0VnnWMDq3Kb4/LTu8HviY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/regexp.prototype.flags/download/regexp.prototype.flags-1.3.1.tgz} + resolution: + { + integrity: sha1-fvNSro0VnnWMDq3Kb4/LTu8HviY=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/regexp.prototype.flags/download/regexp.prototype.flags-1.3.1.tgz + } name: regexp.prototype.flags version: 1.3.1 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dependencies: call-bind: registry.nlark.com/call-bind/1.0.2 define-properties: registry.nlark.com/define-properties/1.1.3 dev: true registry.nlark.com/regexpp/3.2.0: - resolution: {integrity: sha1-BCWido2PI7rXDKS5BGH6LxIT4bI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/regexpp/download/regexpp-3.2.0.tgz} + resolution: + { + integrity: sha1-BCWido2PI7rXDKS5BGH6LxIT4bI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/regexpp/download/regexpp-3.2.0.tgz + } name: regexpp version: 3.2.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dev: true registry.nlark.com/require-directory/2.1.1: - resolution: {integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/require-directory/download/require-directory-2.1.1.tgz} + resolution: + { + integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/require-directory/download/require-directory-2.1.1.tgz + } name: require-directory version: 2.1.1 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dev: true registry.nlark.com/require-from-string/2.0.2: - resolution: {integrity: sha1-iaf92TgmEmcxjq/hT5wy5ZjDaQk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/require-from-string/download/require-from-string-2.0.2.tgz} + resolution: + { + integrity: sha1-iaf92TgmEmcxjq/hT5wy5ZjDaQk=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/require-from-string/download/require-from-string-2.0.2.tgz + } name: require-from-string version: 2.0.2 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dev: true registry.nlark.com/resolve-dir/1.0.1: - resolution: {integrity: sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/resolve-dir/download/resolve-dir-1.0.1.tgz} + resolution: + { + integrity: sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/resolve-dir/download/resolve-dir-1.0.1.tgz + } name: resolve-dir version: 1.0.1 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dependencies: expand-tilde: registry.nlark.com/expand-tilde/2.0.2 global-modules: registry.nlark.com/global-modules/1.0.0 dev: true registry.nlark.com/resolve-from/4.0.0: - resolution: {integrity: sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/resolve-from/download/resolve-from-4.0.0.tgz?cache=0&sync_timestamp=1631501918091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fresolve-from%2Fdownload%2Fresolve-from-4.0.0.tgz} + resolution: + { + integrity: sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/resolve-from/download/resolve-from-4.0.0.tgz?cache=0&sync_timestamp=1631501918091&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fresolve-from%2Fdownload%2Fresolve-from-4.0.0.tgz + } name: resolve-from version: 4.0.0 - engines: {node: '>=4'} + engines: { node: '>=4' } 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: https://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'} + 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: https://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'} + engines: { node: '>=8' } dependencies: global-dirs: registry.nlark.com/global-dirs/0.1.1 dev: true registry.nlark.com/resolve/1.20.0: - resolution: {integrity: sha1-YpoBP7P3B1XW8LeTXMHCxTeLGXU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz} + resolution: + { + integrity: sha1-YpoBP7P3B1XW8LeTXMHCxTeLGXU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz + } name: resolve version: 1.20.0 dependencies: @@ -2769,7 +4407,12 @@ packages: dev: true registry.nlark.com/resolve/2.0.0-next.3: - resolution: {integrity: sha1-1BAWKT1KhYajnKXZtfFcvqH1XkY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/resolve/download/resolve-2.0.0-next.3.tgz} + resolution: + { + integrity: sha1-1BAWKT1KhYajnKXZtfFcvqH1XkY=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/resolve/download/resolve-2.0.0-next.3.tgz + } name: resolve version: 2.0.0-next.3 dependencies: @@ -2778,40 +4421,65 @@ packages: dev: true registry.nlark.com/restore-cursor/2.0.0: - resolution: {integrity: sha1-n37ih/gv0ybU/RYpI9YhKe7g368=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/restore-cursor/download/restore-cursor-2.0.0.tgz} + resolution: + { + integrity: sha1-n37ih/gv0ybU/RYpI9YhKe7g368=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/restore-cursor/download/restore-cursor-2.0.0.tgz + } name: restore-cursor version: 2.0.0 - engines: {node: '>=4'} + engines: { node: '>=4' } dependencies: onetime: registry.nlark.com/onetime/2.0.1 signal-exit: registry.npmmirror.com/signal-exit/3.0.6 dev: true registry.nlark.com/restore-cursor/3.1.0: - resolution: {integrity: sha1-OfZ8VLOnpYzqUjbZXPADQjljH34=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/restore-cursor/download/restore-cursor-3.1.0.tgz} + resolution: + { + integrity: sha1-OfZ8VLOnpYzqUjbZXPADQjljH34=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/restore-cursor/download/restore-cursor-3.1.0.tgz + } name: restore-cursor version: 3.1.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: onetime: registry.nlark.com/onetime/5.1.2 signal-exit: registry.npmmirror.com/signal-exit/3.0.6 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: https://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'} + engines: { iojs: '>=1.0.0', node: '>=0.10.0' } dev: true registry.nlark.com/rfdc/1.3.0: - resolution: {integrity: sha1-0LfEQasnINBdxM8m4ByJYx2doIs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/rfdc/download/rfdc-1.3.0.tgz} + resolution: + { + integrity: sha1-0LfEQasnINBdxM8m4ByJYx2doIs=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/rfdc/download/rfdc-1.3.0.tgz + } name: rfdc version: 1.3.0 dev: true registry.nlark.com/rimraf/3.0.2: - resolution: {integrity: sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/rimraf/download/rimraf-3.0.2.tgz} + resolution: + { + integrity: sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/rimraf/download/rimraf-3.0.2.tgz + } name: rimraf version: 3.0.2 hasBin: true @@ -2820,14 +4488,24 @@ packages: dev: true registry.nlark.com/run-async/2.4.1: - resolution: {integrity: sha1-hEDsz5nqPnC9QJ1JqriOEMGJpFU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/run-async/download/run-async-2.4.1.tgz} + resolution: + { + integrity: sha1-hEDsz5nqPnC9QJ1JqriOEMGJpFU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/run-async/download/run-async-2.4.1.tgz + } name: run-async version: 2.4.1 - engines: {node: '>=0.12.0'} + engines: { node: '>=0.12.0' } 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: https://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: @@ -2835,19 +4513,34 @@ packages: dev: true registry.nlark.com/safe-buffer/5.1.2: - resolution: {integrity: sha1-mR7GnSluAxN0fVm9/St0XDX4go0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/safe-buffer/download/safe-buffer-5.1.2.tgz} + resolution: + { + integrity: sha1-mR7GnSluAxN0fVm9/St0XDX4go0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/safe-buffer/download/safe-buffer-5.1.2.tgz + } name: safe-buffer version: 5.1.2 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: https://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 registry.nlark.com/safe-regex/2.1.1: - resolution: {integrity: sha1-9xKPANBW4v5cEegaEyTdl0qtztI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/safe-regex/download/safe-regex-2.1.1.tgz} + resolution: + { + integrity: sha1-9xKPANBW4v5cEegaEyTdl0qtztI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/safe-regex/download/safe-regex-2.1.1.tgz + } name: safe-regex version: 2.1.1 dependencies: @@ -2855,60 +4548,100 @@ packages: dev: true registry.nlark.com/safer-buffer/2.1.2: - resolution: {integrity: sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/safer-buffer/download/safer-buffer-2.1.2.tgz} + resolution: + { + integrity: sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/safer-buffer/download/safer-buffer-2.1.2.tgz + } name: safer-buffer version: 2.1.2 dev: true registry.nlark.com/sax/1.2.4: - resolution: {integrity: sha1-KBYjTiN4vdxOU1T6tcqold9xANk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/sax/download/sax-1.2.4.tgz} + resolution: + { + integrity: sha1-KBYjTiN4vdxOU1T6tcqold9xANk=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/sax/download/sax-1.2.4.tgz + } name: sax version: 1.2.4 dev: true optional: true registry.nlark.com/semver/5.7.1: - resolution: {integrity: sha1-qVT5Ma66UI0we78Gnv8MAclhFvc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/semver/download/semver-5.7.1.tgz} + resolution: + { + integrity: sha1-qVT5Ma66UI0we78Gnv8MAclhFvc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/semver/download/semver-5.7.1.tgz + } name: semver version: 5.7.1 hasBin: true 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: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/semver/download/semver-6.3.0.tgz + } name: semver version: 6.3.0 hasBin: true dev: true registry.nlark.com/semver/7.3.5: - resolution: {integrity: sha1-C2Ich5NI2JmOSw5L6Us/EuYBjvc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/semver/download/semver-7.3.5.tgz?cache=0&sync_timestamp=1631501920740&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsemver%2Fdownload%2Fsemver-7.3.5.tgz} + resolution: + { + integrity: sha1-C2Ich5NI2JmOSw5L6Us/EuYBjvc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/semver/download/semver-7.3.5.tgz?cache=0&sync_timestamp=1631501920740&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsemver%2Fdownload%2Fsemver-7.3.5.tgz + } name: semver version: 7.3.5 - engines: {node: '>=10'} + engines: { node: '>=10' } hasBin: true dependencies: lru-cache: registry.nlark.com/lru-cache/6.0.0 dev: true registry.nlark.com/shebang-command/2.0.0: - resolution: {integrity: sha1-zNCvT4g1+9wmW4JGGq8MNmY/NOo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/shebang-command/download/shebang-command-2.0.0.tgz} + resolution: + { + integrity: sha1-zNCvT4g1+9wmW4JGGq8MNmY/NOo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/shebang-command/download/shebang-command-2.0.0.tgz + } name: shebang-command version: 2.0.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: shebang-regex: registry.nlark.com/shebang-regex/3.0.0 dev: true registry.nlark.com/shebang-regex/3.0.0: - resolution: {integrity: sha1-rhbxZE2HPsrYQ7AwexQzYtTEIXI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/shebang-regex/download/shebang-regex-3.0.0.tgz} + resolution: + { + integrity: sha1-rhbxZE2HPsrYQ7AwexQzYtTEIXI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/shebang-regex/download/shebang-regex-3.0.0.tgz + } name: shebang-regex version: 3.0.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dev: true registry.nlark.com/side-channel/1.0.4: - resolution: {integrity: sha1-785cj9wQTudRslxY1CkAEfpeos8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/side-channel/download/side-channel-1.0.4.tgz} + resolution: + { + integrity: sha1-785cj9wQTudRslxY1CkAEfpeos8=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/side-channel/download/side-channel-1.0.4.tgz + } name: side-channel version: 1.0.4 dependencies: @@ -2918,17 +4651,27 @@ 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: https://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'} + engines: { node: '>=8' } dev: true registry.nlark.com/slice-ansi/3.0.0: - resolution: {integrity: sha1-Md3BCTCht+C2ewjJbC9Jt3p4l4c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/slice-ansi/download/slice-ansi-3.0.0.tgz} + resolution: + { + integrity: sha1-Md3BCTCht+C2ewjJbC9Jt3p4l4c=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/slice-ansi/download/slice-ansi-3.0.0.tgz + } name: slice-ansi version: 3.0.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: ansi-styles: registry.nlark.com/ansi-styles/4.3.0 astral-regex: registry.nlark.com/astral-regex/2.0.0 @@ -2936,10 +4679,15 @@ packages: dev: true registry.nlark.com/slice-ansi/4.0.0: - resolution: {integrity: sha1-UA6N0P1VsFgVCGJVsxla3ypF/ms=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/slice-ansi/download/slice-ansi-4.0.0.tgz} + resolution: + { + integrity: sha1-UA6N0P1VsFgVCGJVsxla3ypF/ms=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/slice-ansi/download/slice-ansi-4.0.0.tgz + } name: slice-ansi version: 4.0.0 - engines: {node: '>=10'} + engines: { node: '>=10' } dependencies: ansi-styles: registry.nlark.com/ansi-styles/4.3.0 astral-regex: registry.nlark.com/astral-regex/2.0.0 @@ -2947,35 +4695,60 @@ packages: dev: true registry.nlark.com/slice-ansi/5.0.0: - resolution: {integrity: sha1-tzBjxXqpb5zYgWVLFSlNldKFxCo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/slice-ansi/download/slice-ansi-5.0.0.tgz} + resolution: + { + integrity: sha1-tzBjxXqpb5zYgWVLFSlNldKFxCo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/slice-ansi/download/slice-ansi-5.0.0.tgz + } name: slice-ansi version: 5.0.0 - engines: {node: '>=12'} + engines: { node: '>=12' } dependencies: ansi-styles: registry.nlark.com/ansi-styles/6.1.0 is-fullwidth-code-point: registry.nlark.com/is-fullwidth-code-point/4.0.0 dev: true registry.nlark.com/source-map/0.5.7: - resolution: {integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/source-map/download/source-map-0.5.7.tgz} + resolution: + { + integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/source-map/download/source-map-0.5.7.tgz + } name: source-map version: 0.5.7 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } 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: https://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'} + engines: { node: '>=0.10.0' } registry.nlark.com/sourcemap-codec/1.4.8: - resolution: {integrity: sha1-6oBL2UhXQC5pktBaOO8a41qatMQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/sourcemap-codec/download/sourcemap-codec-1.4.8.tgz} + resolution: + { + integrity: sha1-6oBL2UhXQC5pktBaOO8a41qatMQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/sourcemap-codec/download/sourcemap-codec-1.4.8.tgz + } name: sourcemap-codec 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: https://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: @@ -2984,13 +4757,23 @@ 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: https://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: https://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: @@ -2999,20 +4782,35 @@ packages: dev: true registry.nlark.com/sprintf-js/1.0.3: - resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/sprintf-js/download/sprintf-js-1.0.3.tgz} + resolution: + { + integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/sprintf-js/download/sprintf-js-1.0.3.tgz + } name: sprintf-js version: 1.0.3 dev: true registry.nlark.com/string-argv/0.3.1: - resolution: {integrity: sha1-leL77AQnrhkYSTX4FtdKqkxcGdo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/string-argv/download/string-argv-0.3.1.tgz} + resolution: + { + integrity: sha1-leL77AQnrhkYSTX4FtdKqkxcGdo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/string-argv/download/string-argv-0.3.1.tgz + } name: string-argv version: 0.3.1 - engines: {node: '>=0.6.19'} + engines: { node: '>=0.6.19' } dev: true registry.nlark.com/string.prototype.trimend/1.0.4: - resolution: {integrity: sha1-51rpDClCxjUEaGwYsoe0oLGkX4A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/string.prototype.trimend/download/string.prototype.trimend-1.0.4.tgz} + resolution: + { + integrity: sha1-51rpDClCxjUEaGwYsoe0oLGkX4A=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/string.prototype.trimend/download/string.prototype.trimend-1.0.4.tgz + } name: string.prototype.trimend version: 1.0.4 dependencies: @@ -3021,7 +4819,12 @@ packages: dev: true registry.nlark.com/string.prototype.trimstart/1.0.4: - resolution: {integrity: sha1-s2OZr0qymZtMnGSL16P7K7Jv7u0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/string.prototype.trimstart/download/string.prototype.trimstart-1.0.4.tgz} + resolution: + { + integrity: sha1-s2OZr0qymZtMnGSL16P7K7Jv7u0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/string.prototype.trimstart/download/string.prototype.trimstart-1.0.4.tgz + } name: string.prototype.trimstart version: 1.0.4 dependencies: @@ -3030,7 +4833,12 @@ 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: https://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: @@ -3038,82 +4846,142 @@ packages: dev: true registry.nlark.com/strip-bom/3.0.0: - resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/strip-bom/download/strip-bom-3.0.0.tgz} + resolution: + { + integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/strip-bom/download/strip-bom-3.0.0.tgz + } name: strip-bom version: 3.0.0 - engines: {node: '>=4'} + engines: { node: '>=4' } dev: true registry.nlark.com/strip-bom/4.0.0: - resolution: {integrity: sha1-nDUFwdtFvO3KPZz3oW9cWqOQGHg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/strip-bom/download/strip-bom-4.0.0.tgz} + resolution: + { + integrity: sha1-nDUFwdtFvO3KPZz3oW9cWqOQGHg=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/strip-bom/download/strip-bom-4.0.0.tgz + } name: strip-bom version: 4.0.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dev: true registry.nlark.com/strip-final-newline/2.0.0: - resolution: {integrity: sha1-ibhS+y/L6Tb29LMYevsKEsGrWK0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/strip-final-newline/download/strip-final-newline-2.0.0.tgz} + resolution: + { + integrity: sha1-ibhS+y/L6Tb29LMYevsKEsGrWK0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/strip-final-newline/download/strip-final-newline-2.0.0.tgz + } name: strip-final-newline version: 2.0.0 - engines: {node: '>=6'} + engines: { node: '>=6' } 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: https://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'} + engines: { node: '>=8' } dependencies: min-indent: registry.nlark.com/min-indent/1.0.1 dev: true registry.nlark.com/strip-json-comments/3.0.1: - resolution: {integrity: sha1-hXE5dakfuHvxswXMp3OV5A0qZKc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/strip-json-comments/download/strip-json-comments-3.0.1.tgz} + resolution: + { + integrity: sha1-hXE5dakfuHvxswXMp3OV5A0qZKc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/strip-json-comments/download/strip-json-comments-3.0.1.tgz + } name: strip-json-comments version: 3.0.1 - engines: {node: '>=8'} + engines: { node: '>=8' } dev: true registry.nlark.com/strip-json-comments/3.1.1: - resolution: {integrity: sha1-MfEoGzgyYwQ0gxwxDAHMzajL4AY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/strip-json-comments/download/strip-json-comments-3.1.1.tgz} + resolution: + { + integrity: sha1-MfEoGzgyYwQ0gxwxDAHMzajL4AY=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/strip-json-comments/download/strip-json-comments-3.1.1.tgz + } name: strip-json-comments version: 3.1.1 - engines: {node: '>=8'} + engines: { node: '>=8' } dev: true registry.nlark.com/style-search/0.1.0: - resolution: {integrity: sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/style-search/download/style-search-0.1.0.tgz} + resolution: + { + integrity: sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/style-search/download/style-search-0.1.0.tgz + } name: style-search version: 0.1.0 dev: true registry.nlark.com/svg-tags/1.0.0: - resolution: {integrity: sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/svg-tags/download/svg-tags-1.0.0.tgz} + resolution: + { + integrity: sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/svg-tags/download/svg-tags-1.0.0.tgz + } name: svg-tags version: 1.0.0 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: https://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'} + engines: { node: '>=0.10' } dev: true registry.nlark.com/text-table/0.2.0: - resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/text-table/download/text-table-0.2.0.tgz} + resolution: + { + integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/text-table/download/text-table-0.2.0.tgz + } name: text-table version: 0.2.0 dev: true registry.nlark.com/through/2.3.8: - resolution: {integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/through/download/through-2.3.8.tgz} + resolution: + { + integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/through/download/through-2.3.8.tgz + } name: through version: 2.3.8 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: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/through2/download/through2-4.0.2.tgz + } name: through2 version: 4.0.2 dependencies: @@ -3121,67 +4989,112 @@ packages: dev: true registry.nlark.com/tmp/0.0.33: - resolution: {integrity: sha1-bTQzWIl2jSGyvNoKonfO07G/rfk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/tmp/download/tmp-0.0.33.tgz} + resolution: + { + integrity: sha1-bTQzWIl2jSGyvNoKonfO07G/rfk=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/tmp/download/tmp-0.0.33.tgz + } name: tmp version: 0.0.33 - engines: {node: '>=0.6.0'} + engines: { node: '>=0.6.0' } dependencies: os-tmpdir: registry.nlark.com/os-tmpdir/1.0.2 dev: true registry.nlark.com/to-fast-properties/2.0.0: - resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz} + resolution: + { + integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz + } name: to-fast-properties version: 2.0.0 - engines: {node: '>=4'} + engines: { node: '>=4' } dev: true registry.nlark.com/to-regex-range/5.0.1: - resolution: {integrity: sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/to-regex-range/download/to-regex-range-5.0.1.tgz} + resolution: + { + integrity: sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/to-regex-range/download/to-regex-range-5.0.1.tgz + } name: to-regex-range version: 5.0.1 - engines: {node: '>=8.0'} + engines: { node: '>=8.0' } dependencies: is-number: registry.nlark.com/is-number/7.0.0 dev: true registry.nlark.com/token-stream/1.0.0: - resolution: {integrity: sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/token-stream/download/token-stream-1.0.0.tgz} + resolution: + { + integrity: sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/token-stream/download/token-stream-1.0.0.tgz + } name: token-stream version: 1.0.0 dev: true 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: https://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'} + engines: { node: '>=8' } 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: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/tslib/download/tslib-1.14.1.tgz + } name: tslib version: 1.14.1 dev: true registry.nlark.com/tslib/2.1.0: - resolution: {integrity: sha1-2mCGDxwuyqVwOrfTm8Bba/mIuXo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/tslib/download/tslib-2.1.0.tgz} + resolution: + { + integrity: sha1-2mCGDxwuyqVwOrfTm8Bba/mIuXo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/tslib/download/tslib-2.1.0.tgz + } name: tslib version: 2.1.0 dev: true registry.nlark.com/tslib/2.3.1: - resolution: {integrity: sha1-6KM1rdXOrlGqJh0ypJAVjvBC7wE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/tslib/download/tslib-2.3.1.tgz} + resolution: + { + integrity: sha1-6KM1rdXOrlGqJh0ypJAVjvBC7wE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/tslib/download/tslib-2.3.1.tgz + } name: tslib version: 2.3.1 dev: true registry.nlark.com/tsutils/3.21.0_typescript@4.5.2: - 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: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/tsutils/download/tsutils-3.21.0.tgz + } id: registry.nlark.com/tsutils/3.21.0 name: tsutils version: 3.21.0 - engines: {node: '>= 6'} + engines: { node: '>= 6' } peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: @@ -3190,16 +5103,26 @@ packages: dev: true registry.nlark.com/type-check/0.4.0: - resolution: {integrity: sha1-B7ggO/pwVsBlcFDjzNLDdzC6uPE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/type-check/download/type-check-0.4.0.tgz} + resolution: + { + integrity: sha1-B7ggO/pwVsBlcFDjzNLDdzC6uPE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/type-check/download/type-check-0.4.0.tgz + } name: type-check version: 0.4.0 - engines: {node: '>= 0.8.0'} + engines: { node: '>= 0.8.0' } dependencies: prelude-ls: registry.nlark.com/prelude-ls/1.2.1 dev: true registry.nlark.com/typedarray-to-buffer/3.1.5: - resolution: {integrity: sha1-qX7nqf9CaRufeD/xvFES/j/KkIA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/typedarray-to-buffer/download/typedarray-to-buffer-3.1.5.tgz} + resolution: + { + integrity: sha1-qX7nqf9CaRufeD/xvFES/j/KkIA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/typedarray-to-buffer/download/typedarray-to-buffer-3.1.5.tgz + } name: typedarray-to-buffer version: 3.1.5 dependencies: @@ -3207,7 +5130,12 @@ packages: dev: true registry.nlark.com/unbox-primitive/1.0.1: - resolution: {integrity: sha1-CF4hViXsMWJXTciFmr7nilmxRHE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/unbox-primitive/download/unbox-primitive-1.0.1.tgz} + resolution: + { + integrity: sha1-CF4hViXsMWJXTciFmr7nilmxRHE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/unbox-primitive/download/unbox-primitive-1.0.1.tgz + } name: unbox-primitive version: 1.0.1 dependencies: @@ -3218,28 +5146,48 @@ packages: dev: true registry.nlark.com/universalify/0.1.2: - resolution: {integrity: sha1-tkb2m+OULavOzJ1mOcgNwQXvqmY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/universalify/download/universalify-0.1.2.tgz} + resolution: + { + integrity: sha1-tkb2m+OULavOzJ1mOcgNwQXvqmY=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/universalify/download/universalify-0.1.2.tgz + } name: universalify version: 0.1.2 - engines: {node: '>= 4.0.0'} + engines: { node: '>= 4.0.0' } dev: true registry.nlark.com/universalify/2.0.0: - resolution: {integrity: sha1-daSYTv7cSwiXXFrrc/Uw0C3yVxc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/universalify/download/universalify-2.0.0.tgz} + resolution: + { + integrity: sha1-daSYTv7cSwiXXFrrc/Uw0C3yVxc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/universalify/download/universalify-2.0.0.tgz + } name: universalify version: 2.0.0 - engines: {node: '>= 10.0.0'} + engines: { node: '>= 10.0.0' } dev: true registry.nlark.com/upath/2.0.1: - resolution: {integrity: sha1-UMc96mjW9rmQ9R0nnOYIFmXWGos=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/upath/download/upath-2.0.1.tgz} + resolution: + { + integrity: sha1-UMc96mjW9rmQ9R0nnOYIFmXWGos=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/upath/download/upath-2.0.1.tgz + } name: upath version: 2.0.1 - engines: {node: '>=4'} + engines: { node: '>=4' } dev: true registry.nlark.com/uri-js/4.4.1: - resolution: {integrity: sha1-mxpSWVIlhZ5V9mnZKPiMbFfyp34=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/uri-js/download/uri-js-4.4.1.tgz} + resolution: + { + integrity: sha1-mxpSWVIlhZ5V9mnZKPiMbFfyp34=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/uri-js/download/uri-js-4.4.1.tgz + } name: uri-js version: 4.4.1 dependencies: @@ -3247,19 +5195,34 @@ 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: https://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 registry.nlark.com/v8-compile-cache/2.3.0: - resolution: {integrity: sha1-LeGWGMZtwkfc+2+ZM4A12CRaLO4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/v8-compile-cache/download/v8-compile-cache-2.3.0.tgz?cache=0&sync_timestamp=1631501921247&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fv8-compile-cache%2Fdownload%2Fv8-compile-cache-2.3.0.tgz} + resolution: + { + integrity: sha1-LeGWGMZtwkfc+2+ZM4A12CRaLO4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/v8-compile-cache/download/v8-compile-cache-2.3.0.tgz?cache=0&sync_timestamp=1631501921247&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fv8-compile-cache%2Fdownload%2Fv8-compile-cache-2.3.0.tgz + } name: v8-compile-cache version: 2.3.0 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: https://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: @@ -3268,7 +5231,12 @@ packages: dev: true registry.nlark.com/vite-plugin-eslint/1.3.0_vite@2.6.14: - resolution: {integrity: sha1-y8PxVCyl6Q1ZLM+2tJV+m2P5mg4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vite-plugin-eslint/download/vite-plugin-eslint-1.3.0.tgz} + resolution: + { + integrity: sha1-y8PxVCyl6Q1ZLM+2tJV+m2P5mg4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/vite-plugin-eslint/download/vite-plugin-eslint-1.3.0.tgz + } id: registry.nlark.com/vite-plugin-eslint/1.3.0 name: vite-plugin-eslint version: 1.3.0 @@ -3284,32 +5252,57 @@ packages: dev: true registry.nlark.com/void-elements/3.1.0: - resolution: {integrity: sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/void-elements/download/void-elements-3.1.0.tgz} + resolution: + { + integrity: sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/void-elements/download/void-elements-3.1.0.tgz + } name: void-elements version: 3.1.0 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dev: true registry.nlark.com/vscode-uri/2.1.2: - resolution: {integrity: sha1-yNQN6T61evMfPHFd1lDiyiwJbxw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vscode-uri/download/vscode-uri-2.1.2.tgz} + resolution: + { + integrity: sha1-yNQN6T61evMfPHFd1lDiyiwJbxw=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/vscode-uri/download/vscode-uri-2.1.2.tgz + } name: vscode-uri version: 2.1.2 dev: true registry.nlark.com/vscode-uri/3.0.2: - resolution: {integrity: sha1-7P0dBmy470w6II3s26uajCPQVdA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vscode-uri/download/vscode-uri-3.0.2.tgz} + resolution: + { + integrity: sha1-7P0dBmy470w6II3s26uajCPQVdA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/vscode-uri/download/vscode-uri-3.0.2.tgz + } name: vscode-uri version: 3.0.2 dev: true 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: https://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 registry.nlark.com/which-boxed-primitive/1.0.2: - resolution: {integrity: sha1-E3V7yJsgmwSf5dhkMOIc9AqJqOY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/which-boxed-primitive/download/which-boxed-primitive-1.0.2.tgz} + resolution: + { + integrity: sha1-E3V7yJsgmwSf5dhkMOIc9AqJqOY=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/which-boxed-primitive/download/which-boxed-primitive-1.0.2.tgz + } name: which-boxed-primitive version: 1.0.2 dependencies: @@ -3321,7 +5314,12 @@ packages: dev: true registry.nlark.com/which/1.3.1: - resolution: {integrity: sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/which/download/which-1.3.1.tgz} + resolution: + { + integrity: sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/which/download/which-1.3.1.tgz + } name: which version: 1.3.1 hasBin: true @@ -3330,20 +5328,30 @@ packages: dev: true registry.nlark.com/which/2.0.2: - resolution: {integrity: sha1-fGqN0KY2oDJ+ELWckobu6T8/UbE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/which/download/which-2.0.2.tgz} + resolution: + { + integrity: sha1-fGqN0KY2oDJ+ELWckobu6T8/UbE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/which/download/which-2.0.2.tgz + } name: which version: 2.0.2 - engines: {node: '>= 8'} + engines: { node: '>= 8' } hasBin: true dependencies: isexe: registry.nlark.com/isexe/2.0.0 dev: true registry.nlark.com/with/7.0.2: - resolution: {integrity: sha1-zO461ULSVTinp6gKrSErmChJW6w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/with/download/with-7.0.2.tgz} + resolution: + { + integrity: sha1-zO461ULSVTinp6gKrSErmChJW6w=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/with/download/with-7.0.2.tgz + } name: with version: 7.0.2 - engines: {node: '>= 10.0.0'} + engines: { node: '>= 10.0.0' } dependencies: '@babel/parser': registry.npmmirror.com/@babel/parser/7.16.4 '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 @@ -3352,17 +5360,27 @@ packages: dev: true registry.nlark.com/word-wrap/1.2.3: - resolution: {integrity: sha1-YQY29rH3A4kb00dxzLF/uTtHB5w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/word-wrap/download/word-wrap-1.2.3.tgz} + resolution: + { + integrity: sha1-YQY29rH3A4kb00dxzLF/uTtHB5w=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/word-wrap/download/word-wrap-1.2.3.tgz + } name: word-wrap version: 1.2.3 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dev: true registry.nlark.com/wrap-ansi/6.2.0: - resolution: {integrity: sha1-6Tk7oHEC5skaOyIUePAlfNKFblM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/wrap-ansi/download/wrap-ansi-6.2.0.tgz} + resolution: + { + integrity: sha1-6Tk7oHEC5skaOyIUePAlfNKFblM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/wrap-ansi/download/wrap-ansi-6.2.0.tgz + } name: wrap-ansi version: 6.2.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: ansi-styles: registry.nlark.com/ansi-styles/4.3.0 string-width: registry.npmmirror.com/string-width/4.2.3 @@ -3370,10 +5388,15 @@ packages: dev: true registry.nlark.com/wrap-ansi/7.0.0: - resolution: {integrity: sha1-Z+FFz/UQpqaYS98RUpEdadLrnkM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/wrap-ansi/download/wrap-ansi-7.0.0.tgz} + resolution: + { + integrity: sha1-Z+FFz/UQpqaYS98RUpEdadLrnkM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/wrap-ansi/download/wrap-ansi-7.0.0.tgz + } name: wrap-ansi version: 7.0.0 - engines: {node: '>=10'} + engines: { node: '>=10' } dependencies: ansi-styles: registry.nlark.com/ansi-styles/4.3.0 string-width: registry.npmmirror.com/string-width/4.2.3 @@ -3381,13 +5404,23 @@ packages: dev: true registry.nlark.com/wrappy/1.0.2: - resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz} + resolution: + { + integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz + } name: wrappy version: 1.0.2 dev: true registry.nlark.com/write-file-atomic/3.0.3: - resolution: {integrity: sha1-Vr1cWlxwSBzRnFcb05q5ZaXeVug=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/write-file-atomic/download/write-file-atomic-3.0.3.tgz} + resolution: + { + integrity: sha1-Vr1cWlxwSBzRnFcb05q5ZaXeVug=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/write-file-atomic/download/write-file-atomic-3.0.3.tgz + } name: write-file-atomic version: 3.0.3 dependencies: @@ -3398,34 +5431,59 @@ packages: dev: true registry.nlark.com/y18n/5.0.8: - resolution: {integrity: sha1-f0k00PfKjFb5UxSTndzS3ZHOHVU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/y18n/download/y18n-5.0.8.tgz} + resolution: + { + integrity: sha1-f0k00PfKjFb5UxSTndzS3ZHOHVU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/y18n/download/y18n-5.0.8.tgz + } name: y18n version: 5.0.8 - engines: {node: '>=10'} + engines: { node: '>=10' } dev: true registry.nlark.com/yallist/4.0.0: - resolution: {integrity: sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/yallist/download/yallist-4.0.0.tgz} + resolution: + { + integrity: sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/yallist/download/yallist-4.0.0.tgz + } name: yallist version: 4.0.0 dev: true registry.nlark.com/yn/3.1.1: - resolution: {integrity: sha1-HodAGgnXZ8HV6rJqbkwYUYLS61A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/yn/download/yn-3.1.1.tgz} + resolution: + { + integrity: sha1-HodAGgnXZ8HV6rJqbkwYUYLS61A=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.nlark.com/yn/download/yn-3.1.1.tgz + } name: yn version: 3.1.1 - engines: {node: '>=6'} + engines: { node: '>=6' } 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: https://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'} + engines: { node: '>=10' } dev: true registry.npmmirror.com/@antfu/eslint-config-basic/0.12.1_eslint@8.4.1: - resolution: {integrity: sha512-XuezR72n3yKCkO1zeARnUZ0SNckP3MgMvWb1Ohy641Ozo9ZXP6CKwFUr0jdGLn5u7Dk8rmUd+GPPCMFLH+h24g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antfu/eslint-config-basic/download/@antfu/eslint-config-basic-0.12.1.tgz} + resolution: + { + integrity: sha512-XuezR72n3yKCkO1zeARnUZ0SNckP3MgMvWb1Ohy641Ozo9ZXP6CKwFUr0jdGLn5u7Dk8rmUd+GPPCMFLH+h24g==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@antfu/eslint-config-basic/download/@antfu/eslint-config-basic-0.12.1.tgz + } id: registry.npmmirror.com/@antfu/eslint-config-basic/0.12.1 name: '@antfu/eslint-config-basic' version: 0.12.1 @@ -3449,7 +5507,12 @@ packages: dev: true registry.npmmirror.com/@antfu/eslint-config-react/0.12.1_eslint@8.4.1+typescript@4.5.2: - resolution: {integrity: sha512-HEfFWojmTxgESp/f6B2ran9iOmYzIeJF1/x8dtJ8YM6lUrjQDxdztXEG+kxSPAsUA0E1/mLLm64LhWjz9taoFQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antfu/eslint-config-react/download/@antfu/eslint-config-react-0.12.1.tgz} + resolution: + { + integrity: sha512-HEfFWojmTxgESp/f6B2ran9iOmYzIeJF1/x8dtJ8YM6lUrjQDxdztXEG+kxSPAsUA0E1/mLLm64LhWjz9taoFQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@antfu/eslint-config-react/download/@antfu/eslint-config-react-0.12.1.tgz + } id: registry.npmmirror.com/@antfu/eslint-config-react/0.12.1 name: '@antfu/eslint-config-react' version: 0.12.1 @@ -3465,7 +5528,12 @@ packages: dev: true registry.npmmirror.com/@antfu/eslint-config-ts/0.12.1_eslint@8.4.1+typescript@4.5.2: - resolution: {integrity: sha512-kcQHk1FtPo1GsRcv60NCwjbt9U8mpCVcHpV+vwNWwK6bfS8hU3zuGMNqT17tCvlfZNa5GWsxTrXGvjc+MaafQA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antfu/eslint-config-ts/download/@antfu/eslint-config-ts-0.12.1.tgz} + resolution: + { + integrity: sha512-kcQHk1FtPo1GsRcv60NCwjbt9U8mpCVcHpV+vwNWwK6bfS8hU3zuGMNqT17tCvlfZNa5GWsxTrXGvjc+MaafQA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@antfu/eslint-config-ts/download/@antfu/eslint-config-ts-0.12.1.tgz + } id: registry.npmmirror.com/@antfu/eslint-config-ts/0.12.1 name: '@antfu/eslint-config-ts' version: 0.12.1 @@ -3483,7 +5551,12 @@ packages: dev: true registry.npmmirror.com/@antfu/eslint-config-vue/0.12.1_eslint@8.4.1+typescript@4.5.2: - resolution: {integrity: sha512-IFtVs4qCz7SlTe+TNuXq4fb1aw+hoGJ7kyKuopkLke032RjrJBQ9gHHdrNopxZuUrgqZFAvtpUSWKxH8lm+TZQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antfu/eslint-config-vue/download/@antfu/eslint-config-vue-0.12.1.tgz} + resolution: + { + integrity: sha512-IFtVs4qCz7SlTe+TNuXq4fb1aw+hoGJ7kyKuopkLke032RjrJBQ9gHHdrNopxZuUrgqZFAvtpUSWKxH8lm+TZQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@antfu/eslint-config-vue/download/@antfu/eslint-config-vue-0.12.1.tgz + } id: registry.npmmirror.com/@antfu/eslint-config-vue/0.12.1 name: '@antfu/eslint-config-vue' version: 0.12.1 @@ -3499,7 +5572,12 @@ packages: dev: true registry.npmmirror.com/@antfu/eslint-config/0.12.1_eslint@8.4.1+typescript@4.5.2: - resolution: {integrity: sha512-C9YJLEIR6fPYRYM8gnkxY4i27v7OEBLeZ8SpGgYMpOO3WB+5VWIkARPe672AgHfIvIlCxsxXEzIhIcAT0hHDFw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antfu/eslint-config/download/@antfu/eslint-config-0.12.1.tgz} + resolution: + { + integrity: sha512-C9YJLEIR6fPYRYM8gnkxY4i27v7OEBLeZ8SpGgYMpOO3WB+5VWIkARPe672AgHfIvIlCxsxXEzIhIcAT0hHDFw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@antfu/eslint-config/download/@antfu/eslint-config-0.12.1.tgz + } id: registry.npmmirror.com/@antfu/eslint-config/0.12.1 name: '@antfu/eslint-config' version: 0.12.1 @@ -3529,7 +5607,12 @@ packages: dev: true registry.npmmirror.com/@babel/code-frame/7.12.11: - resolution: {integrity: sha1-9K1DWqJj25NbjxDyxVLSP7cWpj8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/code-frame/download/@babel/code-frame-7.12.11.tgz?cache=0&sync_timestamp=1635561716483&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.12.11.tgz} + resolution: + { + integrity: sha1-9K1DWqJj25NbjxDyxVLSP7cWpj8=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/code-frame/download/@babel/code-frame-7.12.11.tgz?cache=0&sync_timestamp=1635561716483&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.12.11.tgz + } name: '@babel/code-frame' version: 7.12.11 dependencies: @@ -3537,26 +5620,41 @@ packages: dev: true registry.npmmirror.com/@babel/code-frame/7.16.0: - resolution: {integrity: sha1-DfyAMJvuyEEeZecGRhxAiwu5tDE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/code-frame/download/@babel/code-frame-7.16.0.tgz?cache=0&sync_timestamp=1635561716483&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.16.0.tgz} + resolution: + { + integrity: sha1-DfyAMJvuyEEeZecGRhxAiwu5tDE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/code-frame/download/@babel/code-frame-7.16.0.tgz?cache=0&sync_timestamp=1635561716483&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.16.0.tgz + } name: '@babel/code-frame' version: 7.16.0 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dependencies: '@babel/highlight': registry.npmmirror.com/@babel/highlight/7.16.0 dev: true registry.npmmirror.com/@babel/compat-data/7.16.4: - resolution: {integrity: sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/compat-data/download/@babel/compat-data-7.16.4.tgz} + resolution: + { + integrity: sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/compat-data/download/@babel/compat-data-7.16.4.tgz + } name: '@babel/compat-data' version: 7.16.4 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dev: true registry.npmmirror.com/@babel/core/7.16.0: - resolution: {integrity: sha1-xP9EBG9f4xBSXMnrTvUUfwxTdNQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/core/download/@babel/core-7.16.0.tgz?cache=0&sync_timestamp=1635561715322&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.16.0.tgz} + resolution: + { + integrity: sha1-xP9EBG9f4xBSXMnrTvUUfwxTdNQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/core/download/@babel/core-7.16.0.tgz?cache=0&sync_timestamp=1635561715322&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.16.0.tgz + } name: '@babel/core' version: 7.16.0 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dependencies: '@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.16.0 '@babel/generator': registry.npmmirror.com/@babel/generator/7.16.0 @@ -3578,11 +5676,16 @@ packages: dev: true registry.npmmirror.com/@babel/eslint-parser/7.16.3_@babel+core@7.16.0+eslint@8.4.1: - resolution: {integrity: sha512-iB4ElZT0jAt7PKVaeVulOECdGe6UnmA/O0P9jlF5g5GBOwDVbna8AXhHRu4s27xQf6OkveyA8iTDv1jHdDejgQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/eslint-parser/download/@babel/eslint-parser-7.16.3.tgz} + resolution: + { + integrity: sha512-iB4ElZT0jAt7PKVaeVulOECdGe6UnmA/O0P9jlF5g5GBOwDVbna8AXhHRu4s27xQf6OkveyA8iTDv1jHdDejgQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/eslint-parser/download/@babel/eslint-parser-7.16.3.tgz + } id: registry.npmmirror.com/@babel/eslint-parser/7.16.3 name: '@babel/eslint-parser' version: 7.16.3 - engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} + engines: { node: ^10.13.0 || ^12.13.0 || >=14.0.0 } peerDependencies: '@babel/core': '>=7.11.0' eslint: ^7.5.0 || ^8.0.0 @@ -3595,10 +5698,15 @@ packages: dev: true registry.npmmirror.com/@babel/generator/7.16.0: - resolution: {integrity: sha1-1A89HVB15i01ALzLZ/PaqKlSZbI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/generator/download/@babel/generator-7.16.0.tgz?cache=0&sync_timestamp=1635561716685&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.16.0.tgz} + resolution: + { + integrity: sha1-1A89HVB15i01ALzLZ/PaqKlSZbI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/generator/download/@babel/generator-7.16.0.tgz?cache=0&sync_timestamp=1635561716685&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.16.0.tgz + } name: '@babel/generator' version: 7.16.0 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dependencies: '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 jsesc: registry.nlark.com/jsesc/2.5.2 @@ -3606,20 +5714,30 @@ packages: dev: true registry.npmmirror.com/@babel/helper-annotate-as-pure/7.16.0: - resolution: {integrity: sha1-mh8OvNpT2aLQAQjEzqzmpdXx8I0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.16.0.tgz?cache=0&sync_timestamp=1635561720335&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.16.0.tgz} + resolution: + { + integrity: sha1-mh8OvNpT2aLQAQjEzqzmpdXx8I0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.16.0.tgz?cache=0&sync_timestamp=1635561720335&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.16.0.tgz + } name: '@babel/helper-annotate-as-pure' version: 7.16.0 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dependencies: '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 dev: true registry.npmmirror.com/@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.0: - resolution: {integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.16.3.tgz} + resolution: + { + integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.16.3.tgz + } id: registry.npmmirror.com/@babel/helper-compilation-targets/7.16.3 name: '@babel/helper-compilation-targets' version: 7.16.3 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -3631,11 +5749,16 @@ packages: dev: true registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-CQ1NFms0KgOp/sN+9P1a65x8aks=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.16.0.tgz?cache=0&sync_timestamp=1635561718440&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-create-class-features-plugin%2Fdownload%2F%40babel%2Fhelper-create-class-features-plugin-7.16.0.tgz} + resolution: + { + integrity: sha1-CQ1NFms0KgOp/sN+9P1a65x8aks=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.16.0.tgz?cache=0&sync_timestamp=1635561718440&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-create-class-features-plugin%2Fdownload%2F%40babel%2Fhelper-create-class-features-plugin-7.16.0.tgz + } id: registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.16.0 name: '@babel/helper-create-class-features-plugin' version: 7.16.0 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -3651,10 +5774,15 @@ packages: dev: true registry.npmmirror.com/@babel/helper-function-name/7.16.0: - resolution: {integrity: sha1-t90Hl9ALv+5PB+nE6lsOMMi7FIE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-function-name/download/@babel/helper-function-name-7.16.0.tgz?cache=0&sync_timestamp=1635561719998&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.16.0.tgz} + resolution: + { + integrity: sha1-t90Hl9ALv+5PB+nE6lsOMMi7FIE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/helper-function-name/download/@babel/helper-function-name-7.16.0.tgz?cache=0&sync_timestamp=1635561719998&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.16.0.tgz + } name: '@babel/helper-function-name' version: 7.16.0 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dependencies: '@babel/helper-get-function-arity': registry.npmmirror.com/@babel/helper-get-function-arity/7.16.0 '@babel/template': registry.npmmirror.com/@babel/template/7.16.0 @@ -3662,46 +5790,71 @@ packages: dev: true registry.npmmirror.com/@babel/helper-get-function-arity/7.16.0: - resolution: {integrity: sha1-AIjHSGspqctdlIsaHeRttm4InPo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.16.0.tgz?cache=0&sync_timestamp=1635561720967&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.16.0.tgz} + resolution: + { + integrity: sha1-AIjHSGspqctdlIsaHeRttm4InPo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.16.0.tgz?cache=0&sync_timestamp=1635561720967&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.16.0.tgz + } name: '@babel/helper-get-function-arity' version: 7.16.0 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dependencies: '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 dev: true registry.npmmirror.com/@babel/helper-hoist-variables/7.16.0: - resolution: {integrity: sha1-TJAjwvHe9+KP9G/B2802o5vqqBo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.16.0.tgz?cache=0&sync_timestamp=1635561719831&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.16.0.tgz} + resolution: + { + integrity: sha1-TJAjwvHe9+KP9G/B2802o5vqqBo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.16.0.tgz?cache=0&sync_timestamp=1635561719831&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.16.0.tgz + } name: '@babel/helper-hoist-variables' version: 7.16.0 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dependencies: '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 dev: true registry.npmmirror.com/@babel/helper-member-expression-to-functions/7.16.0: - resolution: {integrity: sha1-KShwQO/Rl8d2Nu91GI6B2ovM1aQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.16.0.tgz?cache=0&sync_timestamp=1635561720663&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-member-expression-to-functions%2Fdownload%2F%40babel%2Fhelper-member-expression-to-functions-7.16.0.tgz} + resolution: + { + integrity: sha1-KShwQO/Rl8d2Nu91GI6B2ovM1aQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.16.0.tgz?cache=0&sync_timestamp=1635561720663&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-member-expression-to-functions%2Fdownload%2F%40babel%2Fhelper-member-expression-to-functions-7.16.0.tgz + } name: '@babel/helper-member-expression-to-functions' version: 7.16.0 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dependencies: '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 dev: true registry.npmmirror.com/@babel/helper-module-imports/7.16.0: - resolution: {integrity: sha1-kFOOYLZy7PG0SPX09UM9N+eaPsM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.16.0.tgz?cache=0&sync_timestamp=1635561718982&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.16.0.tgz} + resolution: + { + integrity: sha1-kFOOYLZy7PG0SPX09UM9N+eaPsM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.16.0.tgz?cache=0&sync_timestamp=1635561718982&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.16.0.tgz + } name: '@babel/helper-module-imports' version: 7.16.0 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dependencies: '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 dev: true registry.npmmirror.com/@babel/helper-module-transforms/7.16.0: - resolution: {integrity: sha1-HIKo3UyzRXdQLr0pCWmbGUw+m7U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.16.0.tgz?cache=0&sync_timestamp=1635561717041&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.16.0.tgz} + resolution: + { + integrity: sha1-HIKo3UyzRXdQLr0pCWmbGUw+m7U=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.16.0.tgz?cache=0&sync_timestamp=1635561717041&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.16.0.tgz + } name: '@babel/helper-module-transforms' version: 7.16.0 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dependencies: '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.16.0 '@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers/7.16.0 @@ -3716,19 +5869,29 @@ packages: dev: true registry.npmmirror.com/@babel/helper-optimise-call-expression/7.16.0: - resolution: {integrity: sha1-zs2xRdcMVAlrFWT46fEM19GTszg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.16.0.tgz?cache=0&sync_timestamp=1635561720187&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.16.0.tgz} + resolution: + { + integrity: sha1-zs2xRdcMVAlrFWT46fEM19GTszg=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.16.0.tgz?cache=0&sync_timestamp=1635561720187&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.16.0.tgz + } name: '@babel/helper-optimise-call-expression' version: 7.16.0 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dependencies: '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 dev: true registry.npmmirror.com/@babel/helper-replace-supers/7.16.0: - resolution: {integrity: sha1-cwVejTz5vLqN21XK2T/tyGD2jxc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.16.0.tgz?cache=0&sync_timestamp=1635561719510&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.16.0.tgz} + resolution: + { + integrity: sha1-cwVejTz5vLqN21XK2T/tyGD2jxc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.16.0.tgz?cache=0&sync_timestamp=1635561719510&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.16.0.tgz + } name: '@babel/helper-replace-supers' version: 7.16.0 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dependencies: '@babel/helper-member-expression-to-functions': registry.npmmirror.com/@babel/helper-member-expression-to-functions/7.16.0 '@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression/7.16.0 @@ -3739,28 +5902,43 @@ packages: dev: true registry.npmmirror.com/@babel/helper-simple-access/7.16.0: - resolution: {integrity: sha1-IdaidiDjg+N1NM9sELugGab5BRc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.16.0.tgz?cache=0&sync_timestamp=1635561719345&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-simple-access%2Fdownload%2F%40babel%2Fhelper-simple-access-7.16.0.tgz} + resolution: + { + integrity: sha1-IdaidiDjg+N1NM9sELugGab5BRc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.16.0.tgz?cache=0&sync_timestamp=1635561719345&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-simple-access%2Fdownload%2F%40babel%2Fhelper-simple-access-7.16.0.tgz + } name: '@babel/helper-simple-access' version: 7.16.0 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dependencies: '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 dev: true registry.npmmirror.com/@babel/helper-split-export-declaration/7.16.0: - resolution: {integrity: sha1-KWcvQ2Y+k23zcKrrIr7ds7rsdDg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.16.0.tgz?cache=0&sync_timestamp=1635561719689&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.16.0.tgz} + resolution: + { + integrity: sha1-KWcvQ2Y+k23zcKrrIr7ds7rsdDg=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.16.0.tgz?cache=0&sync_timestamp=1635561719689&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.16.0.tgz + } name: '@babel/helper-split-export-declaration' version: 7.16.0 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dependencies: '@babel/types': registry.npmmirror.com/@babel/types/7.16.0 dev: true registry.npmmirror.com/@babel/helpers/7.16.3: - resolution: {integrity: sha512-Xn8IhDlBPhvYTvgewPKawhADichOsbkZuzN7qz2BusOM0brChsyXMDJvldWaYMMUNiCQdQzNEioXTp3sC8Nt8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helpers/download/@babel/helpers-7.16.3.tgz} + resolution: + { + integrity: sha512-Xn8IhDlBPhvYTvgewPKawhADichOsbkZuzN7qz2BusOM0brChsyXMDJvldWaYMMUNiCQdQzNEioXTp3sC8Nt8w==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/helpers/download/@babel/helpers-7.16.3.tgz + } name: '@babel/helpers' version: 7.16.3 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dependencies: '@babel/template': registry.npmmirror.com/@babel/template/7.16.0 '@babel/traverse': registry.npmmirror.com/@babel/traverse/7.16.3 @@ -3770,10 +5948,15 @@ packages: dev: true registry.npmmirror.com/@babel/highlight/7.16.0: - resolution: {integrity: sha1-bOsysspLj182H7f9gh4/3fShclo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/highlight/download/@babel/highlight-7.16.0.tgz?cache=0&sync_timestamp=1635561718809&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.16.0.tgz} + resolution: + { + integrity: sha1-bOsysspLj182H7f9gh4/3fShclo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/highlight/download/@babel/highlight-7.16.0.tgz?cache=0&sync_timestamp=1635561718809&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.16.0.tgz + } name: '@babel/highlight' version: 7.16.0 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dependencies: '@babel/helper-validator-identifier': registry.nlark.com/@babel/helper-validator-identifier/7.15.7 chalk: registry.npmmirror.com/chalk/2.4.2 @@ -3781,18 +5964,28 @@ packages: dev: true registry.npmmirror.com/@babel/parser/7.16.4: - resolution: {integrity: sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/download/@babel/parser-7.16.4.tgz} + resolution: + { + integrity: sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/parser/download/@babel/parser-7.16.4.tgz + } name: '@babel/parser' version: 7.16.4 - engines: {node: '>=6.0.0'} + engines: { node: '>=6.0.0' } hasBin: true registry.npmmirror.com/@babel/plugin-syntax-jsx/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-+WJDlDFzZamojII1jT+EcRVGmPE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.16.0.tgz} + resolution: + { + integrity: sha1-+WJDlDFzZamojII1jT+EcRVGmPE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.16.0.tgz + } id: registry.npmmirror.com/@babel/plugin-syntax-jsx/7.16.0 name: '@babel/plugin-syntax-jsx' version: 7.16.0 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -3801,11 +5994,16 @@ packages: dev: true registry.npmmirror.com/@babel/plugin-syntax-typescript/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-L+6xPZM0zFguqREdNQb3cxdBebs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-typescript/download/@babel/plugin-syntax-typescript-7.16.0.tgz?cache=0&sync_timestamp=1635561718634&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fplugin-syntax-typescript%2Fdownload%2F%40babel%2Fplugin-syntax-typescript-7.16.0.tgz} + resolution: + { + integrity: sha1-L+6xPZM0zFguqREdNQb3cxdBebs=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/plugin-syntax-typescript/download/@babel/plugin-syntax-typescript-7.16.0.tgz?cache=0&sync_timestamp=1635561718634&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fplugin-syntax-typescript%2Fdownload%2F%40babel%2Fplugin-syntax-typescript-7.16.0.tgz + } id: registry.npmmirror.com/@babel/plugin-syntax-typescript/7.16.0 name: '@babel/plugin-syntax-typescript' version: 7.16.0 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -3814,11 +6012,16 @@ packages: dev: true registry.npmmirror.com/@babel/plugin-transform-typescript/7.16.1_@babel+core@7.16.0: - resolution: {integrity: sha1-zAZwsoIrAzg1W8Gz0iRqQrgWZAk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-typescript/download/@babel/plugin-transform-typescript-7.16.1.tgz?cache=0&sync_timestamp=1635663535680&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fplugin-transform-typescript%2Fdownload%2F%40babel%2Fplugin-transform-typescript-7.16.1.tgz} + resolution: + { + integrity: sha1-zAZwsoIrAzg1W8Gz0iRqQrgWZAk=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/plugin-transform-typescript/download/@babel/plugin-transform-typescript-7.16.1.tgz?cache=0&sync_timestamp=1635663535680&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fplugin-transform-typescript%2Fdownload%2F%40babel%2Fplugin-transform-typescript-7.16.1.tgz + } id: registry.npmmirror.com/@babel/plugin-transform-typescript/7.16.1 name: '@babel/plugin-transform-typescript' version: 7.16.1 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -3831,10 +6034,15 @@ packages: dev: true registry.npmmirror.com/@babel/template/7.16.0: - resolution: {integrity: sha1-0Wo16/TNdOICCDNW+rId2JNj3dY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/template/download/@babel/template-7.16.0.tgz?cache=0&sync_timestamp=1635561717625&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.16.0.tgz} + resolution: + { + integrity: sha1-0Wo16/TNdOICCDNW+rId2JNj3dY=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/template/download/@babel/template-7.16.0.tgz?cache=0&sync_timestamp=1635561717625&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.16.0.tgz + } name: '@babel/template' version: 7.16.0 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dependencies: '@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.16.0 '@babel/parser': registry.npmmirror.com/@babel/parser/7.16.4 @@ -3842,10 +6050,15 @@ packages: dev: true registry.npmmirror.com/@babel/traverse/7.16.3: - resolution: {integrity: sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/traverse/download/@babel/traverse-7.16.3.tgz?cache=0&sync_timestamp=1636502777774&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.16.3.tgz} + resolution: + { + integrity: sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/traverse/download/@babel/traverse-7.16.3.tgz?cache=0&sync_timestamp=1636502777774&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.16.3.tgz + } name: '@babel/traverse' version: 7.16.3 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dependencies: '@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.16.0 '@babel/generator': registry.npmmirror.com/@babel/generator/7.16.0 @@ -3861,20 +6074,30 @@ packages: dev: true registry.npmmirror.com/@babel/types/7.16.0: - resolution: {integrity: sha1-2zsxOAT5aq3Qt3bEgj4SetZyibo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/download/@babel/types-7.16.0.tgz?cache=0&sync_timestamp=1635563800452&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.16.0.tgz} + resolution: + { + integrity: sha1-2zsxOAT5aq3Qt3bEgj4SetZyibo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@babel/types/download/@babel/types-7.16.0.tgz?cache=0&sync_timestamp=1635563800452&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.16.0.tgz + } name: '@babel/types' version: 7.16.0 - engines: {node: '>=6.9.0'} + engines: { node: '>=6.9.0' } dependencies: '@babel/helper-validator-identifier': registry.nlark.com/@babel/helper-validator-identifier/7.15.7 to-fast-properties: registry.nlark.com/to-fast-properties/2.0.0 dev: true registry.npmmirror.com/@commitlint/cli/15.0.0: - resolution: {integrity: sha512-Y5xmDCweytqzo4N4lOI2YRiuX35xTjcs8n5hUceBH8eyK0YbwtgWX50BJOH2XbkwEmII9blNhlBog6AdQsqicg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/cli/download/@commitlint/cli-15.0.0.tgz?cache=0&sync_timestamp=1637133119494&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Fcli%2Fdownload%2F%40commitlint%2Fcli-15.0.0.tgz} + resolution: + { + integrity: sha512-Y5xmDCweytqzo4N4lOI2YRiuX35xTjcs8n5hUceBH8eyK0YbwtgWX50BJOH2XbkwEmII9blNhlBog6AdQsqicg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@commitlint/cli/download/@commitlint/cli-15.0.0.tgz?cache=0&sync_timestamp=1637133119494&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Fcli%2Fdownload%2F%40commitlint%2Fcli-15.0.0.tgz + } name: '@commitlint/cli' version: 15.0.0 - engines: {node: '>=v12'} + engines: { node: '>=v12' } hasBin: true dependencies: '@commitlint/format': registry.npmmirror.com/@commitlint/format/15.0.0 @@ -3889,56 +6112,86 @@ packages: dev: true registry.npmmirror.com/@commitlint/config-conventional/15.0.0: - resolution: {integrity: sha512-eZBRL8Lk3hMNHp1wUMYj0qrZQEsST1ai7KHR8J1IDD9aHgT7L2giciibuQ+Og7vxVhR5WtYDvh9xirXFVPaSkQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/config-conventional/download/@commitlint/config-conventional-15.0.0.tgz?cache=0&sync_timestamp=1637133117331&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Fconfig-conventional%2Fdownload%2F%40commitlint%2Fconfig-conventional-15.0.0.tgz} + resolution: + { + integrity: sha512-eZBRL8Lk3hMNHp1wUMYj0qrZQEsST1ai7KHR8J1IDD9aHgT7L2giciibuQ+Og7vxVhR5WtYDvh9xirXFVPaSkQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@commitlint/config-conventional/download/@commitlint/config-conventional-15.0.0.tgz?cache=0&sync_timestamp=1637133117331&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Fconfig-conventional%2Fdownload%2F%40commitlint%2Fconfig-conventional-15.0.0.tgz + } name: '@commitlint/config-conventional' version: 15.0.0 - engines: {node: '>=v12'} + engines: { node: '>=v12' } dependencies: conventional-changelog-conventionalcommits: registry.nlark.com/conventional-changelog-conventionalcommits/4.6.1 dev: true registry.npmmirror.com/@commitlint/ensure/15.0.0: - resolution: {integrity: sha512-7DV4iNIald3vycwaWBNGk5FbonaNzOlU8nBe5m5AgU2dIeNKuXwLm+zzJzG27j0Ho56rgz//3F6RIvmsoxY9ZA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/ensure/download/@commitlint/ensure-15.0.0.tgz?cache=0&sync_timestamp=1637133118872&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Fensure%2Fdownload%2F%40commitlint%2Fensure-15.0.0.tgz} + resolution: + { + integrity: sha512-7DV4iNIald3vycwaWBNGk5FbonaNzOlU8nBe5m5AgU2dIeNKuXwLm+zzJzG27j0Ho56rgz//3F6RIvmsoxY9ZA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@commitlint/ensure/download/@commitlint/ensure-15.0.0.tgz?cache=0&sync_timestamp=1637133118872&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Fensure%2Fdownload%2F%40commitlint%2Fensure-15.0.0.tgz + } name: '@commitlint/ensure' version: 15.0.0 - engines: {node: '>=v12'} + engines: { node: '>=v12' } dependencies: '@commitlint/types': registry.npmmirror.com/@commitlint/types/15.0.0 lodash: registry.nlark.com/lodash/4.17.21 dev: true registry.npmmirror.com/@commitlint/execute-rule/15.0.0: - resolution: {integrity: sha512-pyE4ApxjbWhb1TXz5vRiGwI2ssdMMgZbaaheZq1/7WC0xRnqnIhE1yUC1D2q20qPtvkZPstTYvMiRVtF+DvjUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/execute-rule/download/@commitlint/execute-rule-15.0.0.tgz?cache=0&sync_timestamp=1637133117503&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Fexecute-rule%2Fdownload%2F%40commitlint%2Fexecute-rule-15.0.0.tgz} + resolution: + { + integrity: sha512-pyE4ApxjbWhb1TXz5vRiGwI2ssdMMgZbaaheZq1/7WC0xRnqnIhE1yUC1D2q20qPtvkZPstTYvMiRVtF+DvjUg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@commitlint/execute-rule/download/@commitlint/execute-rule-15.0.0.tgz?cache=0&sync_timestamp=1637133117503&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Fexecute-rule%2Fdownload%2F%40commitlint%2Fexecute-rule-15.0.0.tgz + } name: '@commitlint/execute-rule' version: 15.0.0 - engines: {node: '>=v12'} + engines: { node: '>=v12' } dev: true registry.npmmirror.com/@commitlint/format/15.0.0: - resolution: {integrity: sha512-bPhAfqwRhPk92WiuY0ktEJNpRRHSCd+Eg1MdhGyL9Bl3U25E5zvuInA+dNctnzZiOBSH/37ZaD0eOKCpQE6acg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/format/download/@commitlint/format-15.0.0.tgz} + resolution: + { + integrity: sha512-bPhAfqwRhPk92WiuY0ktEJNpRRHSCd+Eg1MdhGyL9Bl3U25E5zvuInA+dNctnzZiOBSH/37ZaD0eOKCpQE6acg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@commitlint/format/download/@commitlint/format-15.0.0.tgz + } name: '@commitlint/format' version: 15.0.0 - engines: {node: '>=v12'} + engines: { node: '>=v12' } dependencies: '@commitlint/types': registry.npmmirror.com/@commitlint/types/15.0.0 chalk: registry.npmmirror.com/chalk/4.1.2 dev: true registry.npmmirror.com/@commitlint/is-ignored/15.0.0: - resolution: {integrity: sha512-edtnkf2QZ/7e/YCJDgn1WDw9wfF1WfOitW5YEoSOb4SxjJEb/oE87kxNPZ2j8mnDMuunspcMfGHeg6fRlwaEWg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/is-ignored/download/@commitlint/is-ignored-15.0.0.tgz?cache=0&sync_timestamp=1637133117977&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Fis-ignored%2Fdownload%2F%40commitlint%2Fis-ignored-15.0.0.tgz} + resolution: + { + integrity: sha512-edtnkf2QZ/7e/YCJDgn1WDw9wfF1WfOitW5YEoSOb4SxjJEb/oE87kxNPZ2j8mnDMuunspcMfGHeg6fRlwaEWg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@commitlint/is-ignored/download/@commitlint/is-ignored-15.0.0.tgz?cache=0&sync_timestamp=1637133117977&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Fis-ignored%2Fdownload%2F%40commitlint%2Fis-ignored-15.0.0.tgz + } name: '@commitlint/is-ignored' version: 15.0.0 - engines: {node: '>=v12'} + engines: { node: '>=v12' } dependencies: '@commitlint/types': registry.npmmirror.com/@commitlint/types/15.0.0 semver: registry.nlark.com/semver/7.3.5 dev: true registry.npmmirror.com/@commitlint/lint/15.0.0: - resolution: {integrity: sha512-hUi2+Im/2dJ5FBvWnodypTkg+5haCgsDzB0fyMApWLUA1IucYUAqRCQCW5em1Mhk9Crw1pd5YzFNikhIclkqCw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/lint/download/@commitlint/lint-15.0.0.tgz?cache=0&sync_timestamp=1637133119254&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Flint%2Fdownload%2F%40commitlint%2Flint-15.0.0.tgz} + resolution: + { + integrity: sha512-hUi2+Im/2dJ5FBvWnodypTkg+5haCgsDzB0fyMApWLUA1IucYUAqRCQCW5em1Mhk9Crw1pd5YzFNikhIclkqCw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@commitlint/lint/download/@commitlint/lint-15.0.0.tgz?cache=0&sync_timestamp=1637133119254&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Flint%2Fdownload%2F%40commitlint%2Flint-15.0.0.tgz + } name: '@commitlint/lint' version: 15.0.0 - engines: {node: '>=v12'} + engines: { node: '>=v12' } dependencies: '@commitlint/is-ignored': registry.npmmirror.com/@commitlint/is-ignored/15.0.0 '@commitlint/parse': registry.npmmirror.com/@commitlint/parse/15.0.0 @@ -3947,10 +6200,15 @@ packages: dev: true registry.npmmirror.com/@commitlint/load/15.0.0: - resolution: {integrity: sha512-Ak1YPeOhvxmY3ioe0o6m1yLGvUAYb4BdfGgShU8jiTCmU3Mnmms0Xh/kfQz8AybhezCC3AmVTyBLaBZxOHR8kg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/load/download/@commitlint/load-15.0.0.tgz} + resolution: + { + integrity: sha512-Ak1YPeOhvxmY3ioe0o6m1yLGvUAYb4BdfGgShU8jiTCmU3Mnmms0Xh/kfQz8AybhezCC3AmVTyBLaBZxOHR8kg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@commitlint/load/download/@commitlint/load-15.0.0.tgz + } name: '@commitlint/load' version: 15.0.0 - engines: {node: '>=v12'} + engines: { node: '>=v12' } dependencies: '@commitlint/execute-rule': registry.npmmirror.com/@commitlint/execute-rule/15.0.0 '@commitlint/resolve-extends': registry.npmmirror.com/@commitlint/resolve-extends/15.0.0 @@ -3964,17 +6222,27 @@ packages: dev: true registry.npmmirror.com/@commitlint/message/15.0.0: - resolution: {integrity: sha512-L8euabzboKavPuDJsdIYAY2wx97LbiGEYsckMo6NmV8pOun50c8hQx6ouXFSAx4pp+mX9yUGmMiVqfrk2LKDJQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/message/download/@commitlint/message-15.0.0.tgz?cache=0&sync_timestamp=1637133116968&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Fmessage%2Fdownload%2F%40commitlint%2Fmessage-15.0.0.tgz} + resolution: + { + integrity: sha512-L8euabzboKavPuDJsdIYAY2wx97LbiGEYsckMo6NmV8pOun50c8hQx6ouXFSAx4pp+mX9yUGmMiVqfrk2LKDJQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@commitlint/message/download/@commitlint/message-15.0.0.tgz?cache=0&sync_timestamp=1637133116968&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Fmessage%2Fdownload%2F%40commitlint%2Fmessage-15.0.0.tgz + } name: '@commitlint/message' version: 15.0.0 - engines: {node: '>=v12'} + engines: { node: '>=v12' } dev: true registry.npmmirror.com/@commitlint/parse/15.0.0: - resolution: {integrity: sha512-7fweM67tZfBNS7zw1KTuuT5K2u9nGytUJqFqT/1Ln3Na9cBCsoAqR47mfsNOTlRCgGwakm4xiQ7BpS2gN0OGuw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/parse/download/@commitlint/parse-15.0.0.tgz?cache=0&sync_timestamp=1637133118163&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Fparse%2Fdownload%2F%40commitlint%2Fparse-15.0.0.tgz} + resolution: + { + integrity: sha512-7fweM67tZfBNS7zw1KTuuT5K2u9nGytUJqFqT/1Ln3Na9cBCsoAqR47mfsNOTlRCgGwakm4xiQ7BpS2gN0OGuw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@commitlint/parse/download/@commitlint/parse-15.0.0.tgz?cache=0&sync_timestamp=1637133118163&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Fparse%2Fdownload%2F%40commitlint%2Fparse-15.0.0.tgz + } name: '@commitlint/parse' version: 15.0.0 - engines: {node: '>=v12'} + engines: { node: '>=v12' } dependencies: '@commitlint/types': registry.npmmirror.com/@commitlint/types/15.0.0 conventional-changelog-angular: registry.nlark.com/conventional-changelog-angular/5.0.13 @@ -3982,10 +6250,15 @@ packages: dev: true registry.npmmirror.com/@commitlint/read/15.0.0: - resolution: {integrity: sha512-5yI1o2HKZFVe7RTjL7IhuhHMKar/MDNY34vEHqqz9gMI7BK/rdP8uVb4Di1efl2V0UPnwID0nPKWESjQ8Ti0gw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/read/download/@commitlint/read-15.0.0.tgz?cache=0&sync_timestamp=1637133119078&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Fread%2Fdownload%2F%40commitlint%2Fread-15.0.0.tgz} + resolution: + { + integrity: sha512-5yI1o2HKZFVe7RTjL7IhuhHMKar/MDNY34vEHqqz9gMI7BK/rdP8uVb4Di1efl2V0UPnwID0nPKWESjQ8Ti0gw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@commitlint/read/download/@commitlint/read-15.0.0.tgz?cache=0&sync_timestamp=1637133119078&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Fread%2Fdownload%2F%40commitlint%2Fread-15.0.0.tgz + } name: '@commitlint/read' version: 15.0.0 - engines: {node: '>=v12'} + engines: { node: '>=v12' } dependencies: '@commitlint/top-level': registry.npmmirror.com/@commitlint/top-level/15.0.0 '@commitlint/types': registry.npmmirror.com/@commitlint/types/15.0.0 @@ -3994,10 +6267,15 @@ packages: dev: true registry.npmmirror.com/@commitlint/resolve-extends/15.0.0: - resolution: {integrity: sha512-7apfRJjgJsKja7lHsPfEFixKjA/fk/UeD3owkOw1174yYu4u8xBDLSeU3IinGPdMuF9m245eX8wo7vLUy+EBSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/resolve-extends/download/@commitlint/resolve-extends-15.0.0.tgz?cache=0&sync_timestamp=1637133117150&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Fresolve-extends%2Fdownload%2F%40commitlint%2Fresolve-extends-15.0.0.tgz} + resolution: + { + integrity: sha512-7apfRJjgJsKja7lHsPfEFixKjA/fk/UeD3owkOw1174yYu4u8xBDLSeU3IinGPdMuF9m245eX8wo7vLUy+EBSg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@commitlint/resolve-extends/download/@commitlint/resolve-extends-15.0.0.tgz?cache=0&sync_timestamp=1637133117150&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Fresolve-extends%2Fdownload%2F%40commitlint%2Fresolve-extends-15.0.0.tgz + } name: '@commitlint/resolve-extends' version: 15.0.0 - engines: {node: '>=v12'} + engines: { node: '>=v12' } dependencies: import-fresh: registry.nlark.com/import-fresh/3.3.0 lodash: registry.nlark.com/lodash/4.17.21 @@ -4006,10 +6284,15 @@ packages: dev: true registry.npmmirror.com/@commitlint/rules/15.0.0: - resolution: {integrity: sha512-SqXfp6QUlwBS+0IZm4FEA/NmmAwcFQIkG3B05BtemOVWXQdZ8j1vV6hDwvA9oMPCmUSrrGpHOtZK7HaHhng2yA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/rules/download/@commitlint/rules-15.0.0.tgz} + resolution: + { + integrity: sha512-SqXfp6QUlwBS+0IZm4FEA/NmmAwcFQIkG3B05BtemOVWXQdZ8j1vV6hDwvA9oMPCmUSrrGpHOtZK7HaHhng2yA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@commitlint/rules/download/@commitlint/rules-15.0.0.tgz + } name: '@commitlint/rules' version: 15.0.0 - engines: {node: '>=v12'} + engines: { node: '>=v12' } dependencies: '@commitlint/ensure': registry.npmmirror.com/@commitlint/ensure/15.0.0 '@commitlint/message': registry.npmmirror.com/@commitlint/message/15.0.0 @@ -4019,36 +6302,56 @@ packages: dev: true registry.npmmirror.com/@commitlint/to-lines/15.0.0: - resolution: {integrity: sha512-mY3MNA9ujPqVpiJjTYG9MDsYCobue5PJFO0MfcIzS1mCVvngH8ZFTPAh1fT5t+t1h876boS88+9WgqjRvbYItw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/to-lines/download/@commitlint/to-lines-15.0.0.tgz?cache=0&sync_timestamp=1637133117669&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Fto-lines%2Fdownload%2F%40commitlint%2Fto-lines-15.0.0.tgz} + resolution: + { + integrity: sha512-mY3MNA9ujPqVpiJjTYG9MDsYCobue5PJFO0MfcIzS1mCVvngH8ZFTPAh1fT5t+t1h876boS88+9WgqjRvbYItw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@commitlint/to-lines/download/@commitlint/to-lines-15.0.0.tgz?cache=0&sync_timestamp=1637133117669&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Fto-lines%2Fdownload%2F%40commitlint%2Fto-lines-15.0.0.tgz + } name: '@commitlint/to-lines' version: 15.0.0 - engines: {node: '>=v12'} + engines: { node: '>=v12' } dev: true registry.npmmirror.com/@commitlint/top-level/15.0.0: - resolution: {integrity: sha512-7Gz3t7xcuuUw1d1Nou6YLaztzp2Em+qZ6YdCzrqYc+aquca3Vt0O696nuiBDU/oE+tls4Hx2CNpAbWhTgEwB5A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/top-level/download/@commitlint/top-level-15.0.0.tgz?cache=0&sync_timestamp=1637133116763&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Ftop-level%2Fdownload%2F%40commitlint%2Ftop-level-15.0.0.tgz} + resolution: + { + integrity: sha512-7Gz3t7xcuuUw1d1Nou6YLaztzp2Em+qZ6YdCzrqYc+aquca3Vt0O696nuiBDU/oE+tls4Hx2CNpAbWhTgEwB5A==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@commitlint/top-level/download/@commitlint/top-level-15.0.0.tgz?cache=0&sync_timestamp=1637133116763&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Ftop-level%2Fdownload%2F%40commitlint%2Ftop-level-15.0.0.tgz + } name: '@commitlint/top-level' version: 15.0.0 - engines: {node: '>=v12'} + engines: { node: '>=v12' } dependencies: find-up: registry.npmmirror.com/find-up/5.0.0 dev: true registry.npmmirror.com/@commitlint/types/15.0.0: - resolution: {integrity: sha512-OMSLX+QJnyNoTwws54ULv9sOvuw9GdVezln76oyUd4YbMMJyaav62aSXDuCdWyL2sm9hTkSzyEi52PNaIj/vqw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/types/download/@commitlint/types-15.0.0.tgz?cache=0&sync_timestamp=1637133118449&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Ftypes%2Fdownload%2F%40commitlint%2Ftypes-15.0.0.tgz} + resolution: + { + integrity: sha512-OMSLX+QJnyNoTwws54ULv9sOvuw9GdVezln76oyUd4YbMMJyaav62aSXDuCdWyL2sm9hTkSzyEi52PNaIj/vqw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@commitlint/types/download/@commitlint/types-15.0.0.tgz?cache=0&sync_timestamp=1637133118449&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40commitlint%2Ftypes%2Fdownload%2F%40commitlint%2Ftypes-15.0.0.tgz + } name: '@commitlint/types' version: 15.0.0 - engines: {node: '>=v12'} + engines: { node: '>=v12' } dependencies: chalk: registry.npmmirror.com/chalk/4.1.2 dev: true registry.npmmirror.com/@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2_b67f536f129c730ed129a6d21d223ba9: - resolution: {integrity: sha1-7qRjWCjd43KDiwkJaT69mq/uwi0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@endemolshinegroup/cosmiconfig-typescript-loader/download/@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2.tgz} + resolution: + { + integrity: sha1-7qRjWCjd43KDiwkJaT69mq/uwi0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@endemolshinegroup/cosmiconfig-typescript-loader/download/@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2.tgz + } id: registry.npmmirror.com/@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2 name: '@endemolshinegroup/cosmiconfig-typescript-loader' version: 3.0.2 - engines: {node: '>=10.0.0'} + engines: { node: '>=10.0.0' } peerDependencies: cosmiconfig: '>=6' dependencies: @@ -4062,10 +6365,15 @@ packages: dev: true registry.npmmirror.com/@eslint/eslintrc/0.4.3: - resolution: {integrity: sha1-nkKYHvA1vrPdSa3ResuW6P9vOUw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@eslint/eslintrc/download/@eslint/eslintrc-0.4.3.tgz} + resolution: + { + integrity: sha1-nkKYHvA1vrPdSa3ResuW6P9vOUw=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@eslint/eslintrc/download/@eslint/eslintrc-0.4.3.tgz + } name: '@eslint/eslintrc' version: 0.4.3 - engines: {node: ^10.12.0 || >=12.0.0} + engines: { node: ^10.12.0 || >=12.0.0 } dependencies: ajv: registry.npmmirror.com/ajv/6.12.6 debug: registry.npmmirror.com/debug/4.3.3 @@ -4081,10 +6389,15 @@ packages: dev: true registry.npmmirror.com/@eslint/eslintrc/1.0.5: - resolution: {integrity: sha512-BLxsnmK3KyPunz5wmCCpqy0YelEoxxGmH73Is+Z74oOTMtExcjkr3dDR6quwrjh1YspA8DH9gnX1o069KiS9AQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@eslint/eslintrc/download/@eslint/eslintrc-1.0.5.tgz} + resolution: + { + integrity: sha512-BLxsnmK3KyPunz5wmCCpqy0YelEoxxGmH73Is+Z74oOTMtExcjkr3dDR6quwrjh1YspA8DH9gnX1o069KiS9AQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@eslint/eslintrc/download/@eslint/eslintrc-1.0.5.tgz + } name: '@eslint/eslintrc' version: 1.0.5 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: ajv: registry.npmmirror.com/ajv/6.12.6 debug: registry.npmmirror.com/debug/4.3.3 @@ -4100,10 +6413,15 @@ packages: dev: true registry.npmmirror.com/@humanwhocodes/config-array/0.5.0: - resolution: {integrity: sha1-FAeWfUxu7Nc4j4Os8er00Mbljvk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@humanwhocodes/config-array/download/@humanwhocodes/config-array-0.5.0.tgz} + resolution: + { + integrity: sha1-FAeWfUxu7Nc4j4Os8er00Mbljvk=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@humanwhocodes/config-array/download/@humanwhocodes/config-array-0.5.0.tgz + } name: '@humanwhocodes/config-array' version: 0.5.0 - engines: {node: '>=10.10.0'} + engines: { node: '>=10.10.0' } dependencies: '@humanwhocodes/object-schema': registry.npmmirror.com/@humanwhocodes/object-schema/1.2.1 debug: registry.npmmirror.com/debug/4.3.3 @@ -4113,10 +6431,15 @@ packages: dev: true registry.npmmirror.com/@humanwhocodes/config-array/0.9.2: - resolution: {integrity: sha1-aL5VxzcCMAnfxf4kXVEYG7ZHaRQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@humanwhocodes/config-array/download/@humanwhocodes/config-array-0.9.2.tgz} + resolution: + { + integrity: sha1-aL5VxzcCMAnfxf4kXVEYG7ZHaRQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@humanwhocodes/config-array/download/@humanwhocodes/config-array-0.9.2.tgz + } name: '@humanwhocodes/config-array' version: 0.9.2 - engines: {node: '>=10.10.0'} + engines: { node: '>=10.10.0' } dependencies: '@humanwhocodes/object-schema': registry.npmmirror.com/@humanwhocodes/object-schema/1.2.1 debug: registry.npmmirror.com/debug/4.3.3 @@ -4126,53 +6449,93 @@ packages: dev: true registry.npmmirror.com/@humanwhocodes/object-schema/1.2.1: - resolution: {integrity: sha1-tSBSnsIdjllFoYUd/Rwy6U45/0U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@humanwhocodes/object-schema/download/@humanwhocodes/object-schema-1.2.1.tgz} + resolution: + { + integrity: sha1-tSBSnsIdjllFoYUd/Rwy6U45/0U=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@humanwhocodes/object-schema/download/@humanwhocodes/object-schema-1.2.1.tgz + } name: '@humanwhocodes/object-schema' version: 1.2.1 dev: true registry.npmmirror.com/@types/json-schema/7.0.9: - resolution: {integrity: sha1-l+3JA36gw4WFMgsolk3eOznkZg0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/json-schema/download/@types/json-schema-7.0.9.tgz} + resolution: + { + integrity: sha1-l+3JA36gw4WFMgsolk3eOznkZg0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@types/json-schema/download/@types/json-schema-7.0.9.tgz + } name: '@types/json-schema' version: 7.0.9 dev: true registry.npmmirror.com/@types/minimatch/3.0.5: - resolution: {integrity: sha1-EAHMXmo3BLg8I2An538vWOoBD0A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/minimatch/download/@types/minimatch-3.0.5.tgz} + resolution: + { + integrity: sha1-EAHMXmo3BLg8I2An538vWOoBD0A=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@types/minimatch/download/@types/minimatch-3.0.5.tgz + } name: '@types/minimatch' version: 3.0.5 dev: true registry.npmmirror.com/@types/minimist/1.2.2: - resolution: {integrity: sha1-7nceK6Sz3Fs3KTXVSf2WF780W4w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/minimist/download/@types/minimist-1.2.2.tgz} + resolution: + { + integrity: sha1-7nceK6Sz3Fs3KTXVSf2WF780W4w=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@types/minimist/download/@types/minimist-1.2.2.tgz + } name: '@types/minimist' version: 1.2.2 dev: true registry.npmmirror.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.npmmirror.com/@types/normalize-package-data/download/@types/normalize-package-data-2.4.1.tgz} + resolution: + { + integrity: sha1-0zV0eaD9/dWQf+Z+F+CoXJBuEwE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.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 registry.npmmirror.com/@types/parse-json/4.0.0: - resolution: {integrity: sha1-L4u0QUNNFjs1+4/9zNcTiSf/uMA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/parse-json/download/@types/parse-json-4.0.0.tgz} + resolution: + { + integrity: sha1-L4u0QUNNFjs1+4/9zNcTiSf/uMA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@types/parse-json/download/@types/parse-json-4.0.0.tgz + } name: '@types/parse-json' version: 4.0.0 dev: true registry.npmmirror.com/@types/throttle-debounce/2.1.0: - resolution: {integrity: sha1-HD32JL/Eti+ZLTASuExW1B6rN3Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/throttle-debounce/download/@types/throttle-debounce-2.1.0.tgz} + resolution: + { + integrity: sha1-HD32JL/Eti+ZLTASuExW1B6rN3Y=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@types/throttle-debounce/download/@types/throttle-debounce-2.1.0.tgz + } name: '@types/throttle-debounce' version: 2.1.0 dev: true registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.6.0_16d83f5c41c3abb1061a82b07c18e4f3: - resolution: {integrity: sha512-MIbeMy5qfLqtgs1hWd088k1hOuRsN9JrHUPwVVKCD99EOUqScd7SrwoZl4Gso05EAP9w1kvLWUVGJOVpRPkDPA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/download/@typescript-eslint/eslint-plugin-5.6.0.tgz} + resolution: + { + integrity: sha512-MIbeMy5qfLqtgs1hWd088k1hOuRsN9JrHUPwVVKCD99EOUqScd7SrwoZl4Gso05EAP9w1kvLWUVGJOVpRPkDPA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/download/@typescript-eslint/eslint-plugin-5.6.0.tgz + } id: registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.6.0 name: '@typescript-eslint/eslint-plugin' version: 5.6.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: '@typescript-eslint/parser': ^5.0.0 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -4197,11 +6560,16 @@ packages: dev: true registry.npmmirror.com/@typescript-eslint/experimental-utils/5.6.0_eslint@8.4.1+typescript@4.5.2: - resolution: {integrity: sha512-VDoRf3Qj7+W3sS/ZBXZh3LBzp0snDLEgvp6qj0vOAIiAPM07bd5ojQ3CTzF/QFl5AKh7Bh1ycgj6lFBJHUt/DA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/experimental-utils/download/@typescript-eslint/experimental-utils-5.6.0.tgz} + resolution: + { + integrity: sha512-VDoRf3Qj7+W3sS/ZBXZh3LBzp0snDLEgvp6qj0vOAIiAPM07bd5ojQ3CTzF/QFl5AKh7Bh1ycgj6lFBJHUt/DA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@typescript-eslint/experimental-utils/download/@typescript-eslint/experimental-utils-5.6.0.tgz + } id: registry.npmmirror.com/@typescript-eslint/experimental-utils/5.6.0 name: '@typescript-eslint/experimental-utils' version: 5.6.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: '*' dependencies: @@ -4218,11 +6586,16 @@ packages: dev: true registry.npmmirror.com/@typescript-eslint/parser/5.6.0_eslint@8.4.1+typescript@4.5.2: - resolution: {integrity: sha512-YVK49NgdUPQ8SpCZaOpiq1kLkYRPMv9U5gcMrywzI8brtwZjr/tG3sZpuHyODt76W/A0SufNjYt9ZOgrC4tLIQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/parser/download/@typescript-eslint/parser-5.6.0.tgz} + resolution: + { + integrity: sha512-YVK49NgdUPQ8SpCZaOpiq1kLkYRPMv9U5gcMrywzI8brtwZjr/tG3sZpuHyODt76W/A0SufNjYt9ZOgrC4tLIQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@typescript-eslint/parser/download/@typescript-eslint/parser-5.6.0.tgz + } id: registry.npmmirror.com/@typescript-eslint/parser/5.6.0 name: '@typescript-eslint/parser' version: 5.6.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 typescript: '*' @@ -4241,28 +6614,43 @@ packages: dev: true registry.npmmirror.com/@typescript-eslint/scope-manager/5.6.0: - resolution: {integrity: sha512-1U1G77Hw2jsGWVsO2w6eVCbOg0HZ5WxL/cozVSTfqnL/eB9muhb8THsP0G3w+BB5xAHv9KptwdfYFAUfzcIh4A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/scope-manager/download/@typescript-eslint/scope-manager-5.6.0.tgz} + resolution: + { + integrity: sha512-1U1G77Hw2jsGWVsO2w6eVCbOg0HZ5WxL/cozVSTfqnL/eB9muhb8THsP0G3w+BB5xAHv9KptwdfYFAUfzcIh4A==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@typescript-eslint/scope-manager/download/@typescript-eslint/scope-manager-5.6.0.tgz + } name: '@typescript-eslint/scope-manager' version: 5.6.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.6.0 '@typescript-eslint/visitor-keys': registry.npmmirror.com/@typescript-eslint/visitor-keys/5.6.0 dev: true registry.npmmirror.com/@typescript-eslint/types/5.6.0: - resolution: {integrity: sha512-OIZffked7mXv4mXzWU5MgAEbCf9ecNJBKi+Si6/I9PpTaj+cf2x58h2oHW5/P/yTnPkKaayfjhLvx+crnl5ubA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/types/download/@typescript-eslint/types-5.6.0.tgz} + resolution: + { + integrity: sha512-OIZffked7mXv4mXzWU5MgAEbCf9ecNJBKi+Si6/I9PpTaj+cf2x58h2oHW5/P/yTnPkKaayfjhLvx+crnl5ubA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@typescript-eslint/types/download/@typescript-eslint/types-5.6.0.tgz + } name: '@typescript-eslint/types' version: 5.6.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dev: true registry.npmmirror.com/@typescript-eslint/typescript-estree/5.6.0_typescript@4.5.2: - resolution: {integrity: sha512-92vK5tQaE81rK7fOmuWMrSQtK1IMonESR+RJR2Tlc7w4o0MeEdjgidY/uO2Gobh7z4Q1hhS94Cr7r021fMVEeA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/typescript-estree/download/@typescript-eslint/typescript-estree-5.6.0.tgz} + resolution: + { + integrity: sha512-92vK5tQaE81rK7fOmuWMrSQtK1IMonESR+RJR2Tlc7w4o0MeEdjgidY/uO2Gobh7z4Q1hhS94Cr7r021fMVEeA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@typescript-eslint/typescript-estree/download/@typescript-eslint/typescript-estree-5.6.0.tgz + } id: registry.npmmirror.com/@typescript-eslint/typescript-estree/5.6.0 name: '@typescript-eslint/typescript-estree' version: 5.6.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: typescript: '*' peerDependenciesMeta: @@ -4282,20 +6670,30 @@ packages: dev: true registry.npmmirror.com/@typescript-eslint/visitor-keys/5.6.0: - resolution: {integrity: sha512-1p7hDp5cpRFUyE3+lvA74egs+RWSgumrBpzBCDzfTFv0aQ7lIeay80yU0hIxgAhwQ6PcasW35kaOCyDOv6O/Ng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/visitor-keys/download/@typescript-eslint/visitor-keys-5.6.0.tgz} + resolution: + { + integrity: sha512-1p7hDp5cpRFUyE3+lvA74egs+RWSgumrBpzBCDzfTFv0aQ7lIeay80yU0hIxgAhwQ6PcasW35kaOCyDOv6O/Ng==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@typescript-eslint/visitor-keys/download/@typescript-eslint/visitor-keys-5.6.0.tgz + } name: '@typescript-eslint/visitor-keys' version: 5.6.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.6.0 eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/3.1.0 dev: true registry.npmmirror.com/@vitejs/plugin-vue-jsx/1.3.0: - resolution: {integrity: sha512-mm2jT63s/DWapVWT62t7xsMmwqsLNj5LUpokSXWnlUv9oxPfZsAymhHs6byWxvuvC5jo3zzFMO7rs8ax4PcyxA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vitejs/plugin-vue-jsx/download/@vitejs/plugin-vue-jsx-1.3.0.tgz} + resolution: + { + integrity: sha512-mm2jT63s/DWapVWT62t7xsMmwqsLNj5LUpokSXWnlUv9oxPfZsAymhHs6byWxvuvC5jo3zzFMO7rs8ax4PcyxA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@vitejs/plugin-vue-jsx/download/@vitejs/plugin-vue-jsx-1.3.0.tgz + } name: '@vitejs/plugin-vue-jsx' version: 1.3.0 - engines: {node: '>=12.0.0'} + engines: { node: '>=12.0.0' } dependencies: '@babel/core': registry.npmmirror.com/@babel/core/7.16.0 '@babel/plugin-syntax-import-meta': registry.nlark.com/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.16.0 @@ -4308,11 +6706,16 @@ packages: dev: true registry.npmmirror.com/@vitejs/plugin-vue/1.10.1_vite@2.6.14: - resolution: {integrity: sha512-oL76QETMSpVE9jIScirGB2bYJEVU/+r+g+K7oG+sXPs9TZljqveoVRsmLyXlMZTjpQkLL8gz527cW80NMGVKJg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vitejs/plugin-vue/download/@vitejs/plugin-vue-1.10.1.tgz} + resolution: + { + integrity: sha512-oL76QETMSpVE9jIScirGB2bYJEVU/+r+g+K7oG+sXPs9TZljqveoVRsmLyXlMZTjpQkLL8gz527cW80NMGVKJg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@vitejs/plugin-vue/download/@vitejs/plugin-vue-1.10.1.tgz + } id: registry.npmmirror.com/@vitejs/plugin-vue/1.10.1 name: '@vitejs/plugin-vue' version: 1.10.1 - engines: {node: '>=12.0.0'} + engines: { node: '>=12.0.0' } peerDependencies: vite: ^2.5.10 dependencies: @@ -4320,7 +6723,12 @@ packages: dev: true registry.npmmirror.com/@volar/code-gen/0.27.24: - resolution: {integrity: sha1-zNvoWJUcHuTgw5eSMtUkEtxGdWo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/code-gen/download/@volar/code-gen-0.27.24.tgz} + resolution: + { + integrity: sha1-zNvoWJUcHuTgw5eSMtUkEtxGdWo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@volar/code-gen/download/@volar/code-gen-0.27.24.tgz + } name: '@volar/code-gen' version: 0.27.24 dependencies: @@ -4329,7 +6737,12 @@ packages: dev: true registry.npmmirror.com/@volar/html2pug/0.27.13: - resolution: {integrity: sha1-SN+nPs8e8ZVaAqBG0MiIRZUPrIU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/html2pug/download/@volar/html2pug-0.27.13.tgz} + resolution: + { + integrity: sha1-SN+nPs8e8ZVaAqBG0MiIRZUPrIU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@volar/html2pug/download/@volar/html2pug-0.27.13.tgz + } name: '@volar/html2pug' version: 0.27.13 dependencies: @@ -4340,7 +6753,12 @@ packages: dev: true registry.npmmirror.com/@volar/shared/0.27.24: - resolution: {integrity: sha1-ozRX7IrAsNNn7VTJ4hkTpfjC1sI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/shared/download/@volar/shared-0.27.24.tgz} + resolution: + { + integrity: sha1-ozRX7IrAsNNn7VTJ4hkTpfjC1sI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@volar/shared/download/@volar/shared-0.27.24.tgz + } name: '@volar/shared' version: 0.27.24 dependencies: @@ -4350,7 +6768,12 @@ packages: dev: true registry.npmmirror.com/@volar/source-map/0.27.24: - resolution: {integrity: sha1-YPLgcMFpvoLL9/+ilqMMKCPFIF8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/source-map/download/@volar/source-map-0.27.24.tgz} + resolution: + { + integrity: sha1-YPLgcMFpvoLL9/+ilqMMKCPFIF8=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@volar/source-map/download/@volar/source-map-0.27.24.tgz + } name: '@volar/source-map' version: 0.27.24 dependencies: @@ -4358,7 +6781,12 @@ packages: dev: true registry.npmmirror.com/@volar/transforms/0.27.24: - resolution: {integrity: sha1-aOvFPcouNohOJHwIZuw9JO2BV4Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/transforms/download/@volar/transforms-0.27.24.tgz} + resolution: + { + integrity: sha1-aOvFPcouNohOJHwIZuw9JO2BV4Q=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@volar/transforms/download/@volar/transforms-0.27.24.tgz + } name: '@volar/transforms' version: 0.27.24 dependencies: @@ -4367,7 +6795,12 @@ packages: dev: true registry.npmmirror.com/@vscode/emmet-helper/2.8.2: - resolution: {integrity: sha1-myzk/dYs8/2kXPivZ8ASz85V7ck=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vscode/emmet-helper/download/@vscode/emmet-helper-2.8.2.tgz} + resolution: + { + integrity: sha1-myzk/dYs8/2kXPivZ8ASz85V7ck=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@vscode/emmet-helper/download/@vscode/emmet-helper-2.8.2.tgz + } name: '@vscode/emmet-helper' version: 2.8.2 dependencies: @@ -4380,7 +6813,12 @@ packages: dev: true registry.npmmirror.com/@vue/babel-plugin-jsx/1.1.1_@babel+core@7.16.0: - resolution: {integrity: sha1-DFusJ4gNI/iYlM0Daje1XvYd38E=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/babel-plugin-jsx/download/@vue/babel-plugin-jsx-1.1.1.tgz} + resolution: + { + integrity: sha1-DFusJ4gNI/iYlM0Daje1XvYd38E=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@vue/babel-plugin-jsx/download/@vue/babel-plugin-jsx-1.1.1.tgz + } id: registry.npmmirror.com/@vue/babel-plugin-jsx/1.1.1 name: '@vue/babel-plugin-jsx' version: 1.1.1 @@ -4400,7 +6838,12 @@ packages: dev: true registry.npmmirror.com/@vue/compiler-core/3.2.24: - resolution: {integrity: sha512-A0SxB2HAggKzP57LDin5gfgWOTwFyGCtQ5MTMNBADnfQYALWnYuC8kMI0DhRSplGTWRvn9Z2DAnG8f35BnojuA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-core/download/@vue/compiler-core-3.2.24.tgz} + resolution: + { + integrity: sha512-A0SxB2HAggKzP57LDin5gfgWOTwFyGCtQ5MTMNBADnfQYALWnYuC8kMI0DhRSplGTWRvn9Z2DAnG8f35BnojuA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@vue/compiler-core/download/@vue/compiler-core-3.2.24.tgz + } name: '@vue/compiler-core' version: 3.2.24 dependencies: @@ -4410,7 +6853,12 @@ packages: source-map: registry.nlark.com/source-map/0.6.1 registry.npmmirror.com/@vue/compiler-dom/3.2.24: - resolution: {integrity: sha512-KQEm8r0JFsrNNIfbD28pcwMvHpcJcwjVR1XWFcD0yyQ8eREd7IXhT7J6j7iNCSE/TIo78NOvkwbyX+lnIm836w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-dom/download/@vue/compiler-dom-3.2.24.tgz} + resolution: + { + integrity: sha512-KQEm8r0JFsrNNIfbD28pcwMvHpcJcwjVR1XWFcD0yyQ8eREd7IXhT7J6j7iNCSE/TIo78NOvkwbyX+lnIm836w==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@vue/compiler-dom/download/@vue/compiler-dom-3.2.24.tgz + } name: '@vue/compiler-dom' version: 3.2.24 dependencies: @@ -4418,7 +6866,12 @@ packages: '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.24 registry.npmmirror.com/@vue/compiler-sfc/3.2.24: - resolution: {integrity: sha512-YGPcIvVJp2qTPkuT6kT43Eo1xjstyY4bmuiSV31my4bQMBFVR26ANmifUSt759Blok71gK0WzfIZHbcOKYOeKA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-sfc/download/@vue/compiler-sfc-3.2.24.tgz} + resolution: + { + integrity: sha512-YGPcIvVJp2qTPkuT6kT43Eo1xjstyY4bmuiSV31my4bQMBFVR26ANmifUSt759Blok71gK0WzfIZHbcOKYOeKA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@vue/compiler-sfc/download/@vue/compiler-sfc-3.2.24.tgz + } name: '@vue/compiler-sfc' version: 3.2.24 dependencies: @@ -4434,7 +6887,12 @@ packages: source-map: registry.nlark.com/source-map/0.6.1 registry.npmmirror.com/@vue/compiler-ssr/3.2.24: - resolution: {integrity: sha512-E1HHShNsGVWXxs68LDOUuI+Bzak9W/Ier/366aKDBFuwvfwgruwq6abhMfj6pSDZpwZ/PXnfliyl/m7qBSq6gw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-ssr/download/@vue/compiler-ssr-3.2.24.tgz} + resolution: + { + integrity: sha512-E1HHShNsGVWXxs68LDOUuI+Bzak9W/Ier/366aKDBFuwvfwgruwq6abhMfj6pSDZpwZ/PXnfliyl/m7qBSq6gw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@vue/compiler-ssr/download/@vue/compiler-ssr-3.2.24.tgz + } name: '@vue/compiler-ssr' version: 3.2.24 dependencies: @@ -4442,20 +6900,35 @@ packages: '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.24 registry.npmmirror.com/@vue/devtools-api/6.0.0-beta.20.1: - resolution: {integrity: sha512-R2rfiRY+kZugzWh9ZyITaovx+jpU4vgivAEAiz80kvh3yviiTU3CBuGuyWpSwGz9/C7TkSWVM/FtQRGlZ16n8Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/devtools-api/download/@vue/devtools-api-6.0.0-beta.20.1.tgz} + resolution: + { + integrity: sha512-R2rfiRY+kZugzWh9ZyITaovx+jpU4vgivAEAiz80kvh3yviiTU3CBuGuyWpSwGz9/C7TkSWVM/FtQRGlZ16n8Q==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@vue/devtools-api/download/@vue/devtools-api-6.0.0-beta.20.1.tgz + } name: '@vue/devtools-api' version: 6.0.0-beta.20.1 dev: false registry.npmmirror.com/@vue/reactivity/3.2.24: - resolution: {integrity: sha512-5eVsO9wfQ5erCMSRBjpqLkkI+LglJS7E0oLZJs2gsChpvOjH2Uwt3Hk1nVv0ywStnWg71Ykn3SyQwtnl7PknOQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/reactivity/download/@vue/reactivity-3.2.24.tgz} + resolution: + { + integrity: sha512-5eVsO9wfQ5erCMSRBjpqLkkI+LglJS7E0oLZJs2gsChpvOjH2Uwt3Hk1nVv0ywStnWg71Ykn3SyQwtnl7PknOQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@vue/reactivity/download/@vue/reactivity-3.2.24.tgz + } name: '@vue/reactivity' version: 3.2.24 dependencies: '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.24 registry.npmmirror.com/@vue/ref-transform/3.2.24: - resolution: {integrity: sha512-j6oNbsGLvea2rF8GQB9w6q7UFL1So7J+t6ducaMeWPSyjYZ+slWpwPVK6mmyghg5oGqC41R+HC5BV036Y0KhXQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/ref-transform/download/@vue/ref-transform-3.2.24.tgz} + resolution: + { + integrity: sha512-j6oNbsGLvea2rF8GQB9w6q7UFL1So7J+t6ducaMeWPSyjYZ+slWpwPVK6mmyghg5oGqC41R+HC5BV036Y0KhXQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@vue/ref-transform/download/@vue/ref-transform-3.2.24.tgz + } name: '@vue/ref-transform' version: 3.2.24 dependencies: @@ -4466,7 +6939,12 @@ packages: magic-string: registry.nlark.com/magic-string/0.25.7 registry.npmmirror.com/@vue/runtime-core/3.2.24: - resolution: {integrity: sha512-ReI06vGgYuW0G8FlOcAOzMklVDJSxKuRhYzT8j+a8BTfs1945kxo1Th28BPvasyYx8J+LMeZ0HqpPH9yGXvWvg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/runtime-core/download/@vue/runtime-core-3.2.24.tgz} + resolution: + { + integrity: sha512-ReI06vGgYuW0G8FlOcAOzMklVDJSxKuRhYzT8j+a8BTfs1945kxo1Th28BPvasyYx8J+LMeZ0HqpPH9yGXvWvg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@vue/runtime-core/download/@vue/runtime-core-3.2.24.tgz + } name: '@vue/runtime-core' version: 3.2.24 dependencies: @@ -4475,7 +6953,12 @@ packages: dev: false registry.npmmirror.com/@vue/runtime-dom/3.2.24: - resolution: {integrity: sha512-piqsabtIEUKkMGSJlOyKUonZEDtdwOpR6teQ8EKbH8PX9sxfAt9snLnFJldUhhyYrLIyDtnjwajfJ7/XtpD4JA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/runtime-dom/download/@vue/runtime-dom-3.2.24.tgz} + resolution: + { + integrity: sha512-piqsabtIEUKkMGSJlOyKUonZEDtdwOpR6teQ8EKbH8PX9sxfAt9snLnFJldUhhyYrLIyDtnjwajfJ7/XtpD4JA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@vue/runtime-dom/download/@vue/runtime-dom-3.2.24.tgz + } name: '@vue/runtime-dom' version: 3.2.24 dependencies: @@ -4485,7 +6968,12 @@ packages: dev: false registry.npmmirror.com/@vue/server-renderer/3.2.24_vue@3.2.24: - resolution: {integrity: sha512-DqiCRDxTbv67Hw5ImiqnLIQbPGtIwWLLfEcVHoEnu1f21EMTB6LfoS69EQddd8VyfN5kfX3Fmz27/hrFPpRaMQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/server-renderer/download/@vue/server-renderer-3.2.24.tgz} + resolution: + { + integrity: sha512-DqiCRDxTbv67Hw5ImiqnLIQbPGtIwWLLfEcVHoEnu1f21EMTB6LfoS69EQddd8VyfN5kfX3Fmz27/hrFPpRaMQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@vue/server-renderer/download/@vue/server-renderer-3.2.24.tgz + } id: registry.npmmirror.com/@vue/server-renderer/3.2.24 name: '@vue/server-renderer' version: 3.2.24 @@ -4498,12 +6986,22 @@ packages: dev: false registry.npmmirror.com/@vue/shared/3.2.24: - resolution: {integrity: sha512-BUgRiZCkCrqDps5aQ9av05xcge3rn092ztKIh17tHkeEFgP4zfXMQWBA2zfdoCdCEdBL26xtOv+FZYiOp9RUDA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/shared/download/@vue/shared-3.2.24.tgz} + resolution: + { + integrity: sha512-BUgRiZCkCrqDps5aQ9av05xcge3rn092ztKIh17tHkeEFgP4zfXMQWBA2zfdoCdCEdBL26xtOv+FZYiOp9RUDA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@vue/shared/download/@vue/shared-3.2.24.tgz + } name: '@vue/shared' version: 3.2.24 registry.npmmirror.com/@vueuse/core/7.1.2_vue@3.2.24: - resolution: {integrity: sha512-SLoOPfhZdNRNUkZfx+wrHj6WycWdSw2RmNS8E4ngQ2kmBoJjRarGy51/GkGdjqHQqmhuwuFoNO2WaU0yBn3ffg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/core/download/@vueuse/core-7.1.2.tgz} + resolution: + { + integrity: sha512-SLoOPfhZdNRNUkZfx+wrHj6WycWdSw2RmNS8E4ngQ2kmBoJjRarGy51/GkGdjqHQqmhuwuFoNO2WaU0yBn3ffg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@vueuse/core/download/@vueuse/core-7.1.2.tgz + } id: registry.npmmirror.com/@vueuse/core/7.1.2 name: '@vueuse/core' version: 7.1.2 @@ -4522,7 +7020,12 @@ packages: dev: false registry.npmmirror.com/@vueuse/shared/7.1.2_vue@3.2.24: - resolution: {integrity: sha512-AjYh4y9S5FMOoHDsysqcXY/1mpqNTrnWUD50yaaiyf+5kGWQVIpAkkjKZlYSC/NHKxxCRn0cLR4nWMzceUWewQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/shared/download/@vueuse/shared-7.1.2.tgz} + resolution: + { + integrity: sha512-AjYh4y9S5FMOoHDsysqcXY/1mpqNTrnWUD50yaaiyf+5kGWQVIpAkkjKZlYSC/NHKxxCRn0cLR4nWMzceUWewQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@vueuse/shared/download/@vueuse/shared-7.1.2.tgz + } id: registry.npmmirror.com/@vueuse/shared/7.1.2 name: '@vueuse/shared' version: 7.1.2 @@ -4540,7 +7043,12 @@ packages: dev: false registry.npmmirror.com/@windicss/config/1.5.4: - resolution: {integrity: sha512-muRPFulqh7nU3VrsPb5+k6ulNyiw8VGg62zAWRZIBfeCRXZb2gV1Q8a/tPn8X1T/+HTt4f/1bzFiusqMKscmlw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@windicss/config/download/@windicss/config-1.5.4.tgz} + resolution: + { + integrity: sha512-muRPFulqh7nU3VrsPb5+k6ulNyiw8VGg62zAWRZIBfeCRXZb2gV1Q8a/tPn8X1T/+HTt4f/1bzFiusqMKscmlw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@windicss/config/download/@windicss/config-1.5.4.tgz + } name: '@windicss/config' version: 1.5.4 dependencies: @@ -4552,7 +7060,12 @@ packages: dev: true registry.npmmirror.com/@windicss/plugin-utils/1.5.4: - resolution: {integrity: sha512-fS4y52OYB9rIzEUolIWIrrHYuaQfcqTaX3ISbFUiNbvNgH97JATjzB2iOnNqWNy6pH3M8RP0TqYQOOCCeanDoA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@windicss/plugin-utils/download/@windicss/plugin-utils-1.5.4.tgz} + resolution: + { + integrity: sha512-fS4y52OYB9rIzEUolIWIrrHYuaQfcqTaX3ISbFUiNbvNgH97JATjzB2iOnNqWNy6pH3M8RP0TqYQOOCCeanDoA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/@windicss/plugin-utils/download/@windicss/plugin-utils-1.5.4.tgz + } name: '@windicss/plugin-utils' version: 1.5.4 dependencies: @@ -4568,23 +7081,38 @@ packages: dev: true registry.npmmirror.com/acorn/7.4.1: - resolution: {integrity: sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn/download/acorn-7.4.1.tgz?cache=0&sync_timestamp=1637226362293&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Facorn%2Fdownload%2Facorn-7.4.1.tgz} + resolution: + { + integrity: sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/acorn/download/acorn-7.4.1.tgz?cache=0&sync_timestamp=1637226362293&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Facorn%2Fdownload%2Facorn-7.4.1.tgz + } name: acorn version: 7.4.1 - engines: {node: '>=0.4.0'} + engines: { node: '>=0.4.0' } hasBin: true dev: true registry.npmmirror.com/acorn/8.6.0: - resolution: {integrity: sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn/download/acorn-8.6.0.tgz?cache=0&sync_timestamp=1637226362293&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Facorn%2Fdownload%2Facorn-8.6.0.tgz} + resolution: + { + integrity: sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/acorn/download/acorn-8.6.0.tgz?cache=0&sync_timestamp=1637226362293&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Facorn%2Fdownload%2Facorn-8.6.0.tgz + } name: acorn version: 8.6.0 - engines: {node: '>=0.4.0'} + engines: { node: '>=0.4.0' } hasBin: true dev: true registry.npmmirror.com/ajv/6.12.6: - resolution: {integrity: sha1-uvWmLoArB9l3A0WG+MO69a3ybfQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ajv/download/ajv-6.12.6.tgz?cache=0&sync_timestamp=1637522318370&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fajv%2Fdownload%2Fajv-6.12.6.tgz} + resolution: + { + integrity: sha1-uvWmLoArB9l3A0WG+MO69a3ybfQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/ajv/download/ajv-6.12.6.tgz?cache=0&sync_timestamp=1637522318370&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fajv%2Fdownload%2Fajv-6.12.6.tgz + } name: ajv version: 6.12.6 dependencies: @@ -4595,7 +7123,12 @@ packages: dev: true registry.npmmirror.com/ajv/8.8.2: - resolution: {integrity: sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ajv/download/ajv-8.8.2.tgz?cache=0&sync_timestamp=1637522318370&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fajv%2Fdownload%2Fajv-8.8.2.tgz} + resolution: + { + integrity: sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/ajv/download/ajv-8.8.2.tgz?cache=0&sync_timestamp=1637522318370&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fajv%2Fdownload%2Fajv-8.8.2.tgz + } name: ajv version: 8.8.2 dependencies: @@ -4606,10 +7139,15 @@ packages: dev: true registry.npmmirror.com/array-includes/3.1.4: - resolution: {integrity: sha1-9bSTFix2DzU5Yx8AW6K7Rqy0W6k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/array-includes/download/array-includes-3.1.4.tgz} + resolution: + { + integrity: sha1-9bSTFix2DzU5Yx8AW6K7Rqy0W6k=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/array-includes/download/array-includes-3.1.4.tgz + } name: array-includes version: 3.1.4 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dependencies: call-bind: registry.nlark.com/call-bind/1.0.2 define-properties: registry.nlark.com/define-properties/1.1.3 @@ -4619,10 +7157,15 @@ packages: dev: true registry.npmmirror.com/array.prototype.flat/1.2.5: - resolution: {integrity: sha1-B+CXXYS7x8SM0YedYJ5oJZjTPhM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/array.prototype.flat/download/array.prototype.flat-1.2.5.tgz} + resolution: + { + integrity: sha1-B+CXXYS7x8SM0YedYJ5oJZjTPhM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/array.prototype.flat/download/array.prototype.flat-1.2.5.tgz + } name: array.prototype.flat version: 1.2.5 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dependencies: call-bind: registry.nlark.com/call-bind/1.0.2 define-properties: registry.nlark.com/define-properties/1.1.3 @@ -4630,10 +7173,15 @@ packages: dev: true registry.npmmirror.com/array.prototype.flatmap/1.2.5: - resolution: {integrity: sha1-kI3ILYpAaTD984WY1R50EdGNREY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/array.prototype.flatmap/download/array.prototype.flatmap-1.2.5.tgz} + resolution: + { + integrity: sha1-kI3ILYpAaTD984WY1R50EdGNREY=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/array.prototype.flatmap/download/array.prototype.flatmap-1.2.5.tgz + } name: array.prototype.flatmap version: 1.2.5 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dependencies: call-bind: registry.nlark.com/call-bind/1.0.2 define-properties: registry.nlark.com/define-properties/1.1.3 @@ -4641,11 +7189,16 @@ packages: dev: true registry.npmmirror.com/autoprefixer/10.4.0_postcss@8.4.4: - resolution: {integrity: sha1-w1d+syoQeaRA7CU+QE6vHrITiMg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/autoprefixer/download/autoprefixer-10.4.0.tgz?cache=0&sync_timestamp=1635422146053&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fautoprefixer%2Fdownload%2Fautoprefixer-10.4.0.tgz} + resolution: + { + integrity: sha1-w1d+syoQeaRA7CU+QE6vHrITiMg=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/autoprefixer/download/autoprefixer-10.4.0.tgz?cache=0&sync_timestamp=1635422146053&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fautoprefixer%2Fdownload%2Fautoprefixer-10.4.0.tgz + } id: registry.npmmirror.com/autoprefixer/10.4.0 name: autoprefixer version: 10.4.0 - engines: {node: ^10 || ^12 || >=14} + engines: { node: ^10 || ^12 || >=14 } hasBin: true peerDependencies: postcss: ^8.1.0 @@ -4660,7 +7213,12 @@ packages: dev: true registry.npmmirror.com/brace-expansion/1.1.11: - resolution: {integrity: sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/brace-expansion/download/brace-expansion-1.1.11.tgz} + resolution: + { + integrity: sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/brace-expansion/download/brace-expansion-1.1.11.tgz + } name: brace-expansion version: 1.1.11 dependencies: @@ -4669,10 +7227,15 @@ packages: dev: true registry.npmmirror.com/browserslist/4.18.1: - resolution: {integrity: sha512-8ScCzdpPwR2wQh8IT82CA2VgDwjHyqMovPBZSNH54+tm4Jk2pCuv90gmAdH6J84OCRWi0b4gMe6O6XPXuJnjgQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/browserslist/download/browserslist-4.18.1.tgz?cache=0&sync_timestamp=1637002192911&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.18.1.tgz} + resolution: + { + integrity: sha512-8ScCzdpPwR2wQh8IT82CA2VgDwjHyqMovPBZSNH54+tm4Jk2pCuv90gmAdH6J84OCRWi0b4gMe6O6XPXuJnjgQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/browserslist/download/browserslist-4.18.1.tgz?cache=0&sync_timestamp=1637002192911&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.18.1.tgz + } name: browserslist version: 4.18.1 - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } hasBin: true dependencies: caniuse-lite: registry.npmmirror.com/caniuse-lite/1.0.30001285 @@ -4683,10 +7246,15 @@ packages: dev: true 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: https://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'} + engines: { node: '>=8' } dependencies: camelcase: registry.npmmirror.com/camelcase/5.3.1 map-obj: registry.npmmirror.com/map-obj/4.3.0 @@ -4694,30 +7262,50 @@ packages: dev: true registry.npmmirror.com/camelcase/5.3.1: - resolution: {integrity: sha1-48mzFWnhBoEd8kL3FXJaH0xJQyA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/camelcase/download/camelcase-5.3.1.tgz?cache=0&sync_timestamp=1636945280716&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcamelcase%2Fdownload%2Fcamelcase-5.3.1.tgz} + resolution: + { + integrity: sha1-48mzFWnhBoEd8kL3FXJaH0xJQyA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/camelcase/download/camelcase-5.3.1.tgz?cache=0&sync_timestamp=1636945280716&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcamelcase%2Fdownload%2Fcamelcase-5.3.1.tgz + } name: camelcase version: 5.3.1 - engines: {node: '>=6'} + engines: { node: '>=6' } dev: true registry.npmmirror.com/camelcase/6.2.1: - resolution: {integrity: sha512-tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/camelcase/download/camelcase-6.2.1.tgz?cache=0&sync_timestamp=1636945280716&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcamelcase%2Fdownload%2Fcamelcase-6.2.1.tgz} + resolution: + { + integrity: sha512-tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/camelcase/download/camelcase-6.2.1.tgz?cache=0&sync_timestamp=1636945280716&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcamelcase%2Fdownload%2Fcamelcase-6.2.1.tgz + } name: camelcase version: 6.2.1 - engines: {node: '>=10'} + engines: { node: '>=10' } dev: true registry.npmmirror.com/caniuse-lite/1.0.30001285: - resolution: {integrity: sha512-KAOkuUtcQ901MtmvxfKD+ODHH9YVDYnBt+TGYSz2KIfnq22CiArbUxXPN9067gNbgMlnNYRSwho8OPXZPALB9Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/caniuse-lite/download/caniuse-lite-1.0.30001285.tgz} + resolution: + { + integrity: sha512-KAOkuUtcQ901MtmvxfKD+ODHH9YVDYnBt+TGYSz2KIfnq22CiArbUxXPN9067gNbgMlnNYRSwho8OPXZPALB9Q==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/caniuse-lite/download/caniuse-lite-1.0.30001285.tgz + } name: caniuse-lite version: 1.0.30001285 dev: true registry.npmmirror.com/chalk/2.4.2: - resolution: {integrity: sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chalk/download/chalk-2.4.2.tgz} + resolution: + { + integrity: sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/chalk/download/chalk-2.4.2.tgz + } name: chalk version: 2.4.2 - engines: {node: '>=4'} + engines: { node: '>=4' } dependencies: ansi-styles: registry.nlark.com/ansi-styles/3.2.1 escape-string-regexp: registry.nlark.com/escape-string-regexp/1.0.5 @@ -4725,36 +7313,56 @@ packages: dev: true registry.npmmirror.com/chalk/3.0.0: - resolution: {integrity: sha1-P3PCv1JlkfV0zEksUeJFY0n4ROQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chalk/download/chalk-3.0.0.tgz} + resolution: + { + integrity: sha1-P3PCv1JlkfV0zEksUeJFY0n4ROQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/chalk/download/chalk-3.0.0.tgz + } name: chalk version: 3.0.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: ansi-styles: registry.nlark.com/ansi-styles/4.3.0 supports-color: registry.npmmirror.com/supports-color/7.2.0 dev: true registry.npmmirror.com/chalk/4.1.2: - resolution: {integrity: sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz} + resolution: + { + integrity: sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz + } name: chalk version: 4.1.2 - engines: {node: '>=10'} + engines: { node: '>=10' } dependencies: ansi-styles: registry.nlark.com/ansi-styles/4.3.0 supports-color: registry.npmmirror.com/supports-color/7.2.0 dev: true registry.npmmirror.com/chardet/0.7.0: - resolution: {integrity: sha1-kAlISfCTfy7twkJdDSip5fDLrZ4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chardet/download/chardet-0.7.0.tgz} + resolution: + { + integrity: sha1-kAlISfCTfy7twkJdDSip5fDLrZ4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/chardet/download/chardet-0.7.0.tgz + } name: chardet version: 0.7.0 dev: true registry.npmmirror.com/chokidar/3.5.2: - resolution: {integrity: sha1-26OXb8rbAW9m/TZQIdkWANAcHnU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chokidar/download/chokidar-3.5.2.tgz?cache=0&sync_timestamp=1636462751299&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fchokidar%2Fdownload%2Fchokidar-3.5.2.tgz} + resolution: + { + integrity: sha1-26OXb8rbAW9m/TZQIdkWANAcHnU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/chokidar/download/chokidar-3.5.2.tgz?cache=0&sync_timestamp=1636462751299&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fchokidar%2Fdownload%2Fchokidar-3.5.2.tgz + } name: chokidar version: 3.5.2 - engines: {node: '>= 8.10.0'} + engines: { node: '>= 8.10.0' } dependencies: anymatch: registry.nlark.com/anymatch/3.1.2 braces: registry.nlark.com/braces/3.0.2 @@ -4768,49 +7376,79 @@ packages: dev: true registry.npmmirror.com/ci-info/3.3.0: - resolution: {integrity: sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ci-info/download/ci-info-3.3.0.tgz} + resolution: + { + integrity: sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/ci-info/download/ci-info-3.3.0.tgz + } name: ci-info version: 3.3.0 dev: true registry.npmmirror.com/cli-truncate/2.1.0: - resolution: {integrity: sha1-w54ovwXtzeW+O5iZKiLe7Vork8c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cli-truncate/download/cli-truncate-2.1.0.tgz} + resolution: + { + integrity: sha1-w54ovwXtzeW+O5iZKiLe7Vork8c=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/cli-truncate/download/cli-truncate-2.1.0.tgz + } name: cli-truncate version: 2.1.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: slice-ansi: registry.nlark.com/slice-ansi/3.0.0 string-width: registry.npmmirror.com/string-width/4.2.3 dev: true registry.npmmirror.com/cli-truncate/3.1.0: - resolution: {integrity: sha1-PyOrElNePXPoObtD5zyd5IfbE4k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cli-truncate/download/cli-truncate-3.1.0.tgz} + resolution: + { + integrity: sha1-PyOrElNePXPoObtD5zyd5IfbE4k=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/cli-truncate/download/cli-truncate-3.1.0.tgz + } name: cli-truncate version: 3.1.0 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: slice-ansi: registry.nlark.com/slice-ansi/5.0.0 string-width: registry.npmmirror.com/string-width/5.0.1 dev: true registry.npmmirror.com/colorette/2.0.16: - resolution: {integrity: sha1-cTua+E/bAAE58EVGvUqT9ipQhdo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/colorette/download/colorette-2.0.16.tgz?cache=0&sync_timestamp=1633673408257&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcolorette%2Fdownload%2Fcolorette-2.0.16.tgz} + resolution: + { + integrity: sha1-cTua+E/bAAE58EVGvUqT9ipQhdo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/colorette/download/colorette-2.0.16.tgz?cache=0&sync_timestamp=1633673408257&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcolorette%2Fdownload%2Fcolorette-2.0.16.tgz + } name: colorette version: 2.0.16 dev: true registry.npmmirror.com/commander/8.3.0: - resolution: {integrity: sha1-SDfqGy2me5xhamevuw+v7lZ7ymY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/commander/download/commander-8.3.0.tgz?cache=0&sync_timestamp=1634887824095&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcommander%2Fdownload%2Fcommander-8.3.0.tgz} + resolution: + { + integrity: sha1-SDfqGy2me5xhamevuw+v7lZ7ymY=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/commander/download/commander-8.3.0.tgz?cache=0&sync_timestamp=1634887824095&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcommander%2Fdownload%2Fcommander-8.3.0.tgz + } name: commander version: 8.3.0 - engines: {node: '>= 12'} + engines: { node: '>= 12' } dev: true registry.npmmirror.com/commitizen/4.2.4: - resolution: {integrity: sha1-o+Wza9dXX2v256oZ278GsNjzcWU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/commitizen/download/commitizen-4.2.4.tgz} + resolution: + { + integrity: sha1-o+Wza9dXX2v256oZ278GsNjzcWU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/commitizen/download/commitizen-4.2.4.tgz + } name: commitizen version: 4.2.4 - engines: {node: '>= 10'} + engines: { node: '>= 10' } hasBin: true dependencies: cachedir: registry.nlark.com/cachedir/2.2.0 @@ -4830,10 +7468,15 @@ packages: dev: true registry.npmmirror.com/conventional-commits-parser/3.2.3: - resolution: {integrity: sha1-/ENwRpgjlFHj7zX9HY7WRPRr2G4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/conventional-commits-parser/download/conventional-commits-parser-3.2.3.tgz?cache=0&sync_timestamp=1635305520177&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fconventional-commits-parser%2Fdownload%2Fconventional-commits-parser-3.2.3.tgz} + resolution: + { + integrity: sha1-/ENwRpgjlFHj7zX9HY7WRPRr2G4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/conventional-commits-parser/download/conventional-commits-parser-3.2.3.tgz?cache=0&sync_timestamp=1635305520177&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fconventional-commits-parser%2Fdownload%2Fconventional-commits-parser-3.2.3.tgz + } name: conventional-commits-parser version: 3.2.3 - engines: {node: '>=10'} + engines: { node: '>=10' } hasBin: true dependencies: is-text-path: registry.nlark.com/is-text-path/1.0.1 @@ -4845,13 +7488,23 @@ packages: dev: true registry.npmmirror.com/csstype/2.6.19: - resolution: {integrity: sha512-ZVxXaNy28/k3kJg0Fou5MiYpp88j7H9hLZp8PDC3jV0WFjfH5E9xHb56L0W59cPbKbcHXeP4qyT8PrHp8t6LcQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/csstype/download/csstype-2.6.19.tgz?cache=0&sync_timestamp=1637226973684&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcsstype%2Fdownload%2Fcsstype-2.6.19.tgz} + resolution: + { + integrity: sha512-ZVxXaNy28/k3kJg0Fou5MiYpp88j7H9hLZp8PDC3jV0WFjfH5E9xHb56L0W59cPbKbcHXeP4qyT8PrHp8t6LcQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/csstype/download/csstype-2.6.19.tgz?cache=0&sync_timestamp=1637226973684&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcsstype%2Fdownload%2Fcsstype-2.6.19.tgz + } name: csstype version: 2.6.19 dev: false registry.npmmirror.com/debug/2.6.9: - resolution: {integrity: sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/debug/download/debug-2.6.9.tgz} + resolution: + { + integrity: sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/debug/download/debug-2.6.9.tgz + } name: debug version: 2.6.9 dependencies: @@ -4859,7 +7512,12 @@ packages: dev: true registry.npmmirror.com/debug/3.2.7: - resolution: {integrity: sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/debug/download/debug-3.2.7.tgz} + resolution: + { + integrity: sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/debug/download/debug-3.2.7.tgz + } name: debug version: 3.2.7 dependencies: @@ -4867,10 +7525,15 @@ packages: dev: true registry.npmmirror.com/debug/4.3.3: - resolution: {integrity: sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/debug/download/debug-4.3.3.tgz} + resolution: + { + integrity: sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/debug/download/debug-4.3.3.tgz + } name: debug version: 4.3.3 - engines: {node: '>=6.0'} + engines: { node: '>=6.0' } peerDependencies: supports-color: '*' peerDependenciesMeta: @@ -4881,11 +7544,16 @@ packages: dev: true registry.npmmirror.com/debug/4.3.3_supports-color@9.2.1: - resolution: {integrity: sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/debug/download/debug-4.3.3.tgz} + resolution: + { + integrity: sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/debug/download/debug-4.3.3.tgz + } id: registry.npmmirror.com/debug/4.3.3 name: debug version: 4.3.3 - engines: {node: '>=6.0'} + engines: { node: '>=6.0' } peerDependencies: supports-color: '*' peerDependenciesMeta: @@ -4897,44 +7565,74 @@ packages: dev: true 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: https://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'} + engines: { node: '>=0.10.0' } dev: true registry.npmmirror.com/domhandler/4.3.0: - resolution: {integrity: sha512-fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/domhandler/download/domhandler-4.3.0.tgz} + resolution: + { + integrity: sha512-fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/domhandler/download/domhandler-4.3.0.tgz + } name: domhandler version: 4.3.0 - engines: {node: '>= 4'} + engines: { node: '>= 4' } dependencies: domelementtype: registry.nlark.com/domelementtype/2.2.0 dev: true registry.npmmirror.com/electron-to-chromium/1.4.12: - resolution: {integrity: sha512-zjfhG9Us/hIy8AlQ5OzfbR/C4aBv1Dg/ak4GX35CELYlJ4tDAtoEcQivXvyBdqdNQ+R6PhlgQqV8UNPJmhkJog==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/electron-to-chromium/download/electron-to-chromium-1.4.12.tgz} + resolution: + { + integrity: sha512-zjfhG9Us/hIy8AlQ5OzfbR/C4aBv1Dg/ak4GX35CELYlJ4tDAtoEcQivXvyBdqdNQ+R6PhlgQqV8UNPJmhkJog==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/electron-to-chromium/download/electron-to-chromium-1.4.12.tgz + } name: electron-to-chromium version: 1.4.12 dev: true registry.npmmirror.com/emoji-regex/8.0.0: - resolution: {integrity: sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/emoji-regex/download/emoji-regex-8.0.0.tgz} + resolution: + { + integrity: sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/emoji-regex/download/emoji-regex-8.0.0.tgz + } name: emoji-regex version: 8.0.0 dev: true registry.npmmirror.com/emoji-regex/9.2.2: - resolution: {integrity: sha1-hAyIA7DYBH9P8M+WMXazLU7z7XI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/emoji-regex/download/emoji-regex-9.2.2.tgz} + resolution: + { + integrity: sha1-hAyIA7DYBH9P8M+WMXazLU7z7XI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/emoji-regex/download/emoji-regex-9.2.2.tgz + } name: emoji-regex version: 9.2.2 dev: true registry.npmmirror.com/es-abstract/1.19.1: - resolution: {integrity: sha1-1IhXlodpFpWd547aoN9FZicRXsM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/es-abstract/download/es-abstract-1.19.1.tgz} + resolution: + { + integrity: sha1-1IhXlodpFpWd547aoN9FZicRXsM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/es-abstract/download/es-abstract-1.19.1.tgz + } name: es-abstract version: 1.19.1 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dependencies: call-bind: registry.nlark.com/call-bind/1.0.2 es-to-primitive: registry.nlark.com/es-to-primitive/1.2.1 @@ -4959,7 +7657,12 @@ packages: dev: true registry.npmmirror.com/esbuild-android-arm64/0.13.15: - resolution: {integrity: sha512-m602nft/XXeO8YQPUDVoHfjyRVPdPgjyyXOxZ44MK/agewFFkPa8tUo6lAzSWh5Ui5PB4KR9UIFTSBKh/RrCmg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-android-arm64/download/esbuild-android-arm64-0.13.15.tgz} + resolution: + { + integrity: sha512-m602nft/XXeO8YQPUDVoHfjyRVPdPgjyyXOxZ44MK/agewFFkPa8tUo6lAzSWh5Ui5PB4KR9UIFTSBKh/RrCmg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/esbuild-android-arm64/download/esbuild-android-arm64-0.13.15.tgz + } name: esbuild-android-arm64 version: 0.13.15 cpu: [arm64] @@ -4969,7 +7672,12 @@ packages: optional: true registry.npmmirror.com/esbuild-darwin-64/0.13.15: - resolution: {integrity: sha512-ihOQRGs2yyp7t5bArCwnvn2Atr6X4axqPpEdCFPVp7iUj4cVSdisgvEKdNR7yH3JDjW6aQDw40iQFoTqejqxvQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-darwin-64/download/esbuild-darwin-64-0.13.15.tgz} + resolution: + { + integrity: sha512-ihOQRGs2yyp7t5bArCwnvn2Atr6X4axqPpEdCFPVp7iUj4cVSdisgvEKdNR7yH3JDjW6aQDw40iQFoTqejqxvQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/esbuild-darwin-64/download/esbuild-darwin-64-0.13.15.tgz + } name: esbuild-darwin-64 version: 0.13.15 cpu: [x64] @@ -4979,7 +7687,12 @@ packages: optional: true registry.npmmirror.com/esbuild-darwin-arm64/0.13.15: - resolution: {integrity: sha512-i1FZssTVxUqNlJ6cBTj5YQj4imWy3m49RZRnHhLpefFIh0To05ow9DTrXROTE1urGTQCloFUXTX8QfGJy1P8dQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-darwin-arm64/download/esbuild-darwin-arm64-0.13.15.tgz} + resolution: + { + integrity: sha512-i1FZssTVxUqNlJ6cBTj5YQj4imWy3m49RZRnHhLpefFIh0To05ow9DTrXROTE1urGTQCloFUXTX8QfGJy1P8dQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/esbuild-darwin-arm64/download/esbuild-darwin-arm64-0.13.15.tgz + } name: esbuild-darwin-arm64 version: 0.13.15 cpu: [arm64] @@ -4989,7 +7702,12 @@ packages: optional: true registry.npmmirror.com/esbuild-freebsd-64/0.13.15: - resolution: {integrity: sha512-G3dLBXUI6lC6Z09/x+WtXBXbOYQZ0E8TDBqvn7aMaOCzryJs8LyVXKY4CPnHFXZAbSwkCbqiPuSQ1+HhrNk7EA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-freebsd-64/download/esbuild-freebsd-64-0.13.15.tgz} + resolution: + { + integrity: sha512-G3dLBXUI6lC6Z09/x+WtXBXbOYQZ0E8TDBqvn7aMaOCzryJs8LyVXKY4CPnHFXZAbSwkCbqiPuSQ1+HhrNk7EA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/esbuild-freebsd-64/download/esbuild-freebsd-64-0.13.15.tgz + } name: esbuild-freebsd-64 version: 0.13.15 cpu: [x64] @@ -4999,7 +7717,12 @@ packages: optional: true registry.npmmirror.com/esbuild-freebsd-arm64/0.13.15: - resolution: {integrity: sha512-KJx0fzEDf1uhNOZQStV4ujg30WlnwqUASaGSFPhznLM/bbheu9HhqZ6mJJZM32lkyfGJikw0jg7v3S0oAvtvQQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-freebsd-arm64/download/esbuild-freebsd-arm64-0.13.15.tgz} + resolution: + { + integrity: sha512-KJx0fzEDf1uhNOZQStV4ujg30WlnwqUASaGSFPhznLM/bbheu9HhqZ6mJJZM32lkyfGJikw0jg7v3S0oAvtvQQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/esbuild-freebsd-arm64/download/esbuild-freebsd-arm64-0.13.15.tgz + } name: esbuild-freebsd-arm64 version: 0.13.15 cpu: [arm64] @@ -5009,7 +7732,12 @@ packages: optional: true registry.npmmirror.com/esbuild-linux-32/0.13.15: - resolution: {integrity: sha512-ZvTBPk0YWCLMCXiFmD5EUtB30zIPvC5Itxz0mdTu/xZBbbHJftQgLWY49wEPSn2T/TxahYCRDWun5smRa0Tu+g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-32/download/esbuild-linux-32-0.13.15.tgz} + resolution: + { + integrity: sha512-ZvTBPk0YWCLMCXiFmD5EUtB30zIPvC5Itxz0mdTu/xZBbbHJftQgLWY49wEPSn2T/TxahYCRDWun5smRa0Tu+g==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/esbuild-linux-32/download/esbuild-linux-32-0.13.15.tgz + } name: esbuild-linux-32 version: 0.13.15 cpu: [ia32] @@ -5019,7 +7747,12 @@ packages: optional: true registry.npmmirror.com/esbuild-linux-64/0.13.15: - resolution: {integrity: sha512-eCKzkNSLywNeQTRBxJRQ0jxRCl2YWdMB3+PkWFo2BBQYC5mISLIVIjThNtn6HUNqua1pnvgP5xX0nHbZbPj5oA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-64/download/esbuild-linux-64-0.13.15.tgz} + resolution: + { + integrity: sha512-eCKzkNSLywNeQTRBxJRQ0jxRCl2YWdMB3+PkWFo2BBQYC5mISLIVIjThNtn6HUNqua1pnvgP5xX0nHbZbPj5oA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/esbuild-linux-64/download/esbuild-linux-64-0.13.15.tgz + } name: esbuild-linux-64 version: 0.13.15 cpu: [x64] @@ -5029,7 +7762,12 @@ packages: optional: true registry.npmmirror.com/esbuild-linux-arm/0.13.15: - resolution: {integrity: sha512-wUHttDi/ol0tD8ZgUMDH8Ef7IbDX+/UsWJOXaAyTdkT7Yy9ZBqPg8bgB/Dn3CZ9SBpNieozrPRHm0BGww7W/jA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-arm/download/esbuild-linux-arm-0.13.15.tgz} + resolution: + { + integrity: sha512-wUHttDi/ol0tD8ZgUMDH8Ef7IbDX+/UsWJOXaAyTdkT7Yy9ZBqPg8bgB/Dn3CZ9SBpNieozrPRHm0BGww7W/jA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/esbuild-linux-arm/download/esbuild-linux-arm-0.13.15.tgz + } name: esbuild-linux-arm version: 0.13.15 cpu: [arm] @@ -5039,7 +7777,12 @@ packages: optional: true registry.npmmirror.com/esbuild-linux-arm64/0.13.15: - resolution: {integrity: sha512-bYpuUlN6qYU9slzr/ltyLTR9YTBS7qUDymO8SV7kjeNext61OdmqFAzuVZom+OLW1HPHseBfJ/JfdSlx8oTUoA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-arm64/download/esbuild-linux-arm64-0.13.15.tgz} + resolution: + { + integrity: sha512-bYpuUlN6qYU9slzr/ltyLTR9YTBS7qUDymO8SV7kjeNext61OdmqFAzuVZom+OLW1HPHseBfJ/JfdSlx8oTUoA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/esbuild-linux-arm64/download/esbuild-linux-arm64-0.13.15.tgz + } name: esbuild-linux-arm64 version: 0.13.15 cpu: [arm64] @@ -5049,7 +7792,12 @@ packages: optional: true registry.npmmirror.com/esbuild-linux-mips64le/0.13.15: - resolution: {integrity: sha512-KlVjIG828uFPyJkO/8gKwy9RbXhCEUeFsCGOJBepUlpa7G8/SeZgncUEz/tOOUJTcWMTmFMtdd3GElGyAtbSWg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-mips64le/download/esbuild-linux-mips64le-0.13.15.tgz} + resolution: + { + integrity: sha512-KlVjIG828uFPyJkO/8gKwy9RbXhCEUeFsCGOJBepUlpa7G8/SeZgncUEz/tOOUJTcWMTmFMtdd3GElGyAtbSWg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/esbuild-linux-mips64le/download/esbuild-linux-mips64le-0.13.15.tgz + } name: esbuild-linux-mips64le version: 0.13.15 cpu: [mips64el] @@ -5059,7 +7807,12 @@ packages: optional: true registry.npmmirror.com/esbuild-linux-ppc64le/0.13.15: - resolution: {integrity: sha512-h6gYF+OsaqEuBjeesTBtUPw0bmiDu7eAeuc2OEH9S6mV9/jPhPdhOWzdeshb0BskRZxPhxPOjqZ+/OqLcxQwEQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-ppc64le/download/esbuild-linux-ppc64le-0.13.15.tgz} + resolution: + { + integrity: sha512-h6gYF+OsaqEuBjeesTBtUPw0bmiDu7eAeuc2OEH9S6mV9/jPhPdhOWzdeshb0BskRZxPhxPOjqZ+/OqLcxQwEQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/esbuild-linux-ppc64le/download/esbuild-linux-ppc64le-0.13.15.tgz + } name: esbuild-linux-ppc64le version: 0.13.15 cpu: [ppc64] @@ -5069,7 +7822,12 @@ packages: optional: true registry.npmmirror.com/esbuild-netbsd-64/0.13.15: - resolution: {integrity: sha512-3+yE9emwoevLMyvu+iR3rsa+Xwhie7ZEHMGDQ6dkqP/ndFzRHkobHUKTe+NCApSqG5ce2z4rFu+NX/UHnxlh3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-netbsd-64/download/esbuild-netbsd-64-0.13.15.tgz} + resolution: + { + integrity: sha512-3+yE9emwoevLMyvu+iR3rsa+Xwhie7ZEHMGDQ6dkqP/ndFzRHkobHUKTe+NCApSqG5ce2z4rFu+NX/UHnxlh3w==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/esbuild-netbsd-64/download/esbuild-netbsd-64-0.13.15.tgz + } name: esbuild-netbsd-64 version: 0.13.15 cpu: [x64] @@ -5079,7 +7837,12 @@ packages: optional: true registry.npmmirror.com/esbuild-openbsd-64/0.13.15: - resolution: {integrity: sha512-wTfvtwYJYAFL1fSs8yHIdf5GEE4NkbtbXtjLWjM3Cw8mmQKqsg8kTiqJ9NJQe5NX/5Qlo7Xd9r1yKMMkHllp5g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-openbsd-64/download/esbuild-openbsd-64-0.13.15.tgz} + resolution: + { + integrity: sha512-wTfvtwYJYAFL1fSs8yHIdf5GEE4NkbtbXtjLWjM3Cw8mmQKqsg8kTiqJ9NJQe5NX/5Qlo7Xd9r1yKMMkHllp5g==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/esbuild-openbsd-64/download/esbuild-openbsd-64-0.13.15.tgz + } name: esbuild-openbsd-64 version: 0.13.15 cpu: [x64] @@ -5089,7 +7852,12 @@ packages: optional: true registry.npmmirror.com/esbuild-sunos-64/0.13.15: - resolution: {integrity: sha512-lbivT9Bx3t1iWWrSnGyBP9ODriEvWDRiweAs69vI+miJoeKwHWOComSRukttbuzjZ8r1q0mQJ8Z7yUsDJ3hKdw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-sunos-64/download/esbuild-sunos-64-0.13.15.tgz} + resolution: + { + integrity: sha512-lbivT9Bx3t1iWWrSnGyBP9ODriEvWDRiweAs69vI+miJoeKwHWOComSRukttbuzjZ8r1q0mQJ8Z7yUsDJ3hKdw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/esbuild-sunos-64/download/esbuild-sunos-64-0.13.15.tgz + } name: esbuild-sunos-64 version: 0.13.15 cpu: [x64] @@ -5099,7 +7867,12 @@ packages: optional: true registry.npmmirror.com/esbuild-windows-32/0.13.15: - resolution: {integrity: sha512-fDMEf2g3SsJ599MBr50cY5ve5lP1wyVwTe6aLJsM01KtxyKkB4UT+fc5MXQFn3RLrAIAZOG+tHC+yXObpSn7Nw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-32/download/esbuild-windows-32-0.13.15.tgz} + resolution: + { + integrity: sha512-fDMEf2g3SsJ599MBr50cY5ve5lP1wyVwTe6aLJsM01KtxyKkB4UT+fc5MXQFn3RLrAIAZOG+tHC+yXObpSn7Nw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/esbuild-windows-32/download/esbuild-windows-32-0.13.15.tgz + } name: esbuild-windows-32 version: 0.13.15 cpu: [ia32] @@ -5109,7 +7882,12 @@ packages: optional: true registry.npmmirror.com/esbuild-windows-64/0.13.15: - resolution: {integrity: sha512-9aMsPRGDWCd3bGjUIKG/ZOJPKsiztlxl/Q3C1XDswO6eNX/Jtwu4M+jb6YDH9hRSUflQWX0XKAfWzgy5Wk54JQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-64/download/esbuild-windows-64-0.13.15.tgz} + resolution: + { + integrity: sha512-9aMsPRGDWCd3bGjUIKG/ZOJPKsiztlxl/Q3C1XDswO6eNX/Jtwu4M+jb6YDH9hRSUflQWX0XKAfWzgy5Wk54JQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/esbuild-windows-64/download/esbuild-windows-64-0.13.15.tgz + } name: esbuild-windows-64 version: 0.13.15 cpu: [x64] @@ -5119,7 +7897,12 @@ packages: optional: true registry.npmmirror.com/esbuild-windows-arm64/0.13.15: - resolution: {integrity: sha512-zzvyCVVpbwQQATaf3IG8mu1IwGEiDxKkYUdA4FpoCHi1KtPa13jeScYDjlW0Qh+ebWzpKfR2ZwvqAQkSWNcKjA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-arm64/download/esbuild-windows-arm64-0.13.15.tgz} + resolution: + { + integrity: sha512-zzvyCVVpbwQQATaf3IG8mu1IwGEiDxKkYUdA4FpoCHi1KtPa13jeScYDjlW0Qh+ebWzpKfR2ZwvqAQkSWNcKjA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/esbuild-windows-arm64/download/esbuild-windows-arm64-0.13.15.tgz + } name: esbuild-windows-arm64 version: 0.13.15 cpu: [arm64] @@ -5129,7 +7912,12 @@ packages: optional: true registry.npmmirror.com/esbuild/0.13.15: - resolution: {integrity: sha512-raCxt02HBKv8RJxE8vkTSCXGIyKHdEdGfUmiYb8wnabnaEmHzyW7DCHb5tEN0xU8ryqg5xw54mcwnYkC4x3AIw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild/download/esbuild-0.13.15.tgz} + resolution: + { + integrity: sha512-raCxt02HBKv8RJxE8vkTSCXGIyKHdEdGfUmiYb8wnabnaEmHzyW7DCHb5tEN0xU8ryqg5xw54mcwnYkC4x3AIw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/esbuild/download/esbuild-0.13.15.tgz + } name: esbuild version: 0.13.15 hasBin: true @@ -5155,17 +7943,27 @@ packages: dev: true registry.npmmirror.com/eslint-define-config/1.2.0: - resolution: {integrity: sha512-EQ8d9F9LmJVRfkZW9WgSa5VBAVZialrLZKy0k1062zlhM8KFUyFoAC8xRI+mdp5m81FNMPnpKZfyq0AfJDyNTg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-define-config/download/eslint-define-config-1.2.0.tgz} + resolution: + { + integrity: sha512-EQ8d9F9LmJVRfkZW9WgSa5VBAVZialrLZKy0k1062zlhM8KFUyFoAC8xRI+mdp5m81FNMPnpKZfyq0AfJDyNTg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/eslint-define-config/download/eslint-define-config-1.2.0.tgz + } name: eslint-define-config version: 1.2.0 - engines: {node: '>= 16.9.0', npm: '>= 7.0.0', pnpm: '>= 6.17.0'} + engines: { node: '>= 16.9.0', npm: '>= 7.0.0', pnpm: '>= 6.17.0' } dev: true registry.npmmirror.com/eslint-module-utils/2.7.1: - resolution: {integrity: sha1-tDUAHJ+N1Kt/bQ78rkuWltTCS3w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-module-utils/download/eslint-module-utils-2.7.1.tgz} + resolution: + { + integrity: sha1-tDUAHJ+N1Kt/bQ78rkuWltTCS3w=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/eslint-module-utils/download/eslint-module-utils-2.7.1.tgz + } name: eslint-module-utils version: 2.7.1 - engines: {node: '>=4'} + engines: { node: '>=4' } dependencies: debug: registry.npmmirror.com/debug/3.2.7 find-up: registry.npmmirror.com/find-up/2.1.0 @@ -5173,7 +7971,12 @@ packages: dev: true registry.npmmirror.com/eslint-plugin-html/6.2.0: - resolution: {integrity: sha1-cVvAC1C70NmW4o+VPCiaXr7GnUM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-plugin-html/download/eslint-plugin-html-6.2.0.tgz} + resolution: + { + integrity: sha1-cVvAC1C70NmW4o+VPCiaXr7GnUM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/eslint-plugin-html/download/eslint-plugin-html-6.2.0.tgz + } name: eslint-plugin-html version: 6.2.0 dependencies: @@ -5181,11 +7984,16 @@ packages: dev: true registry.npmmirror.com/eslint-plugin-import/2.25.3_eslint@8.4.1: - resolution: {integrity: sha512-RzAVbby+72IB3iOEL8clzPLzL3wpDrlwjsTBAQXgyp5SeTqqY+0bFubwuo+y/HLhNZcXV4XqTBO4LGsfyHIDXg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-plugin-import/download/eslint-plugin-import-2.25.3.tgz?cache=0&sync_timestamp=1636530494800&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-plugin-import%2Fdownload%2Feslint-plugin-import-2.25.3.tgz} + resolution: + { + integrity: sha512-RzAVbby+72IB3iOEL8clzPLzL3wpDrlwjsTBAQXgyp5SeTqqY+0bFubwuo+y/HLhNZcXV4XqTBO4LGsfyHIDXg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/eslint-plugin-import/download/eslint-plugin-import-2.25.3.tgz?cache=0&sync_timestamp=1636530494800&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-plugin-import%2Fdownload%2Feslint-plugin-import-2.25.3.tgz + } id: registry.npmmirror.com/eslint-plugin-import/2.25.3 name: eslint-plugin-import version: 2.25.3 - engines: {node: '>=4'} + engines: { node: '>=4' } peerDependencies: eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 dependencies: @@ -5205,36 +8013,17 @@ packages: tsconfig-paths: registry.npmmirror.com/tsconfig-paths/3.12.0 dev: true - registry.npmmirror.com/eslint-plugin-jest/25.3.0_f5f36dc98a2ac4a880db61b9466462f9: - resolution: {integrity: sha512-79WQtuBsTN1S8Y9+7euBYwxIOia/k7ykkl9OCBHL3xuww5ecursHy/D8GCIlvzHVWv85gOkS5Kv6Sh7RxOgK1Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-plugin-jest/download/eslint-plugin-jest-25.3.0.tgz} - id: registry.npmmirror.com/eslint-plugin-jest/25.3.0 - name: eslint-plugin-jest - version: 25.3.0 - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - peerDependencies: - '@typescript-eslint/eslint-plugin': ^4.0.0 || ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - jest: '*' - peerDependenciesMeta: - '@typescript-eslint/eslint-plugin': - optional: true - jest: - optional: true - dependencies: - '@typescript-eslint/eslint-plugin': registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.6.0_16d83f5c41c3abb1061a82b07c18e4f3 - '@typescript-eslint/experimental-utils': registry.npmmirror.com/@typescript-eslint/experimental-utils/5.6.0_eslint@8.4.1+typescript@4.5.2 - eslint: registry.npmmirror.com/eslint/8.4.1 - transitivePeerDependencies: - - supports-color - - typescript - dev: true - registry.npmmirror.com/eslint-plugin-jsonc/2.0.0_eslint@8.4.1: - resolution: {integrity: sha1-Tj932mAk5jYYcnQAthqiqdOq6e4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-plugin-jsonc/download/eslint-plugin-jsonc-2.0.0.tgz} + resolution: + { + integrity: sha1-Tj932mAk5jYYcnQAthqiqdOq6e4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/eslint-plugin-jsonc/download/eslint-plugin-jsonc-2.0.0.tgz + } id: registry.npmmirror.com/eslint-plugin-jsonc/2.0.0 name: eslint-plugin-jsonc version: 2.0.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: '>=6.0.0' dependencies: @@ -5245,11 +8034,16 @@ packages: dev: true registry.npmmirror.com/eslint-plugin-prettier/4.0.0_90bd2ba582f6d1348d73031482d782e2: - resolution: {integrity: sha1-i5nR5LiySnYkcrRWeZICNhnLmOA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-plugin-prettier/download/eslint-plugin-prettier-4.0.0.tgz} + resolution: + { + integrity: sha1-i5nR5LiySnYkcrRWeZICNhnLmOA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/eslint-plugin-prettier/download/eslint-plugin-prettier-4.0.0.tgz + } id: registry.npmmirror.com/eslint-plugin-prettier/4.0.0 name: eslint-plugin-prettier version: 4.0.0 - engines: {node: '>=6.0.0'} + engines: { node: '>=6.0.0' } peerDependencies: eslint: '>=7.28.0' eslint-config-prettier: '*' @@ -5265,11 +8059,16 @@ packages: dev: true registry.npmmirror.com/eslint-plugin-promise/5.2.0_eslint@8.4.1: - resolution: {integrity: sha512-SftLb1pUG01QYq2A/hGAWfDRXqYD82zE7j7TopDOyNdU+7SvvoXREls/+PRTY17vUXzXnZA/zfnyKgRH6x4JJw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-plugin-promise/download/eslint-plugin-promise-5.2.0.tgz} + resolution: + { + integrity: sha512-SftLb1pUG01QYq2A/hGAWfDRXqYD82zE7j7TopDOyNdU+7SvvoXREls/+PRTY17vUXzXnZA/zfnyKgRH6x4JJw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/eslint-plugin-promise/download/eslint-plugin-promise-5.2.0.tgz + } id: registry.npmmirror.com/eslint-plugin-promise/5.2.0 name: eslint-plugin-promise version: 5.2.0 - engines: {node: ^10.12.0 || >=12.0.0} + engines: { node: ^10.12.0 || >=12.0.0 } peerDependencies: eslint: ^7.0.0 dependencies: @@ -5277,11 +8076,16 @@ packages: dev: true registry.npmmirror.com/eslint-plugin-react/7.27.1_eslint@8.4.1: - resolution: {integrity: sha512-meyunDjMMYeWr/4EBLTV1op3iSG3mjT/pz5gti38UzfM4OPpNc2m0t2xvKCOMU5D6FSdd34BIMFOvQbW+i8GAA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-plugin-react/download/eslint-plugin-react-7.27.1.tgz} + resolution: + { + integrity: sha512-meyunDjMMYeWr/4EBLTV1op3iSG3mjT/pz5gti38UzfM4OPpNc2m0t2xvKCOMU5D6FSdd34BIMFOvQbW+i8GAA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/eslint-plugin-react/download/eslint-plugin-react-7.27.1.tgz + } id: registry.npmmirror.com/eslint-plugin-react/7.27.1 name: eslint-plugin-react version: 7.27.1 - engines: {node: '>=4'} + engines: { node: '>=4' } peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: @@ -5303,11 +8107,16 @@ packages: dev: true registry.npmmirror.com/eslint-plugin-unicorn/39.0.0_eslint@8.4.1: - resolution: {integrity: sha512-fd5RK2FtYjGcIx3wra7csIE/wkkmBo22T1gZtRTsLr1Mb+KsFKJ+JOdSqhHXQUrI/JTs/Mon64cEYzTgSCbltw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-plugin-unicorn/download/eslint-plugin-unicorn-39.0.0.tgz} + resolution: + { + integrity: sha512-fd5RK2FtYjGcIx3wra7csIE/wkkmBo22T1gZtRTsLr1Mb+KsFKJ+JOdSqhHXQUrI/JTs/Mon64cEYzTgSCbltw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/eslint-plugin-unicorn/download/eslint-plugin-unicorn-39.0.0.tgz + } id: registry.npmmirror.com/eslint-plugin-unicorn/39.0.0 name: eslint-plugin-unicorn version: 39.0.0 - engines: {node: '>=12'} + engines: { node: '>=12' } peerDependencies: eslint: '>=7.32.0' dependencies: @@ -5332,11 +8141,16 @@ packages: dev: true registry.npmmirror.com/eslint-plugin-vue/8.1.1_eslint@8.4.1: - resolution: {integrity: sha512-rx64IrlhdfPya6u2V5ukOGiLCTgaCBdMSpczLVqyo8A0l+Vbo+lzvIfEUfAQ2auj+MF6y0TwxLorzdCIzHunnw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-plugin-vue/download/eslint-plugin-vue-8.1.1.tgz} + resolution: + { + integrity: sha512-rx64IrlhdfPya6u2V5ukOGiLCTgaCBdMSpczLVqyo8A0l+Vbo+lzvIfEUfAQ2auj+MF6y0TwxLorzdCIzHunnw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/eslint-plugin-vue/download/eslint-plugin-vue-8.1.1.tgz + } id: registry.npmmirror.com/eslint-plugin-vue/8.1.1 name: eslint-plugin-vue version: 8.1.1 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 dependencies: @@ -5350,11 +8164,16 @@ packages: dev: true registry.npmmirror.com/eslint-plugin-vue/8.2.0_eslint@8.4.1: - resolution: {integrity: sha512-cLIdTuOAMXyHeQ4drYKcZfoyzdwdBpH279X8/N0DgmotEI9yFKb5O/cAgoie/CkQZCH/MOmh0xw/KEfS90zY2A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-plugin-vue/download/eslint-plugin-vue-8.2.0.tgz} + resolution: + { + integrity: sha512-cLIdTuOAMXyHeQ4drYKcZfoyzdwdBpH279X8/N0DgmotEI9yFKb5O/cAgoie/CkQZCH/MOmh0xw/KEfS90zY2A==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/eslint-plugin-vue/download/eslint-plugin-vue-8.2.0.tgz + } id: registry.npmmirror.com/eslint-plugin-vue/8.2.0 name: eslint-plugin-vue version: 8.2.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 dependencies: @@ -5368,11 +8187,16 @@ packages: dev: true registry.npmmirror.com/eslint-plugin-yml/0.12.0_eslint@8.4.1: - resolution: {integrity: sha512-aS82M+diohZTusadiByzh/bKDrfi+Y6VBQkD3ym/7JH+KF9WUB9qKCizLfTaCACwtRrHpqaLz3G8GKmslshyiw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-plugin-yml/download/eslint-plugin-yml-0.12.0.tgz} + resolution: + { + integrity: sha512-aS82M+diohZTusadiByzh/bKDrfi+Y6VBQkD3ym/7JH+KF9WUB9qKCizLfTaCACwtRrHpqaLz3G8GKmslshyiw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/eslint-plugin-yml/download/eslint-plugin-yml-0.12.0.tgz + } id: registry.npmmirror.com/eslint-plugin-yml/0.12.0 name: eslint-plugin-yml version: 0.12.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: '>=6.0.0' dependencies: @@ -5386,61 +8210,96 @@ packages: dev: true registry.npmmirror.com/eslint-scope/5.1.1: - resolution: {integrity: sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-scope/download/eslint-scope-5.1.1.tgz} + resolution: + { + integrity: sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/eslint-scope/download/eslint-scope-5.1.1.tgz + } name: eslint-scope version: 5.1.1 - engines: {node: '>=8.0.0'} + engines: { node: '>=8.0.0' } dependencies: esrecurse: registry.nlark.com/esrecurse/4.3.0 estraverse: registry.npmmirror.com/estraverse/4.3.0 dev: true registry.npmmirror.com/eslint-scope/6.0.0: - resolution: {integrity: sha1-nPRbE8Wsjz1MUPRqUSH2Gz4xiXg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-scope/download/eslint-scope-6.0.0.tgz} + resolution: + { + integrity: sha1-nPRbE8Wsjz1MUPRqUSH2Gz4xiXg=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/eslint-scope/download/eslint-scope-6.0.0.tgz + } name: eslint-scope version: 6.0.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: esrecurse: registry.nlark.com/esrecurse/4.3.0 estraverse: registry.npmmirror.com/estraverse/5.3.0 dev: true registry.npmmirror.com/eslint-scope/7.1.0: - resolution: {integrity: sha512-aWwkhnS0qAXqNOgKOK0dJ2nvzEbhEvpy8OlJ9kZ0FeZnA6zpjv1/Vei+puGFFX7zkPCkHHXb7IDX3A+7yPrRWg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-scope/download/eslint-scope-7.1.0.tgz} + resolution: + { + integrity: sha512-aWwkhnS0qAXqNOgKOK0dJ2nvzEbhEvpy8OlJ9kZ0FeZnA6zpjv1/Vei+puGFFX7zkPCkHHXb7IDX3A+7yPrRWg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/eslint-scope/download/eslint-scope-7.1.0.tgz + } name: eslint-scope version: 7.1.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: esrecurse: registry.nlark.com/esrecurse/4.3.0 estraverse: registry.npmmirror.com/estraverse/5.3.0 dev: true registry.npmmirror.com/eslint-visitor-keys/1.3.0: - resolution: {integrity: sha1-MOvR73wv3/AcOk8VEESvJfqwUj4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz?cache=0&sync_timestamp=1636378498011&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-visitor-keys%2Fdownload%2Feslint-visitor-keys-1.3.0.tgz} + resolution: + { + integrity: sha1-MOvR73wv3/AcOk8VEESvJfqwUj4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz?cache=0&sync_timestamp=1636378498011&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-visitor-keys%2Fdownload%2Feslint-visitor-keys-1.3.0.tgz + } name: eslint-visitor-keys version: 1.3.0 - engines: {node: '>=4'} + engines: { node: '>=4' } dev: true registry.npmmirror.com/eslint-visitor-keys/2.1.0: - resolution: {integrity: sha1-9lMoJZMFknOSyTjtROsKXJsr0wM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-visitor-keys/download/eslint-visitor-keys-2.1.0.tgz?cache=0&sync_timestamp=1636378498011&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-visitor-keys%2Fdownload%2Feslint-visitor-keys-2.1.0.tgz} + resolution: + { + integrity: sha1-9lMoJZMFknOSyTjtROsKXJsr0wM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/eslint-visitor-keys/download/eslint-visitor-keys-2.1.0.tgz?cache=0&sync_timestamp=1636378498011&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Feslint-visitor-keys%2Fdownload%2Feslint-visitor-keys-2.1.0.tgz + } name: eslint-visitor-keys version: 2.1.0 - engines: {node: '>=10'} + engines: { node: '>=10' } dev: true registry.npmmirror.com/eslint-visitor-keys/3.1.0: - resolution: {integrity: sha512-yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-visitor-keys/download/eslint-visitor-keys-3.1.0.tgz} + resolution: + { + integrity: sha512-yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/eslint-visitor-keys/download/eslint-visitor-keys-3.1.0.tgz + } name: eslint-visitor-keys version: 3.1.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dev: true registry.npmmirror.com/eslint/7.32.0: - resolution: {integrity: sha1-xtMooUvj+wjI0dIeEsAv23oqgS0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint/download/eslint-7.32.0.tgz} + resolution: + { + integrity: sha1-xtMooUvj+wjI0dIeEsAv23oqgS0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/eslint/download/eslint-7.32.0.tgz + } name: eslint version: 7.32.0 - engines: {node: ^10.12.0 || >=12.0.0} + engines: { node: ^10.12.0 || >=12.0.0 } hasBin: true dependencies: '@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.12.11 @@ -5488,10 +8347,15 @@ packages: dev: true registry.npmmirror.com/eslint/8.4.1: - resolution: {integrity: sha512-TxU/p7LB1KxQ6+7aztTnO7K0i+h0tDi81YRY9VzB6Id71kNz+fFYnf5HD5UOQmxkzcoa0TlVZf9dpMtUv0GpWg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint/download/eslint-8.4.1.tgz} + resolution: + { + integrity: sha512-TxU/p7LB1KxQ6+7aztTnO7K0i+h0tDi81YRY9VzB6Id71kNz+fFYnf5HD5UOQmxkzcoa0TlVZf9dpMtUv0GpWg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/eslint/download/eslint-8.4.1.tgz + } name: eslint version: 8.4.1 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } hasBin: true dependencies: '@eslint/eslintrc': registry.npmmirror.com/@eslint/eslintrc/1.0.5 @@ -5537,10 +8401,15 @@ packages: dev: true registry.npmmirror.com/espree/7.3.1: - resolution: {integrity: sha1-8t8zC3Usb1UBn4vYm3ZgA5wbu7Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/espree/download/espree-7.3.1.tgz} + resolution: + { + integrity: sha1-8t8zC3Usb1UBn4vYm3ZgA5wbu7Y=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/espree/download/espree-7.3.1.tgz + } name: espree version: 7.3.1 - engines: {node: ^10.12.0 || >=12.0.0} + engines: { node: ^10.12.0 || >=12.0.0 } dependencies: acorn: registry.npmmirror.com/acorn/7.4.1 acorn-jsx: registry.nlark.com/acorn-jsx/5.3.2_acorn@7.4.1 @@ -5548,10 +8417,15 @@ packages: dev: true registry.npmmirror.com/espree/9.2.0: - resolution: {integrity: sha512-oP3utRkynpZWF/F2x/HZJ+AGtnIclaR7z1pYPxy7NYM2fSO6LgK/Rkny8anRSPK/VwEA1eqm2squui0T7ZMOBg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/espree/download/espree-9.2.0.tgz} + resolution: + { + integrity: sha512-oP3utRkynpZWF/F2x/HZJ+AGtnIclaR7z1pYPxy7NYM2fSO6LgK/Rkny8anRSPK/VwEA1eqm2squui0T7ZMOBg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/espree/download/espree-9.2.0.tgz + } name: espree version: 9.2.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: acorn: registry.npmmirror.com/acorn/8.6.0 acorn-jsx: registry.nlark.com/acorn-jsx/5.3.2_acorn@8.6.0 @@ -5559,24 +8433,39 @@ 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: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/estraverse/download/estraverse-4.3.0.tgz + } name: estraverse version: 4.3.0 - engines: {node: '>=4.0'} + engines: { node: '>=4.0' } dev: true registry.npmmirror.com/estraverse/5.3.0: - resolution: {integrity: sha1-LupSkHAvJquP5TcDcP+GyWXSESM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/estraverse/download/estraverse-5.3.0.tgz?cache=0&sync_timestamp=1635237901372&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Festraverse%2Fdownload%2Festraverse-5.3.0.tgz} + resolution: + { + integrity: sha1-LupSkHAvJquP5TcDcP+GyWXSESM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/estraverse/download/estraverse-5.3.0.tgz?cache=0&sync_timestamp=1635237901372&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Festraverse%2Fdownload%2Festraverse-5.3.0.tgz + } name: estraverse version: 5.3.0 - engines: {node: '>=4.0'} + engines: { node: '>=4.0' } dev: true registry.npmmirror.com/execa/4.1.0: - resolution: {integrity: sha1-TlSRrRVy8vF6d9OIxshXE1sihHo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/execa/download/execa-4.1.0.tgz?cache=0&sync_timestamp=1637148795580&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fexeca%2Fdownload%2Fexeca-4.1.0.tgz} + resolution: + { + integrity: sha1-TlSRrRVy8vF6d9OIxshXE1sihHo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/execa/download/execa-4.1.0.tgz?cache=0&sync_timestamp=1637148795580&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fexeca%2Fdownload%2Fexeca-4.1.0.tgz + } name: execa version: 4.1.0 - engines: {node: '>=10'} + engines: { node: '>=10' } dependencies: cross-spawn: registry.nlark.com/cross-spawn/7.0.3 get-stream: registry.nlark.com/get-stream/5.2.0 @@ -5590,10 +8479,15 @@ packages: dev: true registry.npmmirror.com/execa/5.1.1: - resolution: {integrity: sha1-+ArZy/Qpj3vR1MlVXCHpN0HEEd0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/execa/download/execa-5.1.1.tgz?cache=0&sync_timestamp=1637148795580&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fexeca%2Fdownload%2Fexeca-5.1.1.tgz} + resolution: + { + integrity: sha1-+ArZy/Qpj3vR1MlVXCHpN0HEEd0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/execa/download/execa-5.1.1.tgz?cache=0&sync_timestamp=1637148795580&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fexeca%2Fdownload%2Fexeca-5.1.1.tgz + } name: execa version: 5.1.1 - engines: {node: '>=10'} + engines: { node: '>=10' } dependencies: cross-spawn: registry.nlark.com/cross-spawn/7.0.3 get-stream: registry.nlark.com/get-stream/6.0.1 @@ -5607,39 +8501,59 @@ packages: dev: true registry.npmmirror.com/find-up/2.1.0: - resolution: {integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/find-up/download/find-up-2.1.0.tgz?cache=0&sync_timestamp=1633619099767&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffind-up%2Fdownload%2Ffind-up-2.1.0.tgz} + resolution: + { + integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/find-up/download/find-up-2.1.0.tgz?cache=0&sync_timestamp=1633619099767&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ffind-up%2Fdownload%2Ffind-up-2.1.0.tgz + } name: find-up version: 2.1.0 - engines: {node: '>=4'} + engines: { node: '>=4' } dependencies: locate-path: registry.nlark.com/locate-path/2.0.0 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} + 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 + } name: find-up version: 4.1.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: locate-path: registry.nlark.com/locate-path/5.0.0 path-exists: registry.nlark.com/path-exists/4.0.0 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} + 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 + } name: find-up version: 5.0.0 - engines: {node: '>=10'} + engines: { node: '>=10' } dependencies: locate-path: registry.nlark.com/locate-path/6.0.0 path-exists: registry.nlark.com/path-exists/4.0.0 dev: true registry.npmmirror.com/findup-sync/4.0.0: - resolution: {integrity: sha1-lWyc3egEBSuIG0KFEpBcSl8s3vA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/findup-sync/download/findup-sync-4.0.0.tgz} + resolution: + { + integrity: sha1-lWyc3egEBSuIG0KFEpBcSl8s3vA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/findup-sync/download/findup-sync-4.0.0.tgz + } name: findup-sync version: 4.0.0 - engines: {node: '>= 8'} + engines: { node: '>= 8' } dependencies: detect-file: registry.nlark.com/detect-file/1.0.0 is-glob: registry.npmmirror.com/is-glob/4.0.3 @@ -5648,47 +8562,77 @@ packages: dev: true registry.npmmirror.com/flatted/3.2.4: - resolution: {integrity: sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/flatted/download/flatted-3.2.4.tgz} + resolution: + { + integrity: sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/flatted/download/flatted-3.2.4.tgz + } name: flatted version: 3.2.4 dev: true registry.npmmirror.com/fraction.js/4.1.2: - resolution: {integrity: sha512-o2RiJQ6DZaR/5+Si0qJUIy637QMRudSi9kU/FFzx9EZazrIdnBgpU+3sEWCxAVhH2RtxW2Oz+T4p2o8uOPVcgA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fraction.js/download/fraction.js-4.1.2.tgz} + resolution: + { + integrity: sha512-o2RiJQ6DZaR/5+Si0qJUIy637QMRudSi9kU/FFzx9EZazrIdnBgpU+3sEWCxAVhH2RtxW2Oz+T4p2o8uOPVcgA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/fraction.js/download/fraction.js-4.1.2.tgz + } name: fraction.js version: 4.1.2 dev: true registry.npmmirror.com/fsevents/2.3.2: - resolution: {integrity: sha1-ilJveLj99GI7cJ4Ll1xSwkwC/Ro=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fsevents/download/fsevents-2.3.2.tgz} + resolution: + { + integrity: sha1-ilJveLj99GI7cJ4Ll1xSwkwC/Ro=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.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} + engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } os: [darwin] requiresBuild: true dev: true optional: 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: https://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'} + engines: { node: '>= 6' } dependencies: is-glob: registry.npmmirror.com/is-glob/4.0.3 dev: true registry.npmmirror.com/glob-parent/6.0.2: - resolution: {integrity: sha1-bSN9mQg5UMeSkPJMdkKj3poo+eM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/glob-parent/download/glob-parent-6.0.2.tgz} + resolution: + { + integrity: sha1-bSN9mQg5UMeSkPJMdkKj3poo+eM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/glob-parent/download/glob-parent-6.0.2.tgz + } name: glob-parent version: 6.0.2 - engines: {node: '>=10.13.0'} + engines: { node: '>=10.13.0' } dependencies: is-glob: registry.npmmirror.com/is-glob/4.0.3 dev: true registry.npmmirror.com/glob/7.1.4: - resolution: {integrity: sha1-qmCKL2xXetNX4a5aXCbZqNGWklU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/glob/download/glob-7.1.4.tgz} + resolution: + { + integrity: sha1-qmCKL2xXetNX4a5aXCbZqNGWklU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/glob/download/glob-7.1.4.tgz + } name: glob version: 7.1.4 dependencies: @@ -5701,7 +8645,12 @@ packages: dev: true registry.npmmirror.com/glob/7.2.0: - resolution: {integrity: sha1-0VU1r3cy4C6Uj0xBYovZECk/YCM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/glob/download/glob-7.2.0.tgz} + resolution: + { + integrity: sha1-0VU1r3cy4C6Uj0xBYovZECk/YCM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/glob/download/glob-7.2.0.tgz + } name: glob version: 7.2.0 dependencies: @@ -5714,29 +8663,49 @@ packages: dev: true registry.npmmirror.com/globals/11.12.0: - resolution: {integrity: sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/globals/download/globals-11.12.0.tgz?cache=0&sync_timestamp=1635390852153&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fglobals%2Fdownload%2Fglobals-11.12.0.tgz} + resolution: + { + integrity: sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/globals/download/globals-11.12.0.tgz?cache=0&sync_timestamp=1635390852153&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fglobals%2Fdownload%2Fglobals-11.12.0.tgz + } name: globals version: 11.12.0 - engines: {node: '>=4'} + engines: { node: '>=4' } dev: true registry.npmmirror.com/globals/13.12.0: - resolution: {integrity: sha1-TXM3YDBCMKAILtluIeXFZfiYCJ4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/globals/download/globals-13.12.0.tgz?cache=0&sync_timestamp=1635390852153&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fglobals%2Fdownload%2Fglobals-13.12.0.tgz} + resolution: + { + integrity: sha1-TXM3YDBCMKAILtluIeXFZfiYCJ4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/globals/download/globals-13.12.0.tgz?cache=0&sync_timestamp=1635390852153&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fglobals%2Fdownload%2Fglobals-13.12.0.tgz + } name: globals version: 13.12.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: type-fest: registry.npmmirror.com/type-fest/0.20.2 dev: true registry.npmmirror.com/graceful-fs/4.2.8: - resolution: {integrity: sha1-5BK40z9eAGWTy9PO5t+fLOu+gCo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/graceful-fs/download/graceful-fs-4.2.8.tgz} + resolution: + { + integrity: sha1-5BK40z9eAGWTy9PO5t+fLOu+gCo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/graceful-fs/download/graceful-fs-4.2.8.tgz + } name: graceful-fs version: 4.2.8 dev: true registry.npmmirror.com/htmlparser2/6.1.0: - resolution: {integrity: sha1-xNditsM3GgXb5l6UrkOp+EX7j7c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/htmlparser2/download/htmlparser2-6.1.0.tgz} + resolution: + { + integrity: sha1-xNditsM3GgXb5l6UrkOp+EX7j7c=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/htmlparser2/download/htmlparser2-6.1.0.tgz?cache=0&sync_timestamp=1636641904600&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fhtmlparser2%2Fdownload%2Fhtmlparser2-6.1.0.tgz + } name: htmlparser2 version: 6.1.0 dependencies: @@ -5747,7 +8716,12 @@ packages: dev: true registry.npmmirror.com/htmlparser2/7.2.0: - resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/htmlparser2/download/htmlparser2-7.2.0.tgz} + resolution: + { + integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/htmlparser2/download/htmlparser2-7.2.0.tgz?cache=0&sync_timestamp=1636641904600&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fhtmlparser2%2Fdownload%2Fhtmlparser2-7.2.0.tgz + } name: htmlparser2 version: 7.2.0 dependencies: @@ -5758,29 +8732,49 @@ packages: dev: true registry.npmmirror.com/husky/7.0.4: - resolution: {integrity: sha1-JCBIJF3EnI+xvwzHz7mN1yJTFTU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/husky/download/husky-7.0.4.tgz} + resolution: + { + integrity: sha1-JCBIJF3EnI+xvwzHz7mN1yJTFTU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/husky/download/husky-7.0.4.tgz + } name: husky version: 7.0.4 - engines: {node: '>=12'} + engines: { node: '>=12' } hasBin: true dev: true registry.npmmirror.com/ignore/4.0.6: - resolution: {integrity: sha1-dQ49tYYgh7RzfrrIIH/9HvJ7Jfw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ignore/download/ignore-4.0.6.tgz?cache=0&sync_timestamp=1635927263218&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fignore%2Fdownload%2Fignore-4.0.6.tgz} + resolution: + { + integrity: sha1-dQ49tYYgh7RzfrrIIH/9HvJ7Jfw=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/ignore/download/ignore-4.0.6.tgz?cache=0&sync_timestamp=1635927263218&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fignore%2Fdownload%2Fignore-4.0.6.tgz + } name: ignore version: 4.0.6 - engines: {node: '>= 4'} + engines: { node: '>= 4' } dev: true registry.npmmirror.com/ignore/5.1.9: - resolution: {integrity: sha1-nsGly+jhRG7GDUQgBg1Dqm5zgvs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ignore/download/ignore-5.1.9.tgz?cache=0&sync_timestamp=1635927263218&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fignore%2Fdownload%2Fignore-5.1.9.tgz} + resolution: + { + integrity: sha1-nsGly+jhRG7GDUQgBg1Dqm5zgvs=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/ignore/download/ignore-5.1.9.tgz?cache=0&sync_timestamp=1635927263218&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fignore%2Fdownload%2Fignore-5.1.9.tgz + } name: ignore version: 5.1.9 - engines: {node: '>= 4'} + engines: { node: '>= 4' } 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: https://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: @@ -5788,10 +8782,15 @@ packages: dev: true registry.npmmirror.com/inquirer/6.5.2: - resolution: {integrity: sha1-rVCUI3XQNtMn/1KMCL1fqwiZKMo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/inquirer/download/inquirer-6.5.2.tgz} + resolution: + { + integrity: sha1-rVCUI3XQNtMn/1KMCL1fqwiZKMo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/inquirer/download/inquirer-6.5.2.tgz + } name: inquirer version: 6.5.2 - engines: {node: '>=6.0.0'} + engines: { node: '>=6.0.0' } dependencies: ansi-escapes: registry.nlark.com/ansi-escapes/3.2.0 chalk: registry.npmmirror.com/chalk/2.4.2 @@ -5809,7 +8808,12 @@ packages: dev: true registry.npmmirror.com/is-core-module/2.8.0: - resolution: {integrity: sha1-AyEzbD0JJeSX/Zf12VyxFKXM1Ug=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-core-module/download/is-core-module-2.8.0.tgz} + resolution: + { + integrity: sha1-AyEzbD0JJeSX/Zf12VyxFKXM1Ug=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/is-core-module/download/is-core-module-2.8.0.tgz + } name: is-core-module version: 2.8.0 dependencies: @@ -5817,22 +8821,37 @@ packages: dev: true registry.npmmirror.com/is-glob/4.0.3: - resolution: {integrity: sha1-ZPYeQsu7LuwgcanawLKLoeZdUIQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-glob/download/is-glob-4.0.3.tgz} + resolution: + { + integrity: sha1-ZPYeQsu7LuwgcanawLKLoeZdUIQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/is-glob/download/is-glob-4.0.3.tgz + } name: is-glob version: 4.0.3 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } dependencies: is-extglob: registry.nlark.com/is-extglob/2.1.1 dev: true registry.npmmirror.com/is-shared-array-buffer/1.0.1: - resolution: {integrity: sha1-l7DIX72stZycRG/mU7gs8rW3z+Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-shared-array-buffer/download/is-shared-array-buffer-1.0.1.tgz} + resolution: + { + integrity: sha1-l7DIX72stZycRG/mU7gs8rW3z+Y=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/is-shared-array-buffer/download/is-shared-array-buffer-1.0.1.tgz + } name: is-shared-array-buffer version: 1.0.1 dev: true registry.npmmirror.com/is-weakref/1.0.1: - resolution: {integrity: sha1-hC26TsF/qayYUN8tbvvBc3J08qI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-weakref/download/is-weakref-1.0.1.tgz} + resolution: + { + integrity: sha1-hC26TsF/qayYUN8tbvvBc3J08qI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/is-weakref/download/is-weakref-1.0.1.tgz + } name: is-weakref version: 1.0.1 dependencies: @@ -5840,24 +8859,39 @@ packages: dev: true registry.npmmirror.com/is-what/3.14.1: - resolution: {integrity: sha1-4SIvRt3ahd6tD9HJ3xMXYOd3VcE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-what/download/is-what-3.14.1.tgz} + resolution: + { + integrity: sha1-4SIvRt3ahd6tD9HJ3xMXYOd3VcE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/is-what/download/is-what-3.14.1.tgz + } name: is-what version: 3.14.1 dev: true registry.npmmirror.com/jiti/1.12.9: - resolution: {integrity: sha1-LORbJlz8jckevXClIEgHz5FSkbw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jiti/download/jiti-1.12.9.tgz} + resolution: + { + integrity: sha1-LORbJlz8jckevXClIEgHz5FSkbw=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/jiti/download/jiti-1.12.9.tgz + } name: jiti version: 1.12.9 hasBin: true dev: true registry.npmmirror.com/jsonc-eslint-parser/2.0.4_eslint@8.4.1: - resolution: {integrity: sha512-a3ZRus4qea0tSRCW2qvF/spFt7iCpdeJbiDjxbFZRZ87JCF8sI8hbxpVvUBVyZ3fLB/RQnTi+Y/yZbMlqt1BCg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsonc-eslint-parser/download/jsonc-eslint-parser-2.0.4.tgz} + resolution: + { + integrity: sha512-a3ZRus4qea0tSRCW2qvF/spFt7iCpdeJbiDjxbFZRZ87JCF8sI8hbxpVvUBVyZ3fLB/RQnTi+Y/yZbMlqt1BCg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/jsonc-eslint-parser/download/jsonc-eslint-parser-2.0.4.tgz + } id: registry.npmmirror.com/jsonc-eslint-parser/2.0.4 name: jsonc-eslint-parser version: 2.0.4 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: acorn: registry.npmmirror.com/acorn/8.6.0 eslint-utils: registry.nlark.com/eslint-utils/3.0.0_eslint@8.4.1 @@ -5869,10 +8903,15 @@ packages: dev: true registry.npmmirror.com/less/4.1.2: - resolution: {integrity: sha1-YJnuWEmZdQwmJLZfgBRfhnTktLA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/less/download/less-4.1.2.tgz} + resolution: + { + integrity: sha1-YJnuWEmZdQwmJLZfgBRfhnTktLA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/less/download/less-4.1.2.tgz + } name: less version: 4.1.2 - engines: {node: '>=6'} + engines: { node: '>=6' } hasBin: true dependencies: copy-anything: registry.nlark.com/copy-anything/2.0.3 @@ -5889,23 +8928,38 @@ packages: dev: true registry.npmmirror.com/lilconfig/2.0.4: - resolution: {integrity: sha1-9FB9BD1wWLOAtqj1y3vNSzTO4II=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lilconfig/download/lilconfig-2.0.4.tgz} + resolution: + { + integrity: sha1-9FB9BD1wWLOAtqj1y3vNSzTO4II=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/lilconfig/download/lilconfig-2.0.4.tgz + } name: lilconfig version: 2.0.4 - engines: {node: '>=10'} + engines: { node: '>=10' } dev: true registry.npmmirror.com/lines-and-columns/1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lines-and-columns/download/lines-and-columns-1.2.4.tgz} + resolution: + { + integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/lines-and-columns/download/lines-and-columns-1.2.4.tgz + } name: lines-and-columns version: 1.2.4 dev: true registry.npmmirror.com/lint-staged/12.1.2: - resolution: {integrity: sha512-bSMcQVqMW98HLLLR2c2tZ+vnDCnx4fd+0QJBQgN/4XkdspGRPc8DGp7UuOEBe1ApCfJ+wXXumYnJmU+wDo7j9A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lint-staged/download/lint-staged-12.1.2.tgz} + resolution: + { + integrity: sha512-bSMcQVqMW98HLLLR2c2tZ+vnDCnx4fd+0QJBQgN/4XkdspGRPc8DGp7UuOEBe1ApCfJ+wXXumYnJmU+wDo7j9A==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/lint-staged/download/lint-staged-12.1.2.tgz + } name: lint-staged version: 12.1.2 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } hasBin: true dependencies: cli-truncate: registry.npmmirror.com/cli-truncate/3.1.0 @@ -5925,11 +8979,16 @@ packages: dev: true registry.npmmirror.com/listr2/3.13.5_enquirer@2.3.6: - resolution: {integrity: sha512-3n8heFQDSk+NcwBn3CgxEibZGaRzx+pC64n3YjpMD1qguV4nWus3Al+Oo3KooqFKTQEJ1v7MmnbnyyNspgx3NA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/listr2/download/listr2-3.13.5.tgz} + resolution: + { + integrity: sha512-3n8heFQDSk+NcwBn3CgxEibZGaRzx+pC64n3YjpMD1qguV4nWus3Al+Oo3KooqFKTQEJ1v7MmnbnyyNspgx3NA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/listr2/download/listr2-3.13.5.tgz + } id: registry.npmmirror.com/listr2/3.13.5 name: listr2 version: 3.13.5 - engines: {node: '>=10.0.0'} + engines: { node: '>=10.0.0' } peerDependencies: enquirer: '>= 2.3.0 < 3' peerDependenciesMeta: @@ -5948,19 +9007,29 @@ 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: https://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'} + engines: { node: '>=14' } dependencies: mlly: registry.npmmirror.com/mlly/0.2.10 dev: true registry.npmmirror.com/log-update/4.0.0: - resolution: {integrity: sha1-WJ7NNSRx8qHAxXAodUOmTf0g4KE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/log-update/download/log-update-4.0.0.tgz?cache=0&sync_timestamp=1634543461511&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Flog-update%2Fdownload%2Flog-update-4.0.0.tgz} + resolution: + { + integrity: sha1-WJ7NNSRx8qHAxXAodUOmTf0g4KE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/log-update/download/log-update-4.0.0.tgz?cache=0&sync_timestamp=1634543461511&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Flog-update%2Fdownload%2Flog-update-4.0.0.tgz + } name: log-update version: 4.0.0 - engines: {node: '>=10'} + engines: { node: '>=10' } dependencies: ansi-escapes: registry.nlark.com/ansi-escapes/4.3.2 cli-cursor: registry.nlark.com/cli-cursor/3.1.0 @@ -5969,30 +9038,50 @@ packages: dev: true registry.npmmirror.com/map-obj/1.0.1: - resolution: {integrity: sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/map-obj/download/map-obj-1.0.1.tgz} + resolution: + { + integrity: sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=, + registry: https://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'} + engines: { node: '>=0.10.0' } dev: true registry.npmmirror.com/map-obj/4.3.0: - resolution: {integrity: sha1-kwT5Buk/qucIgNoQKp8d8OqLsFo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/map-obj/download/map-obj-4.3.0.tgz} + resolution: + { + integrity: sha1-kwT5Buk/qucIgNoQKp8d8OqLsFo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/map-obj/download/map-obj-4.3.0.tgz + } name: map-obj version: 4.3.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dev: true registry.npmmirror.com/mathml-tag-names/2.1.3: - resolution: {integrity: sha1-TdrdZzCOeAzxakdoWHjuJ7c2oKM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mathml-tag-names/download/mathml-tag-names-2.1.3.tgz} + resolution: + { + integrity: sha1-TdrdZzCOeAzxakdoWHjuJ7c2oKM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/mathml-tag-names/download/mathml-tag-names-2.1.3.tgz + } name: mathml-tag-names version: 2.1.3 dev: true registry.npmmirror.com/meow/8.1.2: - resolution: {integrity: sha1-vL5FvaDuFynTUMA8/8g5WjbE6Jc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/meow/download/meow-8.1.2.tgz?cache=0&sync_timestamp=1637477768342&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmeow%2Fdownload%2Fmeow-8.1.2.tgz} + resolution: + { + integrity: sha1-vL5FvaDuFynTUMA8/8g5WjbE6Jc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/meow/download/meow-8.1.2.tgz?cache=0&sync_timestamp=1637477768342&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmeow%2Fdownload%2Fmeow-8.1.2.tgz + } name: meow version: 8.1.2 - engines: {node: '>=10'} + engines: { node: '>=10' } dependencies: '@types/minimist': registry.npmmirror.com/@types/minimist/1.2.2 camelcase-keys: registry.npmmirror.com/camelcase-keys/6.2.2 @@ -6008,10 +9097,15 @@ packages: dev: true registry.npmmirror.com/meow/9.0.0: - resolution: {integrity: sha1-zZUQvFysne59A8c+4fmtlZ9Oo2Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/meow/download/meow-9.0.0.tgz?cache=0&sync_timestamp=1637477768342&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmeow%2Fdownload%2Fmeow-9.0.0.tgz} + resolution: + { + integrity: sha1-zZUQvFysne59A8c+4fmtlZ9Oo2Q=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/meow/download/meow-9.0.0.tgz?cache=0&sync_timestamp=1637477768342&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fmeow%2Fdownload%2Fmeow-9.0.0.tgz + } name: meow version: 9.0.0 - engines: {node: '>=10'} + engines: { node: '>=10' } dependencies: '@types/minimist': registry.npmmirror.com/@types/minimist/1.2.2 camelcase-keys: registry.npmmirror.com/camelcase-keys/6.2.2 @@ -6028,17 +9122,27 @@ packages: dev: true registry.npmmirror.com/mime/1.6.0: - resolution: {integrity: sha1-Ms2eXGRVO9WNGaVor0Uqz/BJgbE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mime/download/mime-1.6.0.tgz} + resolution: + { + integrity: sha1-Ms2eXGRVO9WNGaVor0Uqz/BJgbE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/mime/download/mime-1.6.0.tgz + } name: mime version: 1.6.0 - engines: {node: '>=4'} + engines: { node: '>=4' } hasBin: true requiresBuild: true dev: true optional: true registry.npmmirror.com/mlly/0.2.10: - resolution: {integrity: sha1-ZFkCyXYdxrXe0XS45xcUf+UuSJM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mlly/download/mlly-0.2.10.tgz} + resolution: + { + integrity: sha1-ZFkCyXYdxrXe0XS45xcUf+UuSJM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/mlly/download/mlly-0.2.10.tgz + } name: mlly version: 0.2.10 dependencies: @@ -6046,22 +9150,37 @@ packages: dev: true registry.npmmirror.com/ms/2.0.0: - resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz?cache=0&sync_timestamp=1632788710719&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fms%2Fdownload%2Fms-2.0.0.tgz} + resolution: + { + integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/ms/download/ms-2.0.0.tgz?cache=0&sync_timestamp=1632788710719&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fms%2Fdownload%2Fms-2.0.0.tgz + } name: ms version: 2.0.0 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: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/ms/download/ms-2.1.2.tgz + } name: ms version: 2.1.2 dev: true registry.npmmirror.com/multimatch/4.0.0: - resolution: {integrity: sha1-jDwPbj6ESa2grz3SnvtJGjdRkbM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/multimatch/download/multimatch-4.0.0.tgz} + resolution: + { + integrity: sha1-jDwPbj6ESa2grz3SnvtJGjdRkbM=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/multimatch/download/multimatch-4.0.0.tgz + } name: multimatch version: 4.0.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: '@types/minimatch': registry.npmmirror.com/@types/minimatch/3.0.5 array-differ: registry.nlark.com/array-differ/3.0.0 @@ -6071,38 +9190,63 @@ packages: dev: true registry.npmmirror.com/nanoid/3.1.30: - resolution: {integrity: sha1-Y/k8xUjSoRPcXfvGO/oJ4rm2Q2I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/nanoid/download/nanoid-3.1.30.tgz?cache=0&sync_timestamp=1634176297559&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fnanoid%2Fdownload%2Fnanoid-3.1.30.tgz} + resolution: + { + integrity: sha1-Y/k8xUjSoRPcXfvGO/oJ4rm2Q2I=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/nanoid/download/nanoid-3.1.30.tgz?cache=0&sync_timestamp=1634176297559&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fnanoid%2Fdownload%2Fnanoid-3.1.30.tgz + } name: nanoid version: 3.1.30 - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } hasBin: true registry.npmmirror.com/node-releases/2.0.1: - resolution: {integrity: sha1-PR05XyBPHy8ppUNYuftnh2WtL8U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-releases/download/node-releases-2.0.1.tgz?cache=0&sync_timestamp=1634807140363&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fnode-releases%2Fdownload%2Fnode-releases-2.0.1.tgz} + resolution: + { + integrity: sha1-PR05XyBPHy8ppUNYuftnh2WtL8U=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/node-releases/download/node-releases-2.0.1.tgz?cache=0&sync_timestamp=1634807140363&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fnode-releases%2Fdownload%2Fnode-releases-2.0.1.tgz + } name: node-releases version: 2.0.1 dev: true registry.npmmirror.com/npm-run-path/4.0.1: - resolution: {integrity: sha1-t+zR5e1T2o43pV4cImnguX7XSOo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/npm-run-path/download/npm-run-path-4.0.1.tgz?cache=0&sync_timestamp=1633420537317&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fnpm-run-path%2Fdownload%2Fnpm-run-path-4.0.1.tgz} + resolution: + { + integrity: sha1-t+zR5e1T2o43pV4cImnguX7XSOo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/npm-run-path/download/npm-run-path-4.0.1.tgz?cache=0&sync_timestamp=1633420537317&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fnpm-run-path%2Fdownload%2Fnpm-run-path-4.0.1.tgz + } name: npm-run-path version: 4.0.1 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: path-key: registry.nlark.com/path-key/3.1.1 dev: true registry.npmmirror.com/object-inspect/1.11.1: - resolution: {integrity: sha512-If7BjFlpkzzBeV1cqgT3OSWT3azyoxDGajR+iGnFBfVV2EWyDyWaZZW2ERDjUaY2QM8i5jI3Sj7mhsM4DDAqWA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object-inspect/download/object-inspect-1.11.1.tgz} + resolution: + { + integrity: sha512-If7BjFlpkzzBeV1cqgT3OSWT3azyoxDGajR+iGnFBfVV2EWyDyWaZZW2ERDjUaY2QM8i5jI3Sj7mhsM4DDAqWA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/object-inspect/download/object-inspect-1.11.1.tgz + } name: object-inspect version: 1.11.1 dev: true registry.npmmirror.com/object.entries/1.1.5: - resolution: {integrity: sha1-4azdF8TeLNltWghIfPuduE2IGGE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object.entries/download/object.entries-1.1.5.tgz} + resolution: + { + integrity: sha1-4azdF8TeLNltWghIfPuduE2IGGE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/object.entries/download/object.entries-1.1.5.tgz + } name: object.entries version: 1.1.5 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dependencies: call-bind: registry.nlark.com/call-bind/1.0.2 define-properties: registry.nlark.com/define-properties/1.1.3 @@ -6110,10 +9254,15 @@ packages: dev: true registry.npmmirror.com/object.fromentries/2.0.5: - resolution: {integrity: sha1-ezeyBRCcIedB5gVyf+iwrV+gglE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object.fromentries/download/object.fromentries-2.0.5.tgz} + resolution: + { + integrity: sha1-ezeyBRCcIedB5gVyf+iwrV+gglE=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/object.fromentries/download/object.fromentries-2.0.5.tgz + } name: object.fromentries version: 2.0.5 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dependencies: call-bind: registry.nlark.com/call-bind/1.0.2 define-properties: registry.nlark.com/define-properties/1.1.3 @@ -6121,7 +9270,12 @@ packages: dev: true registry.npmmirror.com/object.hasown/1.1.0: - resolution: {integrity: sha1-cjLtJm800ZfRXKxYgCMvekeQr+U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object.hasown/download/object.hasown-1.1.0.tgz?cache=0&sync_timestamp=1633321808938&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fobject.hasown%2Fdownload%2Fobject.hasown-1.1.0.tgz} + resolution: + { + integrity: sha1-cjLtJm800ZfRXKxYgCMvekeQr+U=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/object.hasown/download/object.hasown-1.1.0.tgz?cache=0&sync_timestamp=1633321808938&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fobject.hasown%2Fdownload%2Fobject.hasown-1.1.0.tgz + } name: object.hasown version: 1.1.0 dependencies: @@ -6130,10 +9284,15 @@ packages: dev: true registry.npmmirror.com/object.values/1.1.5: - resolution: {integrity: sha1-lZ9j486e8QhyAzMIITHkpFm3Fqw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object.values/download/object.values-1.1.5.tgz} + resolution: + { + integrity: sha1-lZ9j486e8QhyAzMIITHkpFm3Fqw=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/object.values/download/object.values-1.1.5.tgz + } name: object.values version: 1.1.5 - engines: {node: '>= 0.4'} + engines: { node: '>= 0.4' } dependencies: call-bind: registry.nlark.com/call-bind/1.0.2 define-properties: registry.nlark.com/define-properties/1.1.3 @@ -6141,42 +9300,67 @@ packages: dev: true registry.npmmirror.com/p-map/4.0.0: - resolution: {integrity: sha1-uy+Vpe2i7BaOySdOBqdHw+KQTSs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-map/download/p-map-4.0.0.tgz?cache=0&sync_timestamp=1635932063287&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fp-map%2Fdownload%2Fp-map-4.0.0.tgz} + resolution: + { + integrity: sha1-uy+Vpe2i7BaOySdOBqdHw+KQTSs=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/p-map/download/p-map-4.0.0.tgz?cache=0&sync_timestamp=1635932063287&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fp-map%2Fdownload%2Fp-map-4.0.0.tgz + } name: p-map version: 4.0.0 - engines: {node: '>=10'} + engines: { node: '>=10' } dependencies: aggregate-error: registry.nlark.com/aggregate-error/3.1.0 dev: true registry.npmmirror.com/p-try/1.0.0: - resolution: {integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-try/download/p-try-1.0.0.tgz?cache=0&sync_timestamp=1633367752239&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fp-try%2Fdownload%2Fp-try-1.0.0.tgz} + resolution: + { + integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/p-try/download/p-try-1.0.0.tgz?cache=0&sync_timestamp=1633367752239&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fp-try%2Fdownload%2Fp-try-1.0.0.tgz + } name: p-try version: 1.0.0 - engines: {node: '>=4'} + engines: { node: '>=4' } 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: 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 + } name: p-try version: 2.2.0 - engines: {node: '>=6'} + engines: { node: '>=6' } dev: true registry.npmmirror.com/parent-module/1.0.1: - resolution: {integrity: sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/parent-module/download/parent-module-1.0.1.tgz?cache=0&sync_timestamp=1633337707726&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fparent-module%2Fdownload%2Fparent-module-1.0.1.tgz} + resolution: + { + integrity: sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/parent-module/download/parent-module-1.0.1.tgz?cache=0&sync_timestamp=1633337707726&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fparent-module%2Fdownload%2Fparent-module-1.0.1.tgz + } name: parent-module version: 1.0.1 - engines: {node: '>=6'} + engines: { node: '>=6' } dependencies: callsites: registry.nlark.com/callsites/3.1.0 dev: true registry.npmmirror.com/parse-json/5.2.0: - resolution: {integrity: sha1-x2/Gbe5UIxyWKyK8yKcs8vmXU80=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/parse-json/download/parse-json-5.2.0.tgz} + resolution: + { + integrity: sha1-x2/Gbe5UIxyWKyK8yKcs8vmXU80=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/parse-json/download/parse-json-5.2.0.tgz + } name: parse-json version: 5.2.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: '@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.16.0 error-ex: registry.nlark.com/error-ex/1.3.2 @@ -6185,28 +9369,64 @@ packages: dev: true registry.npmmirror.com/parse-node-version/1.0.1: - resolution: {integrity: sha1-4rXb7eAOf6m8NjYH9TMn6LBzGJs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/parse-node-version/download/parse-node-version-1.0.1.tgz} + resolution: + { + integrity: sha1-4rXb7eAOf6m8NjYH9TMn6LBzGJs=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/parse-node-version/download/parse-node-version-1.0.1.tgz + } name: parse-node-version version: 1.0.1 - engines: {node: '>= 0.10'} + engines: { node: '>= 0.10' } dev: true registry.npmmirror.com/picocolors/1.0.0: - resolution: {integrity: sha1-y1vcdP8/UYkiNur3nWi8RFZKuBw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/picocolors/download/picocolors-1.0.0.tgz} + resolution: + { + integrity: sha1-y1vcdP8/UYkiNur3nWi8RFZKuBw=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/picocolors/download/picocolors-1.0.0.tgz + } name: picocolors version: 1.0.0 registry.npmmirror.com/pkg-dir/2.0.0: - resolution: {integrity: sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pkg-dir/download/pkg-dir-2.0.0.tgz} + resolution: + { + integrity: sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/pkg-dir/download/pkg-dir-2.0.0.tgz + } name: pkg-dir version: 2.0.0 - engines: {node: '>=4'} + engines: { node: '>=4' } dependencies: find-up: registry.npmmirror.com/find-up/2.1.0 dev: true + registry.npmmirror.com/postcss-html/1.3.0: + resolution: + { + integrity: sha512-ewbwd7OGW4dLsErtvZH9HpVMEcXnlhYSzKsr7MepGlOT8imHTIZ/+pdfEruLS+hTYapLTQAWDnoQcJpsYU4uRw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/postcss-html/download/postcss-html-1.3.0.tgz + } + name: postcss-html + version: 1.3.0 + engines: { node: ^12 || >=14 } + dependencies: + htmlparser2: registry.npmmirror.com/htmlparser2/7.2.0 + postcss: registry.npmmirror.com/postcss/8.4.4 + postcss-safe-parser: registry.nlark.com/postcss-safe-parser/6.0.0_postcss@8.4.4 + dev: true + registry.npmmirror.com/postcss-sorting/7.0.1_postcss@8.4.4: - resolution: {integrity: sha1-kjtSaEUc8tk+v4g14XplN3VwSaU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-sorting/download/postcss-sorting-7.0.1.tgz} + resolution: + { + integrity: sha1-kjtSaEUc8tk+v4g14XplN3VwSaU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/postcss-sorting/download/postcss-sorting-7.0.1.tgz + } id: registry.npmmirror.com/postcss-sorting/7.0.1 name: postcss-sorting version: 7.0.1 @@ -6217,35 +9437,55 @@ packages: dev: true registry.npmmirror.com/postcss-value-parser/4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-value-parser/download/postcss-value-parser-4.2.0.tgz} + resolution: + { + integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/postcss-value-parser/download/postcss-value-parser-4.2.0.tgz + } name: postcss-value-parser version: 4.2.0 dev: true registry.npmmirror.com/postcss/8.4.4: - resolution: {integrity: sha512-joU6fBsN6EIer28Lj6GDFoC/5yOZzLCfn0zHAn/MYXI7aPt4m4hK5KC5ovEZXy+lnCjmYIbQWngvju2ddyEr8Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss/download/postcss-8.4.4.tgz} + resolution: + { + integrity: sha512-joU6fBsN6EIer28Lj6GDFoC/5yOZzLCfn0zHAn/MYXI7aPt4m4hK5KC5ovEZXy+lnCjmYIbQWngvju2ddyEr8Q==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/postcss/download/postcss-8.4.4.tgz + } name: postcss version: 8.4.4 - engines: {node: ^10 || ^12 || >=14} + engines: { node: ^10 || ^12 || >=14 } dependencies: nanoid: registry.npmmirror.com/nanoid/3.1.30 picocolors: registry.npmmirror.com/picocolors/1.0.0 source-map-js: registry.npmmirror.com/source-map-js/1.0.1 registry.npmmirror.com/prettier/2.5.1: - resolution: {integrity: sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/prettier/download/prettier-2.5.1.tgz} + resolution: + { + integrity: sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/prettier/download/prettier-2.5.1.tgz + } name: prettier version: 2.5.1 - engines: {node: '>=10.13.0'} + engines: { node: '>=10.13.0' } hasBin: true dev: true registry.npmmirror.com/pretty-quick/3.1.2_prettier@2.5.1: - resolution: {integrity: sha512-T+fpTJrDjTzewql4p3lKrRA7z3MrNyjBK1MKeaBm5PpKwATgVm885TpY7TgY8KFt5Q1Qn3QDseRQcyX9AKTKkA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pretty-quick/download/pretty-quick-3.1.2.tgz} + resolution: + { + integrity: sha512-T+fpTJrDjTzewql4p3lKrRA7z3MrNyjBK1MKeaBm5PpKwATgVm885TpY7TgY8KFt5Q1Qn3QDseRQcyX9AKTKkA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/pretty-quick/download/pretty-quick-3.1.2.tgz + } id: registry.npmmirror.com/pretty-quick/3.1.2 name: pretty-quick version: 3.1.2 - engines: {node: '>=10.13'} + engines: { node: '>=10.13' } hasBin: true peerDependencies: prettier: '>=2.0.0' @@ -6260,23 +9500,38 @@ packages: dev: true registry.npmmirror.com/quick-lru/4.0.1: - resolution: {integrity: sha1-W4h48ROlgheEjGSCAmxz4bpXcn8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/quick-lru/download/quick-lru-4.0.1.tgz?cache=0&sync_timestamp=1637478717016&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fquick-lru%2Fdownload%2Fquick-lru-4.0.1.tgz} + resolution: + { + integrity: sha1-W4h48ROlgheEjGSCAmxz4bpXcn8=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/quick-lru/download/quick-lru-4.0.1.tgz?cache=0&sync_timestamp=1637478717016&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fquick-lru%2Fdownload%2Fquick-lru-4.0.1.tgz + } name: quick-lru version: 4.0.1 - engines: {node: '>=8'} + engines: { node: '>=8' } dev: true registry.npmmirror.com/react-is/16.13.1: - resolution: {integrity: sha1-eJcppNw23imZ3BVt1sHZwYzqVqQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/react-is/download/react-is-16.13.1.tgz} + resolution: + { + integrity: sha1-eJcppNw23imZ3BVt1sHZwYzqVqQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/react-is/download/react-is-16.13.1.tgz + } name: react-is version: 16.13.1 dev: true registry.npmmirror.com/read-pkg-up/7.0.1: - resolution: {integrity: sha1-86YTV1hFlzOuK5VjgFbhhU5+9Qc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/read-pkg-up/download/read-pkg-up-7.0.1.tgz} + resolution: + { + integrity: sha1-86YTV1hFlzOuK5VjgFbhhU5+9Qc=, + registry: https://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'} + engines: { node: '>=8' } dependencies: find-up: registry.npmmirror.com/find-up/4.1.0 read-pkg: registry.nlark.com/read-pkg/5.2.0 @@ -6284,39 +9539,64 @@ packages: dev: true registry.npmmirror.com/regexp-tree/0.1.24: - resolution: {integrity: sha1-PW+iOEUKTWblvJxMFLtyDiGWgp0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regexp-tree/download/regexp-tree-0.1.24.tgz} + resolution: + { + integrity: sha1-PW+iOEUKTWblvJxMFLtyDiGWgp0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/regexp-tree/download/regexp-tree-0.1.24.tgz + } name: regexp-tree version: 0.1.24 hasBin: true dev: true registry.npmmirror.com/request-light/0.5.5: - resolution: {integrity: sha512-AvjfJuhyT6dYfhtIBF+IpTPQco+Td1QJ6PsIJ5xui110vQ5p9HxHk+m1XJqXazLQT6CxxSx9eNv6R/+fu4bZig==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/request-light/download/request-light-0.5.5.tgz} + resolution: + { + integrity: sha512-AvjfJuhyT6dYfhtIBF+IpTPQco+Td1QJ6PsIJ5xui110vQ5p9HxHk+m1XJqXazLQT6CxxSx9eNv6R/+fu4bZig==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/request-light/download/request-light-0.5.5.tgz + } name: request-light version: 0.5.5 dev: true registry.npmmirror.com/rollup/2.60.2: - resolution: {integrity: sha512-1Bgjpq61sPjgoZzuiDSGvbI1tD91giZABgjCQBKM5aYLnzjq52GoDuWVwT/cm/MCxCMPU8gqQvkj8doQ5C8Oqw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rollup/download/rollup-2.60.2.tgz} + resolution: + { + integrity: sha512-1Bgjpq61sPjgoZzuiDSGvbI1tD91giZABgjCQBKM5aYLnzjq52GoDuWVwT/cm/MCxCMPU8gqQvkj8doQ5C8Oqw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/rollup/download/rollup-2.60.2.tgz + } name: rollup version: 2.60.2 - engines: {node: '>=10.0.0'} + engines: { node: '>=10.0.0' } hasBin: true optionalDependencies: fsevents: registry.npmmirror.com/fsevents/2.3.2 dev: true registry.npmmirror.com/rxjs/6.6.7: - resolution: {integrity: sha1-kKwBisq/SRv2UEQjXVhjxNq4BMk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rxjs/download/rxjs-6.6.7.tgz?cache=0&sync_timestamp=1633558464026&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Frxjs%2Fdownload%2Frxjs-6.6.7.tgz} + resolution: + { + integrity: sha1-kKwBisq/SRv2UEQjXVhjxNq4BMk=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/rxjs/download/rxjs-6.6.7.tgz?cache=0&sync_timestamp=1633558464026&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Frxjs%2Fdownload%2Frxjs-6.6.7.tgz + } name: rxjs version: 6.6.7 - engines: {npm: '>=2.0.0'} + engines: { npm: '>=2.0.0' } dependencies: tslib: registry.nlark.com/tslib/1.14.1 dev: true registry.npmmirror.com/rxjs/7.4.0: - resolution: {integrity: sha1-oSpE1+6/AW9f8kQbh/KMmlHOvGg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rxjs/download/rxjs-7.4.0.tgz?cache=0&sync_timestamp=1633558464026&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Frxjs%2Fdownload%2Frxjs-7.4.0.tgz} + resolution: + { + integrity: sha1-oSpE1+6/AW9f8kQbh/KMmlHOvGg=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/rxjs/download/rxjs-7.4.0.tgz?cache=0&sync_timestamp=1633558464026&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Frxjs%2Fdownload%2Frxjs-7.4.0.tgz + } name: rxjs version: 7.4.0 dependencies: @@ -6324,19 +9604,34 @@ packages: dev: true registry.npmmirror.com/signal-exit/3.0.6: - resolution: {integrity: sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/signal-exit/download/signal-exit-3.0.6.tgz} + resolution: + { + integrity: sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/signal-exit/download/signal-exit-3.0.6.tgz + } name: signal-exit version: 3.0.6 dev: true registry.npmmirror.com/source-map-js/1.0.1: - resolution: {integrity: sha512-4+TN2b3tqOCd/kaGRJ/sTYA0tR0mdXx26ipdolxcwtJVqEnqNYvlCAt1q3ypy4QMlYus+Zh34RNtYLoq2oQ4IA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map-js/download/source-map-js-1.0.1.tgz} + resolution: + { + integrity: sha512-4+TN2b3tqOCd/kaGRJ/sTYA0tR0mdXx26ipdolxcwtJVqEnqNYvlCAt1q3ypy4QMlYus+Zh34RNtYLoq2oQ4IA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/source-map-js/download/source-map-js-1.0.1.tgz + } name: source-map-js version: 1.0.1 - engines: {node: '>=0.10.0'} + engines: { node: '>=0.10.0' } registry.npmmirror.com/source-map-support/0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map-support/download/source-map-support-0.5.21.tgz} + resolution: + { + integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/source-map-support/download/source-map-support-0.5.21.tgz + } name: source-map-support version: 0.5.21 dependencies: @@ -6345,20 +9640,35 @@ packages: dev: true registry.npmmirror.com/spdx-license-ids/3.0.11: - resolution: {integrity: sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/spdx-license-ids/download/spdx-license-ids-3.0.11.tgz} + resolution: + { + integrity: sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/spdx-license-ids/download/spdx-license-ids-3.0.11.tgz + } name: spdx-license-ids version: 3.0.11 dev: true registry.npmmirror.com/specificity/0.4.1: - resolution: {integrity: sha1-qrXmRQEtsIuhguFRFlc40AiHsBk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/specificity/download/specificity-0.4.1.tgz} + resolution: + { + integrity: sha1-qrXmRQEtsIuhguFRFlc40AiHsBk=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/specificity/download/specificity-0.4.1.tgz + } name: specificity version: 0.4.1 hasBin: true dev: true registry.npmmirror.com/split2/3.2.2: - resolution: {integrity: sha1-vyzyo32DgxLCSciSBv16F90SNl8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/split2/download/split2-3.2.2.tgz?cache=0&sync_timestamp=1635305521620&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fsplit2%2Fdownload%2Fsplit2-3.2.2.tgz} + resolution: + { + integrity: sha1-vyzyo32DgxLCSciSBv16F90SNl8=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/split2/download/split2-3.2.2.tgz?cache=0&sync_timestamp=1635305521620&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fsplit2%2Fdownload%2Fsplit2-3.2.2.tgz + } name: split2 version: 3.2.2 dependencies: @@ -6366,20 +9676,30 @@ packages: dev: true registry.npmmirror.com/string-width/2.1.1: - resolution: {integrity: sha1-q5Pyeo3BPSjKyBXEYhQ6bZASrp4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string-width/download/string-width-2.1.1.tgz} + resolution: + { + integrity: sha1-q5Pyeo3BPSjKyBXEYhQ6bZASrp4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/string-width/download/string-width-2.1.1.tgz + } name: string-width version: 2.1.1 - engines: {node: '>=4'} + engines: { node: '>=4' } dependencies: is-fullwidth-code-point: registry.nlark.com/is-fullwidth-code-point/2.0.0 strip-ansi: registry.npmmirror.com/strip-ansi/4.0.0 dev: true registry.npmmirror.com/string-width/4.2.3: - resolution: {integrity: sha1-JpxxF9J7Ba0uU2gwqOyJXvnG0BA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string-width/download/string-width-4.2.3.tgz} + resolution: + { + integrity: sha1-JpxxF9J7Ba0uU2gwqOyJXvnG0BA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/string-width/download/string-width-4.2.3.tgz + } name: string-width version: 4.2.3 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: emoji-regex: registry.npmmirror.com/emoji-regex/8.0.0 is-fullwidth-code-point: registry.nlark.com/is-fullwidth-code-point/3.0.0 @@ -6387,10 +9707,15 @@ packages: dev: true registry.npmmirror.com/string-width/5.0.1: - resolution: {integrity: sha1-DYFYM1ps/Y65Xam2smLOMUoDb/0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string-width/download/string-width-5.0.1.tgz} + resolution: + { + integrity: sha1-DYFYM1ps/Y65Xam2smLOMUoDb/0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/string-width/download/string-width-5.0.1.tgz + } name: string-width version: 5.0.1 - engines: {node: '>=12'} + engines: { node: '>=12' } dependencies: emoji-regex: registry.npmmirror.com/emoji-regex/9.2.2 is-fullwidth-code-point: registry.nlark.com/is-fullwidth-code-point/4.0.0 @@ -6398,7 +9723,12 @@ packages: dev: true registry.npmmirror.com/string.prototype.matchall/4.0.6: - resolution: {integrity: sha1-Wrtdq8lMew6iOA9lumELOlRLFfo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string.prototype.matchall/download/string.prototype.matchall-4.0.6.tgz} + resolution: + { + integrity: sha1-Wrtdq8lMew6iOA9lumELOlRLFfo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/string.prototype.matchall/download/string.prototype.matchall-4.0.6.tgz + } name: string.prototype.matchall version: 4.0.6 dependencies: @@ -6413,47 +9743,91 @@ packages: dev: true registry.npmmirror.com/strip-ansi/4.0.0: - resolution: {integrity: sha1-qEeQIusaw2iocTibY1JixQXuNo8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-ansi/download/strip-ansi-4.0.0.tgz?cache=0&sync_timestamp=1632445112190&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-4.0.0.tgz} + resolution: + { + integrity: sha1-qEeQIusaw2iocTibY1JixQXuNo8=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/strip-ansi/download/strip-ansi-4.0.0.tgz?cache=0&sync_timestamp=1632445112190&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-4.0.0.tgz + } name: strip-ansi version: 4.0.0 - engines: {node: '>=4'} + engines: { node: '>=4' } dependencies: ansi-regex: registry.nlark.com/ansi-regex/3.0.0 dev: true registry.npmmirror.com/strip-ansi/5.2.0: - resolution: {integrity: sha1-jJpTb+tq/JYr36WxBKUJHBrZwK4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-ansi/download/strip-ansi-5.2.0.tgz?cache=0&sync_timestamp=1632445112190&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-5.2.0.tgz} + resolution: + { + integrity: sha1-jJpTb+tq/JYr36WxBKUJHBrZwK4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/strip-ansi/download/strip-ansi-5.2.0.tgz?cache=0&sync_timestamp=1632445112190&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-5.2.0.tgz + } name: strip-ansi version: 5.2.0 - engines: {node: '>=6'} + engines: { node: '>=6' } dependencies: ansi-regex: registry.nlark.com/ansi-regex/4.1.0 dev: true registry.npmmirror.com/strip-ansi/6.0.1: - resolution: {integrity: sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-ansi/download/strip-ansi-6.0.1.tgz?cache=0&sync_timestamp=1632445112190&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-6.0.1.tgz} + resolution: + { + integrity: sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/strip-ansi/download/strip-ansi-6.0.1.tgz?cache=0&sync_timestamp=1632445112190&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-6.0.1.tgz + } name: strip-ansi version: 6.0.1 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: ansi-regex: registry.nlark.com/ansi-regex/5.0.1 dev: true registry.npmmirror.com/strip-ansi/7.0.1: - resolution: {integrity: sha1-YXQKCM42th5Q5lZT8HBg0ACXX7I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-ansi/download/strip-ansi-7.0.1.tgz?cache=0&sync_timestamp=1632445112190&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-7.0.1.tgz} + resolution: + { + integrity: sha1-YXQKCM42th5Q5lZT8HBg0ACXX7I=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/strip-ansi/download/strip-ansi-7.0.1.tgz?cache=0&sync_timestamp=1632445112190&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-7.0.1.tgz + } name: strip-ansi version: 7.0.1 - engines: {node: '>=12'} + engines: { node: '>=12' } dependencies: ansi-regex: registry.nlark.com/ansi-regex/6.0.1 dev: true + registry.npmmirror.com/stylelint-config-html/1.0.0_c1fe332c2f0bd1acbb28be685cc2d480: + resolution: + { + integrity: sha1-FyrLmW7kyFToxnD8/3f/DZjTvsI=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/stylelint-config-html/download/stylelint-config-html-1.0.0.tgz + } + id: registry.npmmirror.com/stylelint-config-html/1.0.0 + name: stylelint-config-html + version: 1.0.0 + engines: { node: ^12 || >=14 } + peerDependencies: + postcss-html: ^1.0.0 + stylelint: '>=14.0.0' + dependencies: + postcss-html: registry.npmmirror.com/postcss-html/1.3.0 + stylelint: registry.npmmirror.com/stylelint/14.1.0 + dev: true + registry.npmmirror.com/stylelint-config-prettier/9.0.3_stylelint@14.1.0: - resolution: {integrity: sha1-Dczr7/NZ3MOTySKRhECLCJZNVhw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/stylelint-config-prettier/download/stylelint-config-prettier-9.0.3.tgz} + resolution: + { + integrity: sha1-Dczr7/NZ3MOTySKRhECLCJZNVhw=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/stylelint-config-prettier/download/stylelint-config-prettier-9.0.3.tgz + } id: registry.npmmirror.com/stylelint-config-prettier/9.0.3 name: stylelint-config-prettier version: 9.0.3 - engines: {node: '>= 12'} + engines: { node: '>= 12' } hasBin: true peerDependencies: stylelint: '>=11.0.0' @@ -6462,7 +9836,12 @@ packages: dev: true registry.npmmirror.com/stylelint-config-recommended/6.0.0_stylelint@14.1.0: - resolution: {integrity: sha1-/SUjoyKDYAWtm/Rz0+VTRxnAn50=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/stylelint-config-recommended/download/stylelint-config-recommended-6.0.0.tgz} + resolution: + { + integrity: sha1-/SUjoyKDYAWtm/Rz0+VTRxnAn50=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/stylelint-config-recommended/download/stylelint-config-recommended-6.0.0.tgz + } id: registry.npmmirror.com/stylelint-config-recommended/6.0.0 name: stylelint-config-recommended version: 6.0.0 @@ -6473,7 +9852,12 @@ packages: dev: true registry.npmmirror.com/stylelint-config-standard/24.0.0_stylelint@14.1.0: - resolution: {integrity: sha512-+RtU7fbNT+VlNbdXJvnjc3USNPZRiRVp/d2DxOF/vBDDTi0kH5RX2Ny6errdtZJH3boO+bmqIYEllEmok4jiuw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/stylelint-config-standard/download/stylelint-config-standard-24.0.0.tgz} + resolution: + { + integrity: sha512-+RtU7fbNT+VlNbdXJvnjc3USNPZRiRVp/d2DxOF/vBDDTi0kH5RX2Ny6errdtZJH3boO+bmqIYEllEmok4jiuw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/stylelint-config-standard/download/stylelint-config-standard-24.0.0.tgz + } id: registry.npmmirror.com/stylelint-config-standard/24.0.0 name: stylelint-config-standard version: 24.0.0 @@ -6485,7 +9869,12 @@ packages: dev: true registry.npmmirror.com/stylelint-order/5.0.0_stylelint@14.1.0: - resolution: {integrity: sha1-q9IPa4WsZAd0y+QOcNP+nG/fRAA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/stylelint-order/download/stylelint-order-5.0.0.tgz} + resolution: + { + integrity: sha1-q9IPa4WsZAd0y+QOcNP+nG/fRAA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/stylelint-order/download/stylelint-order-5.0.0.tgz + } id: registry.npmmirror.com/stylelint-order/5.0.0 name: stylelint-order version: 5.0.0 @@ -6498,10 +9887,15 @@ packages: dev: true registry.npmmirror.com/stylelint/14.1.0: - resolution: {integrity: sha512-IedkssuNVA11+v++2PIV2OHOU5A3SfRcXVi56vZVSsMhGrgtwmmit69jeM+08/Tun5DTBe7BuH1Zp1mMLmtKLA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/stylelint/download/stylelint-14.1.0.tgz} + resolution: + { + integrity: sha512-IedkssuNVA11+v++2PIV2OHOU5A3SfRcXVi56vZVSsMhGrgtwmmit69jeM+08/Tun5DTBe7BuH1Zp1mMLmtKLA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/stylelint/download/stylelint-14.1.0.tgz + } name: stylelint version: 14.1.0 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } hasBin: true dependencies: balanced-match: registry.nlark.com/balanced-match/2.0.0 @@ -6547,35 +9941,55 @@ packages: dev: true registry.npmmirror.com/supports-color/5.5.0: - resolution: {integrity: sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/supports-color/download/supports-color-5.5.0.tgz} + resolution: + { + integrity: sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/supports-color/download/supports-color-5.5.0.tgz + } name: supports-color version: 5.5.0 - engines: {node: '>=4'} + engines: { node: '>=4' } dependencies: has-flag: registry.nlark.com/has-flag/3.0.0 dev: true registry.npmmirror.com/supports-color/7.2.0: - resolution: {integrity: sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz} + resolution: + { + integrity: sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/supports-color/download/supports-color-7.2.0.tgz + } name: supports-color version: 7.2.0 - engines: {node: '>=8'} + engines: { node: '>=8' } dependencies: has-flag: registry.nlark.com/has-flag/4.0.0 dev: true registry.npmmirror.com/supports-color/9.2.1: - resolution: {integrity: sha512-Obv7ycoCTG51N7y175StI9BlAXrmgZrFhZOb0/PyjHBher/NmsdBgbbQ1Inhq+gIhz6+7Gb+jWF2Vqi7Mf1xnQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/supports-color/download/supports-color-9.2.1.tgz} + resolution: + { + integrity: sha512-Obv7ycoCTG51N7y175StI9BlAXrmgZrFhZOb0/PyjHBher/NmsdBgbbQ1Inhq+gIhz6+7Gb+jWF2Vqi7Mf1xnQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/supports-color/download/supports-color-9.2.1.tgz + } name: supports-color version: 9.2.1 - engines: {node: '>=12'} + engines: { node: '>=12' } dev: true registry.npmmirror.com/table/6.7.5: - resolution: {integrity: sha512-LFNeryOqiQHqCVKzhkymKwt6ozeRhlm8IL1mE8rNUurkir4heF6PzMyRgaTa4tlyPTGGgXuvVOF/OLWiH09Lqw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/table/download/table-6.7.5.tgz} + resolution: + { + integrity: sha512-LFNeryOqiQHqCVKzhkymKwt6ozeRhlm8IL1mE8rNUurkir4heF6PzMyRgaTa4tlyPTGGgXuvVOF/OLWiH09Lqw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/table/download/table-6.7.5.tgz + } name: table version: 6.7.5 - engines: {node: '>=10.0.0'} + engines: { node: '>=10.0.0' } dependencies: ajv: registry.npmmirror.com/ajv/8.8.2 lodash.truncate: registry.nlark.com/lodash.truncate/4.4.2 @@ -6585,11 +9999,16 @@ packages: dev: true registry.npmmirror.com/ts-node/9.1.1_typescript@4.5.2: - resolution: {integrity: sha1-UamkUKPpWUAb2l8ASnLVS5NtN20=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ts-node/download/ts-node-9.1.1.tgz} + resolution: + { + integrity: sha1-UamkUKPpWUAb2l8ASnLVS5NtN20=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/ts-node/download/ts-node-9.1.1.tgz + } id: registry.npmmirror.com/ts-node/9.1.1 name: ts-node version: 9.1.1 - engines: {node: '>=10.0.0'} + engines: { node: '>=10.0.0' } hasBin: true peerDependencies: typescript: '>=2.7' @@ -6604,7 +10023,12 @@ packages: dev: true registry.npmmirror.com/tsconfig-paths/3.12.0: - resolution: {integrity: sha512-e5adrnOYT6zqVnWqZu7i/BQ3BnhzvGbjEjejFXO20lKIKpwTaupkCPgEfv4GZK1IBciJUEhYs3J3p75FdaTFVg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tsconfig-paths/download/tsconfig-paths-3.12.0.tgz} + resolution: + { + integrity: sha512-e5adrnOYT6zqVnWqZu7i/BQ3BnhzvGbjEjejFXO20lKIKpwTaupkCPgEfv4GZK1IBciJUEhYs3J3p75FdaTFVg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/tsconfig-paths/download/tsconfig-paths-3.12.0.tgz + } name: tsconfig-paths version: 3.12.0 dependencies: @@ -6615,54 +10039,89 @@ 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} + 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 + } name: type-fest version: 0.18.1 - engines: {node: '>=10'} + engines: { node: '>=10' } dev: true registry.npmmirror.com/type-fest/0.20.2: - resolution: {integrity: sha1-G/IH9LKPkVg2ZstfvTJ4hzAc1fQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/type-fest/download/type-fest-0.20.2.tgz} + resolution: + { + integrity: sha1-G/IH9LKPkVg2ZstfvTJ4hzAc1fQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/type-fest/download/type-fest-0.20.2.tgz + } name: type-fest version: 0.20.2 - engines: {node: '>=10'} + engines: { node: '>=10' } dev: true registry.npmmirror.com/type-fest/0.21.3: - resolution: {integrity: sha1-0mCiSwGYQ24TP6JqUkptZfo7Ljc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/type-fest/download/type-fest-0.21.3.tgz} + resolution: + { + integrity: sha1-0mCiSwGYQ24TP6JqUkptZfo7Ljc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/type-fest/download/type-fest-0.21.3.tgz + } name: type-fest version: 0.21.3 - engines: {node: '>=10'} + engines: { node: '>=10' } 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} + resolution: + { + integrity: sha1-jSojcNPfiG61yQraHFv2GIrPg4s=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/type-fest/download/type-fest-0.6.0.tgz + } name: type-fest version: 0.6.0 - engines: {node: '>=8'} + 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} + resolution: + { + integrity: sha1-CeJJ696FHTseSNJ8EFREZn8XuD0=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/type-fest/download/type-fest-0.8.1.tgz + } name: type-fest version: 0.8.1 - engines: {node: '>=8'} + engines: { node: '>=8' } dev: true registry.npmmirror.com/typescript/4.5.2: - resolution: {integrity: sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/typescript/download/typescript-4.5.2.tgz} + resolution: + { + integrity: sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/typescript/download/typescript-4.5.2.tgz + } name: typescript version: 4.5.2 - engines: {node: '>=4.2.0'} + engines: { node: '>=4.2.0' } hasBin: true dev: true registry.npmmirror.com/unplugin-auto-import/0.5.1_@vueuse+core@7.1.2+vite@2.6.14: - resolution: {integrity: sha512-Q3CvNbCB7nLbu+JdrF6jYs0Nx7kHmV2KzDcZHzTrdri3EhU1lUOgto+ce+Jw01Ds7RxBi9lwWwF3QoFwFPul1A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unplugin-auto-import/download/unplugin-auto-import-0.5.1.tgz} + resolution: + { + integrity: sha512-Q3CvNbCB7nLbu+JdrF6jYs0Nx7kHmV2KzDcZHzTrdri3EhU1lUOgto+ce+Jw01Ds7RxBi9lwWwF3QoFwFPul1A==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/unplugin-auto-import/download/unplugin-auto-import-0.5.1.tgz + } id: registry.npmmirror.com/unplugin-auto-import/0.5.1 name: unplugin-auto-import version: 0.5.1 - engines: {node: '>=14'} + engines: { node: '>=14' } peerDependencies: '@vueuse/core': '*' peerDependenciesMeta: @@ -6683,11 +10142,16 @@ packages: dev: true registry.npmmirror.com/unplugin-vue-components/0.17.6_vite@2.6.14+vue@3.2.24: - resolution: {integrity: sha512-Z2XvwKeY7/++MucRKzJihDsbdL8rFb71VfmuhtMtLE8zurjFu57XKFx0RNFUD5zD4g0HEyR9GGTwXu2YI0rang==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unplugin-vue-components/download/unplugin-vue-components-0.17.6.tgz} + resolution: + { + integrity: sha512-Z2XvwKeY7/++MucRKzJihDsbdL8rFb71VfmuhtMtLE8zurjFu57XKFx0RNFUD5zD4g0HEyR9GGTwXu2YI0rang==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/unplugin-vue-components/download/unplugin-vue-components-0.17.6.tgz + } id: registry.npmmirror.com/unplugin-vue-components/0.17.6 name: unplugin-vue-components version: 0.17.6 - engines: {node: '>=14'} + engines: { node: '>=14' } peerDependencies: '@babel/parser': ^7.15.8 '@babel/traverse': ^7.15.4 @@ -6717,7 +10181,12 @@ packages: dev: true registry.npmmirror.com/unplugin/0.2.21_vite@2.6.14: - resolution: {integrity: sha512-IJ15/L5XbhnV7J09Zjk0FT5HEkBjkXucWAXQWRsmEtUxmmxwh23yavrmDbCF6ZPxWiVB28+wnKIHePTRRpQPbQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unplugin/download/unplugin-0.2.21.tgz} + resolution: + { + integrity: sha512-IJ15/L5XbhnV7J09Zjk0FT5HEkBjkXucWAXQWRsmEtUxmmxwh23yavrmDbCF6ZPxWiVB28+wnKIHePTRRpQPbQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/unplugin/download/unplugin-0.2.21.tgz + } id: registry.npmmirror.com/unplugin/0.2.21 name: unplugin version: 0.2.21 @@ -6738,7 +10207,12 @@ packages: dev: true registry.npmmirror.com/vite-plugin-vue-setup-extend/0.1.0_vite@2.6.14: - resolution: {integrity: sha1-nwjvu8Ku0QP1SbNpbe5dRi2yPzg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vite-plugin-vue-setup-extend/download/vite-plugin-vue-setup-extend-0.1.0.tgz} + resolution: + { + integrity: sha1-nwjvu8Ku0QP1SbNpbe5dRi2yPzg=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/vite-plugin-vue-setup-extend/download/vite-plugin-vue-setup-extend-0.1.0.tgz + } id: registry.npmmirror.com/vite-plugin-vue-setup-extend/0.1.0 name: vite-plugin-vue-setup-extend version: 0.1.0 @@ -6751,7 +10225,12 @@ packages: dev: true registry.npmmirror.com/vite-plugin-windicss/1.5.4_vite@2.6.14: - resolution: {integrity: sha512-bG2IERA9J50MGq1QEbGC/PjrkVIaq2b3LilCeidyIpmFV/4aR14/wGDe83SobF+8coIeJ+23S0uDK/fXX5X0pQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vite-plugin-windicss/download/vite-plugin-windicss-1.5.4.tgz} + resolution: + { + integrity: sha512-bG2IERA9J50MGq1QEbGC/PjrkVIaq2b3LilCeidyIpmFV/4aR14/wGDe83SobF+8coIeJ+23S0uDK/fXX5X0pQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/vite-plugin-windicss/download/vite-plugin-windicss-1.5.4.tgz + } id: registry.npmmirror.com/vite-plugin-windicss/1.5.4 name: vite-plugin-windicss version: 1.5.4 @@ -6768,11 +10247,16 @@ packages: dev: true registry.npmmirror.com/vite/2.6.14_less@4.1.2: - resolution: {integrity: sha512-2HA9xGyi+EhY2MXo0+A2dRsqsAG3eFNEVIo12olkWhOmc8LfiM+eMdrXf+Ruje9gdXgvSqjLI9freec1RUM5EA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vite/download/vite-2.6.14.tgz} + resolution: + { + integrity: sha512-2HA9xGyi+EhY2MXo0+A2dRsqsAG3eFNEVIo12olkWhOmc8LfiM+eMdrXf+Ruje9gdXgvSqjLI9freec1RUM5EA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/vite/download/vite-2.6.14.tgz + } id: registry.npmmirror.com/vite/2.6.14 name: vite version: 2.6.14 - engines: {node: '>=12.2.0'} + engines: { node: '>=12.2.0' } hasBin: true peerDependencies: less: '*' @@ -6796,7 +10280,12 @@ packages: dev: true registry.npmmirror.com/vscode-css-languageservice/5.1.9: - resolution: {integrity: sha512-/tFOWeZBL3Oc9Zc+2MAi3rEwiXJTSZsvjB+M7nSjWLbGPUIjukUA7YzLgsBoUfR35sPJYnXWUkL56PdfIYM8GA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-css-languageservice/download/vscode-css-languageservice-5.1.9.tgz} + resolution: + { + integrity: sha512-/tFOWeZBL3Oc9Zc+2MAi3rEwiXJTSZsvjB+M7nSjWLbGPUIjukUA7YzLgsBoUfR35sPJYnXWUkL56PdfIYM8GA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/vscode-css-languageservice/download/vscode-css-languageservice-5.1.9.tgz + } name: vscode-css-languageservice version: 5.1.9 dependencies: @@ -6807,7 +10296,12 @@ packages: dev: true registry.npmmirror.com/vscode-html-languageservice/4.2.0: - resolution: {integrity: sha512-5ebk/5kMa7PrCPL3JuP27vo8h+coDgSkMP14pSlKz3ISXZxHm+nnCenhVrpy9Ayamtwb28YXeQuN8AqNQH8kVQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-html-languageservice/download/vscode-html-languageservice-4.2.0.tgz} + resolution: + { + integrity: sha512-5ebk/5kMa7PrCPL3JuP27vo8h+coDgSkMP14pSlKz3ISXZxHm+nnCenhVrpy9Ayamtwb28YXeQuN8AqNQH8kVQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/vscode-html-languageservice/download/vscode-html-languageservice-4.2.0.tgz + } name: vscode-html-languageservice version: 4.2.0 dependencies: @@ -6818,7 +10312,12 @@ packages: dev: true registry.npmmirror.com/vscode-json-languageservice/4.1.10: - resolution: {integrity: sha512-IHliMEEYSY0tJjJt0ECb8ESx/nRXpoy9kN42WVQXgaqGyizFAf3jibSiezDQTrrY7f3kywXggCU+kkJEM+OLZQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-json-languageservice/download/vscode-json-languageservice-4.1.10.tgz} + resolution: + { + integrity: sha512-IHliMEEYSY0tJjJt0ECb8ESx/nRXpoy9kN42WVQXgaqGyizFAf3jibSiezDQTrrY7f3kywXggCU+kkJEM+OLZQ==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/vscode-json-languageservice/download/vscode-json-languageservice-4.1.10.tgz + } name: vscode-json-languageservice version: 4.1.10 dependencies: @@ -6830,14 +10329,24 @@ packages: dev: true registry.npmmirror.com/vscode-jsonrpc/8.0.0-next.4: - resolution: {integrity: sha512-i+wvza5Wd0YV/t9qhnS8I+dJdhJ1fHIhRW4f262rXXM9Mgts5VZhYrRZufGcai4y99RlbZvwaZhplQ6diRXkaA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-jsonrpc/download/vscode-jsonrpc-8.0.0-next.4.tgz} + resolution: + { + integrity: sha512-i+wvza5Wd0YV/t9qhnS8I+dJdhJ1fHIhRW4f262rXXM9Mgts5VZhYrRZufGcai4y99RlbZvwaZhplQ6diRXkaA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/vscode-jsonrpc/download/vscode-jsonrpc-8.0.0-next.4.tgz + } name: vscode-jsonrpc version: 8.0.0-next.4 - engines: {node: '>=8.0.0 || >=10.0.0'} + engines: { node: '>=8.0.0 || >=10.0.0' } dev: true registry.npmmirror.com/vscode-languageserver-protocol/3.17.0-next.11: - resolution: {integrity: sha512-9FqHT7XvM6tWFsnLvRfuQA7Zh7wZZYAwA9dK85lYthA8M1aXpXEP9drXVvO/Fe03MUeJpKVf2e4/NvDaFUnttg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-languageserver-protocol/download/vscode-languageserver-protocol-3.17.0-next.11.tgz} + resolution: + { + integrity: sha512-9FqHT7XvM6tWFsnLvRfuQA7Zh7wZZYAwA9dK85lYthA8M1aXpXEP9drXVvO/Fe03MUeJpKVf2e4/NvDaFUnttg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/vscode-languageserver-protocol/download/vscode-languageserver-protocol-3.17.0-next.11.tgz + } name: vscode-languageserver-protocol version: 3.17.0-next.11 dependencies: @@ -6846,25 +10355,45 @@ packages: dev: true registry.npmmirror.com/vscode-languageserver-textdocument/1.0.3: - resolution: {integrity: sha512-ynEGytvgTb6HVSUwPJIAZgiHQmPCx8bZ8w5um5Lz+q5DjP0Zj8wTFhQpyg8xaMvefDytw2+HH5yzqS+FhsR28A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-languageserver-textdocument/download/vscode-languageserver-textdocument-1.0.3.tgz} + resolution: + { + integrity: sha512-ynEGytvgTb6HVSUwPJIAZgiHQmPCx8bZ8w5um5Lz+q5DjP0Zj8wTFhQpyg8xaMvefDytw2+HH5yzqS+FhsR28A==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/vscode-languageserver-textdocument/download/vscode-languageserver-textdocument-1.0.3.tgz + } name: vscode-languageserver-textdocument version: 1.0.3 dev: true registry.npmmirror.com/vscode-languageserver-types/3.16.0: - resolution: {integrity: sha1-7POT/BIexpdLLaPvsxVWRMUU4kc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-languageserver-types/download/vscode-languageserver-types-3.16.0.tgz} + resolution: + { + integrity: sha1-7POT/BIexpdLLaPvsxVWRMUU4kc=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/vscode-languageserver-types/download/vscode-languageserver-types-3.16.0.tgz + } name: vscode-languageserver-types version: 3.16.0 dev: true registry.npmmirror.com/vscode-languageserver-types/3.17.0-next.5: - resolution: {integrity: sha512-Zcfaw8BznhlJWB09LDR0dscXyxn9+liREqJnPF4pigeUCHwKxYapYqizwuCpMHQ/oLYiAvKwU+f28hPleYu7pA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-languageserver-types/download/vscode-languageserver-types-3.17.0-next.5.tgz} + resolution: + { + integrity: sha512-Zcfaw8BznhlJWB09LDR0dscXyxn9+liREqJnPF4pigeUCHwKxYapYqizwuCpMHQ/oLYiAvKwU+f28hPleYu7pA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/vscode-languageserver-types/download/vscode-languageserver-types-3.17.0-next.5.tgz + } name: vscode-languageserver-types version: 3.17.0-next.5 dev: true registry.npmmirror.com/vscode-languageserver/8.0.0-next.5: - resolution: {integrity: sha512-3E2W0eWtGKb6QAJqspOnD0thrBRRo8IGUMV5jpDNMcMKvmtkcxMwsBh0VxdvuWaZ51PiNyR4L+B+GUvkYsyFEg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-languageserver/download/vscode-languageserver-8.0.0-next.5.tgz} + resolution: + { + integrity: sha512-3E2W0eWtGKb6QAJqspOnD0thrBRRo8IGUMV5jpDNMcMKvmtkcxMwsBh0VxdvuWaZ51PiNyR4L+B+GUvkYsyFEg==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/vscode-languageserver/download/vscode-languageserver-8.0.0-next.5.tgz + } name: vscode-languageserver version: 8.0.0-next.5 hasBin: true @@ -6873,13 +10402,23 @@ packages: dev: true registry.npmmirror.com/vscode-nls/5.0.0: - resolution: {integrity: sha1-mfDaC9nqfNpE5WWnTFSx8rwleEA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-nls/download/vscode-nls-5.0.0.tgz} + resolution: + { + integrity: sha1-mfDaC9nqfNpE5WWnTFSx8rwleEA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/vscode-nls/download/vscode-nls-5.0.0.tgz + } name: vscode-nls version: 5.0.0 dev: true registry.npmmirror.com/vscode-pug-languageservice/0.27.24: - resolution: {integrity: sha1-+oBcTT4z3uNoHmYKB2cTZzjmg3A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-pug-languageservice/download/vscode-pug-languageservice-0.27.24.tgz} + resolution: + { + integrity: sha1-+oBcTT4z3uNoHmYKB2cTZzjmg3A=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/vscode-pug-languageservice/download/vscode-pug-languageservice-0.27.24.tgz + } name: vscode-pug-languageservice version: 0.27.24 dependencies: @@ -6893,7 +10432,12 @@ packages: dev: true registry.npmmirror.com/vscode-typescript-languageservice/0.27.25: - resolution: {integrity: sha1-rNIRcjtgAQjCVRU4i3XVXOFbsFY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-typescript-languageservice/download/vscode-typescript-languageservice-0.27.25.tgz} + resolution: + { + integrity: sha1-rNIRcjtgAQjCVRU4i3XVXOFbsFY=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/vscode-typescript-languageservice/download/vscode-typescript-languageservice-0.27.25.tgz + } name: vscode-typescript-languageservice version: 0.27.25 dependencies: @@ -6905,7 +10449,12 @@ packages: dev: true registry.npmmirror.com/vscode-vue-languageservice/0.27.30: - resolution: {integrity: sha1-HzKwID3SM1gvdKRXQoUZpjGPA54=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-vue-languageservice/download/vscode-vue-languageservice-0.27.30.tgz} + resolution: + { + integrity: sha1-HzKwID3SM1gvdKRXQoUZpjGPA54=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/vscode-vue-languageservice/download/vscode-vue-languageservice-0.27.30.tgz + } name: vscode-vue-languageservice version: 0.27.30 dependencies: @@ -6930,11 +10479,16 @@ packages: dev: true registry.npmmirror.com/vue-demi/0.12.1_vue@3.2.24: - resolution: {integrity: sha1-9+GO++z/0RqwadFHLXoG4xm0F0w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-demi/download/vue-demi-0.12.1.tgz} + resolution: + { + integrity: sha1-9+GO++z/0RqwadFHLXoG4xm0F0w=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/vue-demi/download/vue-demi-0.12.1.tgz + } id: registry.npmmirror.com/vue-demi/0.12.1 name: vue-demi version: 0.12.1 - engines: {node: '>=12'} + engines: { node: '>=12' } hasBin: true requiresBuild: true peerDependencies: @@ -6948,11 +10502,16 @@ packages: dev: false registry.npmmirror.com/vue-eslint-parser/8.0.1_eslint@8.4.1: - 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: https://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 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: '>=6.0.0' dependencies: @@ -6969,7 +10528,12 @@ packages: dev: true registry.npmmirror.com/vue-router/4.0.12_vue@3.2.24: - resolution: {integrity: sha1-jceSzd9bsavMOQj5BkE23n4TxGA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-router/download/vue-router-4.0.12.tgz} + resolution: + { + integrity: sha1-jceSzd9bsavMOQj5BkE23n4TxGA=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/vue-router/download/vue-router-4.0.12.tgz + } id: registry.npmmirror.com/vue-router/4.0.12 name: vue-router version: 4.0.12 @@ -6981,7 +10545,12 @@ packages: dev: false registry.npmmirror.com/vue-tsc/0.3.0_typescript@4.5.2: - resolution: {integrity: sha1-Ozhyv08dLkQJtXrb2CYDLiU9tAY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-tsc/download/vue-tsc-0.3.0.tgz} + resolution: + { + integrity: sha1-Ozhyv08dLkQJtXrb2CYDLiU9tAY=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/vue-tsc/download/vue-tsc-0.3.0.tgz + } id: registry.npmmirror.com/vue-tsc/0.3.0 name: vue-tsc version: 0.3.0 @@ -6994,7 +10563,12 @@ packages: dev: true registry.npmmirror.com/vue/3.2.24: - resolution: {integrity: sha512-PvCklXNfcUMyeP/a9nME27C32IipwUDoS45rDyKn5+RQrWyjL+0JAJtf98HL6y9bfqQRTlYjSowWEB1nXxvG5Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue/download/vue-3.2.24.tgz} + resolution: + { + integrity: sha512-PvCklXNfcUMyeP/a9nME27C32IipwUDoS45rDyKn5+RQrWyjL+0JAJtf98HL6y9bfqQRTlYjSowWEB1nXxvG5Q==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/vue/download/vue-3.2.24.tgz + } name: vue version: 3.2.24 dependencies: @@ -7006,18 +10580,28 @@ packages: dev: false registry.npmmirror.com/windicss/3.2.1: - resolution: {integrity: sha1-vQ97nrq7oE6o3+3LsCY8LvlZHbQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/windicss/download/windicss-3.2.1.tgz} + resolution: + { + integrity: sha1-vQ97nrq7oE6o3+3LsCY8LvlZHbQ=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/windicss/download/windicss-3.2.1.tgz + } name: windicss version: 3.2.1 - engines: {node: '>= 12'} + engines: { node: '>= 12' } hasBin: true dev: true registry.npmmirror.com/yaml-eslint-parser/0.5.0: - resolution: {integrity: sha1-AdTk2ZKoIHaeqF71/VJt/CDrxvU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yaml-eslint-parser/download/yaml-eslint-parser-0.5.0.tgz} + resolution: + { + integrity: sha1-AdTk2ZKoIHaeqF71/VJt/CDrxvU=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/yaml-eslint-parser/download/yaml-eslint-parser-0.5.0.tgz + } name: yaml-eslint-parser version: 0.5.0 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/3.1.0 lodash: registry.nlark.com/lodash/4.17.21 @@ -7025,31 +10609,51 @@ packages: dev: true registry.npmmirror.com/yaml/1.10.2: - resolution: {integrity: sha1-IwHF/78StGfejaIzOkWeKeeSDks=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yaml/download/yaml-1.10.2.tgz?cache=0&sync_timestamp=1636797202711&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fyaml%2Fdownload%2Fyaml-1.10.2.tgz} + resolution: + { + integrity: sha1-IwHF/78StGfejaIzOkWeKeeSDks=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/yaml/download/yaml-1.10.2.tgz?cache=0&sync_timestamp=1636797202711&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fyaml%2Fdownload%2Fyaml-1.10.2.tgz + } name: yaml version: 1.10.2 - engines: {node: '>= 6'} + engines: { node: '>= 6' } dev: true registry.npmmirror.com/yargs-parser/20.2.9: - resolution: {integrity: sha1-LrfcOwKJcY/ClfNidThFxBoMlO4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yargs-parser/download/yargs-parser-20.2.9.tgz} + resolution: + { + integrity: sha1-LrfcOwKJcY/ClfNidThFxBoMlO4=, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/yargs-parser/download/yargs-parser-20.2.9.tgz + } name: yargs-parser version: 20.2.9 - engines: {node: '>=10'} + engines: { node: '>=10' } dev: true registry.npmmirror.com/yargs-parser/21.0.0: - resolution: {integrity: sha512-z9kApYUOCwoeZ78rfRYYWdiU/iNL6mwwYlkkZfJoyMR1xps+NEBX5X7XmRpxkZHhXJ6+Ey00IwKxBBSW9FIjyA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yargs-parser/download/yargs-parser-21.0.0.tgz} + resolution: + { + integrity: sha512-z9kApYUOCwoeZ78rfRYYWdiU/iNL6mwwYlkkZfJoyMR1xps+NEBX5X7XmRpxkZHhXJ6+Ey00IwKxBBSW9FIjyA==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/yargs-parser/download/yargs-parser-21.0.0.tgz + } name: yargs-parser version: 21.0.0 - engines: {node: '>=12'} + engines: { node: '>=12' } dev: true registry.npmmirror.com/yargs/17.3.0: - resolution: {integrity: sha512-GQl1pWyDoGptFPJx9b9L6kmR33TGusZvXIZUT+BOz9f7X2L94oeAskFYLEg/FkhV06zZPBYLvLZRWeYId29lew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yargs/download/yargs-17.3.0.tgz} + resolution: + { + integrity: sha512-GQl1pWyDoGptFPJx9b9L6kmR33TGusZvXIZUT+BOz9f7X2L94oeAskFYLEg/FkhV06zZPBYLvLZRWeYId29lew==, + registry: https://registry.npm.taobao.org/, + tarball: https://registry.npmmirror.com/yargs/download/yargs-17.3.0.tgz + } name: yargs version: 17.3.0 - engines: {node: '>=12'} + engines: { node: '>=12' } dependencies: cliui: registry.nlark.com/cliui/7.0.4 escalade: registry.nlark.com/escalade/3.1.1 diff --git a/src/App.vue b/src/App.vue index f76f6b0..e57b0a1 100644 --- a/src/App.vue +++ b/src/App.vue @@ -6,20 +6,23 @@ import HelloWorld from './components/HelloWorld.vue' - diff --git a/src/components/HelloWorld.vue b/src/components/HelloWorld.vue index 1fbcf08..19fe746 100644 --- a/src/components/HelloWorld.vue +++ b/src/components/HelloWorld.vue @@ -19,16 +19,12 @@ const count = ref(0)

See README.md for more information.

- - Vite Docs - + Vite Docs | Vue 3 Docs

- +

Edit components/HelloWorld.vue to test hot module replacement. @@ -46,9 +42,9 @@ label { } code { - background-color: #eee; padding: 2px 4px; - border-radius: 4px; color: #304455; + background-color: #eee; + border-radius: 4px; } diff --git a/stylelint.config.js b/stylelint.config.js index 2c5cb6b..d400572 100644 --- a/stylelint.config.js +++ b/stylelint.config.js @@ -1,6 +1,7 @@ module.exports = { root: true, plugins: ['stylelint-order'], + customSyntax: 'postcss-html', extends: ['stylelint-config-standard', 'stylelint-config-prettier'], rules: { 'selector-pseudo-class-no-unknown': [ @@ -15,7 +16,6 @@ module.exports = { ignoreAtRules: ['function', 'if', 'each', 'include', 'mixin'] } ], - 'function-calc-no-invalid': null, 'no-empty-source': null, 'named-grid-areas-no-invalid': null, 'unicode-bom': 'never', @@ -206,5 +206,26 @@ module.exports = { 'speak' ] }, - ignoreFiles: ['**/*.js', '**/*.jsx', '**/*.tsx', '**/*.ts'] + ignoreFiles: ['**/*.js', '**/*.jsx', '**/*.tsx', '**/*.ts'], + overrides: [ + { + files: ['*.vue', '**/*.vue', '*.html', '**/*.html'], + extends: ['stylelint-config-recommended', 'stylelint-config-html'], + rules: { + 'keyframes-name-pattern': null, + 'selector-pseudo-class-no-unknown': [ + true, + { + ignorePseudoClasses: ['deep', 'global'] + } + ], + 'selector-pseudo-element-no-unknown': [ + true, + { + ignorePseudoElements: ['v-deep', 'v-global', 'v-slotted'] + } + ] + } + } + ] } diff --git a/vite.config.ts b/vite.config.ts index 463df2a..4898136 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -64,7 +64,7 @@ export default ({ command, mode }: ConfigEnv): UserConfig => { css: { preprocessorOptions: { less: { - additionalData: '@import "./src/styles/variables.less";', + // additionalData: '@import "./src/styles/variables.less";', javascriptEnabled: true } }