diff --git a/.env.base b/.env.base
new file mode 100644
index 0000000..fdebfdc
--- /dev/null
+++ b/.env.base
@@ -0,0 +1,8 @@
+# 环境
+NODE_ENV = development
+
+# 接口前缀
+VITE_API_BASEPATH = base
+
+# 打包路径
+VITE_BASE_PATH = /
diff --git a/.env.dev b/.env.dev
new file mode 100644
index 0000000..aa29b3e
--- /dev/null
+++ b/.env.dev
@@ -0,0 +1,20 @@
+# 环境
+NODE_ENV = production
+
+# 接口前缀
+VITE_API_BASEPATH = dev
+
+# 打包路径
+VITE_BASE_PATH = /dist-dev/
+
+# 是否删除debugger
+VITE_DROP_DEBUGGER = false
+
+# 是否删除console.log
+VITE_DROP_CONSOLE = false
+
+# 是否sourcemap
+VITE_SOURCEMAP = true
+
+# 输出路径
+VITE_OUT_DIR = dist-dev
diff --git a/.env.pro b/.env.pro
new file mode 100644
index 0000000..893f55e
--- /dev/null
+++ b/.env.pro
@@ -0,0 +1,20 @@
+# 环境
+NODE_ENV = production
+
+# 接口前缀
+VITE_API_BASEPATH = pro
+
+# 打包路径
+VITE_BASE_PATH = /dist-pro/
+
+# 是否删除debugger
+VITE_DROP_DEBUGGER = true
+
+# 是否删除console.log
+VITE_DROP_CONSOLE = true
+
+# 是否sourcemap
+VITE_SOURCEMAP = false
+
+# 输出路径
+VITE_OUT_DIR = dist-pro
diff --git a/.env.test b/.env.test
new file mode 100644
index 0000000..2940240
--- /dev/null
+++ b/.env.test
@@ -0,0 +1,20 @@
+# 环境
+NODE_ENV = production
+
+# 接口前缀
+VITE_API_BASEPATH = test
+
+# 打包路径
+VITE_BASE_PATH = /dist-test/
+
+# 是否删除debugger
+VITE_DROP_DEBUGGER = false
+
+# 是否删除console.log
+VITE_DROP_CONSOLE = false
+
+# 是否sourcemap
+VITE_SOURCEMAP = true
+
+# 输出路径
+VITE_OUT_DIR = dist-test
diff --git a/.eslintignore b/.eslintignore
new file mode 100644
index 0000000..6501d1f
--- /dev/null
+++ b/.eslintignore
@@ -0,0 +1,10 @@
+/build/
+/config/
+/dist/
+/*.js
+/*.d.ts
+/test/unit/coverage/
+/node_modules/*
+/src/types/env.d.ts
+/dist*
+/src/main.ts
diff --git a/.eslintrc.js b/.eslintrc.js
new file mode 100644
index 0000000..273db8f
--- /dev/null
+++ b/.eslintrc.js
@@ -0,0 +1,7 @@
+module.exports = {
+ extends: ['@antfu'],
+ rules: {
+ 'comma-dangle': [2, 'never'],
+ curly: [2, 'multi-line']
+ }
+}
diff --git a/.gitignore b/.gitignore
index d451ff1..032d0aa 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,5 @@ node_modules
dist
dist-ssr
*.local
+/components.d.ts
+/dist*
diff --git a/.prettierignore b/.prettierignore
new file mode 100644
index 0000000..f624dc1
--- /dev/null
+++ b/.prettierignore
@@ -0,0 +1,8 @@
+/node_modules/**
+/dist/
+/dist*
+/public/*
+/docs/*
+/vite.config.ts
+/src/types/env.d.ts
+/docs/**/*
\ No newline at end of file
diff --git a/.prettierrc.js b/.prettierrc.js
new file mode 100644
index 0000000..b46239f
--- /dev/null
+++ b/.prettierrc.js
@@ -0,0 +1,19 @@
+module.exports = {
+ printWidth: 100,
+ tabWidth: 2,
+ useTabs: false,
+ semi: false,
+ vueIndentScriptAndStyle: false,
+ singleQuote: true,
+ quoteProps: 'as-needed',
+ bracketSpacing: true,
+ trailingComma: 'none',
+ jsxSingleQuote: false,
+ arrowParens: 'always',
+ insertPragma: false,
+ requirePragma: false,
+ proseWrap: 'never',
+ htmlWhitespaceSensitivity: 'strict',
+ endOfLine: 'auto',
+ rangeStart: 0
+}
diff --git a/.stylelintignore b/.stylelintignore
new file mode 100644
index 0000000..aa605b4
--- /dev/null
+++ b/.stylelintignore
@@ -0,0 +1,6 @@
+/dist/*
+/public/*
+public/*
+/dist*
+/src/types/env.d.ts
+/docs/**/*
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..32ead0a
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,12 @@
+{
+ "cSpell.words": [
+ "Windi",
+ "Windicss"
+ ],
+ "typescript.tsdk": "node_modules/typescript/lib",
+ "volar.tsPlugin": true,
+ "prettier.enable": false,
+ "editor.codeActionsOnSave": {
+ "source.fixAll.eslint": true
+ }
+}
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..089f64f
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2021 Archer
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/commitlint.config.js b/commitlint.config.js
new file mode 100644
index 0000000..557d212
--- /dev/null
+++ b/commitlint.config.js
@@ -0,0 +1,30 @@
+module.exports = {
+ extends: ['@commitlint/config-conventional'],
+ rules: {
+ 'type-enum': [
+ 2,
+ 'always',
+ [
+ 'init', // 初始化
+ 'feat', // 新功能(feature)
+ 'fix', // 修补bug
+ 'docs', // 文档(documentation)
+ 'style', // 格式、样式(不影响代码运行的变动)
+ 'refactor', // 重构(即不是新增功能,也不是修改BUG的代码)
+ 'perf', // 优化相关,比如提升性能、体验
+ 'test', // 添加测试
+ 'build', // 编译相关的修改,对项目构建或者依赖的改动
+ 'ci', // 持续集成修改
+ 'chore', // 构建过程或辅助工具的变动
+ 'revert', // 回滚到上一个版本
+ 'workflow', // 工作流改进
+ 'mod', // 不确定分类的修改
+ 'wip', // 开发中
+ 'types', // 类型修改
+ 'release' // 版本发布
+ ]
+ ],
+ 'subject-full-stop': [0, 'never'],
+ 'subject-case': [0, 'never']
+ }
+}
diff --git a/log.md b/log.md
new file mode 100644
index 0000000..1e72aff
--- /dev/null
+++ b/log.md
@@ -0,0 +1 @@
+vscode 安装 WindiCSS IntelliSense
diff --git a/package.json b/package.json
index d648fe0..9a1a14b 100644
--- a/package.json
+++ b/package.json
@@ -2,17 +2,65 @@
"name": "new-element-plus-admin",
"version": "0.0.0",
"scripts": {
- "dev": "vite",
- "build": "vue-tsc --noEmit && vite build",
- "serve": "vite preview"
+ "i": "pnpm install",
+ "dev": "vite --mode base",
+ "ts:check": "vue-tsc --noEmit",
+ "build:pro": "npm run ts:check && vite build --mode pro",
+ "build:dev": "npm run ts:check && vite build --mode dev",
+ "build:test": "npm run ts:check && vite build --mode test",
+ "serve:pro": "vite preview --mode pro",
+ "serve:dev": "vite preview --mode dev",
+ "serve:test": "vite preview --mode test",
+ "check": "npx npm-check-updates",
+ "clean:cache": "npx rimraf node_modules/.cache",
+ "lint:eslint": "eslint --fix --ext .js,.ts,.vue ./src",
+ "lint:format": "prettier --write --loglevel warn \"src/**/*.{js,ts,json,tsx,css,less,vue,html,md}\"",
+ "lint:style": "stylelint --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
+ "lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
+ "lint:pretty": "pretty-quick --staged",
+ "postinstall": "husky install"
},
"dependencies": {
- "vue": "^3.2.16"
+ "@vueuse/core": "^7.1.2",
+ "vue": "^3.2.16",
+ "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",
+ "@typescript-eslint/parser": "^5.6.0",
"@vitejs/plugin-vue": "^1.9.3",
+ "@vitejs/plugin-vue-jsx": "^1.3.0",
+ "autoprefixer": "^10.4.0",
+ "commitizen": "^4.2.4",
+ "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",
+ "prettier": "^2.5.1",
+ "pretty-quick": "^3.1.2",
+ "rimraf": "^3.0.2",
+ "stylelint": "^14.1.0",
+ "stylelint-config-prettier": "^9.0.3",
+ "stylelint-config-standard": "^24.0.0",
+ "stylelint-order": "^5.0.0",
"typescript": "^4.4.3",
+ "unplugin-auto-import": "^0.5.1",
+ "unplugin-vue-components": "^0.17.6",
"vite": "^2.6.4",
- "vue-tsc": "^0.3.0"
+ "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
new file mode 100644
index 0000000..5db87be
--- /dev/null
+++ b/pnpm-lock.yaml
@@ -0,0 +1,7061 @@
+lockfileVersion: 5.3
+
+specifiers:
+ '@antfu/eslint-config': ^0.12.1
+ '@commitlint/cli': ^15.0.0
+ '@commitlint/config-conventional': ^15.0.0
+ '@typescript-eslint/eslint-plugin': ^5.6.0
+ '@typescript-eslint/parser': ^5.6.0
+ '@vitejs/plugin-vue': ^1.9.3
+ '@vitejs/plugin-vue-jsx': ^1.3.0
+ '@vueuse/core': ^7.1.2
+ autoprefixer: ^10.4.0
+ commitizen: ^4.2.4
+ 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
+ prettier: ^2.5.1
+ pretty-quick: ^3.1.2
+ rimraf: ^3.0.2
+ stylelint: ^14.1.0
+ stylelint-config-prettier: ^9.0.3
+ stylelint-config-standard: ^24.0.0
+ stylelint-order: ^5.0.0
+ typescript: ^4.4.3
+ unplugin-auto-import: ^0.5.1
+ unplugin-vue-components: ^0.17.6
+ vite: ^2.6.4
+ vite-plugin-eslint: ^1.3.0
+ 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
+
+dependencies:
+ '@vueuse/core': registry.npmmirror.com/@vueuse/core/7.1.2_vue@3.2.24
+ vue: registry.npmmirror.com/vue/3.2.24
+ vue-router: registry.npmmirror.com/vue-router/4.0.12_vue@3.2.24
+
+devDependencies:
+ '@antfu/eslint-config': registry.npmmirror.com/@antfu/eslint-config/0.12.1_eslint@8.4.1+typescript@4.5.2
+ '@commitlint/cli': registry.npmmirror.com/@commitlint/cli/15.0.0
+ '@commitlint/config-conventional': registry.npmmirror.com/@commitlint/config-conventional/15.0.0
+ '@typescript-eslint/eslint-plugin': registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.6.0_16d83f5c41c3abb1061a82b07c18e4f3
+ '@typescript-eslint/parser': registry.npmmirror.com/@typescript-eslint/parser/5.6.0_eslint@8.4.1+typescript@4.5.2
+ '@vitejs/plugin-vue': registry.npmmirror.com/@vitejs/plugin-vue/1.10.1_vite@2.6.14
+ '@vitejs/plugin-vue-jsx': registry.npmmirror.com/@vitejs/plugin-vue-jsx/1.3.0
+ autoprefixer: registry.npmmirror.com/autoprefixer/10.4.0_postcss@8.4.4
+ commitizen: registry.npmmirror.com/commitizen/4.2.4
+ 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
+ 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-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
+ typescript: registry.npmmirror.com/typescript/4.5.2
+ unplugin-auto-import: registry.npmmirror.com/unplugin-auto-import/0.5.1_@vueuse+core@7.1.2+vite@2.6.14
+ unplugin-vue-components: registry.npmmirror.com/unplugin-vue-components/0.17.6_vite@2.6.14+vue@3.2.24
+ vite: registry.npmmirror.com/vite/2.6.14_less@4.1.2
+ 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}
+ name: '@antfu/utils'
+ version: 0.3.0
+ dependencies:
+ '@types/throttle-debounce': registry.npmmirror.com/@types/throttle-debounce/2.1.0
+ 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}
+ name: '@babel/helper-plugin-utils'
+ version: 7.14.5
+ 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}
+ name: '@babel/helper-validator-identifier'
+ version: 7.15.7
+ 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}
+ name: '@babel/helper-validator-option'
+ version: 7.14.5
+ 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}
+ id: registry.nlark.com/@babel/plugin-syntax-import-meta/7.10.4
+ name: '@babel/plugin-syntax-import-meta'
+ version: 7.10.4
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': registry.npmmirror.com/@babel/core/7.16.0
+ '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5
+ 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}
+ name: '@emmetio/abbreviation'
+ version: 2.2.2
+ dependencies:
+ '@emmetio/scanner': registry.nlark.com/@emmetio/scanner/1.0.0
+ 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}
+ name: '@emmetio/css-abbreviation'
+ version: 2.1.4
+ dependencies:
+ '@emmetio/scanner': registry.nlark.com/@emmetio/scanner/1.0.0
+ 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}
+ 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}
+ name: '@nodelib/fs.scandir'
+ version: 2.1.5
+ 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}
+ name: '@nodelib/fs.stat'
+ version: 2.0.5
+ engines: {node: '>= 8'}
+ dev: true
+
+ registry.nlark.com/@nodelib/fs.walk/1.2.8:
+ resolution: {integrity: sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@nodelib/fs.walk/download/@nodelib/fs.walk-1.2.8.tgz}
+ name: '@nodelib/fs.walk'
+ version: 1.2.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}
+ name: '@rollup/pluginutils'
+ version: 4.1.1
+ 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}
+ 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}
+ 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}
+ name: JSONStream
+ version: 1.3.5
+ hasBin: true
+ dependencies:
+ jsonparse: registry.nlark.com/jsonparse/1.3.1
+ through: registry.nlark.com/through/2.3.8
+ dev: true
+
+ registry.nlark.com/acorn-jsx/5.3.2_acorn@7.4.1:
+ resolution: {integrity: sha1-ftW7VZCLOy8bxVxq8WU7rafweTc=, registry: 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
+ peerDependencies:
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ acorn: registry.npmmirror.com/acorn/7.4.1
+ 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}
+ id: registry.nlark.com/acorn-jsx/5.3.2
+ name: acorn-jsx
+ version: 5.3.2
+ peerDependencies:
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ acorn: registry.npmmirror.com/acorn/8.6.0
+ 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}
+ name: aggregate-error
+ version: 3.1.0
+ 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}
+ name: ansi-colors
+ version: 4.1.1
+ 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}
+ name: ansi-escapes
+ version: 3.2.0
+ 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}
+ name: ansi-escapes
+ version: 4.3.2
+ 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}
+ name: ansi-regex
+ version: 3.0.0
+ 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}
+ name: ansi-regex
+ version: 4.1.0
+ 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}
+ name: ansi-regex
+ version: 5.0.1
+ 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}
+ name: ansi-regex
+ version: 6.0.1
+ 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}
+ name: ansi-styles
+ version: 3.2.1
+ 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}
+ name: ansi-styles
+ version: 4.3.0
+ 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}
+ name: ansi-styles
+ version: 6.1.0
+ 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}
+ name: anymatch
+ version: 3.1.2
+ 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}
+ 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}
+ name: argparse
+ version: 1.0.10
+ dependencies:
+ sprintf-js: registry.nlark.com/sprintf-js/1.0.3
+ 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}
+ 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}
+ name: array-differ
+ version: 3.0.0
+ 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}
+ 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}
+ name: array-union
+ version: 2.1.0
+ engines: {node: '>=8'}
+ dev: true
+
+ registry.nlark.com/arrify/1.0.1:
+ resolution: {integrity: sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/arrify/download/arrify-1.0.1.tgz}
+ name: arrify
+ version: 1.0.1
+ 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}
+ name: arrify
+ version: 2.0.1
+ 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}
+ 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}
+ 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}
+ name: astral-regex
+ version: 2.0.0
+ 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}
+ name: babel-walk
+ version: 3.0.0-canary-5
+ 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}
+ 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}
+ 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}
+ name: binary-extensions
+ version: 2.2.0
+ 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}
+ name: braces
+ version: 3.0.2
+ 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}
+ 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}
+ name: builtin-modules
+ version: 3.2.0
+ 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}
+ name: builtins
+ version: 4.0.0
+ dependencies:
+ semver: registry.nlark.com/semver/7.3.5
+ 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}
+ name: cachedir
+ version: 2.2.0
+ 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}
+ name: call-bind
+ version: 1.0.2
+ dependencies:
+ function-bind: registry.nlark.com/function-bind/1.1.1
+ get-intrinsic: registry.nlark.com/get-intrinsic/1.1.1
+ 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}
+ name: callsites
+ version: 3.1.0
+ 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}
+ name: character-parser
+ version: 2.2.0
+ dependencies:
+ is-regex: registry.nlark.com/is-regex/1.1.4
+ 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}
+ name: clean-regexp
+ version: 1.0.0
+ 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}
+ name: clean-stack
+ version: 2.2.0
+ 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}
+ name: cli-cursor
+ version: 2.1.0
+ 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}
+ name: cli-cursor
+ version: 3.1.0
+ 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}
+ 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}
+ name: cliui
+ version: 7.0.4
+ dependencies:
+ string-width: registry.npmmirror.com/string-width/4.2.3
+ strip-ansi: registry.npmmirror.com/strip-ansi/6.0.1
+ wrap-ansi: registry.nlark.com/wrap-ansi/7.0.0
+ 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}
+ name: clone-regexp
+ version: 2.2.0
+ 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}
+ name: color-convert
+ version: 1.9.3
+ dependencies:
+ color-name: registry.nlark.com/color-name/1.1.3
+ 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}
+ name: color-convert
+ version: 2.0.1
+ 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}
+ 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}
+ 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}
+ name: compare-func
+ version: 2.0.0
+ dependencies:
+ array-ify: registry.nlark.com/array-ify/1.0.0
+ dot-prop: registry.nlark.com/dot-prop/5.3.0
+ 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}
+ 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}
+ name: constantinople
+ version: 4.0.1
+ dependencies:
+ '@babel/parser': registry.npmmirror.com/@babel/parser/7.16.4
+ '@babel/types': registry.npmmirror.com/@babel/types/7.16.0
+ 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}
+ name: conventional-changelog-angular
+ version: 5.0.13
+ 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}
+ name: conventional-changelog-conventionalcommits
+ version: 4.6.1
+ engines: {node: '>=10'}
+ dependencies:
+ compare-func: registry.nlark.com/compare-func/2.0.0
+ lodash: registry.nlark.com/lodash/4.17.21
+ q: registry.nlark.com/q/1.5.1
+ 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}
+ 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}
+ name: convert-source-map
+ version: 1.8.0
+ dependencies:
+ safe-buffer: registry.nlark.com/safe-buffer/5.1.2
+ 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}
+ name: copy-anything
+ version: 2.0.3
+ dependencies:
+ is-what: registry.npmmirror.com/is-what/3.14.1
+ dev: true
+
+ registry.nlark.com/cosmiconfig/7.0.1:
+ resolution: {integrity: sha1-cU11ZSLKzoZ4Z8y0R0xdAbuuXW0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/cosmiconfig/download/cosmiconfig-7.0.1.tgz}
+ name: cosmiconfig
+ version: 7.0.1
+ 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
+ parse-json: registry.npmmirror.com/parse-json/5.2.0
+ path-type: registry.nlark.com/path-type/4.0.0
+ yaml: registry.npmmirror.com/yaml/1.10.2
+ 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}
+ 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}
+ name: cross-spawn
+ version: 7.0.3
+ engines: {node: '>= 8'}
+ dependencies:
+ path-key: registry.nlark.com/path-key/3.1.1
+ shebang-command: registry.nlark.com/shebang-command/2.0.0
+ which: registry.nlark.com/which/2.0.2
+ 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}
+ name: cssesc
+ version: 3.0.0
+ 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}
+ name: cz-conventional-changelog
+ version: 3.2.0
+ engines: {node: '>= 10'}
+ dependencies:
+ chalk: registry.npmmirror.com/chalk/2.4.2
+ commitizen: registry.npmmirror.com/commitizen/4.2.4
+ conventional-commit-types: registry.nlark.com/conventional-commit-types/3.0.0
+ lodash.map: registry.nlark.com/lodash.map/4.6.0
+ longest: registry.nlark.com/longest/2.0.1
+ word-wrap: registry.nlark.com/word-wrap/1.2.3
+ optionalDependencies:
+ '@commitlint/load': registry.npmmirror.com/@commitlint/load/15.0.0
+ 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}
+ name: dargs
+ version: 7.0.0
+ 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}
+ name: decamelize-keys
+ version: 1.1.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}
+ 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}
+ 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}
+ name: define-properties
+ version: 1.1.3
+ 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}
+ name: detect-file
+ version: 1.0.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}
+ name: detect-indent
+ version: 6.0.0
+ 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}
+ name: diff
+ version: 4.0.2
+ 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}
+ name: dir-glob
+ version: 3.0.1
+ 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}
+ name: doctrine
+ version: 2.1.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}
+ name: doctrine
+ version: 3.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}
+ 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}
+ name: dom-serializer
+ version: 1.3.2
+ dependencies:
+ domelementtype: registry.nlark.com/domelementtype/2.2.0
+ domhandler: registry.npmmirror.com/domhandler/4.3.0
+ entities: registry.nlark.com/entities/2.2.0
+ 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}
+ 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}
+ name: domutils
+ version: 2.8.0
+ dependencies:
+ dom-serializer: registry.nlark.com/dom-serializer/1.3.2
+ domelementtype: registry.nlark.com/domelementtype/2.2.0
+ domhandler: registry.npmmirror.com/domhandler/4.3.0
+ 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}
+ name: dot-prop
+ version: 5.3.0
+ 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}
+ name: emmet
+ version: 2.3.4
+ dependencies:
+ '@emmetio/abbreviation': registry.nlark.com/@emmetio/abbreviation/2.2.2
+ '@emmetio/css-abbreviation': registry.nlark.com/@emmetio/css-abbreviation/2.1.4
+ 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}
+ name: end-of-stream
+ version: 1.4.4
+ dependencies:
+ once: registry.nlark.com/once/1.4.0
+ 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}
+ name: enquirer
+ version: 2.3.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}
+ 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}
+ name: entities
+ version: 3.0.1
+ 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}
+ name: errno
+ version: 0.1.8
+ hasBin: true
+ requiresBuild: true
+ dependencies:
+ prr: registry.nlark.com/prr/1.0.1
+ dev: true
+ 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}
+ name: error-ex
+ version: 1.3.2
+ dependencies:
+ is-arrayish: registry.nlark.com/is-arrayish/0.2.1
+ 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}
+ name: es-to-primitive
+ version: 1.2.1
+ 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
+ is-symbol: registry.nlark.com/is-symbol/1.0.4
+ 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}
+ name: escalade
+ version: 3.1.1
+ 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}
+ name: escape-string-regexp
+ version: 1.0.5
+ 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}
+ name: escape-string-regexp
+ version: 4.0.0
+ 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}
+ id: registry.nlark.com/eslint-config-prettier/8.3.0
+ name: eslint-config-prettier
+ version: 8.3.0
+ hasBin: true
+ peerDependencies:
+ eslint: '>=7.0.0'
+ dependencies:
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ 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}
+ id: registry.nlark.com/eslint-config-standard/16.0.3
+ name: eslint-config-standard
+ version: 16.0.3
+ peerDependencies:
+ eslint: ^7.12.1
+ eslint-plugin-import: ^2.22.1
+ eslint-plugin-node: ^11.1.0
+ eslint-plugin-promise: ^4.2.1 || ^5.0.0
+ dependencies:
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ eslint-plugin-import: registry.npmmirror.com/eslint-plugin-import/2.25.3_eslint@8.4.1
+ eslint-plugin-node: registry.nlark.com/eslint-plugin-node/11.1.0_eslint@8.4.1
+ eslint-plugin-promise: registry.npmmirror.com/eslint-plugin-promise/5.2.0_eslint@8.4.1
+ 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}
+ name: eslint-import-resolver-node
+ version: 0.3.6
+ dependencies:
+ debug: registry.npmmirror.com/debug/3.2.7
+ resolve: registry.nlark.com/resolve/1.20.0
+ 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}
+ id: registry.nlark.com/eslint-plugin-es/3.0.1
+ name: eslint-plugin-es
+ version: 3.0.1
+ engines: {node: '>=8.10.0'}
+ peerDependencies:
+ eslint: '>=4.19.1'
+ dependencies:
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ eslint-utils: registry.nlark.com/eslint-utils/2.1.0
+ regexpp: registry.nlark.com/regexpp/3.2.0
+ 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}
+ 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'}
+ peerDependencies:
+ eslint: '>=4.19.1'
+ dependencies:
+ escape-string-regexp: registry.nlark.com/escape-string-regexp/1.0.5
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ ignore: registry.npmmirror.com/ignore/5.1.9
+ 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}
+ id: registry.nlark.com/eslint-plugin-node/11.1.0
+ name: eslint-plugin-node
+ version: 11.1.0
+ engines: {node: '>=8.10.0'}
+ peerDependencies:
+ eslint: '>=5.16.0'
+ dependencies:
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ eslint-plugin-es: registry.nlark.com/eslint-plugin-es/3.0.1_eslint@8.4.1
+ eslint-utils: registry.nlark.com/eslint-utils/2.1.0
+ ignore: registry.npmmirror.com/ignore/5.1.9
+ minimatch: registry.nlark.com/minimatch/3.0.4
+ resolve: registry.nlark.com/resolve/1.20.0
+ semver: registry.nlark.com/semver/6.3.0
+ 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}
+ id: registry.nlark.com/eslint-template-visitor/2.3.2
+ name: eslint-template-visitor
+ version: 2.3.2
+ peerDependencies:
+ eslint: '>=7.0.0'
+ dependencies:
+ '@babel/core': registry.npmmirror.com/@babel/core/7.16.0
+ '@babel/eslint-parser': registry.npmmirror.com/@babel/eslint-parser/7.16.3_@babel+core@7.16.0+eslint@8.4.1
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/2.1.0
+ esquery: registry.nlark.com/esquery/1.4.0
+ multimap: registry.nlark.com/multimap/1.1.0
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ name: eslint-utils
+ version: 2.1.0
+ 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}
+ 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}
+ peerDependencies:
+ eslint: '>=5'
+ dependencies:
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/2.1.0
+ 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}
+ name: esprima
+ version: 4.0.1
+ 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}
+ name: esquery
+ version: 1.4.0
+ 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}
+ name: esrecurse
+ version: 4.3.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}
+ 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}
+ name: esutils
+ version: 2.0.3
+ 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}
+ name: execall
+ version: 2.0.0
+ 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}
+ name: expand-tilde
+ version: 2.0.2
+ 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}
+ name: external-editor
+ version: 3.1.0
+ engines: {node: '>=4'}
+ dependencies:
+ chardet: registry.npmmirror.com/chardet/0.7.0
+ iconv-lite: registry.nlark.com/iconv-lite/0.4.24
+ tmp: registry.nlark.com/tmp/0.0.33
+ 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}
+ 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}
+ 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}
+ name: fast-glob
+ version: 3.2.7
+ 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
+ glob-parent: registry.npmmirror.com/glob-parent/5.1.2
+ merge2: registry.nlark.com/merge2/1.4.1
+ micromatch: registry.nlark.com/micromatch/4.0.4
+ 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}
+ 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}
+ 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}
+ 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}
+ name: fastq
+ version: 1.13.0
+ dependencies:
+ reusify: registry.nlark.com/reusify/1.0.4
+ 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}
+ name: figures
+ version: 2.0.0
+ 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}
+ name: file-entry-cache
+ version: 6.0.1
+ 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}
+ name: fill-range
+ version: 7.0.1
+ 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}
+ name: find-node-modules
+ version: 2.1.2
+ dependencies:
+ findup-sync: registry.npmmirror.com/findup-sync/4.0.0
+ merge: registry.nlark.com/merge/2.1.1
+ 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}
+ 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}
+ name: flat-cache
+ version: 3.0.4
+ 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}
+ name: fs-extra
+ version: 10.0.0
+ engines: {node: '>=12'}
+ dependencies:
+ graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8
+ jsonfile: registry.nlark.com/jsonfile/6.1.0
+ universalify: registry.nlark.com/universalify/2.0.0
+ 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}
+ name: fs-extra
+ version: 8.1.0
+ engines: {node: '>=6 <7 || >=8'}
+ dependencies:
+ graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8
+ jsonfile: registry.nlark.com/jsonfile/4.0.0
+ universalify: registry.nlark.com/universalify/0.1.2
+ 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}
+ 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}
+ 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}
+ 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}
+ name: gensync
+ version: 1.0.0-beta.2
+ 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}
+ name: get-caller-file
+ version: 2.0.5
+ 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}
+ name: get-intrinsic
+ version: 1.1.1
+ dependencies:
+ function-bind: registry.nlark.com/function-bind/1.1.1
+ has: registry.nlark.com/has/1.0.3
+ has-symbols: registry.nlark.com/has-symbols/1.0.2
+ 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}
+ name: get-stdin
+ version: 8.0.0
+ 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}
+ name: get-stream
+ version: 5.2.0
+ 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}
+ name: get-stream
+ version: 6.0.1
+ 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}
+ name: get-symbol-description
+ version: 1.0.0
+ 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}
+ name: git-raw-commits
+ version: 2.0.10
+ engines: {node: '>=10'}
+ hasBin: true
+ dependencies:
+ dargs: registry.nlark.com/dargs/7.0.0
+ lodash: registry.nlark.com/lodash/4.17.21
+ meow: registry.npmmirror.com/meow/8.1.2
+ split2: registry.npmmirror.com/split2/3.2.2
+ through2: registry.nlark.com/through2/4.0.2
+ 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}
+ name: global-dirs
+ version: 0.1.1
+ 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}
+ name: global-modules
+ version: 1.0.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
+ resolve-dir: registry.nlark.com/resolve-dir/1.0.1
+ 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}
+ name: global-modules
+ version: 2.0.0
+ 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}
+ name: global-prefix
+ version: 1.0.2
+ 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
+ ini: registry.nlark.com/ini/1.3.8
+ is-windows: registry.nlark.com/is-windows/1.0.2
+ which: registry.nlark.com/which/1.3.1
+ 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}
+ name: global-prefix
+ version: 3.0.0
+ engines: {node: '>=6'}
+ dependencies:
+ ini: registry.nlark.com/ini/1.3.8
+ kind-of: registry.nlark.com/kind-of/6.0.3
+ which: registry.nlark.com/which/1.3.1
+ 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}
+ name: globby
+ version: 11.0.4
+ engines: {node: '>=10'}
+ dependencies:
+ array-union: registry.nlark.com/array-union/2.1.0
+ dir-glob: registry.nlark.com/dir-glob/3.0.1
+ fast-glob: registry.nlark.com/fast-glob/3.2.7
+ ignore: registry.npmmirror.com/ignore/5.1.9
+ merge2: registry.nlark.com/merge2/1.4.1
+ slash: registry.nlark.com/slash/3.0.0
+ 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}
+ 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}
+ name: hard-rejection
+ version: 2.1.0
+ 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}
+ 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}
+ name: has-flag
+ version: 3.0.0
+ 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}
+ name: has-flag
+ version: 4.0.0
+ 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}
+ name: has-symbols
+ version: 1.0.2
+ 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}
+ name: has-tostringtag
+ version: 1.0.0
+ 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}
+ name: has
+ version: 1.0.3
+ 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}
+ 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}
+ name: homedir-polyfill
+ version: 1.0.3
+ 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}
+ 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}
+ name: hosted-git-info
+ version: 4.0.2
+ 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}
+ name: html-tags
+ version: 3.1.0
+ 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}
+ name: human-signals
+ version: 1.1.1
+ 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}
+ name: human-signals
+ version: 2.1.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}
+ name: iconv-lite
+ version: 0.4.24
+ 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}
+ name: image-size
+ version: 0.5.5
+ 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}
+ name: import-fresh
+ version: 3.3.0
+ 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}
+ name: import-lazy
+ version: 4.0.0
+ 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}
+ name: imurmurhash
+ version: 0.1.4
+ 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}
+ name: indent-string
+ version: 4.0.0
+ 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}
+ name: inflight
+ version: 1.0.6
+ dependencies:
+ once: registry.nlark.com/once/1.4.0
+ wrappy: registry.nlark.com/wrappy/1.0.2
+ 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}
+ 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}
+ 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}
+ name: internal-slot
+ version: 1.0.3
+ engines: {node: '>= 0.4'}
+ dependencies:
+ get-intrinsic: registry.nlark.com/get-intrinsic/1.1.1
+ has: registry.nlark.com/has/1.0.3
+ side-channel: registry.nlark.com/side-channel/1.0.4
+ 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}
+ 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}
+ name: is-bigint
+ version: 1.0.4
+ dependencies:
+ has-bigints: registry.nlark.com/has-bigints/1.0.1
+ 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}
+ name: is-binary-path
+ version: 2.1.0
+ 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}
+ name: is-boolean-object
+ version: 1.1.2
+ 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}
+ name: is-builtin-module
+ version: 3.1.0
+ 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}
+ name: is-callable
+ version: 1.2.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}
+ name: is-date-object
+ version: 1.0.5
+ 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}
+ name: is-expression
+ version: 4.0.0
+ dependencies:
+ acorn: registry.npmmirror.com/acorn/7.4.1
+ object-assign: registry.nlark.com/object-assign/4.1.1
+ 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}
+ name: is-extglob
+ version: 2.1.1
+ 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}
+ name: is-fullwidth-code-point
+ version: 2.0.0
+ 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}
+ name: is-fullwidth-code-point
+ version: 3.0.0
+ 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}
+ name: is-fullwidth-code-point
+ version: 4.0.0
+ 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}
+ name: is-negative-zero
+ version: 2.0.1
+ 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}
+ name: is-number-object
+ version: 1.0.6
+ 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}
+ name: is-number
+ version: 7.0.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}
+ name: is-obj
+ version: 2.0.0
+ engines: {node: '>=8'}
+ dev: true
+
+ registry.nlark.com/is-plain-obj/1.1.0:
+ resolution: {integrity: sha1-caUMhCnfync8kqOQpKA7OfzVHT4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-plain-obj/download/is-plain-obj-1.1.0.tgz}
+ name: is-plain-obj
+ version: 1.1.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}
+ name: is-plain-object
+ version: 5.0.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}
+ 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}
+ name: is-regex
+ version: 1.1.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}
+ name: is-regexp
+ version: 2.1.0
+ 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}
+ name: is-stream
+ version: 2.0.1
+ 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}
+ name: is-string
+ version: 1.0.7
+ 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}
+ name: is-symbol
+ version: 1.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}
+ name: is-text-path
+ version: 1.0.1
+ 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}
+ 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}
+ 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}
+ name: is-windows
+ version: 1.0.2
+ 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}
+ 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}
+ 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}
+ 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}
+ name: js-yaml
+ version: 3.14.1
+ hasBin: true
+ dependencies:
+ argparse: registry.nlark.com/argparse/1.0.10
+ esprima: registry.nlark.com/esprima/4.0.1
+ 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}
+ name: js-yaml
+ version: 4.1.0
+ hasBin: true
+ dependencies:
+ argparse: registry.nlark.com/argparse/2.0.1
+ 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}
+ name: jsesc
+ version: 2.5.2
+ 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}
+ 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}
+ 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}
+ 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}
+ 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}
+ name: json5
+ version: 1.0.1
+ hasBin: true
+ dependencies:
+ minimist: registry.nlark.com/minimist/1.2.5
+ 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}
+ name: json5
+ version: 2.2.0
+ 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}
+ 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}
+ 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}
+ name: jsonfile
+ version: 4.0.0
+ optionalDependencies:
+ graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8
+ 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}
+ name: jsonfile
+ version: 6.1.0
+ dependencies:
+ universalify: registry.nlark.com/universalify/2.0.0
+ optionalDependencies:
+ graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8
+ 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}
+ name: jsonparse
+ version: 1.3.1
+ 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}
+ name: jstransformer
+ version: 1.0.0
+ dependencies:
+ is-promise: registry.nlark.com/is-promise/2.2.2
+ promise: registry.nlark.com/promise/7.3.1
+ 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}
+ name: jsx-ast-utils
+ version: 3.2.1
+ 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}
+ name: kind-of
+ version: 6.0.3
+ 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}
+ 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}
+ 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}
+ name: levn
+ version: 0.4.1
+ 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}
+ name: locate-path
+ version: 2.0.0
+ 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}
+ name: locate-path
+ version: 5.0.0
+ 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}
+ name: locate-path
+ version: 6.0.0
+ 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}
+ 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}
+ 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}
+ 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}
+ 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}
+ 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}
+ name: longest
+ version: 2.0.1
+ 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}
+ name: loose-envify
+ version: 1.4.0
+ hasBin: true
+ dependencies:
+ js-tokens: registry.nlark.com/js-tokens/4.0.0
+ 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}
+ name: lru-cache
+ version: 6.0.0
+ 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}
+ 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}
+ name: make-dir
+ version: 2.1.0
+ engines: {node: '>=6'}
+ requiresBuild: true
+ dependencies:
+ pify: registry.nlark.com/pify/4.0.1
+ semver: registry.nlark.com/semver/5.7.1
+ dev: true
+ 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}
+ 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}
+ 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}
+ 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}
+ name: merge2
+ version: 1.4.1
+ 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}
+ name: micromatch
+ version: 4.0.4
+ 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}
+ name: mimic-fn
+ version: 1.2.0
+ 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}
+ name: mimic-fn
+ version: 2.1.0
+ 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}
+ name: min-indent
+ version: 1.0.1
+ 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}
+ name: minimatch
+ version: 3.0.4
+ dependencies:
+ brace-expansion: registry.npmmirror.com/brace-expansion/1.1.11
+ 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}
+ name: minimist-options
+ version: 4.1.0
+ engines: {node: '>= 6'}
+ dependencies:
+ arrify: registry.nlark.com/arrify/1.0.1
+ is-plain-obj: registry.nlark.com/is-plain-obj/1.1.0
+ kind-of: registry.nlark.com/kind-of/6.0.3
+ dev: true
+
+ registry.nlark.com/minimist/1.2.5:
+ resolution: {integrity: sha1-Z9ZgFLZqaoqqDAg8X9WN9OTpdgI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/minimist/download/minimist-1.2.5.tgz}
+ 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}
+ name: mri
+ version: 1.2.0
+ 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}
+ 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}
+ 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}
+ 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}
+ name: needle
+ version: 2.9.1
+ engines: {node: '>= 4.4.x'}
+ hasBin: true
+ requiresBuild: true
+ dependencies:
+ debug: registry.npmmirror.com/debug/3.2.7
+ iconv-lite: registry.nlark.com/iconv-lite/0.4.24
+ sax: registry.nlark.com/sax/1.2.4
+ dev: true
+ 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}
+ name: normalize-package-data
+ version: 2.5.0
+ dependencies:
+ hosted-git-info: registry.nlark.com/hosted-git-info/2.8.9
+ resolve: registry.nlark.com/resolve/1.20.0
+ semver: registry.nlark.com/semver/5.7.1
+ validate-npm-package-license: registry.nlark.com/validate-npm-package-license/3.0.4
+ 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}
+ name: normalize-package-data
+ version: 3.0.3
+ 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
+ semver: registry.nlark.com/semver/7.3.5
+ validate-npm-package-license: registry.nlark.com/validate-npm-package-license/3.0.4
+ 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}
+ name: normalize-path
+ version: 3.0.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}
+ name: normalize-range
+ version: 0.1.2
+ 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}
+ 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}
+ name: object-assign
+ version: 4.1.1
+ 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}
+ name: object-keys
+ version: 1.1.1
+ 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}
+ name: object.assign
+ version: 4.1.2
+ 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
+ has-symbols: registry.nlark.com/has-symbols/1.0.2
+ object-keys: registry.nlark.com/object-keys/1.1.1
+ 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}
+ name: once
+ version: 1.4.0
+ dependencies:
+ wrappy: registry.nlark.com/wrappy/1.0.2
+ 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}
+ name: onetime
+ version: 2.0.1
+ 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}
+ name: onetime
+ version: 5.1.2
+ 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}
+ name: optionator
+ version: 0.9.1
+ 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
+ levn: registry.nlark.com/levn/0.4.1
+ prelude-ls: registry.nlark.com/prelude-ls/1.2.1
+ type-check: registry.nlark.com/type-check/0.4.0
+ word-wrap: registry.nlark.com/word-wrap/1.2.3
+ 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}
+ name: os-tmpdir
+ version: 1.0.2
+ 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}
+ name: p-limit
+ version: 1.3.0
+ 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}
+ name: p-limit
+ version: 2.3.0
+ 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}
+ name: p-limit
+ version: 3.1.0
+ 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}
+ name: p-locate
+ version: 2.0.0
+ 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}
+ name: p-locate
+ version: 4.1.0
+ 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}
+ name: p-locate
+ version: 5.0.0
+ 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}
+ name: parse-passwd
+ version: 1.0.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}
+ name: path-exists
+ version: 3.0.0
+ engines: {node: '>=4'}
+ dev: true
+
+ registry.nlark.com/path-exists/4.0.0:
+ resolution: {integrity: sha1-UTvb4tO5XXdi6METfvoZXGxhtbM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-exists/download/path-exists-4.0.0.tgz}
+ name: path-exists
+ version: 4.0.0
+ 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}
+ name: path-is-absolute
+ version: 1.0.1
+ 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}
+ name: path-key
+ version: 3.1.1
+ 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}
+ 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}
+ name: path-type
+ version: 4.0.0
+ 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}
+ name: picomatch
+ version: 2.3.0
+ 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}
+ name: pify
+ version: 4.0.1
+ 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}
+ name: pluralize
+ version: 8.0.0
+ engines: {node: '>=4'}
+ 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}
+ 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}
+ 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}
+ id: registry.nlark.com/postcss-safe-parser/6.0.0
+ name: postcss-safe-parser
+ version: 6.0.0
+ engines: {node: '>=12.0'}
+ peerDependencies:
+ postcss: ^8.3.3
+ dependencies:
+ postcss: registry.npmmirror.com/postcss/8.4.4
+ 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}
+ name: postcss-selector-parser
+ version: 6.0.6
+ 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}
+ name: prelude-ls
+ version: 1.2.1
+ 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}
+ name: prettier-linter-helpers
+ version: 1.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}
+ name: progress
+ version: 2.0.3
+ 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}
+ name: promise
+ version: 7.3.1
+ dependencies:
+ asap: registry.nlark.com/asap/2.0.6
+ 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}
+ name: prop-types
+ version: 15.7.2
+ dependencies:
+ loose-envify: registry.nlark.com/loose-envify/1.4.0
+ object-assign: registry.nlark.com/object-assign/4.1.1
+ react-is: registry.npmmirror.com/react-is/16.13.1
+ 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}
+ 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}
+ name: pug-attrs
+ version: 3.0.0
+ dependencies:
+ constantinople: registry.nlark.com/constantinople/4.0.1
+ js-stringify: registry.nlark.com/js-stringify/1.0.2
+ pug-runtime: registry.nlark.com/pug-runtime/3.0.1
+ 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}
+ name: pug-code-gen
+ version: 3.0.2
+ dependencies:
+ constantinople: registry.nlark.com/constantinople/4.0.1
+ doctypes: registry.nlark.com/doctypes/1.1.0
+ js-stringify: registry.nlark.com/js-stringify/1.0.2
+ pug-attrs: registry.nlark.com/pug-attrs/3.0.0
+ pug-error: registry.nlark.com/pug-error/2.0.0
+ pug-runtime: registry.nlark.com/pug-runtime/3.0.1
+ void-elements: registry.nlark.com/void-elements/3.1.0
+ with: registry.nlark.com/with/7.0.2
+ 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}
+ 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}
+ name: pug-filters
+ version: 4.0.0
+ dependencies:
+ constantinople: registry.nlark.com/constantinople/4.0.1
+ jstransformer: registry.nlark.com/jstransformer/1.0.0
+ pug-error: registry.nlark.com/pug-error/2.0.0
+ pug-walk: registry.nlark.com/pug-walk/2.0.0
+ resolve: registry.nlark.com/resolve/1.20.0
+ 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}
+ name: pug-lexer
+ version: 5.0.1
+ dependencies:
+ character-parser: registry.nlark.com/character-parser/2.2.0
+ is-expression: registry.nlark.com/is-expression/4.0.0
+ pug-error: registry.nlark.com/pug-error/2.0.0
+ 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}
+ name: pug-linker
+ version: 4.0.0
+ dependencies:
+ pug-error: registry.nlark.com/pug-error/2.0.0
+ pug-walk: registry.nlark.com/pug-walk/2.0.0
+ 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}
+ name: pug-load
+ version: 3.0.0
+ dependencies:
+ object-assign: registry.nlark.com/object-assign/4.1.1
+ pug-walk: registry.nlark.com/pug-walk/2.0.0
+ 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}
+ name: pug-parser
+ version: 6.0.0
+ dependencies:
+ pug-error: registry.nlark.com/pug-error/2.0.0
+ token-stream: registry.nlark.com/token-stream/1.0.0
+ 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}
+ 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}
+ name: pug-strip-comments
+ version: 2.0.0
+ dependencies:
+ pug-error: registry.nlark.com/pug-error/2.0.0
+ 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}
+ 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}
+ name: pug
+ version: 3.0.2
+ dependencies:
+ pug-code-gen: registry.nlark.com/pug-code-gen/3.0.2
+ pug-filters: registry.nlark.com/pug-filters/4.0.0
+ pug-lexer: registry.nlark.com/pug-lexer/5.0.1
+ pug-linker: registry.nlark.com/pug-linker/4.0.0
+ pug-load: registry.nlark.com/pug-load/3.0.0
+ pug-parser: registry.nlark.com/pug-parser/6.0.0
+ pug-runtime: registry.nlark.com/pug-runtime/3.0.1
+ pug-strip-comments: registry.nlark.com/pug-strip-comments/2.0.0
+ 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}
+ name: pump
+ version: 3.0.0
+ dependencies:
+ end-of-stream: registry.nlark.com/end-of-stream/1.4.4
+ once: registry.nlark.com/once/1.4.0
+ 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}
+ name: punycode
+ version: 2.1.1
+ 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}
+ name: q
+ version: 1.5.1
+ engines: {node: '>=0.6.0', teleport: '>=0.2.0'}
+ dev: true
+
+ registry.nlark.com/queue-microtask/1.2.3:
+ resolution: {integrity: sha1-SSkii7xyTfrEPg77BYyve2z7YkM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/queue-microtask/download/queue-microtask-1.2.3.tgz}
+ 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}
+ name: read-pkg
+ version: 5.2.0
+ 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
+ parse-json: registry.npmmirror.com/parse-json/5.2.0
+ type-fest: registry.npmmirror.com/type-fest/0.6.0
+ 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}
+ name: readable-stream
+ version: 3.6.0
+ engines: {node: '>= 6'}
+ dependencies:
+ inherits: registry.nlark.com/inherits/2.0.4
+ string_decoder: registry.nlark.com/string_decoder/1.3.0
+ util-deprecate: registry.nlark.com/util-deprecate/1.0.2
+ 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}
+ name: readdirp
+ version: 3.6.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}
+ name: redent
+ version: 3.0.0
+ 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}
+ name: regexp.prototype.flags
+ version: 1.3.1
+ 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}
+ name: regexpp
+ version: 3.2.0
+ 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}
+ name: require-directory
+ version: 2.1.1
+ 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}
+ name: require-from-string
+ version: 2.0.2
+ 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}
+ name: resolve-dir
+ version: 1.0.1
+ 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}
+ name: resolve-from
+ version: 4.0.0
+ 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}
+ name: resolve-from
+ version: 5.0.0
+ engines: {node: '>=8'}
+ dev: true
+
+ registry.nlark.com/resolve-global/1.0.0:
+ resolution: {integrity: sha1-oqed9K8so/Sb93753azTItrRklU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/resolve-global/download/resolve-global-1.0.0.tgz}
+ name: resolve-global
+ version: 1.0.0
+ 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}
+ name: resolve
+ version: 1.20.0
+ dependencies:
+ is-core-module: registry.npmmirror.com/is-core-module/2.8.0
+ path-parse: registry.nlark.com/path-parse/1.0.7
+ 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}
+ name: resolve
+ version: 2.0.0-next.3
+ dependencies:
+ is-core-module: registry.npmmirror.com/is-core-module/2.8.0
+ path-parse: registry.nlark.com/path-parse/1.0.7
+ 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}
+ name: restore-cursor
+ version: 2.0.0
+ 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}
+ name: restore-cursor
+ version: 3.1.0
+ 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}
+ name: reusify
+ version: 1.0.4
+ 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}
+ 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}
+ name: rimraf
+ version: 3.0.2
+ hasBin: true
+ dependencies:
+ glob: registry.npmmirror.com/glob/7.2.0
+ 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}
+ name: run-async
+ version: 2.4.1
+ 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}
+ name: run-parallel
+ version: 1.2.0
+ dependencies:
+ queue-microtask: registry.nlark.com/queue-microtask/1.2.3
+ 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}
+ 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}
+ 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}
+ name: safe-regex
+ version: 2.1.1
+ dependencies:
+ regexp-tree: registry.npmmirror.com/regexp-tree/0.1.24
+ 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}
+ 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}
+ 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}
+ 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}
+ 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}
+ name: semver
+ version: 7.3.5
+ 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}
+ name: shebang-command
+ version: 2.0.0
+ 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}
+ name: shebang-regex
+ version: 3.0.0
+ 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}
+ name: side-channel
+ version: 1.0.4
+ dependencies:
+ call-bind: registry.nlark.com/call-bind/1.0.2
+ get-intrinsic: registry.nlark.com/get-intrinsic/1.1.1
+ object-inspect: registry.npmmirror.com/object-inspect/1.11.1
+ 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}
+ name: slash
+ version: 3.0.0
+ 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}
+ name: slice-ansi
+ version: 3.0.0
+ engines: {node: '>=8'}
+ dependencies:
+ ansi-styles: registry.nlark.com/ansi-styles/4.3.0
+ astral-regex: registry.nlark.com/astral-regex/2.0.0
+ is-fullwidth-code-point: registry.nlark.com/is-fullwidth-code-point/3.0.0
+ 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}
+ name: slice-ansi
+ version: 4.0.0
+ engines: {node: '>=10'}
+ dependencies:
+ ansi-styles: registry.nlark.com/ansi-styles/4.3.0
+ astral-regex: registry.nlark.com/astral-regex/2.0.0
+ is-fullwidth-code-point: registry.nlark.com/is-fullwidth-code-point/3.0.0
+ 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}
+ name: slice-ansi
+ version: 5.0.0
+ 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}
+ name: source-map
+ version: 0.5.7
+ 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}
+ name: source-map
+ version: 0.6.1
+ 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}
+ 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}
+ name: spdx-correct
+ version: 3.1.1
+ dependencies:
+ spdx-expression-parse: registry.nlark.com/spdx-expression-parse/3.0.1
+ spdx-license-ids: registry.npmmirror.com/spdx-license-ids/3.0.11
+ 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}
+ 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}
+ name: spdx-expression-parse
+ version: 3.0.1
+ dependencies:
+ spdx-exceptions: registry.nlark.com/spdx-exceptions/2.3.0
+ spdx-license-ids: registry.npmmirror.com/spdx-license-ids/3.0.11
+ 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}
+ 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}
+ name: string-argv
+ version: 0.3.1
+ 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}
+ name: string.prototype.trimend
+ version: 1.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/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}
+ name: string.prototype.trimstart
+ version: 1.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/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}
+ name: string_decoder
+ version: 1.3.0
+ dependencies:
+ safe-buffer: registry.nlark.com/safe-buffer/5.2.1
+ 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}
+ name: strip-bom
+ version: 3.0.0
+ 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}
+ name: strip-bom
+ version: 4.0.0
+ 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}
+ name: strip-final-newline
+ version: 2.0.0
+ 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}
+ name: strip-indent
+ version: 3.0.0
+ 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}
+ name: strip-json-comments
+ version: 3.0.1
+ 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}
+ name: strip-json-comments
+ version: 3.1.1
+ 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}
+ 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}
+ 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}
+ name: text-extensions
+ version: 1.9.0
+ 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}
+ 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}
+ 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}
+ name: through2
+ version: 4.0.2
+ dependencies:
+ readable-stream: registry.nlark.com/readable-stream/3.6.0
+ 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}
+ name: tmp
+ version: 0.0.33
+ 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}
+ name: to-fast-properties
+ version: 2.0.0
+ 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}
+ name: to-regex-range
+ version: 5.0.1
+ 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}
+ 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}
+ name: trim-newlines
+ version: 3.0.1
+ 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}
+ 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}
+ 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}
+ 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}
+ id: registry.nlark.com/tsutils/3.21.0
+ name: tsutils
+ version: 3.21.0
+ engines: {node: '>= 6'}
+ peerDependencies:
+ typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
+ dependencies:
+ tslib: registry.nlark.com/tslib/1.14.1
+ typescript: registry.npmmirror.com/typescript/4.5.2
+ 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}
+ name: type-check
+ version: 0.4.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}
+ name: typedarray-to-buffer
+ version: 3.1.5
+ dependencies:
+ is-typedarray: registry.nlark.com/is-typedarray/1.0.0
+ 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}
+ name: unbox-primitive
+ version: 1.0.1
+ dependencies:
+ function-bind: registry.nlark.com/function-bind/1.1.1
+ has-bigints: registry.nlark.com/has-bigints/1.0.1
+ has-symbols: registry.nlark.com/has-symbols/1.0.2
+ which-boxed-primitive: registry.nlark.com/which-boxed-primitive/1.0.2
+ 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}
+ name: universalify
+ version: 0.1.2
+ 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}
+ name: universalify
+ version: 2.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}
+ name: upath
+ version: 2.0.1
+ 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}
+ name: uri-js
+ version: 4.4.1
+ dependencies:
+ punycode: registry.nlark.com/punycode/2.1.1
+ 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}
+ 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}
+ 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}
+ name: validate-npm-package-license
+ version: 3.0.4
+ dependencies:
+ spdx-correct: registry.nlark.com/spdx-correct/3.1.1
+ spdx-expression-parse: registry.nlark.com/spdx-expression-parse/3.0.1
+ 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}
+ id: registry.nlark.com/vite-plugin-eslint/1.3.0
+ name: vite-plugin-eslint
+ version: 1.3.0
+ peerDependencies:
+ vite: ^2.0.0
+ dependencies:
+ '@rollup/pluginutils': registry.nlark.com/@rollup/pluginutils/4.1.1
+ eslint: registry.npmmirror.com/eslint/7.32.0
+ rollup: registry.npmmirror.com/rollup/2.60.2
+ vite: registry.npmmirror.com/vite/2.6.14_less@4.1.2
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ name: void-elements
+ version: 3.1.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}
+ 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}
+ 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}
+ 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}
+ name: which-boxed-primitive
+ version: 1.0.2
+ dependencies:
+ is-bigint: registry.nlark.com/is-bigint/1.0.4
+ is-boolean-object: registry.nlark.com/is-boolean-object/1.1.2
+ is-number-object: registry.nlark.com/is-number-object/1.0.6
+ is-string: registry.nlark.com/is-string/1.0.7
+ is-symbol: registry.nlark.com/is-symbol/1.0.4
+ 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}
+ name: which
+ version: 1.3.1
+ hasBin: true
+ dependencies:
+ isexe: registry.nlark.com/isexe/2.0.0
+ 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}
+ name: which
+ version: 2.0.2
+ 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}
+ name: with
+ version: 7.0.2
+ 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
+ assert-never: registry.nlark.com/assert-never/1.2.1
+ babel-walk: registry.nlark.com/babel-walk/3.0.0-canary-5
+ 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}
+ name: word-wrap
+ version: 1.2.3
+ 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}
+ name: wrap-ansi
+ version: 6.2.0
+ engines: {node: '>=8'}
+ dependencies:
+ ansi-styles: registry.nlark.com/ansi-styles/4.3.0
+ string-width: registry.npmmirror.com/string-width/4.2.3
+ strip-ansi: registry.npmmirror.com/strip-ansi/6.0.1
+ 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}
+ name: wrap-ansi
+ version: 7.0.0
+ engines: {node: '>=10'}
+ dependencies:
+ ansi-styles: registry.nlark.com/ansi-styles/4.3.0
+ string-width: registry.npmmirror.com/string-width/4.2.3
+ strip-ansi: registry.npmmirror.com/strip-ansi/6.0.1
+ 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}
+ 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}
+ name: write-file-atomic
+ version: 3.0.3
+ dependencies:
+ imurmurhash: registry.nlark.com/imurmurhash/0.1.4
+ is-typedarray: registry.nlark.com/is-typedarray/1.0.0
+ signal-exit: registry.npmmirror.com/signal-exit/3.0.6
+ typedarray-to-buffer: registry.nlark.com/typedarray-to-buffer/3.1.5
+ 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}
+ name: y18n
+ version: 5.0.8
+ 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}
+ 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}
+ name: yn
+ version: 3.1.1
+ 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}
+ name: yocto-queue
+ version: 0.1.0
+ 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}
+ id: registry.npmmirror.com/@antfu/eslint-config-basic/0.12.1
+ name: '@antfu/eslint-config-basic'
+ version: 0.12.1
+ peerDependencies:
+ eslint: '>=7.4.0'
+ dependencies:
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ eslint-config-standard: registry.nlark.com/eslint-config-standard/16.0.3_79a23b4ffc45aed4cdeb891cd82eaee3
+ eslint-plugin-eslint-comments: registry.nlark.com/eslint-plugin-eslint-comments/3.2.0_eslint@8.4.1
+ eslint-plugin-html: registry.npmmirror.com/eslint-plugin-html/6.2.0
+ eslint-plugin-import: registry.npmmirror.com/eslint-plugin-import/2.25.3_eslint@8.4.1
+ eslint-plugin-jsonc: registry.npmmirror.com/eslint-plugin-jsonc/2.0.0_eslint@8.4.1
+ eslint-plugin-node: registry.nlark.com/eslint-plugin-node/11.1.0_eslint@8.4.1
+ eslint-plugin-promise: registry.npmmirror.com/eslint-plugin-promise/5.2.0_eslint@8.4.1
+ eslint-plugin-unicorn: registry.npmmirror.com/eslint-plugin-unicorn/39.0.0_eslint@8.4.1
+ eslint-plugin-yml: registry.npmmirror.com/eslint-plugin-yml/0.12.0_eslint@8.4.1
+ jsonc-eslint-parser: registry.npmmirror.com/jsonc-eslint-parser/2.0.4_eslint@8.4.1
+ yaml-eslint-parser: registry.npmmirror.com/yaml-eslint-parser/0.5.0
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ id: registry.npmmirror.com/@antfu/eslint-config-react/0.12.1
+ name: '@antfu/eslint-config-react'
+ version: 0.12.1
+ peerDependencies:
+ eslint: '>=7.4.0'
+ dependencies:
+ '@antfu/eslint-config-ts': registry.npmmirror.com/@antfu/eslint-config-ts/0.12.1_eslint@8.4.1+typescript@4.5.2
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ eslint-plugin-react: registry.npmmirror.com/eslint-plugin-react/7.27.1_eslint@8.4.1
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ 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}
+ id: registry.npmmirror.com/@antfu/eslint-config-ts/0.12.1
+ name: '@antfu/eslint-config-ts'
+ version: 0.12.1
+ peerDependencies:
+ eslint: '>=7.4.0'
+ typescript: '>=3.9'
+ dependencies:
+ '@antfu/eslint-config-basic': registry.npmmirror.com/@antfu/eslint-config-basic/0.12.1_eslint@8.4.1
+ '@typescript-eslint/eslint-plugin': registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.6.0_16d83f5c41c3abb1061a82b07c18e4f3
+ '@typescript-eslint/parser': registry.npmmirror.com/@typescript-eslint/parser/5.6.0_eslint@8.4.1+typescript@4.5.2
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ typescript: registry.npmmirror.com/typescript/4.5.2
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ id: registry.npmmirror.com/@antfu/eslint-config-vue/0.12.1
+ name: '@antfu/eslint-config-vue'
+ version: 0.12.1
+ peerDependencies:
+ eslint: '>=7.4.0'
+ dependencies:
+ '@antfu/eslint-config-ts': registry.npmmirror.com/@antfu/eslint-config-ts/0.12.1_eslint@8.4.1+typescript@4.5.2
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ eslint-plugin-vue: registry.npmmirror.com/eslint-plugin-vue/8.2.0_eslint@8.4.1
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ 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}
+ id: registry.npmmirror.com/@antfu/eslint-config/0.12.1
+ name: '@antfu/eslint-config'
+ version: 0.12.1
+ peerDependencies:
+ eslint: '>=7.4.0'
+ dependencies:
+ '@antfu/eslint-config-react': registry.npmmirror.com/@antfu/eslint-config-react/0.12.1_eslint@8.4.1+typescript@4.5.2
+ '@antfu/eslint-config-vue': registry.npmmirror.com/@antfu/eslint-config-vue/0.12.1_eslint@8.4.1+typescript@4.5.2
+ '@typescript-eslint/eslint-plugin': registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.6.0_16d83f5c41c3abb1061a82b07c18e4f3
+ '@typescript-eslint/parser': registry.npmmirror.com/@typescript-eslint/parser/5.6.0_eslint@8.4.1+typescript@4.5.2
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ eslint-config-standard: registry.nlark.com/eslint-config-standard/16.0.3_79a23b4ffc45aed4cdeb891cd82eaee3
+ eslint-plugin-eslint-comments: registry.nlark.com/eslint-plugin-eslint-comments/3.2.0_eslint@8.4.1
+ eslint-plugin-html: registry.npmmirror.com/eslint-plugin-html/6.2.0
+ eslint-plugin-import: registry.npmmirror.com/eslint-plugin-import/2.25.3_eslint@8.4.1
+ eslint-plugin-jsonc: registry.npmmirror.com/eslint-plugin-jsonc/2.0.0_eslint@8.4.1
+ eslint-plugin-node: registry.nlark.com/eslint-plugin-node/11.1.0_eslint@8.4.1
+ eslint-plugin-promise: registry.npmmirror.com/eslint-plugin-promise/5.2.0_eslint@8.4.1
+ eslint-plugin-unicorn: registry.npmmirror.com/eslint-plugin-unicorn/39.0.0_eslint@8.4.1
+ eslint-plugin-vue: registry.npmmirror.com/eslint-plugin-vue/8.1.1_eslint@8.4.1
+ eslint-plugin-yml: registry.npmmirror.com/eslint-plugin-yml/0.12.0_eslint@8.4.1
+ jsonc-eslint-parser: registry.npmmirror.com/jsonc-eslint-parser/2.0.4_eslint@8.4.1
+ yaml-eslint-parser: registry.npmmirror.com/yaml-eslint-parser/0.5.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ 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}
+ name: '@babel/code-frame'
+ version: 7.12.11
+ dependencies:
+ '@babel/highlight': registry.npmmirror.com/@babel/highlight/7.16.0
+ 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}
+ name: '@babel/code-frame'
+ version: 7.16.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}
+ name: '@babel/compat-data'
+ version: 7.16.4
+ 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}
+ name: '@babel/core'
+ version: 7.16.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
+ '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.0
+ '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.16.0
+ '@babel/helpers': registry.npmmirror.com/@babel/helpers/7.16.3
+ '@babel/parser': registry.npmmirror.com/@babel/parser/7.16.4
+ '@babel/template': registry.npmmirror.com/@babel/template/7.16.0
+ '@babel/traverse': registry.npmmirror.com/@babel/traverse/7.16.3
+ '@babel/types': registry.npmmirror.com/@babel/types/7.16.0
+ convert-source-map: registry.nlark.com/convert-source-map/1.8.0
+ debug: registry.npmmirror.com/debug/4.3.3
+ gensync: registry.nlark.com/gensync/1.0.0-beta.2
+ json5: registry.nlark.com/json5/2.2.0
+ semver: registry.nlark.com/semver/6.3.0
+ source-map: registry.nlark.com/source-map/0.5.7
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ 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}
+ peerDependencies:
+ '@babel/core': '>=7.11.0'
+ eslint: ^7.5.0 || ^8.0.0
+ dependencies:
+ '@babel/core': registry.npmmirror.com/@babel/core/7.16.0
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ eslint-scope: registry.npmmirror.com/eslint-scope/5.1.1
+ eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/2.1.0
+ semver: registry.nlark.com/semver/6.3.0
+ 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}
+ name: '@babel/generator'
+ version: 7.16.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
+ source-map: registry.nlark.com/source-map/0.5.7
+ 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}
+ name: '@babel/helper-annotate-as-pure'
+ version: 7.16.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}
+ 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'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.16.4
+ '@babel/core': registry.npmmirror.com/@babel/core/7.16.0
+ '@babel/helper-validator-option': registry.nlark.com/@babel/helper-validator-option/7.14.5
+ browserslist: registry.npmmirror.com/browserslist/4.18.1
+ semver: registry.nlark.com/semver/6.3.0
+ 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}
+ 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'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': registry.npmmirror.com/@babel/core/7.16.0
+ '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.16.0
+ '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.16.0
+ '@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
+ '@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers/7.16.0
+ '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.16.0
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ name: '@babel/helper-function-name'
+ version: 7.16.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
+ '@babel/types': registry.npmmirror.com/@babel/types/7.16.0
+ 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}
+ name: '@babel/helper-get-function-arity'
+ version: 7.16.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}
+ name: '@babel/helper-hoist-variables'
+ version: 7.16.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}
+ name: '@babel/helper-member-expression-to-functions'
+ version: 7.16.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}
+ name: '@babel/helper-module-imports'
+ version: 7.16.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}
+ name: '@babel/helper-module-transforms'
+ version: 7.16.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
+ '@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access/7.16.0
+ '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.16.0
+ '@babel/helper-validator-identifier': registry.nlark.com/@babel/helper-validator-identifier/7.15.7
+ '@babel/template': registry.npmmirror.com/@babel/template/7.16.0
+ '@babel/traverse': registry.npmmirror.com/@babel/traverse/7.16.3
+ '@babel/types': registry.npmmirror.com/@babel/types/7.16.0
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ name: '@babel/helper-optimise-call-expression'
+ version: 7.16.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}
+ name: '@babel/helper-replace-supers'
+ version: 7.16.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
+ '@babel/traverse': registry.npmmirror.com/@babel/traverse/7.16.3
+ '@babel/types': registry.npmmirror.com/@babel/types/7.16.0
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ name: '@babel/helper-simple-access'
+ version: 7.16.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}
+ name: '@babel/helper-split-export-declaration'
+ version: 7.16.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}
+ name: '@babel/helpers'
+ version: 7.16.3
+ 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
+ '@babel/types': registry.npmmirror.com/@babel/types/7.16.0
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ name: '@babel/highlight'
+ version: 7.16.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
+ js-tokens: registry.nlark.com/js-tokens/4.0.0
+ 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}
+ name: '@babel/parser'
+ version: 7.16.4
+ 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}
+ 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'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': registry.npmmirror.com/@babel/core/7.16.0
+ '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5
+ 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}
+ 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'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': registry.npmmirror.com/@babel/core/7.16.0
+ '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5
+ 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}
+ 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'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': registry.npmmirror.com/@babel/core/7.16.0
+ '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.16.0_@babel+core@7.16.0
+ '@babel/helper-plugin-utils': registry.nlark.com/@babel/helper-plugin-utils/7.14.5
+ '@babel/plugin-syntax-typescript': registry.npmmirror.com/@babel/plugin-syntax-typescript/7.16.0_@babel+core@7.16.0
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ name: '@babel/template'
+ version: 7.16.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
+ '@babel/types': registry.npmmirror.com/@babel/types/7.16.0
+ 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}
+ name: '@babel/traverse'
+ version: 7.16.3
+ 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
+ '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.16.0
+ '@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables/7.16.0
+ '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.16.0
+ '@babel/parser': registry.npmmirror.com/@babel/parser/7.16.4
+ '@babel/types': registry.npmmirror.com/@babel/types/7.16.0
+ debug: registry.npmmirror.com/debug/4.3.3
+ globals: registry.npmmirror.com/globals/11.12.0
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ name: '@babel/types'
+ version: 7.16.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}
+ name: '@commitlint/cli'
+ version: 15.0.0
+ engines: {node: '>=v12'}
+ hasBin: true
+ dependencies:
+ '@commitlint/format': registry.npmmirror.com/@commitlint/format/15.0.0
+ '@commitlint/lint': registry.npmmirror.com/@commitlint/lint/15.0.0
+ '@commitlint/load': registry.npmmirror.com/@commitlint/load/15.0.0
+ '@commitlint/read': registry.npmmirror.com/@commitlint/read/15.0.0
+ '@commitlint/types': registry.npmmirror.com/@commitlint/types/15.0.0
+ lodash: registry.nlark.com/lodash/4.17.21
+ resolve-from: registry.nlark.com/resolve-from/5.0.0
+ resolve-global: registry.nlark.com/resolve-global/1.0.0
+ yargs: registry.npmmirror.com/yargs/17.3.0
+ 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}
+ name: '@commitlint/config-conventional'
+ version: 15.0.0
+ 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}
+ name: '@commitlint/ensure'
+ version: 15.0.0
+ 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}
+ name: '@commitlint/execute-rule'
+ version: 15.0.0
+ 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}
+ name: '@commitlint/format'
+ version: 15.0.0
+ 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}
+ name: '@commitlint/is-ignored'
+ version: 15.0.0
+ 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}
+ name: '@commitlint/lint'
+ version: 15.0.0
+ 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
+ '@commitlint/rules': registry.npmmirror.com/@commitlint/rules/15.0.0
+ '@commitlint/types': registry.npmmirror.com/@commitlint/types/15.0.0
+ 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}
+ name: '@commitlint/load'
+ version: 15.0.0
+ 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
+ '@commitlint/types': registry.npmmirror.com/@commitlint/types/15.0.0
+ '@endemolshinegroup/cosmiconfig-typescript-loader': registry.npmmirror.com/@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2_b67f536f129c730ed129a6d21d223ba9
+ chalk: registry.npmmirror.com/chalk/4.1.2
+ cosmiconfig: registry.nlark.com/cosmiconfig/7.0.1
+ lodash: registry.nlark.com/lodash/4.17.21
+ resolve-from: registry.nlark.com/resolve-from/5.0.0
+ typescript: registry.npmmirror.com/typescript/4.5.2
+ 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}
+ name: '@commitlint/message'
+ version: 15.0.0
+ 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}
+ name: '@commitlint/parse'
+ version: 15.0.0
+ 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
+ conventional-commits-parser: registry.npmmirror.com/conventional-commits-parser/3.2.3
+ 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}
+ name: '@commitlint/read'
+ version: 15.0.0
+ 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
+ fs-extra: registry.nlark.com/fs-extra/10.0.0
+ git-raw-commits: registry.nlark.com/git-raw-commits/2.0.10
+ dev: true
+
+ registry.npmmirror.com/@commitlint/resolve-extends/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}
+ name: '@commitlint/resolve-extends'
+ version: 15.0.0
+ engines: {node: '>=v12'}
+ dependencies:
+ import-fresh: registry.nlark.com/import-fresh/3.3.0
+ lodash: registry.nlark.com/lodash/4.17.21
+ resolve-from: registry.nlark.com/resolve-from/5.0.0
+ resolve-global: registry.nlark.com/resolve-global/1.0.0
+ 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}
+ name: '@commitlint/rules'
+ version: 15.0.0
+ engines: {node: '>=v12'}
+ dependencies:
+ '@commitlint/ensure': registry.npmmirror.com/@commitlint/ensure/15.0.0
+ '@commitlint/message': registry.npmmirror.com/@commitlint/message/15.0.0
+ '@commitlint/to-lines': registry.npmmirror.com/@commitlint/to-lines/15.0.0
+ '@commitlint/types': registry.npmmirror.com/@commitlint/types/15.0.0
+ execa: registry.npmmirror.com/execa/5.1.1
+ 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}
+ name: '@commitlint/to-lines'
+ version: 15.0.0
+ 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}
+ name: '@commitlint/top-level'
+ version: 15.0.0
+ 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}
+ name: '@commitlint/types'
+ version: 15.0.0
+ 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}
+ 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'}
+ peerDependencies:
+ cosmiconfig: '>=6'
+ dependencies:
+ cosmiconfig: registry.nlark.com/cosmiconfig/7.0.1
+ lodash.get: registry.nlark.com/lodash.get/4.4.2
+ make-error: registry.nlark.com/make-error/1.3.6
+ ts-node: registry.npmmirror.com/ts-node/9.1.1_typescript@4.5.2
+ tslib: registry.nlark.com/tslib/2.3.1
+ transitivePeerDependencies:
+ - typescript
+ 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}
+ name: '@eslint/eslintrc'
+ version: 0.4.3
+ 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
+ espree: registry.npmmirror.com/espree/7.3.1
+ globals: registry.npmmirror.com/globals/13.12.0
+ ignore: registry.npmmirror.com/ignore/4.0.6
+ import-fresh: registry.nlark.com/import-fresh/3.3.0
+ js-yaml: registry.nlark.com/js-yaml/3.14.1
+ minimatch: registry.nlark.com/minimatch/3.0.4
+ strip-json-comments: registry.nlark.com/strip-json-comments/3.1.1
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ name: '@eslint/eslintrc'
+ version: 1.0.5
+ 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
+ espree: registry.npmmirror.com/espree/9.2.0
+ globals: registry.npmmirror.com/globals/13.12.0
+ ignore: registry.npmmirror.com/ignore/4.0.6
+ import-fresh: registry.nlark.com/import-fresh/3.3.0
+ js-yaml: registry.nlark.com/js-yaml/4.1.0
+ minimatch: registry.nlark.com/minimatch/3.0.4
+ strip-json-comments: registry.nlark.com/strip-json-comments/3.1.1
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ name: '@humanwhocodes/config-array'
+ version: 0.5.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
+ minimatch: registry.nlark.com/minimatch/3.0.4
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ name: '@humanwhocodes/config-array'
+ version: 0.9.2
+ 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
+ minimatch: registry.nlark.com/minimatch/3.0.4
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ 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}
+ 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}
+ 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}
+ 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}
+ 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}
+ 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}
+ 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}
+ 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}
+ peerDependencies:
+ '@typescript-eslint/parser': ^5.0.0
+ eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/experimental-utils': registry.npmmirror.com/@typescript-eslint/experimental-utils/5.6.0_eslint@8.4.1+typescript@4.5.2
+ '@typescript-eslint/parser': registry.npmmirror.com/@typescript-eslint/parser/5.6.0_eslint@8.4.1+typescript@4.5.2
+ '@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager/5.6.0
+ debug: registry.npmmirror.com/debug/4.3.3
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ functional-red-black-tree: registry.nlark.com/functional-red-black-tree/1.0.1
+ ignore: registry.npmmirror.com/ignore/5.1.9
+ regexpp: registry.nlark.com/regexpp/3.2.0
+ semver: registry.nlark.com/semver/7.3.5
+ tsutils: registry.nlark.com/tsutils/3.21.0_typescript@4.5.2
+ typescript: registry.npmmirror.com/typescript/4.5.2
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ 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}
+ peerDependencies:
+ eslint: '*'
+ dependencies:
+ '@types/json-schema': registry.npmmirror.com/@types/json-schema/7.0.9
+ '@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager/5.6.0
+ '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.6.0
+ '@typescript-eslint/typescript-estree': registry.npmmirror.com/@typescript-eslint/typescript-estree/5.6.0_typescript@4.5.2
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ eslint-scope: registry.npmmirror.com/eslint-scope/5.1.1
+ eslint-utils: registry.nlark.com/eslint-utils/3.0.0_eslint@8.4.1
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ 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}
+ 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}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager/5.6.0
+ '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.6.0
+ '@typescript-eslint/typescript-estree': registry.npmmirror.com/@typescript-eslint/typescript-estree/5.6.0_typescript@4.5.2
+ debug: registry.npmmirror.com/debug/4.3.3
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ typescript: registry.npmmirror.com/typescript/4.5.2
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ name: '@typescript-eslint/scope-manager'
+ version: 5.6.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}
+ name: '@typescript-eslint/types'
+ version: 5.6.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}
+ 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}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ 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
+ debug: registry.npmmirror.com/debug/4.3.3
+ globby: registry.nlark.com/globby/11.0.4
+ is-glob: registry.npmmirror.com/is-glob/4.0.3
+ semver: registry.nlark.com/semver/7.3.5
+ tsutils: registry.nlark.com/tsutils/3.21.0_typescript@4.5.2
+ typescript: registry.npmmirror.com/typescript/4.5.2
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ name: '@typescript-eslint/visitor-keys'
+ version: 5.6.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}
+ name: '@vitejs/plugin-vue-jsx'
+ version: 1.3.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
+ '@babel/plugin-transform-typescript': registry.npmmirror.com/@babel/plugin-transform-typescript/7.16.1_@babel+core@7.16.0
+ '@rollup/pluginutils': registry.nlark.com/@rollup/pluginutils/4.1.1
+ '@vue/babel-plugin-jsx': registry.npmmirror.com/@vue/babel-plugin-jsx/1.1.1_@babel+core@7.16.0
+ hash-sum: registry.nlark.com/hash-sum/2.0.0
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ id: registry.npmmirror.com/@vitejs/plugin-vue/1.10.1
+ name: '@vitejs/plugin-vue'
+ version: 1.10.1
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ vite: ^2.5.10
+ dependencies:
+ vite: registry.npmmirror.com/vite/2.6.14_less@4.1.2
+ 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}
+ name: '@volar/code-gen'
+ version: 0.27.24
+ dependencies:
+ '@volar/shared': registry.npmmirror.com/@volar/shared/0.27.24
+ '@volar/source-map': registry.npmmirror.com/@volar/source-map/0.27.24
+ 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}
+ name: '@volar/html2pug'
+ version: 0.27.13
+ dependencies:
+ domelementtype: registry.nlark.com/domelementtype/2.2.0
+ domhandler: registry.npmmirror.com/domhandler/4.3.0
+ htmlparser2: registry.npmmirror.com/htmlparser2/6.1.0
+ pug: registry.nlark.com/pug/3.0.2
+ 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}
+ name: '@volar/shared'
+ version: 0.27.24
+ dependencies:
+ upath: registry.nlark.com/upath/2.0.1
+ vscode-jsonrpc: registry.npmmirror.com/vscode-jsonrpc/8.0.0-next.4
+ vscode-uri: registry.nlark.com/vscode-uri/3.0.2
+ 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}
+ name: '@volar/source-map'
+ version: 0.27.24
+ dependencies:
+ '@volar/shared': registry.npmmirror.com/@volar/shared/0.27.24
+ 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}
+ name: '@volar/transforms'
+ version: 0.27.24
+ dependencies:
+ '@volar/shared': registry.npmmirror.com/@volar/shared/0.27.24
+ vscode-languageserver: registry.npmmirror.com/vscode-languageserver/8.0.0-next.5
+ 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}
+ name: '@vscode/emmet-helper'
+ version: 2.8.2
+ dependencies:
+ emmet: registry.nlark.com/emmet/2.3.4
+ jsonc-parser: registry.nlark.com/jsonc-parser/2.3.1
+ vscode-languageserver-textdocument: registry.npmmirror.com/vscode-languageserver-textdocument/1.0.3
+ vscode-languageserver-types: registry.npmmirror.com/vscode-languageserver-types/3.16.0
+ vscode-nls: registry.npmmirror.com/vscode-nls/5.0.0
+ vscode-uri: registry.nlark.com/vscode-uri/2.1.2
+ 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}
+ id: registry.npmmirror.com/@vue/babel-plugin-jsx/1.1.1
+ name: '@vue/babel-plugin-jsx'
+ version: 1.1.1
+ dependencies:
+ '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.16.0
+ '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx/7.16.0_@babel+core@7.16.0
+ '@babel/template': registry.npmmirror.com/@babel/template/7.16.0
+ '@babel/traverse': registry.npmmirror.com/@babel/traverse/7.16.3
+ '@babel/types': registry.npmmirror.com/@babel/types/7.16.0
+ '@vue/babel-helper-vue-transform-on': registry.nlark.com/@vue/babel-helper-vue-transform-on/1.0.2
+ camelcase: registry.npmmirror.com/camelcase/6.2.1
+ html-tags: registry.nlark.com/html-tags/3.1.0
+ svg-tags: registry.nlark.com/svg-tags/1.0.0
+ transitivePeerDependencies:
+ - '@babel/core'
+ - supports-color
+ 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}
+ name: '@vue/compiler-core'
+ version: 3.2.24
+ dependencies:
+ '@babel/parser': registry.npmmirror.com/@babel/parser/7.16.4
+ '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.24
+ estree-walker: registry.nlark.com/estree-walker/2.0.2
+ source-map: registry.nlark.com/source-map/0.6.1
+
+ registry.npmmirror.com/@vue/compiler-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}
+ name: '@vue/compiler-dom'
+ version: 3.2.24
+ dependencies:
+ '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.2.24
+ '@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}
+ name: '@vue/compiler-sfc'
+ version: 3.2.24
+ dependencies:
+ '@babel/parser': registry.npmmirror.com/@babel/parser/7.16.4
+ '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.2.24
+ '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.2.24
+ '@vue/compiler-ssr': registry.npmmirror.com/@vue/compiler-ssr/3.2.24
+ '@vue/ref-transform': registry.npmmirror.com/@vue/ref-transform/3.2.24
+ '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.24
+ estree-walker: registry.nlark.com/estree-walker/2.0.2
+ magic-string: registry.nlark.com/magic-string/0.25.7
+ postcss: registry.npmmirror.com/postcss/8.4.4
+ 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}
+ name: '@vue/compiler-ssr'
+ version: 3.2.24
+ dependencies:
+ '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.2.24
+ '@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}
+ 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}
+ 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}
+ name: '@vue/ref-transform'
+ version: 3.2.24
+ dependencies:
+ '@babel/parser': registry.npmmirror.com/@babel/parser/7.16.4
+ '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.2.24
+ '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.24
+ estree-walker: registry.nlark.com/estree-walker/2.0.2
+ 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}
+ name: '@vue/runtime-core'
+ version: 3.2.24
+ dependencies:
+ '@vue/reactivity': registry.npmmirror.com/@vue/reactivity/3.2.24
+ '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.24
+ 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}
+ name: '@vue/runtime-dom'
+ version: 3.2.24
+ dependencies:
+ '@vue/runtime-core': registry.npmmirror.com/@vue/runtime-core/3.2.24
+ '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.24
+ csstype: registry.npmmirror.com/csstype/2.6.19
+ 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}
+ id: registry.npmmirror.com/@vue/server-renderer/3.2.24
+ name: '@vue/server-renderer'
+ version: 3.2.24
+ peerDependencies:
+ vue: 3.2.24
+ dependencies:
+ '@vue/compiler-ssr': registry.npmmirror.com/@vue/compiler-ssr/3.2.24
+ '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.24
+ vue: registry.npmmirror.com/vue/3.2.24
+ 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}
+ 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}
+ id: registry.npmmirror.com/@vueuse/core/7.1.2
+ name: '@vueuse/core'
+ version: 7.1.2
+ peerDependencies:
+ '@vue/composition-api': ^1.1.0
+ vue: ^2.6.0 || ^3.2.0
+ peerDependenciesMeta:
+ '@vue/composition-api':
+ optional: true
+ vue:
+ optional: true
+ dependencies:
+ '@vueuse/shared': registry.npmmirror.com/@vueuse/shared/7.1.2_vue@3.2.24
+ vue: registry.npmmirror.com/vue/3.2.24
+ vue-demi: registry.npmmirror.com/vue-demi/0.12.1_vue@3.2.24
+ 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}
+ id: registry.npmmirror.com/@vueuse/shared/7.1.2
+ name: '@vueuse/shared'
+ version: 7.1.2
+ peerDependencies:
+ '@vue/composition-api': ^1.1.0
+ vue: ^2.6.0 || ^3.2.0
+ peerDependenciesMeta:
+ '@vue/composition-api':
+ optional: true
+ vue:
+ optional: true
+ dependencies:
+ vue: registry.npmmirror.com/vue/3.2.24
+ vue-demi: registry.npmmirror.com/vue-demi/0.12.1_vue@3.2.24
+ 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}
+ name: '@windicss/config'
+ version: 1.5.4
+ dependencies:
+ debug: registry.npmmirror.com/debug/4.3.3
+ jiti: registry.npmmirror.com/jiti/1.12.9
+ windicss: registry.npmmirror.com/windicss/3.2.1
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ name: '@windicss/plugin-utils'
+ version: 1.5.4
+ dependencies:
+ '@antfu/utils': registry.nlark.com/@antfu/utils/0.3.0
+ '@windicss/config': registry.npmmirror.com/@windicss/config/1.5.4
+ debug: registry.npmmirror.com/debug/4.3.3
+ fast-glob: registry.nlark.com/fast-glob/3.2.7
+ magic-string: registry.nlark.com/magic-string/0.25.7
+ micromatch: registry.nlark.com/micromatch/4.0.4
+ windicss: registry.npmmirror.com/windicss/3.2.1
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ name: acorn
+ version: 7.4.1
+ 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}
+ name: acorn
+ version: 8.6.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}
+ name: ajv
+ version: 6.12.6
+ dependencies:
+ fast-deep-equal: registry.nlark.com/fast-deep-equal/3.1.3
+ fast-json-stable-stringify: registry.nlark.com/fast-json-stable-stringify/2.1.0
+ json-schema-traverse: registry.nlark.com/json-schema-traverse/0.4.1
+ uri-js: registry.nlark.com/uri-js/4.4.1
+ 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}
+ name: ajv
+ version: 8.8.2
+ dependencies:
+ fast-deep-equal: registry.nlark.com/fast-deep-equal/3.1.3
+ json-schema-traverse: registry.nlark.com/json-schema-traverse/1.0.0
+ require-from-string: registry.nlark.com/require-from-string/2.0.2
+ uri-js: registry.nlark.com/uri-js/4.4.1
+ 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}
+ name: array-includes
+ version: 3.1.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
+ es-abstract: registry.npmmirror.com/es-abstract/1.19.1
+ get-intrinsic: registry.nlark.com/get-intrinsic/1.1.1
+ is-string: registry.nlark.com/is-string/1.0.7
+ 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}
+ name: array.prototype.flat
+ version: 1.2.5
+ 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
+ es-abstract: registry.npmmirror.com/es-abstract/1.19.1
+ 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}
+ name: array.prototype.flatmap
+ version: 1.2.5
+ 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
+ es-abstract: registry.npmmirror.com/es-abstract/1.19.1
+ 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}
+ id: registry.npmmirror.com/autoprefixer/10.4.0
+ name: autoprefixer
+ version: 10.4.0
+ engines: {node: ^10 || ^12 || >=14}
+ hasBin: true
+ peerDependencies:
+ postcss: ^8.1.0
+ dependencies:
+ browserslist: registry.npmmirror.com/browserslist/4.18.1
+ caniuse-lite: registry.npmmirror.com/caniuse-lite/1.0.30001285
+ fraction.js: registry.npmmirror.com/fraction.js/4.1.2
+ normalize-range: registry.nlark.com/normalize-range/0.1.2
+ picocolors: registry.npmmirror.com/picocolors/1.0.0
+ postcss: registry.npmmirror.com/postcss/8.4.4
+ postcss-value-parser: registry.npmmirror.com/postcss-value-parser/4.2.0
+ 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}
+ name: brace-expansion
+ version: 1.1.11
+ dependencies:
+ balanced-match: registry.nlark.com/balanced-match/1.0.2
+ concat-map: registry.nlark.com/concat-map/0.0.1
+ 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}
+ name: browserslist
+ version: 4.18.1
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+ dependencies:
+ caniuse-lite: registry.npmmirror.com/caniuse-lite/1.0.30001285
+ electron-to-chromium: registry.npmmirror.com/electron-to-chromium/1.4.12
+ escalade: registry.nlark.com/escalade/3.1.1
+ node-releases: registry.npmmirror.com/node-releases/2.0.1
+ picocolors: registry.npmmirror.com/picocolors/1.0.0
+ 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}
+ name: camelcase-keys
+ version: 6.2.2
+ engines: {node: '>=8'}
+ dependencies:
+ camelcase: registry.npmmirror.com/camelcase/5.3.1
+ map-obj: registry.npmmirror.com/map-obj/4.3.0
+ quick-lru: registry.npmmirror.com/quick-lru/4.0.1
+ 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}
+ name: camelcase
+ version: 5.3.1
+ 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}
+ name: camelcase
+ version: 6.2.1
+ 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}
+ 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}
+ name: chalk
+ version: 2.4.2
+ 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
+ supports-color: registry.npmmirror.com/supports-color/5.5.0
+ 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}
+ name: chalk
+ version: 3.0.0
+ 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}
+ name: chalk
+ version: 4.1.2
+ 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}
+ 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}
+ name: chokidar
+ version: 3.5.2
+ engines: {node: '>= 8.10.0'}
+ dependencies:
+ anymatch: registry.nlark.com/anymatch/3.1.2
+ braces: registry.nlark.com/braces/3.0.2
+ glob-parent: registry.npmmirror.com/glob-parent/5.1.2
+ is-binary-path: registry.nlark.com/is-binary-path/2.1.0
+ is-glob: registry.npmmirror.com/is-glob/4.0.3
+ normalize-path: registry.nlark.com/normalize-path/3.0.0
+ readdirp: registry.nlark.com/readdirp/3.6.0
+ optionalDependencies:
+ fsevents: registry.npmmirror.com/fsevents/2.3.2
+ 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}
+ 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}
+ name: cli-truncate
+ version: 2.1.0
+ 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}
+ name: cli-truncate
+ version: 3.1.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}
+ 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}
+ name: commander
+ version: 8.3.0
+ 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}
+ name: commitizen
+ version: 4.2.4
+ engines: {node: '>= 10'}
+ hasBin: true
+ dependencies:
+ cachedir: registry.nlark.com/cachedir/2.2.0
+ cz-conventional-changelog: registry.nlark.com/cz-conventional-changelog/3.2.0
+ dedent: registry.nlark.com/dedent/0.7.0
+ detect-indent: registry.nlark.com/detect-indent/6.0.0
+ find-node-modules: registry.nlark.com/find-node-modules/2.1.2
+ find-root: registry.nlark.com/find-root/1.1.0
+ fs-extra: registry.nlark.com/fs-extra/8.1.0
+ glob: registry.npmmirror.com/glob/7.1.4
+ inquirer: registry.npmmirror.com/inquirer/6.5.2
+ is-utf8: registry.nlark.com/is-utf8/0.2.1
+ lodash: registry.nlark.com/lodash/4.17.21
+ minimist: registry.nlark.com/minimist/1.2.5
+ strip-bom: registry.nlark.com/strip-bom/4.0.0
+ strip-json-comments: registry.nlark.com/strip-json-comments/3.0.1
+ 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}
+ name: conventional-commits-parser
+ version: 3.2.3
+ engines: {node: '>=10'}
+ hasBin: true
+ dependencies:
+ is-text-path: registry.nlark.com/is-text-path/1.0.1
+ JSONStream: registry.nlark.com/JSONStream/1.3.5
+ lodash: registry.nlark.com/lodash/4.17.21
+ meow: registry.npmmirror.com/meow/8.1.2
+ split2: registry.npmmirror.com/split2/3.2.2
+ through2: registry.nlark.com/through2/4.0.2
+ dev: true
+
+ registry.npmmirror.com/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}
+ 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}
+ name: debug
+ version: 2.6.9
+ dependencies:
+ ms: registry.npmmirror.com/ms/2.0.0
+ 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}
+ name: debug
+ version: 3.2.7
+ dependencies:
+ ms: registry.npmmirror.com/ms/2.1.2
+ 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}
+ name: debug
+ version: 4.3.3
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: registry.npmmirror.com/ms/2.1.2
+ 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}
+ id: registry.npmmirror.com/debug/4.3.3
+ name: debug
+ version: 4.3.3
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: registry.npmmirror.com/ms/2.1.2
+ supports-color: registry.npmmirror.com/supports-color/9.2.1
+ 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}
+ name: decamelize
+ version: 1.2.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}
+ name: domhandler
+ version: 4.3.0
+ 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}
+ 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}
+ 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}
+ 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}
+ name: es-abstract
+ version: 1.19.1
+ 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
+ function-bind: registry.nlark.com/function-bind/1.1.1
+ get-intrinsic: registry.nlark.com/get-intrinsic/1.1.1
+ get-symbol-description: registry.nlark.com/get-symbol-description/1.0.0
+ has: registry.nlark.com/has/1.0.3
+ has-symbols: registry.nlark.com/has-symbols/1.0.2
+ internal-slot: registry.nlark.com/internal-slot/1.0.3
+ is-callable: registry.nlark.com/is-callable/1.2.4
+ is-negative-zero: registry.nlark.com/is-negative-zero/2.0.1
+ is-regex: registry.nlark.com/is-regex/1.1.4
+ is-shared-array-buffer: registry.npmmirror.com/is-shared-array-buffer/1.0.1
+ is-string: registry.nlark.com/is-string/1.0.7
+ is-weakref: registry.npmmirror.com/is-weakref/1.0.1
+ object-inspect: registry.npmmirror.com/object-inspect/1.11.1
+ object-keys: registry.nlark.com/object-keys/1.1.1
+ object.assign: registry.nlark.com/object.assign/4.1.2
+ string.prototype.trimend: registry.nlark.com/string.prototype.trimend/1.0.4
+ string.prototype.trimstart: registry.nlark.com/string.prototype.trimstart/1.0.4
+ unbox-primitive: registry.nlark.com/unbox-primitive/1.0.1
+ 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}
+ name: esbuild-android-arm64
+ version: 0.13.15
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ 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}
+ name: esbuild-darwin-64
+ version: 0.13.15
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ 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}
+ name: esbuild-darwin-arm64
+ version: 0.13.15
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ 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}
+ name: esbuild-freebsd-64
+ version: 0.13.15
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ 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}
+ name: esbuild-freebsd-arm64
+ version: 0.13.15
+ cpu: [arm64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ 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}
+ name: esbuild-linux-32
+ version: 0.13.15
+ cpu: [ia32]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ 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}
+ name: esbuild-linux-64
+ version: 0.13.15
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ 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}
+ name: esbuild-linux-arm
+ version: 0.13.15
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ 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}
+ name: esbuild-linux-arm64
+ version: 0.13.15
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ 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}
+ name: esbuild-linux-mips64le
+ version: 0.13.15
+ cpu: [mips64el]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ 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}
+ name: esbuild-linux-ppc64le
+ version: 0.13.15
+ cpu: [ppc64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ 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}
+ name: esbuild-netbsd-64
+ version: 0.13.15
+ cpu: [x64]
+ os: [netbsd]
+ requiresBuild: true
+ dev: true
+ 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}
+ name: esbuild-openbsd-64
+ version: 0.13.15
+ cpu: [x64]
+ os: [openbsd]
+ requiresBuild: true
+ dev: true
+ 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}
+ name: esbuild-sunos-64
+ version: 0.13.15
+ cpu: [x64]
+ os: [sunos]
+ requiresBuild: true
+ dev: true
+ 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}
+ name: esbuild-windows-32
+ version: 0.13.15
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ 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}
+ name: esbuild-windows-64
+ version: 0.13.15
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ 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}
+ name: esbuild-windows-arm64
+ version: 0.13.15
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ 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}
+ name: esbuild
+ version: 0.13.15
+ hasBin: true
+ requiresBuild: true
+ optionalDependencies:
+ esbuild-android-arm64: registry.npmmirror.com/esbuild-android-arm64/0.13.15
+ esbuild-darwin-64: registry.npmmirror.com/esbuild-darwin-64/0.13.15
+ esbuild-darwin-arm64: registry.npmmirror.com/esbuild-darwin-arm64/0.13.15
+ esbuild-freebsd-64: registry.npmmirror.com/esbuild-freebsd-64/0.13.15
+ esbuild-freebsd-arm64: registry.npmmirror.com/esbuild-freebsd-arm64/0.13.15
+ esbuild-linux-32: registry.npmmirror.com/esbuild-linux-32/0.13.15
+ esbuild-linux-64: registry.npmmirror.com/esbuild-linux-64/0.13.15
+ esbuild-linux-arm: registry.npmmirror.com/esbuild-linux-arm/0.13.15
+ esbuild-linux-arm64: registry.npmmirror.com/esbuild-linux-arm64/0.13.15
+ esbuild-linux-mips64le: registry.npmmirror.com/esbuild-linux-mips64le/0.13.15
+ esbuild-linux-ppc64le: registry.npmmirror.com/esbuild-linux-ppc64le/0.13.15
+ esbuild-netbsd-64: registry.npmmirror.com/esbuild-netbsd-64/0.13.15
+ esbuild-openbsd-64: registry.npmmirror.com/esbuild-openbsd-64/0.13.15
+ esbuild-sunos-64: registry.npmmirror.com/esbuild-sunos-64/0.13.15
+ esbuild-windows-32: registry.npmmirror.com/esbuild-windows-32/0.13.15
+ esbuild-windows-64: registry.npmmirror.com/esbuild-windows-64/0.13.15
+ esbuild-windows-arm64: registry.npmmirror.com/esbuild-windows-arm64/0.13.15
+ 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}
+ name: eslint-define-config
+ version: 1.2.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}
+ name: eslint-module-utils
+ version: 2.7.1
+ engines: {node: '>=4'}
+ dependencies:
+ debug: registry.npmmirror.com/debug/3.2.7
+ find-up: registry.npmmirror.com/find-up/2.1.0
+ pkg-dir: registry.npmmirror.com/pkg-dir/2.0.0
+ 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}
+ name: eslint-plugin-html
+ version: 6.2.0
+ dependencies:
+ htmlparser2: registry.npmmirror.com/htmlparser2/7.2.0
+ 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}
+ id: registry.npmmirror.com/eslint-plugin-import/2.25.3
+ name: eslint-plugin-import
+ version: 2.25.3
+ engines: {node: '>=4'}
+ peerDependencies:
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
+ dependencies:
+ array-includes: registry.npmmirror.com/array-includes/3.1.4
+ array.prototype.flat: registry.npmmirror.com/array.prototype.flat/1.2.5
+ debug: registry.npmmirror.com/debug/2.6.9
+ doctrine: registry.nlark.com/doctrine/2.1.0
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ eslint-import-resolver-node: registry.nlark.com/eslint-import-resolver-node/0.3.6
+ eslint-module-utils: registry.npmmirror.com/eslint-module-utils/2.7.1
+ has: registry.nlark.com/has/1.0.3
+ is-core-module: registry.npmmirror.com/is-core-module/2.8.0
+ is-glob: registry.npmmirror.com/is-glob/4.0.3
+ minimatch: registry.nlark.com/minimatch/3.0.4
+ object.values: registry.npmmirror.com/object.values/1.1.5
+ resolve: registry.nlark.com/resolve/1.20.0
+ 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}
+ 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}
+ peerDependencies:
+ eslint: '>=6.0.0'
+ dependencies:
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ eslint-utils: registry.nlark.com/eslint-utils/3.0.0_eslint@8.4.1
+ jsonc-eslint-parser: registry.npmmirror.com/jsonc-eslint-parser/2.0.4_eslint@8.4.1
+ natural-compare: registry.nlark.com/natural-compare/1.4.0
+ 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}
+ id: registry.npmmirror.com/eslint-plugin-prettier/4.0.0
+ name: eslint-plugin-prettier
+ version: 4.0.0
+ engines: {node: '>=6.0.0'}
+ peerDependencies:
+ eslint: '>=7.28.0'
+ eslint-config-prettier: '*'
+ prettier: '>=2.0.0'
+ peerDependenciesMeta:
+ eslint-config-prettier:
+ optional: true
+ dependencies:
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ eslint-config-prettier: registry.nlark.com/eslint-config-prettier/8.3.0_eslint@8.4.1
+ prettier: registry.npmmirror.com/prettier/2.5.1
+ prettier-linter-helpers: registry.nlark.com/prettier-linter-helpers/1.0.0
+ 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}
+ 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}
+ peerDependencies:
+ eslint: ^7.0.0
+ dependencies:
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ 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}
+ id: registry.npmmirror.com/eslint-plugin-react/7.27.1
+ name: eslint-plugin-react
+ version: 7.27.1
+ engines: {node: '>=4'}
+ peerDependencies:
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ dependencies:
+ array-includes: registry.npmmirror.com/array-includes/3.1.4
+ array.prototype.flatmap: registry.npmmirror.com/array.prototype.flatmap/1.2.5
+ doctrine: registry.nlark.com/doctrine/2.1.0
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ estraverse: registry.npmmirror.com/estraverse/5.3.0
+ jsx-ast-utils: registry.nlark.com/jsx-ast-utils/3.2.1
+ minimatch: registry.nlark.com/minimatch/3.0.4
+ object.entries: registry.npmmirror.com/object.entries/1.1.5
+ object.fromentries: registry.npmmirror.com/object.fromentries/2.0.5
+ object.hasown: registry.npmmirror.com/object.hasown/1.1.0
+ object.values: registry.npmmirror.com/object.values/1.1.5
+ prop-types: registry.nlark.com/prop-types/15.7.2
+ resolve: registry.nlark.com/resolve/2.0.0-next.3
+ semver: registry.nlark.com/semver/6.3.0
+ string.prototype.matchall: registry.npmmirror.com/string.prototype.matchall/4.0.6
+ 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}
+ id: registry.npmmirror.com/eslint-plugin-unicorn/39.0.0
+ name: eslint-plugin-unicorn
+ version: 39.0.0
+ engines: {node: '>=12'}
+ peerDependencies:
+ eslint: '>=7.32.0'
+ dependencies:
+ '@babel/helper-validator-identifier': registry.nlark.com/@babel/helper-validator-identifier/7.15.7
+ ci-info: registry.npmmirror.com/ci-info/3.3.0
+ clean-regexp: registry.nlark.com/clean-regexp/1.0.0
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ eslint-template-visitor: registry.nlark.com/eslint-template-visitor/2.3.2_eslint@8.4.1
+ eslint-utils: registry.nlark.com/eslint-utils/3.0.0_eslint@8.4.1
+ esquery: registry.nlark.com/esquery/1.4.0
+ indent-string: registry.nlark.com/indent-string/4.0.0
+ is-builtin-module: registry.nlark.com/is-builtin-module/3.1.0
+ lodash: registry.nlark.com/lodash/4.17.21
+ pluralize: registry.nlark.com/pluralize/8.0.0
+ read-pkg-up: registry.npmmirror.com/read-pkg-up/7.0.1
+ regexp-tree: registry.npmmirror.com/regexp-tree/0.1.24
+ safe-regex: registry.nlark.com/safe-regex/2.1.1
+ semver: registry.nlark.com/semver/7.3.5
+ strip-indent: registry.nlark.com/strip-indent/3.0.0
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ 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}
+ peerDependencies:
+ eslint: ^6.2.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ eslint-utils: registry.nlark.com/eslint-utils/3.0.0_eslint@8.4.1
+ natural-compare: registry.nlark.com/natural-compare/1.4.0
+ semver: registry.nlark.com/semver/7.3.5
+ vue-eslint-parser: registry.npmmirror.com/vue-eslint-parser/8.0.1_eslint@8.4.1
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ 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}
+ peerDependencies:
+ eslint: ^6.2.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ eslint-utils: registry.nlark.com/eslint-utils/3.0.0_eslint@8.4.1
+ natural-compare: registry.nlark.com/natural-compare/1.4.0
+ semver: registry.nlark.com/semver/7.3.5
+ vue-eslint-parser: registry.npmmirror.com/vue-eslint-parser/8.0.1_eslint@8.4.1
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ 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}
+ peerDependencies:
+ eslint: '>=6.0.0'
+ dependencies:
+ debug: registry.npmmirror.com/debug/4.3.3
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ lodash: registry.nlark.com/lodash/4.17.21
+ natural-compare: registry.nlark.com/natural-compare/1.4.0
+ yaml-eslint-parser: registry.npmmirror.com/yaml-eslint-parser/0.5.0
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ name: eslint-scope
+ version: 5.1.1
+ 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}
+ name: eslint-scope
+ version: 6.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}
+ name: eslint-scope
+ version: 7.1.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}
+ name: eslint-visitor-keys
+ version: 1.3.0
+ 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}
+ name: eslint-visitor-keys
+ version: 2.1.0
+ 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}
+ name: eslint-visitor-keys
+ version: 3.1.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}
+ name: eslint
+ version: 7.32.0
+ engines: {node: ^10.12.0 || >=12.0.0}
+ hasBin: true
+ dependencies:
+ '@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.12.11
+ '@eslint/eslintrc': registry.npmmirror.com/@eslint/eslintrc/0.4.3
+ '@humanwhocodes/config-array': registry.npmmirror.com/@humanwhocodes/config-array/0.5.0
+ ajv: registry.npmmirror.com/ajv/6.12.6
+ chalk: registry.npmmirror.com/chalk/4.1.2
+ cross-spawn: registry.nlark.com/cross-spawn/7.0.3
+ debug: registry.npmmirror.com/debug/4.3.3
+ doctrine: registry.nlark.com/doctrine/3.0.0
+ enquirer: registry.nlark.com/enquirer/2.3.6
+ escape-string-regexp: registry.nlark.com/escape-string-regexp/4.0.0
+ eslint-scope: registry.npmmirror.com/eslint-scope/5.1.1
+ eslint-utils: registry.nlark.com/eslint-utils/2.1.0
+ eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/2.1.0
+ espree: registry.npmmirror.com/espree/7.3.1
+ esquery: registry.nlark.com/esquery/1.4.0
+ esutils: registry.nlark.com/esutils/2.0.3
+ fast-deep-equal: registry.nlark.com/fast-deep-equal/3.1.3
+ file-entry-cache: registry.nlark.com/file-entry-cache/6.0.1
+ functional-red-black-tree: registry.nlark.com/functional-red-black-tree/1.0.1
+ glob-parent: registry.npmmirror.com/glob-parent/5.1.2
+ globals: registry.npmmirror.com/globals/13.12.0
+ ignore: registry.npmmirror.com/ignore/4.0.6
+ import-fresh: registry.nlark.com/import-fresh/3.3.0
+ imurmurhash: registry.nlark.com/imurmurhash/0.1.4
+ is-glob: registry.npmmirror.com/is-glob/4.0.3
+ js-yaml: registry.nlark.com/js-yaml/3.14.1
+ json-stable-stringify-without-jsonify: registry.nlark.com/json-stable-stringify-without-jsonify/1.0.1
+ levn: registry.nlark.com/levn/0.4.1
+ lodash.merge: registry.nlark.com/lodash.merge/4.6.2
+ minimatch: registry.nlark.com/minimatch/3.0.4
+ natural-compare: registry.nlark.com/natural-compare/1.4.0
+ optionator: registry.nlark.com/optionator/0.9.1
+ progress: registry.nlark.com/progress/2.0.3
+ regexpp: registry.nlark.com/regexpp/3.2.0
+ semver: registry.nlark.com/semver/7.3.5
+ strip-ansi: registry.npmmirror.com/strip-ansi/6.0.1
+ strip-json-comments: registry.nlark.com/strip-json-comments/3.1.1
+ table: registry.npmmirror.com/table/6.7.5
+ text-table: registry.nlark.com/text-table/0.2.0
+ v8-compile-cache: registry.nlark.com/v8-compile-cache/2.3.0
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ name: eslint
+ version: 8.4.1
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ hasBin: true
+ dependencies:
+ '@eslint/eslintrc': registry.npmmirror.com/@eslint/eslintrc/1.0.5
+ '@humanwhocodes/config-array': registry.npmmirror.com/@humanwhocodes/config-array/0.9.2
+ ajv: registry.npmmirror.com/ajv/6.12.6
+ chalk: registry.npmmirror.com/chalk/4.1.2
+ cross-spawn: registry.nlark.com/cross-spawn/7.0.3
+ debug: registry.npmmirror.com/debug/4.3.3
+ doctrine: registry.nlark.com/doctrine/3.0.0
+ enquirer: registry.nlark.com/enquirer/2.3.6
+ escape-string-regexp: registry.nlark.com/escape-string-regexp/4.0.0
+ eslint-scope: registry.npmmirror.com/eslint-scope/7.1.0
+ eslint-utils: registry.nlark.com/eslint-utils/3.0.0_eslint@8.4.1
+ eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/3.1.0
+ espree: registry.npmmirror.com/espree/9.2.0
+ esquery: registry.nlark.com/esquery/1.4.0
+ esutils: registry.nlark.com/esutils/2.0.3
+ fast-deep-equal: registry.nlark.com/fast-deep-equal/3.1.3
+ file-entry-cache: registry.nlark.com/file-entry-cache/6.0.1
+ functional-red-black-tree: registry.nlark.com/functional-red-black-tree/1.0.1
+ glob-parent: registry.npmmirror.com/glob-parent/6.0.2
+ globals: registry.npmmirror.com/globals/13.12.0
+ ignore: registry.npmmirror.com/ignore/4.0.6
+ import-fresh: registry.nlark.com/import-fresh/3.3.0
+ imurmurhash: registry.nlark.com/imurmurhash/0.1.4
+ is-glob: registry.npmmirror.com/is-glob/4.0.3
+ js-yaml: registry.nlark.com/js-yaml/4.1.0
+ json-stable-stringify-without-jsonify: registry.nlark.com/json-stable-stringify-without-jsonify/1.0.1
+ levn: registry.nlark.com/levn/0.4.1
+ lodash.merge: registry.nlark.com/lodash.merge/4.6.2
+ minimatch: registry.nlark.com/minimatch/3.0.4
+ natural-compare: registry.nlark.com/natural-compare/1.4.0
+ optionator: registry.nlark.com/optionator/0.9.1
+ progress: registry.nlark.com/progress/2.0.3
+ regexpp: registry.nlark.com/regexpp/3.2.0
+ semver: registry.nlark.com/semver/7.3.5
+ strip-ansi: registry.npmmirror.com/strip-ansi/6.0.1
+ strip-json-comments: registry.nlark.com/strip-json-comments/3.1.1
+ text-table: registry.nlark.com/text-table/0.2.0
+ v8-compile-cache: registry.nlark.com/v8-compile-cache/2.3.0
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ name: espree
+ version: 7.3.1
+ 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
+ eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/1.3.0
+ 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}
+ name: espree
+ version: 9.2.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
+ eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/3.1.0
+ 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}
+ name: estraverse
+ version: 4.3.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}
+ name: estraverse
+ version: 5.3.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}
+ name: execa
+ version: 4.1.0
+ engines: {node: '>=10'}
+ dependencies:
+ cross-spawn: registry.nlark.com/cross-spawn/7.0.3
+ get-stream: registry.nlark.com/get-stream/5.2.0
+ human-signals: registry.nlark.com/human-signals/1.1.1
+ is-stream: registry.nlark.com/is-stream/2.0.1
+ merge-stream: registry.nlark.com/merge-stream/2.0.0
+ npm-run-path: registry.npmmirror.com/npm-run-path/4.0.1
+ onetime: registry.nlark.com/onetime/5.1.2
+ signal-exit: registry.npmmirror.com/signal-exit/3.0.6
+ strip-final-newline: registry.nlark.com/strip-final-newline/2.0.0
+ 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}
+ name: execa
+ version: 5.1.1
+ engines: {node: '>=10'}
+ dependencies:
+ cross-spawn: registry.nlark.com/cross-spawn/7.0.3
+ get-stream: registry.nlark.com/get-stream/6.0.1
+ human-signals: registry.nlark.com/human-signals/2.1.0
+ is-stream: registry.nlark.com/is-stream/2.0.1
+ merge-stream: registry.nlark.com/merge-stream/2.0.0
+ npm-run-path: registry.npmmirror.com/npm-run-path/4.0.1
+ onetime: registry.nlark.com/onetime/5.1.2
+ signal-exit: registry.npmmirror.com/signal-exit/3.0.6
+ strip-final-newline: registry.nlark.com/strip-final-newline/2.0.0
+ 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}
+ name: find-up
+ version: 2.1.0
+ 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}
+ name: find-up
+ version: 4.1.0
+ 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}
+ name: find-up
+ version: 5.0.0
+ 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}
+ name: findup-sync
+ version: 4.0.0
+ engines: {node: '>= 8'}
+ dependencies:
+ detect-file: registry.nlark.com/detect-file/1.0.0
+ is-glob: registry.npmmirror.com/is-glob/4.0.3
+ micromatch: registry.nlark.com/micromatch/4.0.4
+ resolve-dir: registry.nlark.com/resolve-dir/1.0.1
+ 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}
+ 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}
+ 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}
+ name: fsevents
+ version: 2.3.2
+ 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}
+ name: glob-parent
+ version: 5.1.2
+ 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}
+ name: glob-parent
+ version: 6.0.2
+ 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}
+ name: glob
+ version: 7.1.4
+ dependencies:
+ fs.realpath: registry.nlark.com/fs.realpath/1.0.0
+ inflight: registry.nlark.com/inflight/1.0.6
+ inherits: registry.nlark.com/inherits/2.0.4
+ minimatch: registry.nlark.com/minimatch/3.0.4
+ once: registry.nlark.com/once/1.4.0
+ path-is-absolute: registry.nlark.com/path-is-absolute/1.0.1
+ 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}
+ name: glob
+ version: 7.2.0
+ dependencies:
+ fs.realpath: registry.nlark.com/fs.realpath/1.0.0
+ inflight: registry.nlark.com/inflight/1.0.6
+ inherits: registry.nlark.com/inherits/2.0.4
+ minimatch: registry.nlark.com/minimatch/3.0.4
+ once: registry.nlark.com/once/1.4.0
+ path-is-absolute: registry.nlark.com/path-is-absolute/1.0.1
+ 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}
+ name: globals
+ version: 11.12.0
+ 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}
+ name: globals
+ version: 13.12.0
+ 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}
+ 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}
+ name: htmlparser2
+ version: 6.1.0
+ dependencies:
+ domelementtype: registry.nlark.com/domelementtype/2.2.0
+ domhandler: registry.npmmirror.com/domhandler/4.3.0
+ domutils: registry.nlark.com/domutils/2.8.0
+ entities: registry.nlark.com/entities/2.2.0
+ 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}
+ name: htmlparser2
+ version: 7.2.0
+ dependencies:
+ domelementtype: registry.nlark.com/domelementtype/2.2.0
+ domhandler: registry.npmmirror.com/domhandler/4.3.0
+ domutils: registry.nlark.com/domutils/2.8.0
+ entities: registry.nlark.com/entities/3.0.1
+ 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}
+ name: husky
+ version: 7.0.4
+ 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}
+ name: ignore
+ version: 4.0.6
+ 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}
+ name: ignore
+ version: 5.1.9
+ 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}
+ name: import-meta-resolve
+ version: 1.1.1
+ dependencies:
+ builtins: registry.nlark.com/builtins/4.0.0
+ 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}
+ name: inquirer
+ version: 6.5.2
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ ansi-escapes: registry.nlark.com/ansi-escapes/3.2.0
+ chalk: registry.npmmirror.com/chalk/2.4.2
+ cli-cursor: registry.nlark.com/cli-cursor/2.1.0
+ cli-width: registry.nlark.com/cli-width/2.2.1
+ external-editor: registry.nlark.com/external-editor/3.1.0
+ figures: registry.nlark.com/figures/2.0.0
+ lodash: registry.nlark.com/lodash/4.17.21
+ mute-stream: registry.nlark.com/mute-stream/0.0.7
+ run-async: registry.nlark.com/run-async/2.4.1
+ rxjs: registry.npmmirror.com/rxjs/6.6.7
+ string-width: registry.npmmirror.com/string-width/2.1.1
+ strip-ansi: registry.npmmirror.com/strip-ansi/5.2.0
+ through: registry.nlark.com/through/2.3.8
+ 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}
+ name: is-core-module
+ version: 2.8.0
+ dependencies:
+ has: registry.nlark.com/has/1.0.3
+ 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}
+ name: is-glob
+ version: 4.0.3
+ 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}
+ 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}
+ name: is-weakref
+ version: 1.0.1
+ dependencies:
+ call-bind: registry.nlark.com/call-bind/1.0.2
+ 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}
+ 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}
+ 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}
+ 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}
+ dependencies:
+ acorn: registry.npmmirror.com/acorn/8.6.0
+ eslint-utils: registry.nlark.com/eslint-utils/3.0.0_eslint@8.4.1
+ eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/3.1.0
+ espree: registry.npmmirror.com/espree/9.2.0
+ semver: registry.nlark.com/semver/7.3.5
+ transitivePeerDependencies:
+ - eslint
+ 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}
+ name: less
+ version: 4.1.2
+ engines: {node: '>=6'}
+ hasBin: true
+ dependencies:
+ copy-anything: registry.nlark.com/copy-anything/2.0.3
+ parse-node-version: registry.npmmirror.com/parse-node-version/1.0.1
+ tslib: registry.nlark.com/tslib/2.3.1
+ optionalDependencies:
+ errno: registry.nlark.com/errno/0.1.8
+ graceful-fs: registry.npmmirror.com/graceful-fs/4.2.8
+ image-size: registry.nlark.com/image-size/0.5.5
+ make-dir: registry.nlark.com/make-dir/2.1.0
+ mime: registry.npmmirror.com/mime/1.6.0
+ needle: registry.nlark.com/needle/2.9.1
+ source-map: registry.nlark.com/source-map/0.6.1
+ 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}
+ name: lilconfig
+ version: 2.0.4
+ 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}
+ 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}
+ name: lint-staged
+ version: 12.1.2
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ hasBin: true
+ dependencies:
+ cli-truncate: registry.npmmirror.com/cli-truncate/3.1.0
+ colorette: registry.npmmirror.com/colorette/2.0.16
+ commander: registry.npmmirror.com/commander/8.3.0
+ debug: registry.npmmirror.com/debug/4.3.3_supports-color@9.2.1
+ enquirer: registry.nlark.com/enquirer/2.3.6
+ execa: registry.npmmirror.com/execa/5.1.1
+ lilconfig: registry.npmmirror.com/lilconfig/2.0.4
+ listr2: registry.npmmirror.com/listr2/3.13.5_enquirer@2.3.6
+ micromatch: registry.nlark.com/micromatch/4.0.4
+ normalize-path: registry.nlark.com/normalize-path/3.0.0
+ object-inspect: registry.npmmirror.com/object-inspect/1.11.1
+ string-argv: registry.nlark.com/string-argv/0.3.1
+ supports-color: registry.npmmirror.com/supports-color/9.2.1
+ yaml: registry.npmmirror.com/yaml/1.10.2
+ 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}
+ id: registry.npmmirror.com/listr2/3.13.5
+ name: listr2
+ version: 3.13.5
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ enquirer: '>= 2.3.0 < 3'
+ peerDependenciesMeta:
+ enquirer:
+ optional: true
+ dependencies:
+ cli-truncate: registry.npmmirror.com/cli-truncate/2.1.0
+ colorette: registry.npmmirror.com/colorette/2.0.16
+ enquirer: registry.nlark.com/enquirer/2.3.6
+ log-update: registry.npmmirror.com/log-update/4.0.0
+ p-map: registry.npmmirror.com/p-map/4.0.0
+ rfdc: registry.nlark.com/rfdc/1.3.0
+ rxjs: registry.npmmirror.com/rxjs/7.4.0
+ through: registry.nlark.com/through/2.3.8
+ wrap-ansi: registry.nlark.com/wrap-ansi/7.0.0
+ 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}
+ name: local-pkg
+ version: 0.4.0
+ 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}
+ name: log-update
+ version: 4.0.0
+ engines: {node: '>=10'}
+ dependencies:
+ ansi-escapes: registry.nlark.com/ansi-escapes/4.3.2
+ cli-cursor: registry.nlark.com/cli-cursor/3.1.0
+ slice-ansi: registry.nlark.com/slice-ansi/4.0.0
+ wrap-ansi: registry.nlark.com/wrap-ansi/6.2.0
+ dev: true
+
+ registry.npmmirror.com/map-obj/1.0.1:
+ resolution: {integrity: sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=, registry: 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'}
+ 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}
+ name: map-obj
+ version: 4.3.0
+ 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}
+ 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}
+ name: meow
+ version: 8.1.2
+ engines: {node: '>=10'}
+ dependencies:
+ '@types/minimist': registry.npmmirror.com/@types/minimist/1.2.2
+ camelcase-keys: registry.npmmirror.com/camelcase-keys/6.2.2
+ decamelize-keys: registry.nlark.com/decamelize-keys/1.1.0
+ hard-rejection: registry.nlark.com/hard-rejection/2.1.0
+ minimist-options: registry.nlark.com/minimist-options/4.1.0
+ normalize-package-data: registry.nlark.com/normalize-package-data/3.0.3
+ read-pkg-up: registry.npmmirror.com/read-pkg-up/7.0.1
+ redent: registry.nlark.com/redent/3.0.0
+ trim-newlines: registry.nlark.com/trim-newlines/3.0.1
+ type-fest: registry.npmmirror.com/type-fest/0.18.1
+ yargs-parser: registry.npmmirror.com/yargs-parser/20.2.9
+ 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}
+ name: meow
+ version: 9.0.0
+ engines: {node: '>=10'}
+ dependencies:
+ '@types/minimist': registry.npmmirror.com/@types/minimist/1.2.2
+ camelcase-keys: registry.npmmirror.com/camelcase-keys/6.2.2
+ decamelize: registry.npmmirror.com/decamelize/1.2.0
+ decamelize-keys: registry.nlark.com/decamelize-keys/1.1.0
+ hard-rejection: registry.nlark.com/hard-rejection/2.1.0
+ minimist-options: registry.nlark.com/minimist-options/4.1.0
+ normalize-package-data: registry.nlark.com/normalize-package-data/3.0.3
+ read-pkg-up: registry.npmmirror.com/read-pkg-up/7.0.1
+ redent: registry.nlark.com/redent/3.0.0
+ trim-newlines: registry.nlark.com/trim-newlines/3.0.1
+ type-fest: registry.npmmirror.com/type-fest/0.18.1
+ yargs-parser: registry.npmmirror.com/yargs-parser/20.2.9
+ 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}
+ name: mime
+ version: 1.6.0
+ 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}
+ name: mlly
+ version: 0.2.10
+ dependencies:
+ import-meta-resolve: registry.npmmirror.com/import-meta-resolve/1.1.1
+ 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}
+ 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}
+ 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}
+ name: multimatch
+ version: 4.0.0
+ engines: {node: '>=8'}
+ dependencies:
+ '@types/minimatch': registry.npmmirror.com/@types/minimatch/3.0.5
+ array-differ: registry.nlark.com/array-differ/3.0.0
+ array-union: registry.nlark.com/array-union/2.1.0
+ arrify: registry.nlark.com/arrify/2.0.1
+ minimatch: registry.nlark.com/minimatch/3.0.4
+ 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}
+ name: nanoid
+ version: 3.1.30
+ 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}
+ 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}
+ name: npm-run-path
+ version: 4.0.1
+ 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}
+ 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}
+ name: object.entries
+ version: 1.1.5
+ 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
+ es-abstract: registry.npmmirror.com/es-abstract/1.19.1
+ 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}
+ name: object.fromentries
+ version: 2.0.5
+ 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
+ es-abstract: registry.npmmirror.com/es-abstract/1.19.1
+ 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}
+ name: object.hasown
+ version: 1.1.0
+ dependencies:
+ define-properties: registry.nlark.com/define-properties/1.1.3
+ es-abstract: registry.npmmirror.com/es-abstract/1.19.1
+ 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}
+ name: object.values
+ version: 1.1.5
+ 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
+ es-abstract: registry.npmmirror.com/es-abstract/1.19.1
+ 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}
+ name: p-map
+ version: 4.0.0
+ 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}
+ name: p-try
+ version: 1.0.0
+ 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}
+ name: p-try
+ version: 2.2.0
+ 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}
+ name: parent-module
+ version: 1.0.1
+ 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}
+ name: parse-json
+ version: 5.2.0
+ 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
+ json-parse-even-better-errors: registry.nlark.com/json-parse-even-better-errors/2.3.1
+ lines-and-columns: registry.npmmirror.com/lines-and-columns/1.2.4
+ 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}
+ name: parse-node-version
+ version: 1.0.1
+ 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}
+ 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}
+ name: pkg-dir
+ version: 2.0.0
+ engines: {node: '>=4'}
+ dependencies:
+ find-up: registry.npmmirror.com/find-up/2.1.0
+ 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}
+ id: registry.npmmirror.com/postcss-sorting/7.0.1
+ name: postcss-sorting
+ version: 7.0.1
+ peerDependencies:
+ postcss: ^8.3.9
+ dependencies:
+ postcss: registry.npmmirror.com/postcss/8.4.4
+ 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}
+ 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}
+ name: postcss
+ version: 8.4.4
+ 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}
+ name: prettier
+ version: 2.5.1
+ 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}
+ id: registry.npmmirror.com/pretty-quick/3.1.2
+ name: pretty-quick
+ version: 3.1.2
+ engines: {node: '>=10.13'}
+ hasBin: true
+ peerDependencies:
+ prettier: '>=2.0.0'
+ dependencies:
+ chalk: registry.npmmirror.com/chalk/3.0.0
+ execa: registry.npmmirror.com/execa/4.1.0
+ find-up: registry.npmmirror.com/find-up/4.1.0
+ ignore: registry.npmmirror.com/ignore/5.1.9
+ mri: registry.nlark.com/mri/1.2.0
+ multimatch: registry.npmmirror.com/multimatch/4.0.0
+ prettier: registry.npmmirror.com/prettier/2.5.1
+ 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}
+ name: quick-lru
+ version: 4.0.1
+ 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}
+ 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}
+ name: read-pkg-up
+ version: 7.0.1
+ engines: {node: '>=8'}
+ dependencies:
+ find-up: registry.npmmirror.com/find-up/4.1.0
+ read-pkg: registry.nlark.com/read-pkg/5.2.0
+ type-fest: registry.npmmirror.com/type-fest/0.8.1
+ dev: true
+
+ registry.npmmirror.com/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}
+ 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}
+ 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}
+ name: rollup
+ version: 2.60.2
+ 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}
+ name: rxjs
+ version: 6.6.7
+ 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}
+ name: rxjs
+ version: 7.4.0
+ dependencies:
+ tslib: registry.nlark.com/tslib/2.1.0
+ 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}
+ 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}
+ name: source-map-js
+ version: 1.0.1
+ 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}
+ name: source-map-support
+ version: 0.5.21
+ dependencies:
+ buffer-from: registry.nlark.com/buffer-from/1.1.2
+ source-map: registry.nlark.com/source-map/0.6.1
+ 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}
+ 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}
+ 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}
+ name: split2
+ version: 3.2.2
+ dependencies:
+ readable-stream: registry.nlark.com/readable-stream/3.6.0
+ 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}
+ name: string-width
+ version: 2.1.1
+ 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}
+ name: string-width
+ version: 4.2.3
+ 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
+ strip-ansi: registry.npmmirror.com/strip-ansi/6.0.1
+ 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}
+ name: string-width
+ version: 5.0.1
+ 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
+ strip-ansi: registry.npmmirror.com/strip-ansi/7.0.1
+ 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}
+ name: string.prototype.matchall
+ version: 4.0.6
+ dependencies:
+ call-bind: registry.nlark.com/call-bind/1.0.2
+ define-properties: registry.nlark.com/define-properties/1.1.3
+ es-abstract: registry.npmmirror.com/es-abstract/1.19.1
+ get-intrinsic: registry.nlark.com/get-intrinsic/1.1.1
+ has-symbols: registry.nlark.com/has-symbols/1.0.2
+ internal-slot: registry.nlark.com/internal-slot/1.0.3
+ regexp.prototype.flags: registry.nlark.com/regexp.prototype.flags/1.3.1
+ side-channel: registry.nlark.com/side-channel/1.0.4
+ 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}
+ name: strip-ansi
+ version: 4.0.0
+ 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}
+ name: strip-ansi
+ version: 5.2.0
+ 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}
+ name: strip-ansi
+ version: 6.0.1
+ 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}
+ name: strip-ansi
+ version: 7.0.1
+ engines: {node: '>=12'}
+ dependencies:
+ ansi-regex: registry.nlark.com/ansi-regex/6.0.1
+ 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}
+ id: registry.npmmirror.com/stylelint-config-prettier/9.0.3
+ name: stylelint-config-prettier
+ version: 9.0.3
+ engines: {node: '>= 12'}
+ hasBin: true
+ peerDependencies:
+ stylelint: '>=11.0.0'
+ dependencies:
+ stylelint: registry.npmmirror.com/stylelint/14.1.0
+ 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}
+ id: registry.npmmirror.com/stylelint-config-recommended/6.0.0
+ name: stylelint-config-recommended
+ version: 6.0.0
+ peerDependencies:
+ stylelint: ^14.0.0
+ dependencies:
+ stylelint: registry.npmmirror.com/stylelint/14.1.0
+ 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}
+ id: registry.npmmirror.com/stylelint-config-standard/24.0.0
+ name: stylelint-config-standard
+ version: 24.0.0
+ peerDependencies:
+ stylelint: ^14.0.0
+ dependencies:
+ stylelint: registry.npmmirror.com/stylelint/14.1.0
+ stylelint-config-recommended: registry.npmmirror.com/stylelint-config-recommended/6.0.0_stylelint@14.1.0
+ 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}
+ id: registry.npmmirror.com/stylelint-order/5.0.0
+ name: stylelint-order
+ version: 5.0.0
+ peerDependencies:
+ stylelint: ^14.0.0
+ dependencies:
+ postcss: registry.npmmirror.com/postcss/8.4.4
+ postcss-sorting: registry.npmmirror.com/postcss-sorting/7.0.1_postcss@8.4.4
+ stylelint: registry.npmmirror.com/stylelint/14.1.0
+ 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}
+ name: stylelint
+ version: 14.1.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
+ cosmiconfig: registry.nlark.com/cosmiconfig/7.0.1
+ debug: registry.npmmirror.com/debug/4.3.3
+ execall: registry.nlark.com/execall/2.0.0
+ fast-glob: registry.nlark.com/fast-glob/3.2.7
+ fastest-levenshtein: registry.nlark.com/fastest-levenshtein/1.0.12
+ file-entry-cache: registry.nlark.com/file-entry-cache/6.0.1
+ get-stdin: registry.nlark.com/get-stdin/8.0.0
+ global-modules: registry.nlark.com/global-modules/2.0.0
+ globby: registry.nlark.com/globby/11.0.4
+ globjoin: registry.nlark.com/globjoin/0.1.4
+ html-tags: registry.nlark.com/html-tags/3.1.0
+ ignore: registry.npmmirror.com/ignore/5.1.9
+ import-lazy: registry.nlark.com/import-lazy/4.0.0
+ imurmurhash: registry.nlark.com/imurmurhash/0.1.4
+ is-plain-object: registry.nlark.com/is-plain-object/5.0.0
+ known-css-properties: registry.nlark.com/known-css-properties/0.23.0
+ mathml-tag-names: registry.npmmirror.com/mathml-tag-names/2.1.3
+ meow: registry.npmmirror.com/meow/9.0.0
+ micromatch: registry.nlark.com/micromatch/4.0.4
+ normalize-path: registry.nlark.com/normalize-path/3.0.0
+ normalize-selector: registry.nlark.com/normalize-selector/0.2.0
+ picocolors: registry.npmmirror.com/picocolors/1.0.0
+ postcss: registry.npmmirror.com/postcss/8.4.4
+ postcss-media-query-parser: registry.nlark.com/postcss-media-query-parser/0.2.3
+ postcss-resolve-nested-selector: registry.nlark.com/postcss-resolve-nested-selector/0.1.1
+ postcss-safe-parser: registry.nlark.com/postcss-safe-parser/6.0.0_postcss@8.4.4
+ postcss-selector-parser: registry.nlark.com/postcss-selector-parser/6.0.6
+ postcss-value-parser: registry.npmmirror.com/postcss-value-parser/4.2.0
+ resolve-from: registry.nlark.com/resolve-from/5.0.0
+ specificity: registry.npmmirror.com/specificity/0.4.1
+ string-width: registry.npmmirror.com/string-width/4.2.3
+ strip-ansi: registry.npmmirror.com/strip-ansi/6.0.1
+ style-search: registry.nlark.com/style-search/0.1.0
+ svg-tags: registry.nlark.com/svg-tags/1.0.0
+ table: registry.npmmirror.com/table/6.7.5
+ v8-compile-cache: registry.nlark.com/v8-compile-cache/2.3.0
+ write-file-atomic: registry.nlark.com/write-file-atomic/3.0.3
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ name: supports-color
+ version: 5.5.0
+ 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}
+ name: supports-color
+ version: 7.2.0
+ 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}
+ name: supports-color
+ version: 9.2.1
+ 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}
+ name: table
+ version: 6.7.5
+ engines: {node: '>=10.0.0'}
+ dependencies:
+ ajv: registry.npmmirror.com/ajv/8.8.2
+ lodash.truncate: registry.nlark.com/lodash.truncate/4.4.2
+ slice-ansi: registry.nlark.com/slice-ansi/4.0.0
+ string-width: registry.npmmirror.com/string-width/4.2.3
+ strip-ansi: registry.npmmirror.com/strip-ansi/6.0.1
+ 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}
+ id: registry.npmmirror.com/ts-node/9.1.1
+ name: ts-node
+ version: 9.1.1
+ engines: {node: '>=10.0.0'}
+ hasBin: true
+ peerDependencies:
+ typescript: '>=2.7'
+ dependencies:
+ arg: registry.nlark.com/arg/4.1.3
+ create-require: registry.nlark.com/create-require/1.1.1
+ diff: registry.nlark.com/diff/4.0.2
+ make-error: registry.nlark.com/make-error/1.3.6
+ source-map-support: registry.npmmirror.com/source-map-support/0.5.21
+ typescript: registry.npmmirror.com/typescript/4.5.2
+ yn: registry.nlark.com/yn/3.1.1
+ 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}
+ name: tsconfig-paths
+ version: 3.12.0
+ dependencies:
+ '@types/json5': registry.nlark.com/@types/json5/0.0.29
+ json5: registry.nlark.com/json5/1.0.1
+ minimist: registry.nlark.com/minimist/1.2.5
+ strip-bom: registry.nlark.com/strip-bom/3.0.0
+ 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}
+ name: type-fest
+ version: 0.18.1
+ 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}
+ name: type-fest
+ version: 0.20.2
+ 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}
+ name: type-fest
+ version: 0.21.3
+ 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}
+ name: type-fest
+ version: 0.6.0
+ engines: {node: '>=8'}
+ dev: true
+
+ registry.npmmirror.com/type-fest/0.8.1:
+ resolution: {integrity: sha1-CeJJ696FHTseSNJ8EFREZn8XuD0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/type-fest/download/type-fest-0.8.1.tgz}
+ name: type-fest
+ version: 0.8.1
+ 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}
+ name: typescript
+ version: 4.5.2
+ 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}
+ id: registry.npmmirror.com/unplugin-auto-import/0.5.1
+ name: unplugin-auto-import
+ version: 0.5.1
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@vueuse/core': '*'
+ peerDependenciesMeta:
+ '@vueuse/core':
+ optional: true
+ dependencies:
+ '@antfu/utils': registry.nlark.com/@antfu/utils/0.3.0
+ '@rollup/pluginutils': registry.nlark.com/@rollup/pluginutils/4.1.1
+ '@vueuse/core': registry.npmmirror.com/@vueuse/core/7.1.2_vue@3.2.24
+ local-pkg: registry.npmmirror.com/local-pkg/0.4.0
+ magic-string: registry.nlark.com/magic-string/0.25.7
+ resolve: registry.nlark.com/resolve/1.20.0
+ unplugin: registry.npmmirror.com/unplugin/0.2.21_vite@2.6.14
+ transitivePeerDependencies:
+ - rollup
+ - vite
+ - webpack
+ 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}
+ id: registry.npmmirror.com/unplugin-vue-components/0.17.6
+ name: unplugin-vue-components
+ version: 0.17.6
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@babel/parser': ^7.15.8
+ '@babel/traverse': ^7.15.4
+ vue: 2 || 3
+ peerDependenciesMeta:
+ '@babel/parser':
+ optional: true
+ '@babel/traverse':
+ optional: true
+ dependencies:
+ '@antfu/utils': registry.nlark.com/@antfu/utils/0.3.0
+ '@rollup/pluginutils': registry.nlark.com/@rollup/pluginutils/4.1.1
+ chokidar: registry.npmmirror.com/chokidar/3.5.2
+ debug: registry.npmmirror.com/debug/4.3.3
+ fast-glob: registry.nlark.com/fast-glob/3.2.7
+ local-pkg: registry.npmmirror.com/local-pkg/0.4.0
+ magic-string: registry.nlark.com/magic-string/0.25.7
+ minimatch: registry.nlark.com/minimatch/3.0.4
+ resolve: registry.nlark.com/resolve/1.20.0
+ unplugin: registry.npmmirror.com/unplugin/0.2.21_vite@2.6.14
+ vue: registry.npmmirror.com/vue/3.2.24
+ transitivePeerDependencies:
+ - rollup
+ - supports-color
+ - vite
+ - webpack
+ 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}
+ id: registry.npmmirror.com/unplugin/0.2.21
+ name: unplugin
+ version: 0.2.21
+ peerDependencies:
+ rollup: ^2.50.0
+ vite: ^2.3.0
+ webpack: 4 || 5
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+ vite:
+ optional: true
+ webpack:
+ optional: true
+ dependencies:
+ vite: registry.npmmirror.com/vite/2.6.14_less@4.1.2
+ webpack-virtual-modules: registry.nlark.com/webpack-virtual-modules/0.4.3
+ 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}
+ id: registry.npmmirror.com/vite-plugin-vue-setup-extend/0.1.0
+ name: vite-plugin-vue-setup-extend
+ version: 0.1.0
+ peerDependencies:
+ vite: '>=2.0.0'
+ dependencies:
+ '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc/3.2.24
+ magic-string: registry.nlark.com/magic-string/0.25.7
+ vite: registry.npmmirror.com/vite/2.6.14_less@4.1.2
+ 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}
+ id: registry.npmmirror.com/vite-plugin-windicss/1.5.4
+ name: vite-plugin-windicss
+ version: 1.5.4
+ peerDependencies:
+ vite: ^2.0.1
+ dependencies:
+ '@windicss/plugin-utils': registry.npmmirror.com/@windicss/plugin-utils/1.5.4
+ debug: registry.npmmirror.com/debug/4.3.3
+ kolorist: registry.nlark.com/kolorist/1.5.0
+ vite: registry.npmmirror.com/vite/2.6.14_less@4.1.2
+ windicss: registry.npmmirror.com/windicss/3.2.1
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ id: registry.npmmirror.com/vite/2.6.14
+ name: vite
+ version: 2.6.14
+ engines: {node: '>=12.2.0'}
+ hasBin: true
+ peerDependencies:
+ less: '*'
+ sass: '*'
+ stylus: '*'
+ peerDependenciesMeta:
+ less:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
+ dependencies:
+ esbuild: registry.npmmirror.com/esbuild/0.13.15
+ less: registry.npmmirror.com/less/4.1.2
+ postcss: registry.npmmirror.com/postcss/8.4.4
+ resolve: registry.nlark.com/resolve/1.20.0
+ rollup: registry.npmmirror.com/rollup/2.60.2
+ optionalDependencies:
+ fsevents: registry.npmmirror.com/fsevents/2.3.2
+ 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}
+ name: vscode-css-languageservice
+ version: 5.1.9
+ dependencies:
+ vscode-languageserver-textdocument: registry.npmmirror.com/vscode-languageserver-textdocument/1.0.3
+ vscode-languageserver-types: registry.npmmirror.com/vscode-languageserver-types/3.16.0
+ vscode-nls: registry.npmmirror.com/vscode-nls/5.0.0
+ vscode-uri: registry.nlark.com/vscode-uri/3.0.2
+ 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}
+ name: vscode-html-languageservice
+ version: 4.2.0
+ dependencies:
+ vscode-languageserver-textdocument: registry.npmmirror.com/vscode-languageserver-textdocument/1.0.3
+ vscode-languageserver-types: registry.npmmirror.com/vscode-languageserver-types/3.16.0
+ vscode-nls: registry.npmmirror.com/vscode-nls/5.0.0
+ vscode-uri: registry.nlark.com/vscode-uri/3.0.2
+ 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}
+ name: vscode-json-languageservice
+ version: 4.1.10
+ dependencies:
+ jsonc-parser: registry.nlark.com/jsonc-parser/3.0.0
+ vscode-languageserver-textdocument: registry.npmmirror.com/vscode-languageserver-textdocument/1.0.3
+ vscode-languageserver-types: registry.npmmirror.com/vscode-languageserver-types/3.16.0
+ vscode-nls: registry.npmmirror.com/vscode-nls/5.0.0
+ vscode-uri: registry.nlark.com/vscode-uri/3.0.2
+ 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}
+ name: vscode-jsonrpc
+ version: 8.0.0-next.4
+ 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}
+ name: vscode-languageserver-protocol
+ version: 3.17.0-next.11
+ dependencies:
+ vscode-jsonrpc: registry.npmmirror.com/vscode-jsonrpc/8.0.0-next.4
+ vscode-languageserver-types: registry.npmmirror.com/vscode-languageserver-types/3.17.0-next.5
+ 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}
+ 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}
+ 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}
+ 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}
+ name: vscode-languageserver
+ version: 8.0.0-next.5
+ hasBin: true
+ dependencies:
+ vscode-languageserver-protocol: registry.npmmirror.com/vscode-languageserver-protocol/3.17.0-next.11
+ 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}
+ 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}
+ name: vscode-pug-languageservice
+ version: 0.27.24
+ dependencies:
+ '@volar/code-gen': registry.npmmirror.com/@volar/code-gen/0.27.24
+ '@volar/shared': registry.npmmirror.com/@volar/shared/0.27.24
+ '@volar/source-map': registry.npmmirror.com/@volar/source-map/0.27.24
+ '@volar/transforms': registry.npmmirror.com/@volar/transforms/0.27.24
+ pug-lexer: registry.nlark.com/pug-lexer/5.0.1
+ pug-parser: registry.nlark.com/pug-parser/6.0.0
+ vscode-languageserver: registry.npmmirror.com/vscode-languageserver/8.0.0-next.5
+ 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}
+ name: vscode-typescript-languageservice
+ version: 0.27.25
+ dependencies:
+ '@volar/shared': registry.npmmirror.com/@volar/shared/0.27.24
+ semver: registry.nlark.com/semver/7.3.5
+ upath: registry.nlark.com/upath/2.0.1
+ vscode-languageserver: registry.npmmirror.com/vscode-languageserver/8.0.0-next.5
+ vscode-languageserver-textdocument: registry.npmmirror.com/vscode-languageserver-textdocument/1.0.3
+ 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}
+ name: vscode-vue-languageservice
+ version: 0.27.30
+ dependencies:
+ '@volar/code-gen': registry.npmmirror.com/@volar/code-gen/0.27.24
+ '@volar/html2pug': registry.npmmirror.com/@volar/html2pug/0.27.13
+ '@volar/shared': registry.npmmirror.com/@volar/shared/0.27.24
+ '@volar/source-map': registry.npmmirror.com/@volar/source-map/0.27.24
+ '@volar/transforms': registry.npmmirror.com/@volar/transforms/0.27.24
+ '@vscode/emmet-helper': registry.npmmirror.com/@vscode/emmet-helper/2.8.2
+ '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.2.24
+ '@vue/reactivity': registry.npmmirror.com/@vue/reactivity/3.2.24
+ '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.24
+ request-light: registry.npmmirror.com/request-light/0.5.5
+ upath: registry.nlark.com/upath/2.0.1
+ vscode-css-languageservice: registry.npmmirror.com/vscode-css-languageservice/5.1.9
+ vscode-html-languageservice: registry.npmmirror.com/vscode-html-languageservice/4.2.0
+ vscode-json-languageservice: registry.npmmirror.com/vscode-json-languageservice/4.1.10
+ vscode-languageserver: registry.npmmirror.com/vscode-languageserver/8.0.0-next.5
+ vscode-languageserver-textdocument: registry.npmmirror.com/vscode-languageserver-textdocument/1.0.3
+ vscode-pug-languageservice: registry.npmmirror.com/vscode-pug-languageservice/0.27.24
+ vscode-typescript-languageservice: registry.npmmirror.com/vscode-typescript-languageservice/0.27.25
+ 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}
+ id: registry.npmmirror.com/vue-demi/0.12.1
+ name: vue-demi
+ version: 0.12.1
+ engines: {node: '>=12'}
+ hasBin: true
+ requiresBuild: true
+ peerDependencies:
+ '@vue/composition-api': ^1.0.0-rc.1
+ vue: ^3.0.0-0 || ^2.6.0
+ peerDependenciesMeta:
+ '@vue/composition-api':
+ optional: true
+ dependencies:
+ vue: registry.npmmirror.com/vue/3.2.24
+ 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}
+ 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}
+ peerDependencies:
+ eslint: '>=6.0.0'
+ dependencies:
+ debug: registry.npmmirror.com/debug/4.3.3
+ eslint: registry.npmmirror.com/eslint/8.4.1
+ eslint-scope: registry.npmmirror.com/eslint-scope/6.0.0
+ eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/3.1.0
+ espree: registry.npmmirror.com/espree/9.2.0
+ esquery: registry.nlark.com/esquery/1.4.0
+ lodash: registry.nlark.com/lodash/4.17.21
+ semver: registry.nlark.com/semver/7.3.5
+ transitivePeerDependencies:
+ - supports-color
+ 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}
+ id: registry.npmmirror.com/vue-router/4.0.12
+ name: vue-router
+ version: 4.0.12
+ peerDependencies:
+ vue: ^3.0.0
+ dependencies:
+ '@vue/devtools-api': registry.npmmirror.com/@vue/devtools-api/6.0.0-beta.20.1
+ vue: registry.npmmirror.com/vue/3.2.24
+ 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}
+ id: registry.npmmirror.com/vue-tsc/0.3.0
+ name: vue-tsc
+ version: 0.3.0
+ hasBin: true
+ peerDependencies:
+ typescript: '*'
+ dependencies:
+ typescript: registry.npmmirror.com/typescript/4.5.2
+ vscode-vue-languageservice: registry.npmmirror.com/vscode-vue-languageservice/0.27.30
+ 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}
+ name: vue
+ version: 3.2.24
+ dependencies:
+ '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.2.24
+ '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc/3.2.24
+ '@vue/runtime-dom': registry.npmmirror.com/@vue/runtime-dom/3.2.24
+ '@vue/server-renderer': registry.npmmirror.com/@vue/server-renderer/3.2.24_vue@3.2.24
+ '@vue/shared': registry.npmmirror.com/@vue/shared/3.2.24
+ 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}
+ name: windicss
+ version: 3.2.1
+ 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}
+ name: yaml-eslint-parser
+ version: 0.5.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
+ yaml: registry.npmmirror.com/yaml/1.10.2
+ 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}
+ name: yaml
+ version: 1.10.2
+ 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}
+ name: yargs-parser
+ version: 20.2.9
+ 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}
+ name: yargs-parser
+ version: 21.0.0
+ 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}
+ name: yargs
+ version: 17.3.0
+ engines: {node: '>=12'}
+ dependencies:
+ cliui: registry.nlark.com/cliui/7.0.4
+ escalade: registry.nlark.com/escalade/3.1.1
+ get-caller-file: registry.nlark.com/get-caller-file/2.0.5
+ require-directory: registry.nlark.com/require-directory/2.1.1
+ string-width: registry.npmmirror.com/string-width/4.2.3
+ y18n: registry.nlark.com/y18n/5.0.8
+ yargs-parser: registry.npmmirror.com/yargs-parser/21.0.0
+ dev: true
diff --git a/postcss.config.js b/postcss.config.js
new file mode 100644
index 0000000..961986e
--- /dev/null
+++ b/postcss.config.js
@@ -0,0 +1,5 @@
+module.exports = {
+ plugins: {
+ autoprefixer: {}
+ }
+}
diff --git a/src/App.vue b/src/App.vue
index df4e2d7..f76f6b0 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -5,7 +5,11 @@ import HelloWorld from './components/HelloWorld.vue'
-
+
Edit
components/HelloWorld.vue
to test hot module replacement.
diff --git a/src/main.ts b/src/main.ts
index 01433bc..e51dd56 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -1,4 +1,8 @@
import { createApp } from 'vue'
import App from './App.vue'
+import 'virtual:windi.css'
+
+import 'virtual:windi-devtools'
+
createApp(App).mount('#app')
diff --git a/stylelint.config.js b/stylelint.config.js
new file mode 100644
index 0000000..2c5cb6b
--- /dev/null
+++ b/stylelint.config.js
@@ -0,0 +1,210 @@
+module.exports = {
+ root: true,
+ plugins: ['stylelint-order'],
+ extends: ['stylelint-config-standard', 'stylelint-config-prettier'],
+ rules: {
+ 'selector-pseudo-class-no-unknown': [
+ true,
+ {
+ ignorePseudoClasses: ['global', 'deep']
+ }
+ ],
+ 'at-rule-no-unknown': [
+ true,
+ {
+ ignoreAtRules: ['function', 'if', 'each', 'include', 'mixin']
+ }
+ ],
+ 'function-calc-no-invalid': null,
+ 'no-empty-source': null,
+ 'named-grid-areas-no-invalid': null,
+ 'unicode-bom': 'never',
+ 'no-descending-specificity': null,
+ 'font-family-no-missing-generic-family-keyword': null,
+ 'declaration-colon-space-after': 'always-single-line',
+ 'declaration-colon-space-before': 'never',
+ 'declaration-block-trailing-semicolon': null,
+ 'rule-empty-line-before': [
+ 'always',
+ {
+ ignore: ['after-comment', 'first-nested']
+ }
+ ],
+ 'unit-no-unknown': [
+ true,
+ {
+ ignoreUnits: ['rpx']
+ }
+ ],
+ 'order/order': [
+ [
+ 'dollar-variables',
+ 'custom-properties',
+ 'at-rules',
+ 'declarations',
+ {
+ type: 'at-rule',
+ name: 'supports'
+ },
+ {
+ type: 'at-rule',
+ name: 'media'
+ },
+ 'rules'
+ ],
+ {
+ severity: 'warning'
+ }
+ ],
+ // Specify the alphabetical order of the attributes in the declaration block
+ 'order/properties-order': [
+ 'position',
+ 'top',
+ 'right',
+ 'bottom',
+ 'left',
+ 'z-index',
+ 'display',
+ 'float',
+ 'width',
+ 'height',
+ 'max-width',
+ 'max-height',
+ 'min-width',
+ 'min-height',
+ 'padding',
+ 'padding-top',
+ 'padding-right',
+ 'padding-bottom',
+ 'padding-left',
+ 'margin',
+ 'margin-top',
+ 'margin-right',
+ 'margin-bottom',
+ 'margin-left',
+ 'margin-collapse',
+ 'margin-top-collapse',
+ 'margin-right-collapse',
+ 'margin-bottom-collapse',
+ 'margin-left-collapse',
+ 'overflow',
+ 'overflow-x',
+ 'overflow-y',
+ 'clip',
+ 'clear',
+ 'font',
+ 'font-family',
+ 'font-size',
+ 'font-smoothing',
+ 'osx-font-smoothing',
+ 'font-style',
+ 'font-weight',
+ 'hyphens',
+ 'src',
+ 'line-height',
+ 'letter-spacing',
+ 'word-spacing',
+ 'color',
+ 'text-align',
+ 'text-decoration',
+ 'text-indent',
+ 'text-overflow',
+ 'text-rendering',
+ 'text-size-adjust',
+ 'text-shadow',
+ 'text-transform',
+ 'word-break',
+ 'word-wrap',
+ 'white-space',
+ 'vertical-align',
+ 'list-style',
+ 'list-style-type',
+ 'list-style-position',
+ 'list-style-image',
+ 'pointer-events',
+ 'cursor',
+ 'background',
+ 'background-attachment',
+ 'background-color',
+ 'background-image',
+ 'background-position',
+ 'background-repeat',
+ 'background-size',
+ 'border',
+ 'border-collapse',
+ 'border-top',
+ 'border-right',
+ 'border-bottom',
+ 'border-left',
+ 'border-color',
+ 'border-image',
+ 'border-top-color',
+ 'border-right-color',
+ 'border-bottom-color',
+ 'border-left-color',
+ 'border-spacing',
+ 'border-style',
+ 'border-top-style',
+ 'border-right-style',
+ 'border-bottom-style',
+ 'border-left-style',
+ 'border-width',
+ 'border-top-width',
+ 'border-right-width',
+ 'border-bottom-width',
+ 'border-left-width',
+ 'border-radius',
+ 'border-top-right-radius',
+ 'border-bottom-right-radius',
+ 'border-bottom-left-radius',
+ 'border-top-left-radius',
+ 'border-radius-topright',
+ 'border-radius-bottomright',
+ 'border-radius-bottomleft',
+ 'border-radius-topleft',
+ 'content',
+ 'quotes',
+ 'outline',
+ 'outline-offset',
+ 'opacity',
+ 'filter',
+ 'visibility',
+ 'size',
+ 'zoom',
+ 'transform',
+ 'box-align',
+ 'box-flex',
+ 'box-orient',
+ 'box-pack',
+ 'box-shadow',
+ 'box-sizing',
+ 'table-layout',
+ 'animation',
+ 'animation-delay',
+ 'animation-duration',
+ 'animation-iteration-count',
+ 'animation-name',
+ 'animation-play-state',
+ 'animation-timing-function',
+ 'animation-fill-mode',
+ 'transition',
+ 'transition-delay',
+ 'transition-duration',
+ 'transition-property',
+ 'transition-timing-function',
+ 'background-clip',
+ 'backface-visibility',
+ 'resize',
+ 'appearance',
+ 'user-select',
+ 'interpolation-mode',
+ 'direction',
+ 'marks',
+ 'page',
+ 'set-link-source',
+ 'unicode-bidi',
+ 'speak'
+ ]
+ },
+ ignoreFiles: ['**/*.js', '**/*.jsx', '**/*.tsx', '**/*.ts']
+}
diff --git a/tsconfig.json b/tsconfig.json
index 8617c8a..0a03a29 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -9,7 +9,22 @@
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
- "lib": ["esnext", "dom"]
+ "lib": ["esnext", "dom"],
+ "baseUrl": ".",
+ "allowJs": true,
+ "forceConsistentCasingInFileNames": true,
+ "allowSyntheticDefaultImports": true,
+ "strictFunctionTypes": false,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "experimentalDecorators": true,
+ "noImplicitAny": false,
+ "skipLibCheck": true,
+ "paths": {
+ "@/*": ["src/*"]
+ }
},
- "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
+ "types": ["element-plus/global", "vite/client"],
+ "typeRoots": ["./node_modules/@types/", "./types"],
+ "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "components.d.ts"]
}
diff --git a/vite.config.ts b/vite.config.ts
index 315212d..463df2a 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -1,7 +1,117 @@
-import { defineConfig } from 'vite'
-import vue from '@vitejs/plugin-vue'
+import { resolve } from 'path'
+import { loadEnv } from 'vite'
+import type { UserConfig, ConfigEnv } from 'vite'
+import Vue from '@vitejs/plugin-vue'
+import WindiCSS from 'vite-plugin-windicss'
+import Components from 'unplugin-vue-components/vite'
+import AutoImport from 'unplugin-auto-import/vite'
+import VueJsx from '@vitejs/plugin-vue-jsx'
+import VueSetupExtend from 'vite-plugin-vue-setup-extend'
+import EslintPlugin from 'vite-plugin-eslint'
+import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
// https://vitejs.dev/config/
-export default defineConfig({
- plugins: [vue()]
-})
+const root = process.cwd()
+
+function pathResolve(dir: string) {
+ return resolve(root, '.', dir)
+}
+
+// https://vitejs.dev/config/
+export default ({ command, mode }: ConfigEnv): UserConfig => {
+ let env = null
+ if (command === 'serve') {
+ env = loadEnv(process.argv[4], root)
+ }
+ else {
+ env = loadEnv(mode, root)
+ }
+
+ return {
+ base: env.VITE_BASE_PATH,
+ plugins: [
+ Vue(),
+ VueJsx(),
+ WindiCSS(),
+ VueSetupExtend(),
+ AutoImport({
+ imports: [
+ 'vue',
+ 'vue-router',
+ // 'vue-i18n',
+ '@vueuse/core'
+ ],
+ dts: 'src/auto-imports.d.ts'
+ }),
+ Components({
+ // allow auto load markdown components under `./src/components/`
+ dirs: ['src/components', 'src/layout'],
+ extensions: ['vue', 'md'],
+ // allow auto import and register components used in markdown
+ include: [/\.vue$/, /\.vue\?vue/, /\.md$/],
+ // custom resolvers
+ resolvers: [
+ [ElementPlusResolver()]
+ ],
+ dts: 'src/components.d.ts'
+ }),
+ EslintPlugin({
+ cache: false,
+ include: ['src/**/*.vue', 'src/**/*.ts', 'src/**/*.tsx'] // 检查的文件
+ })
+ ],
+
+ css: {
+ preprocessorOptions: {
+ less: {
+ additionalData: '@import "./src/styles/variables.less";',
+ javascriptEnabled: true
+ }
+ }
+ },
+ resolve: {
+ alias: [
+ {
+ find: /\@\//,
+ replacement: `${pathResolve('src')}/`
+ }
+ ]
+ },
+ build: {
+ minify: 'terser',
+ outDir: env.VITE_OUT_DIR,
+ sourcemap: env.VITE_SOURCEMAP === 'true' ? 'inline' : false,
+ brotliSize: false,
+ terserOptions: {
+ compress: {
+ drop_debugger: env.VITE_DROP_DEBUGGER === 'true',
+ drop_console: env.VITE_DROP_CONSOLE === 'true'
+ }
+ }
+ },
+ server: {
+ proxy: {
+ // 字符串简写写法
+ '/foo': 'http://localhost:4567/foo',
+ // 选项写法
+ '/api': {
+ target: 'http://jsonplaceholder.typicode.com',
+ changeOrigin: true,
+ rewrite: path => path.replace(/^\/api/, '')
+ },
+ // 正则表达式写法
+ '^/fallback/.*': {
+ target: 'http://jsonplaceholder.typicode.com',
+ changeOrigin: true,
+ rewrite: path => path.replace(/^\/fallback/, '')
+ }
+ }
+ },
+ optimizeDeps: {
+ include: [
+ 'vue',
+ 'vue-router'
+ ]
+ }
+ }
+}
diff --git a/windi.config.ts b/windi.config.ts
new file mode 100644
index 0000000..4e3c881
--- /dev/null
+++ b/windi.config.ts
@@ -0,0 +1,12 @@
+import { defineConfig } from 'vite-plugin-windicss'
+
+export default defineConfig({
+ extract: {
+ include: ['src/**/*.{vue,html,jsx,tsx}'],
+ exclude: ['node_modules', '.git']
+ },
+ darkMode: 'class',
+ attributify: {
+ prefix: 'v:'
+ }
+})