diff --git a/.eslintignore b/.eslintignore
new file mode 100644
index 0000000..43ca088
--- /dev/null
+++ b/.eslintignore
@@ -0,0 +1,20 @@
+# eslint 忽略检查 (根据项目需要自行添加)
+node_modules
+dist
+.idea
+.vscode
+.hbuilderx
+src/manifest.json
+src/pages.json
+*.sh
+node_modules
+*.md
+*.woff
+*.ttf
+*.yaml
+dist
+/public
+/docs
+.husky
+.local
+/bin
\ No newline at end of file
diff --git a/.eslintrc.js b/.eslintrc.js
new file mode 100644
index 0000000..901eb6e
--- /dev/null
+++ b/.eslintrc.js
@@ -0,0 +1,111 @@
+module.exports = {
+ env: {
+ browser: true,
+ es2021: true,
+ },
+ parser: 'vue-eslint-parser',
+ extends: [
+ 'eslint:recommended',
+ 'plugin:vue/essential',
+ 'plugin:vue/vue3-recommended',
+ 'plugin:@typescript-eslint/recommended',
+ 'prettier',
+ ],
+ parserOptions: {
+ ecmaVersion: 'latest',
+ parser: '@typescript-eslint/parser',
+ sourceType: 'module',
+ },
+ settings: {
+ 'import/resolver': {
+ alias: {
+ map: [['@', './src']],
+ extensions: ['.ts', '.js', '.jsx', '.json', '.vue'],
+ },
+ },
+ },
+ plugins: ['vue', '@typescript-eslint', 'prettier'],
+ rules: {
+ 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
+ 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
+ 'no-var': 'error',
+ 'prettier/prettier': 'error',
+ 'vue/no-multiple-template-root': 'off',
+ 'no-mutating-props': 'off',
+ 'vue/no-v-html': 'off',
+ // @fixable 必须使用单引号,禁止使用双引号
+ quotes: [
+ 'error',
+ 'single',
+ {
+ avoidEscape: true,
+ allowTemplateLiterals: true,
+ },
+ ],
+ // 结尾必须有分号;
+ semi: [
+ 'error',
+ 'always',
+ {
+ omitLastInOneLineBlock: true,
+ },
+ ],
+ 'vue/script-setup-uses-vars': 'error',
+ '@typescript-eslint/ban-ts-ignore': 'off',
+ '@typescript-eslint/explicit-function-return-type': 'off',
+ '@typescript-eslint/no-explicit-any': 'off',
+ '@typescript-eslint/no-var-requires': 'off',
+ '@typescript-eslint/no-empty-function': 'off',
+ 'vue/custom-event-name-casing': 'off',
+ 'no-use-before-define': 'off',
+ '@typescript-eslint/no-use-before-define': 'off',
+ '@typescript-eslint/ban-ts-comment': 'off',
+ '@typescript-eslint/ban-types': 'off',
+ '@typescript-eslint/no-non-null-assertion': 'off',
+ '@typescript-eslint/explicit-module-boundary-types': 'off',
+ '@typescript-eslint/no-unused-vars': [
+ 'error',
+ {
+ argsIgnorePattern: '^_',
+ varsIgnorePattern: '^_',
+ },
+ ],
+ 'no-unused-vars': [
+ 'error',
+ {
+ argsIgnorePattern: '^_',
+ varsIgnorePattern: '^_',
+ },
+ ],
+ 'space-before-function-paren': 'off',
+
+ 'vue/attributes-order': 'off',
+ 'vue/v-on-event-hyphenation': 'off',
+ 'vue/multi-word-component-names': 'off',
+ 'vue/one-component-per-file': 'off',
+ 'vue/html-closing-bracket-newline': 'off',
+ 'vue/max-attributes-per-line': 'off',
+ 'vue/multiline-html-element-content-newline': 'off',
+ 'vue/singleline-html-element-content-newline': 'off',
+ 'vue/attribute-hyphenation': 'off',
+ 'vue/require-default-prop': 'off',
+ 'vue/html-self-closing': [
+ 'error',
+ {
+ html: {
+ void: 'always',
+ normal: 'never',
+ component: 'always',
+ },
+ svg: 'always',
+ math: 'always',
+ },
+ ],
+ },
+ globals: {
+ defineProps: 'readonly',
+ defineEmits: 'readonly',
+ defineExpose: 'readonly',
+ withDefaults: 'readonly',
+ },
+};
diff --git a/.gitignore b/.gitignore
index c5d2ad6..f07b5f4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
/node_modules/
/dist/
/.idea/
-/.hbuilderx/
\ No newline at end of file
+/.hbuilderx/
+/.eslintcache
diff --git a/.prettierignore b/.prettierignore
new file mode 100644
index 0000000..364db71
--- /dev/null
+++ b/.prettierignore
@@ -0,0 +1,20 @@
+# 忽略格式化文件 (根据项目需要自行添加)
+node_modules
+dist
+.idea
+.vscode
+.hbuilderx
+src/manifest.json
+src/pages.json
+*.sh
+node_modules
+*.md
+*.woff
+*.ttf
+*.yaml
+dist
+/public
+/docs
+.husky
+.local
+/bin
\ No newline at end of file
diff --git a/.prettierrc.js b/.prettierrc.js
new file mode 100644
index 0000000..51f8d01
--- /dev/null
+++ b/.prettierrc.js
@@ -0,0 +1,10 @@
+module.exports = {
+ printWidth: 100,
+ semi: true,
+ vueIndentScriptAndStyle: true,
+ singleQuote: true,
+ trailingComma: 'all',
+ proseWrap: 'never',
+ htmlWhitespaceSensitivity: 'strict',
+ endOfLine: 'auto',
+};
diff --git a/index.html b/index.html
index 60d0627..82ca5a7 100644
--- a/index.html
+++ b/index.html
@@ -3,11 +3,15 @@
diff --git a/package.json b/package.json
index 48b0157..25061ed 100644
--- a/package.json
+++ b/package.json
@@ -29,7 +29,9 @@
"build:mp-weixin": "uni build -p mp-weixin",
"build:quickapp-webview": "uni build -p quickapp-webview",
"build:quickapp-webview-huawei": "uni build -p quickapp-webview-huawei",
- "build:quickapp-webview-union": "uni build -p quickapp-webview-union"
+ "build:quickapp-webview-union": "uni build -p quickapp-webview-union",
+ "lint": "eslint --cache --max-warnings 0 \"src/**/*.{vue,ts}\" --fix",
+ "prettier": "prettier --write \"src/**/*.{js,ts,json,css,scss,vue}\""
},
"dependencies": {
"@dcloudio/uni-app": "3.0.0-alpha-3040820220424001",
@@ -54,9 +56,17 @@
"@dcloudio/uni-cli-shared": "3.0.0-alpha-3040820220424001",
"@dcloudio/vite-plugin-uni": "3.0.0-alpha-3040820220424001",
"@types/node": "^17.0.38",
+ "@typescript-eslint/eslint-plugin": "^5.27.0",
+ "@typescript-eslint/parser": "^5.27.0",
+ "eslint": "^8.16.0",
+ "eslint-config-prettier": "^8.5.0",
+ "eslint-plugin-prettier": "^4.0.0",
+ "eslint-plugin-vue": "^9.1.0",
+ "prettier": "^2.6.2",
"sass": "^1.52.1",
"typescript": "^4.6.3",
"vite": "^2.9.6",
+ "vite-plugin-eslint": "^1.6.1",
"vite-plugin-windicss": "^1.8.4"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index e26b830..d33285a 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -19,9 +19,17 @@ specifiers:
'@dcloudio/uni-quickapp-webview': 3.0.0-alpha-3040820220424001
'@dcloudio/vite-plugin-uni': 3.0.0-alpha-3040820220424001
'@types/node': ^17.0.38
+ '@typescript-eslint/eslint-plugin': ^5.27.0
+ '@typescript-eslint/parser': ^5.27.0
+ eslint: ^8.16.0
+ eslint-config-prettier: ^8.5.0
+ eslint-plugin-prettier: ^4.0.0
+ eslint-plugin-vue: ^9.1.0
+ prettier: ^2.6.2
sass: ^1.52.1
typescript: ^4.6.3
vite: ^2.9.6
+ vite-plugin-eslint: ^1.6.1
vite-plugin-windicss: ^1.8.4
vue: ^3.2.33
vue-i18n: ^9.1.9
@@ -49,47 +57,90 @@ devDependencies:
'@dcloudio/uni-cli-shared': registry.npmmirror.com/@dcloudio/uni-cli-shared/3.0.0-alpha-3040820220424001_vue@3.2.36
'@dcloudio/vite-plugin-uni': registry.npmmirror.com/@dcloudio/vite-plugin-uni/3.0.0-alpha-3040820220424001_vite@2.9.9+vue@3.2.36
'@types/node': registry.npmmirror.com/@types/node/17.0.38
+ '@typescript-eslint/eslint-plugin': registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.27.0_dszb5tb7atwkjjijmmov4qhi7i
+ '@typescript-eslint/parser': registry.npmmirror.com/@typescript-eslint/parser/5.27.0_xztl6dhthcahlo6akmb2bmjmle
+ eslint: registry.npmmirror.com/eslint/8.16.0
+ eslint-config-prettier: registry.npmmirror.com/eslint-config-prettier/8.5.0_eslint@8.16.0
+ eslint-plugin-prettier: registry.npmmirror.com/eslint-plugin-prettier/4.0.0_j7rsahgqtkecno6yauhsgsglf4
+ eslint-plugin-vue: registry.npmmirror.com/eslint-plugin-vue/9.1.0_eslint@8.16.0
+ prettier: registry.npmmirror.com/prettier/2.6.2
sass: registry.npmmirror.com/sass/1.52.1
typescript: registry.npmmirror.com/typescript/4.7.2
vite: registry.npmmirror.com/vite/2.9.9_sass@1.52.1
+ vite-plugin-eslint: registry.npmmirror.com/vite-plugin-eslint/1.6.1_eslint@8.16.0+vite@2.9.9
vite-plugin-windicss: registry.npmmirror.com/vite-plugin-windicss/1.8.4_vite@2.9.9
packages:
+ 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.npmmirror.com/@ampproject/remapping/2.2.0:
- resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.0.tgz}
+ resolution:
+ {
+ integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.0.tgz,
+ }
name: '@ampproject/remapping'
version: 2.2.0
- engines: {node: '>=6.0.0'}
+ engines: { node: '>=6.0.0' }
dependencies:
'@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping/0.1.1
'@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping/0.3.13
registry.npmmirror.com/@antfu/utils/0.5.2:
- resolution: {integrity: sha512-CQkeV+oJxUazwjlHD0/3ZD08QWKuGQkhnrKo3e6ly5pd48VUpXbb77q0xMU4+vc2CkJnDS02Eq/M9ugyX20XZA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antfu/utils/-/utils-0.5.2.tgz}
+ resolution:
+ {
+ integrity: sha512-CQkeV+oJxUazwjlHD0/3ZD08QWKuGQkhnrKo3e6ly5pd48VUpXbb77q0xMU4+vc2CkJnDS02Eq/M9ugyX20XZA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@antfu/utils/-/utils-0.5.2.tgz,
+ }
name: '@antfu/utils'
version: 0.5.2
dev: true
registry.npmmirror.com/@babel/code-frame/7.16.7:
- resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.16.7.tgz}
+ resolution:
+ {
+ integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.16.7.tgz,
+ }
name: '@babel/code-frame'
version: 7.16.7
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
dependencies:
'@babel/highlight': registry.npmmirror.com/@babel/highlight/7.17.12
registry.npmmirror.com/@babel/compat-data/7.17.10:
- resolution: {integrity: sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.17.10.tgz}
+ resolution:
+ {
+ integrity: sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.17.10.tgz,
+ }
name: '@babel/compat-data'
version: 7.17.10
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
registry.npmmirror.com/@babel/core/7.18.2:
- resolution: {integrity: sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/core/-/core-7.18.2.tgz}
+ resolution:
+ {
+ integrity: sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/core/-/core-7.18.2.tgz,
+ }
name: '@babel/core'
version: 7.18.2
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
dependencies:
'@ampproject/remapping': registry.npmmirror.com/@ampproject/remapping/2.2.0
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.16.7
@@ -110,30 +161,45 @@ packages:
- supports-color
registry.npmmirror.com/@babel/generator/7.18.2:
- resolution: {integrity: sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/generator/-/generator-7.18.2.tgz}
+ resolution:
+ {
+ integrity: sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/generator/-/generator-7.18.2.tgz,
+ }
name: '@babel/generator'
version: 7.18.2
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.18.4
'@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping/0.3.1
jsesc: registry.npmmirror.com/jsesc/2.5.2
registry.npmmirror.com/@babel/helper-annotate-as-pure/7.16.7:
- resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz}
+ resolution:
+ {
+ integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz,
+ }
name: '@babel/helper-annotate-as-pure'
version: 7.16.7
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.18.4
dev: true
registry.npmmirror.com/@babel/helper-compilation-targets/7.18.2_@babel+core@7.18.2:
- resolution: {integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.2.tgz}
+ resolution:
+ {
+ integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.2.tgz,
+ }
id: registry.npmmirror.com/@babel/helper-compilation-targets/7.18.2
name: '@babel/helper-compilation-targets'
version: 7.18.2
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
@@ -144,11 +210,16 @@ packages:
semver: registry.npmmirror.com/semver/6.3.0
registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.18.0_@babel+core@7.18.2:
- resolution: {integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.0.tgz}
+ resolution:
+ {
+ integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.0.tgz,
+ }
id: registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.18.0
name: '@babel/helper-create-class-features-plugin'
version: 7.18.0
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
@@ -165,50 +236,80 @@ packages:
dev: true
registry.npmmirror.com/@babel/helper-environment-visitor/7.18.2:
- resolution: {integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.2.tgz}
+ resolution:
+ {
+ integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.2.tgz,
+ }
name: '@babel/helper-environment-visitor'
version: 7.18.2
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
registry.npmmirror.com/@babel/helper-function-name/7.17.9:
- resolution: {integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz}
+ resolution:
+ {
+ integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz,
+ }
name: '@babel/helper-function-name'
version: 7.17.9
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
dependencies:
'@babel/template': registry.npmmirror.com/@babel/template/7.16.7
'@babel/types': registry.npmmirror.com/@babel/types/7.18.4
registry.npmmirror.com/@babel/helper-hoist-variables/7.16.7:
- resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz}
+ resolution:
+ {
+ integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz,
+ }
name: '@babel/helper-hoist-variables'
version: 7.16.7
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.18.4
registry.npmmirror.com/@babel/helper-member-expression-to-functions/7.17.7:
- resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz}
+ resolution:
+ {
+ integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz,
+ }
name: '@babel/helper-member-expression-to-functions'
version: 7.17.7
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.18.4
dev: true
registry.npmmirror.com/@babel/helper-module-imports/7.16.7:
- resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz}
+ resolution:
+ {
+ integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz,
+ }
name: '@babel/helper-module-imports'
version: 7.16.7
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.18.4
registry.npmmirror.com/@babel/helper-module-transforms/7.18.0:
- resolution: {integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.0.tgz}
+ resolution:
+ {
+ integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.0.tgz,
+ }
name: '@babel/helper-module-transforms'
version: 7.18.0
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
dependencies:
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.18.2
'@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.16.7
@@ -222,26 +323,41 @@ packages:
- supports-color
registry.npmmirror.com/@babel/helper-optimise-call-expression/7.16.7:
- resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz}
+ resolution:
+ {
+ integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz,
+ }
name: '@babel/helper-optimise-call-expression'
version: 7.16.7
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.18.4
dev: true
registry.npmmirror.com/@babel/helper-plugin-utils/7.17.12:
- resolution: {integrity: sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.17.12.tgz}
+ resolution:
+ {
+ integrity: sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.17.12.tgz,
+ }
name: '@babel/helper-plugin-utils'
version: 7.17.12
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
dev: true
registry.npmmirror.com/@babel/helper-replace-supers/7.18.2:
- resolution: {integrity: sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-replace-supers/-/helper-replace-supers-7.18.2.tgz}
+ resolution:
+ {
+ integrity: sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/helper-replace-supers/-/helper-replace-supers-7.18.2.tgz,
+ }
name: '@babel/helper-replace-supers'
version: 7.18.2
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
dependencies:
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.18.2
'@babel/helper-member-expression-to-functions': registry.npmmirror.com/@babel/helper-member-expression-to-functions/7.17.7
@@ -253,38 +369,63 @@ packages:
dev: true
registry.npmmirror.com/@babel/helper-simple-access/7.18.2:
- resolution: {integrity: sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.18.2.tgz}
+ resolution:
+ {
+ integrity: sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.18.2.tgz,
+ }
name: '@babel/helper-simple-access'
version: 7.18.2
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.18.4
registry.npmmirror.com/@babel/helper-split-export-declaration/7.16.7:
- resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz}
+ resolution:
+ {
+ integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz,
+ }
name: '@babel/helper-split-export-declaration'
version: 7.16.7
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.18.4
registry.npmmirror.com/@babel/helper-validator-identifier/7.16.7:
- resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz}
+ resolution:
+ {
+ integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz,
+ }
name: '@babel/helper-validator-identifier'
version: 7.16.7
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
registry.npmmirror.com/@babel/helper-validator-option/7.16.7:
- resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz}
+ resolution:
+ {
+ integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz,
+ }
name: '@babel/helper-validator-option'
version: 7.16.7
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
registry.npmmirror.com/@babel/helpers/7.18.2:
- resolution: {integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helpers/-/helpers-7.18.2.tgz}
+ resolution:
+ {
+ integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/helpers/-/helpers-7.18.2.tgz,
+ }
name: '@babel/helpers'
version: 7.18.2
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
dependencies:
'@babel/template': registry.npmmirror.com/@babel/template/7.16.7
'@babel/traverse': registry.npmmirror.com/@babel/traverse/7.18.2
@@ -293,26 +434,41 @@ packages:
- supports-color
registry.npmmirror.com/@babel/highlight/7.17.12:
- resolution: {integrity: sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/highlight/-/highlight-7.17.12.tgz}
+ resolution:
+ {
+ integrity: sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/highlight/-/highlight-7.17.12.tgz,
+ }
name: '@babel/highlight'
version: 7.17.12
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
dependencies:
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.16.7
chalk: registry.npmmirror.com/chalk/2.4.2
js-tokens: registry.npmmirror.com/js-tokens/4.0.0
registry.npmmirror.com/@babel/parser/7.18.4:
- resolution: {integrity: sha512-FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.18.4.tgz}
+ resolution:
+ {
+ integrity: sha512-FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.18.4.tgz,
+ }
name: '@babel/parser'
version: 7.18.4
- engines: {node: '>=6.0.0'}
+ engines: { node: '>=6.0.0' }
hasBin: true
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.18.4
registry.npmmirror.com/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.2:
- resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz}
+ resolution:
+ {
+ integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz,
+ }
id: registry.npmmirror.com/@babel/plugin-syntax-import-meta/7.10.4
name: '@babel/plugin-syntax-import-meta'
version: 7.10.4
@@ -324,11 +480,16 @@ packages:
dev: true
registry.npmmirror.com/@babel/plugin-syntax-jsx/7.17.12_@babel+core@7.18.2:
- resolution: {integrity: sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.17.12.tgz}
+ resolution:
+ {
+ integrity: sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.17.12.tgz,
+ }
id: registry.npmmirror.com/@babel/plugin-syntax-jsx/7.17.12
name: '@babel/plugin-syntax-jsx'
version: 7.17.12
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -337,11 +498,16 @@ packages:
dev: true
registry.npmmirror.com/@babel/plugin-syntax-typescript/7.17.12_@babel+core@7.18.2:
- resolution: {integrity: sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.17.12.tgz}
+ resolution:
+ {
+ integrity: sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.17.12.tgz,
+ }
id: registry.npmmirror.com/@babel/plugin-syntax-typescript/7.17.12
name: '@babel/plugin-syntax-typescript'
version: 7.17.12
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -350,11 +516,16 @@ packages:
dev: true
registry.npmmirror.com/@babel/plugin-transform-typescript/7.18.4_@babel+core@7.18.2:
- resolution: {integrity: sha512-l4vHuSLUajptpHNEOUDEGsnpl9pfRLsN1XUoDQDD/YBuXTM+v37SHGS+c6n4jdcZy96QtuUuSvZYMLSSsjH8Mw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.4.tgz}
+ resolution:
+ {
+ integrity: sha512-l4vHuSLUajptpHNEOUDEGsnpl9pfRLsN1XUoDQDD/YBuXTM+v37SHGS+c6n4jdcZy96QtuUuSvZYMLSSsjH8Mw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.4.tgz,
+ }
id: registry.npmmirror.com/@babel/plugin-transform-typescript/7.18.4
name: '@babel/plugin-transform-typescript'
version: 7.18.4
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -367,27 +538,42 @@ packages:
dev: true
registry.npmmirror.com/@babel/standalone/7.18.4:
- resolution: {integrity: sha512-3dDouWyjdS8sJTm6hf8KkJq7fr9ORWMlWGNcMV/Uz2rNnoI6uu8wJGhZ7E65J+x6v8ta9yPbzkUT2YBFcWUbWg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/standalone/-/standalone-7.18.4.tgz}
+ resolution:
+ {
+ integrity: sha512-3dDouWyjdS8sJTm6hf8KkJq7fr9ORWMlWGNcMV/Uz2rNnoI6uu8wJGhZ7E65J+x6v8ta9yPbzkUT2YBFcWUbWg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/standalone/-/standalone-7.18.4.tgz,
+ }
name: '@babel/standalone'
version: 7.18.4
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
dev: true
registry.npmmirror.com/@babel/template/7.16.7:
- resolution: {integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/template/-/template-7.16.7.tgz}
+ resolution:
+ {
+ integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/template/-/template-7.16.7.tgz,
+ }
name: '@babel/template'
version: 7.16.7
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
dependencies:
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.16.7
'@babel/parser': registry.npmmirror.com/@babel/parser/7.18.4
'@babel/types': registry.npmmirror.com/@babel/types/7.18.4
registry.npmmirror.com/@babel/traverse/7.18.2:
- resolution: {integrity: sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/traverse/-/traverse-7.18.2.tgz}
+ resolution:
+ {
+ integrity: sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/traverse/-/traverse-7.18.2.tgz,
+ }
name: '@babel/traverse'
version: 7.18.2
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
dependencies:
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.16.7
'@babel/generator': registry.npmmirror.com/@babel/generator/7.18.2
@@ -403,16 +589,26 @@ packages:
- supports-color
registry.npmmirror.com/@babel/types/7.18.4:
- resolution: {integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.18.4.tgz}
+ resolution:
+ {
+ integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@babel/types/-/types-7.18.4.tgz,
+ }
name: '@babel/types'
version: 7.18.4
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
dependencies:
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.16.7
to-fast-properties: registry.npmmirror.com/to-fast-properties/2.0.0
registry.npmmirror.com/@dcasia/mini-program-tailwind-webpack-plugin/1.4.0:
- resolution: {integrity: sha512-7ExS8pheqvNvUcdMdDlhAqsiPEhhjHsKGRAlXLfMm0zCe4Ii9iIokAZDUk5ajWMlBnkMWl7HN55Uo+wsrTxLaQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcasia/mini-program-tailwind-webpack-plugin/-/mini-program-tailwind-webpack-plugin-1.4.0.tgz}
+ resolution:
+ {
+ integrity: sha512-7ExS8pheqvNvUcdMdDlhAqsiPEhhjHsKGRAlXLfMm0zCe4Ii9iIokAZDUk5ajWMlBnkMWl7HN55Uo+wsrTxLaQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcasia/mini-program-tailwind-webpack-plugin/-/mini-program-tailwind-webpack-plugin-1.4.0.tgz,
+ }
name: '@dcasia/mini-program-tailwind-webpack-plugin'
version: 1.4.0
dependencies:
@@ -426,13 +622,23 @@ packages:
dev: true
registry.npmmirror.com/@dcloudio/types/2.6.11:
- resolution: {integrity: sha512-nTlGWxGAI0Xq7twTThdRJTJa0kBtNDyWACO2xYJyhVQXNKKIci1PwDuQmpvZCD1apbwWWVi+jm9RBMNsjAtxZw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/types/-/types-2.6.11.tgz}
+ resolution:
+ {
+ integrity: sha512-nTlGWxGAI0Xq7twTThdRJTJa0kBtNDyWACO2xYJyhVQXNKKIci1PwDuQmpvZCD1apbwWWVi+jm9RBMNsjAtxZw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/types/-/types-2.6.11.tgz,
+ }
name: '@dcloudio/types'
version: 2.6.11
dev: true
registry.npmmirror.com/@dcloudio/uni-app-plus/3.0.0-alpha-3040820220424001_vite@2.9.9+vue@3.2.36:
- resolution: {integrity: sha512-l/pfr+oJmCbScBz4vmJiWsOV/sxBSJYNHcoV/S4VLB8NYrDtq2zXlZWEZUYFa6a54UuVnI3frkzlajJfRI9YSQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-app-plus/-/uni-app-plus-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-l/pfr+oJmCbScBz4vmJiWsOV/sxBSJYNHcoV/S4VLB8NYrDtq2zXlZWEZUYFa6a54UuVnI3frkzlajJfRI9YSQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-app-plus/-/uni-app-plus-3.0.0-alpha-3040820220424001.tgz,
+ }
id: registry.npmmirror.com/@dcloudio/uni-app-plus/3.0.0-alpha-3040820220424001
name: '@dcloudio/uni-app-plus'
version: 3.0.0-alpha-3040820220424001
@@ -448,7 +654,12 @@ packages:
dev: false
registry.npmmirror.com/@dcloudio/uni-app-vite/3.0.0-alpha-3040820220424001_vite@2.9.9+vue@3.2.36:
- resolution: {integrity: sha512-MzZpWY0x7Y95YHp3uVpqv7VT5Wmz4pFY5zdPFXg2DR91MmsCHOEEyrA1PGJWvwV6NW+hyy+yNkkbxmyYJ4n21A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-app-vite/-/uni-app-vite-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-MzZpWY0x7Y95YHp3uVpqv7VT5Wmz4pFY5zdPFXg2DR91MmsCHOEEyrA1PGJWvwV6NW+hyy+yNkkbxmyYJ4n21A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-app-vite/-/uni-app-vite-3.0.0-alpha-3040820220424001.tgz,
+ }
id: registry.npmmirror.com/@dcloudio/uni-app-vite/3.0.0-alpha-3040820220424001
name: '@dcloudio/uni-app-vite'
version: 3.0.0-alpha-3040820220424001
@@ -474,13 +685,23 @@ packages:
dev: false
registry.npmmirror.com/@dcloudio/uni-app-vue/3.0.0-alpha-3040820220424001:
- resolution: {integrity: sha512-4x47MJQ9gTn1zZU43LnDb7GEM33EbxeDtCr9cBiR9NSjmOMj44IlBJgEJAIRsrb8GQEbzNOVPNA0O6CnRga2hA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-app-vue/-/uni-app-vue-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-4x47MJQ9gTn1zZU43LnDb7GEM33EbxeDtCr9cBiR9NSjmOMj44IlBJgEJAIRsrb8GQEbzNOVPNA0O6CnRga2hA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-app-vue/-/uni-app-vue-3.0.0-alpha-3040820220424001.tgz,
+ }
name: '@dcloudio/uni-app-vue'
version: 3.0.0-alpha-3040820220424001
dev: false
registry.npmmirror.com/@dcloudio/uni-app/3.0.0-alpha-3040820220424001_vue@3.2.36:
- resolution: {integrity: sha512-VNF6QHmYhH3VLbt//5tIZ4TKghuCRGiGKsO/KPme6fXt9SYH96/XbzxW2RtWXXqb31nEUFcqUAaQz93UdL+ZmA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-app/-/uni-app-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-VNF6QHmYhH3VLbt//5tIZ4TKghuCRGiGKsO/KPme6fXt9SYH96/XbzxW2RtWXXqb31nEUFcqUAaQz93UdL+ZmA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-app/-/uni-app-3.0.0-alpha-3040820220424001.tgz,
+ }
id: registry.npmmirror.com/@dcloudio/uni-app/3.0.0-alpha-3040820220424001
name: '@dcloudio/uni-app'
version: 3.0.0-alpha-3040820220424001
@@ -500,7 +721,12 @@ packages:
dev: false
registry.npmmirror.com/@dcloudio/uni-automator/3.0.0-alpha-3040820220424001_vue@3.2.36:
- resolution: {integrity: sha512-xB4KFZfIa9qLA6KPTAw3iFvdglcA4ZF4P9w7h+iLlN9trI1GIzaNCI9lX2WUh0au+XrPOR6ijf+X5jRhEL/vAQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-automator/-/uni-automator-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-xB4KFZfIa9qLA6KPTAw3iFvdglcA4ZF4P9w7h+iLlN9trI1GIzaNCI9lX2WUh0au+XrPOR6ijf+X5jRhEL/vAQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-automator/-/uni-automator-3.0.0-alpha-3040820220424001.tgz,
+ }
id: registry.npmmirror.com/@dcloudio/uni-automator/3.0.0-alpha-3040820220424001
name: '@dcloudio/uni-automator'
version: 3.0.0-alpha-3040820220424001
@@ -526,7 +752,12 @@ packages:
dev: true
registry.npmmirror.com/@dcloudio/uni-cli-shared/3.0.0-alpha-3040820220424001_vue@3.2.36:
- resolution: {integrity: sha512-1F9jQRZv/f8UXuw0vOF6aizhY0S6uEWL0U95wlNQGFgxIVLSTInXpLrs/xF1gtQnFweiOJXmtZNWAUmMf8ajIA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-cli-shared/-/uni-cli-shared-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-1F9jQRZv/f8UXuw0vOF6aizhY0S6uEWL0U95wlNQGFgxIVLSTInXpLrs/xF1gtQnFweiOJXmtZNWAUmMf8ajIA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-cli-shared/-/uni-cli-shared-3.0.0-alpha-3040820220424001.tgz,
+ }
id: registry.npmmirror.com/@dcloudio/uni-cli-shared/3.0.0-alpha-3040820220424001
name: '@dcloudio/uni-cli-shared'
version: 3.0.0-alpha-3040820220424001
@@ -576,7 +807,12 @@ packages:
- vue
registry.npmmirror.com/@dcloudio/uni-cloud/3.0.0-alpha-3040820220424001_vue@3.2.36:
- resolution: {integrity: sha512-q0ZRt38edMG/vd3n/TBqp937m9PZIH9ZaLeNfM3LddL5E/3BMrKHa2XfupEz6H8vF8Y4xWc2DKbWQoJNb902ZQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-cloud/-/uni-cloud-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-q0ZRt38edMG/vd3n/TBqp937m9PZIH9ZaLeNfM3LddL5E/3BMrKHa2XfupEz6H8vF8Y4xWc2DKbWQoJNb902ZQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-cloud/-/uni-cloud-3.0.0-alpha-3040820220424001.tgz,
+ }
id: registry.npmmirror.com/@dcloudio/uni-cloud/3.0.0-alpha-3040820220424001
name: '@dcloudio/uni-cloud'
version: 3.0.0-alpha-3040820220424001
@@ -592,13 +828,23 @@ packages:
dev: false
registry.npmmirror.com/@dcloudio/uni-components/3.0.0-alpha-3040820220424001:
- resolution: {integrity: sha512-v6x8nhHwf7xhSgE3uNHvlKntYTHO7tXRaGk9BBw6JBlnnyyK2QMX6fw7xgBfgc4yiy4QSPhA83hPBRejA5fekw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-components/-/uni-components-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-v6x8nhHwf7xhSgE3uNHvlKntYTHO7tXRaGk9BBw6JBlnnyyK2QMX6fw7xgBfgc4yiy4QSPhA83hPBRejA5fekw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-components/-/uni-components-3.0.0-alpha-3040820220424001.tgz,
+ }
name: '@dcloudio/uni-components'
version: 3.0.0-alpha-3040820220424001
dev: false
registry.npmmirror.com/@dcloudio/uni-h5-vite/3.0.0-alpha-3040820220424001_vue@3.2.36:
- resolution: {integrity: sha512-SqPWPhDnqDmZfo+qUnI7zHOoUABAj0g2z+VwmXTMM0T0kUK+czhCESp9l80zVZksEU/t0klMpZoNeun5OZ/9rQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-h5-vite/-/uni-h5-vite-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-SqPWPhDnqDmZfo+qUnI7zHOoUABAj0g2z+VwmXTMM0T0kUK+czhCESp9l80zVZksEU/t0klMpZoNeun5OZ/9rQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-h5-vite/-/uni-h5-vite-3.0.0-alpha-3040820220424001.tgz,
+ }
id: registry.npmmirror.com/@dcloudio/uni-h5-vite/3.0.0-alpha-3040820220424001
name: '@dcloudio/uni-h5-vite'
version: 3.0.0-alpha-3040820220424001
@@ -622,13 +868,23 @@ packages:
dev: false
registry.npmmirror.com/@dcloudio/uni-h5-vue/3.0.0-alpha-3040820220424001:
- resolution: {integrity: sha512-5Y6aCaQ8wNKq5LoBBCOVDuCjDCeXSuZ8xfhDXem+ReqIeRDYMHnh8i9UPMfkpVzKFG/bVRCyin80CTRU3QgaIQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-h5-vue/-/uni-h5-vue-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-5Y6aCaQ8wNKq5LoBBCOVDuCjDCeXSuZ8xfhDXem+ReqIeRDYMHnh8i9UPMfkpVzKFG/bVRCyin80CTRU3QgaIQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-h5-vue/-/uni-h5-vue-3.0.0-alpha-3040820220424001.tgz,
+ }
name: '@dcloudio/uni-h5-vue'
version: 3.0.0-alpha-3040820220424001
dev: false
registry.npmmirror.com/@dcloudio/uni-h5/3.0.0-alpha-3040820220424001_vue@3.2.36:
- resolution: {integrity: sha512-sscA90/5Yk9HpTDvPhC60A+V0MXwHa3nogoWt+yOTH0mB545INSjpCqa1HJ7JhshQSC76NHO88x2NYYvFvHc/w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-h5/-/uni-h5-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-sscA90/5Yk9HpTDvPhC60A+V0MXwHa3nogoWt+yOTH0mB545INSjpCqa1HJ7JhshQSC76NHO88x2NYYvFvHc/w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-h5/-/uni-h5-3.0.0-alpha-3040820220424001.tgz,
+ }
id: registry.npmmirror.com/@dcloudio/uni-h5/3.0.0-alpha-3040820220424001
name: '@dcloudio/uni-h5'
version: 3.0.0-alpha-3040820220424001
@@ -651,12 +907,22 @@ packages:
dev: false
registry.npmmirror.com/@dcloudio/uni-i18n/3.0.0-alpha-3040820220424001:
- resolution: {integrity: sha512-sdFLizz7ZSdAb/xrnxOd6u7T+r0GfVXdq3k6h82cYGkQSWclV0WzP1Dsztc8TpUodP17x0Rww8NYDKJteasYTw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-i18n/-/uni-i18n-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-sdFLizz7ZSdAb/xrnxOd6u7T+r0GfVXdq3k6h82cYGkQSWclV0WzP1Dsztc8TpUodP17x0Rww8NYDKJteasYTw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-i18n/-/uni-i18n-3.0.0-alpha-3040820220424001.tgz,
+ }
name: '@dcloudio/uni-i18n'
version: 3.0.0-alpha-3040820220424001
registry.npmmirror.com/@dcloudio/uni-mp-alipay/3.0.0-alpha-3040820220424001_vue@3.2.36:
- resolution: {integrity: sha512-9omtgIsZcJ2FDQerwPrGWdNTeyStUXCFXLIDaBe/zlIsAbuW9QHC2OUbusMgLUhNsvufOgYl3RYodgp8BvBzZg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-alipay/-/uni-mp-alipay-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-9omtgIsZcJ2FDQerwPrGWdNTeyStUXCFXLIDaBe/zlIsAbuW9QHC2OUbusMgLUhNsvufOgYl3RYodgp8BvBzZg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-alipay/-/uni-mp-alipay-3.0.0-alpha-3040820220424001.tgz,
+ }
id: registry.npmmirror.com/@dcloudio/uni-mp-alipay/3.0.0-alpha-3040820220424001
name: '@dcloudio/uni-mp-alipay'
version: 3.0.0-alpha-3040820220424001
@@ -675,7 +941,12 @@ packages:
dev: false
registry.npmmirror.com/@dcloudio/uni-mp-baidu/3.0.0-alpha-3040820220424001_vue@3.2.36:
- resolution: {integrity: sha512-uHcQ1C2kBK4RxALxoT7L+Qmf8AavA7SZOSvdhJdPDqeQVcP+4kAzwXr1786MeeRu13OdH6SiHaQVr2DwmieTjg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-baidu/-/uni-mp-baidu-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-uHcQ1C2kBK4RxALxoT7L+Qmf8AavA7SZOSvdhJdPDqeQVcP+4kAzwXr1786MeeRu13OdH6SiHaQVr2DwmieTjg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-baidu/-/uni-mp-baidu-3.0.0-alpha-3040820220424001.tgz,
+ }
id: registry.npmmirror.com/@dcloudio/uni-mp-baidu/3.0.0-alpha-3040820220424001
name: '@dcloudio/uni-mp-baidu'
version: 3.0.0-alpha-3040820220424001
@@ -696,7 +967,12 @@ packages:
dev: false
registry.npmmirror.com/@dcloudio/uni-mp-compiler/3.0.0-alpha-3040820220424001_vue@3.2.36:
- resolution: {integrity: sha512-cX8MDFJDHMpzPrY35vmTP8p1gvaRvSl8N5ftVRm0xIT4Li9mHCXMytI796wQL/t5ITaQxb+53lNI2chvXEoZzQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-compiler/-/uni-mp-compiler-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-cX8MDFJDHMpzPrY35vmTP8p1gvaRvSl8N5ftVRm0xIT4Li9mHCXMytI796wQL/t5ITaQxb+53lNI2chvXEoZzQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-compiler/-/uni-mp-compiler-3.0.0-alpha-3040820220424001.tgz,
+ }
id: registry.npmmirror.com/@dcloudio/uni-mp-compiler/3.0.0-alpha-3040820220424001
name: '@dcloudio/uni-mp-compiler'
version: 3.0.0-alpha-3040820220424001
@@ -718,7 +994,12 @@ packages:
dev: false
registry.npmmirror.com/@dcloudio/uni-mp-kuaishou/3.0.0-alpha-3040820220424001_vue@3.2.36:
- resolution: {integrity: sha512-Yvd34G0p1ZmewHUREF8fqqYRWXGh1Enwho9FI+YCHk/0rdCZP4IRe9heJ91ZDfyDGxHWFFUYWIUaJUwZyE6t4Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-kuaishou/-/uni-mp-kuaishou-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-Yvd34G0p1ZmewHUREF8fqqYRWXGh1Enwho9FI+YCHk/0rdCZP4IRe9heJ91ZDfyDGxHWFFUYWIUaJUwZyE6t4Q==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-kuaishou/-/uni-mp-kuaishou-3.0.0-alpha-3040820220424001.tgz,
+ }
id: registry.npmmirror.com/@dcloudio/uni-mp-kuaishou/3.0.0-alpha-3040820220424001
name: '@dcloudio/uni-mp-kuaishou'
version: 3.0.0-alpha-3040820220424001
@@ -739,7 +1020,12 @@ packages:
dev: false
registry.npmmirror.com/@dcloudio/uni-mp-lark/3.0.0-alpha-3040820220424001_vue@3.2.36:
- resolution: {integrity: sha512-33fZrjvKYF4OBuPmoAt2QbHP/D8irXFRGQ39cDZJ8LfGLsivaXDHMUHpCp8e9hDigHrIhxuMqdUqgx/GW5TFCQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-lark/-/uni-mp-lark-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-33fZrjvKYF4OBuPmoAt2QbHP/D8irXFRGQ39cDZJ8LfGLsivaXDHMUHpCp8e9hDigHrIhxuMqdUqgx/GW5TFCQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-lark/-/uni-mp-lark-3.0.0-alpha-3040820220424001.tgz,
+ }
id: registry.npmmirror.com/@dcloudio/uni-mp-lark/3.0.0-alpha-3040820220424001
name: '@dcloudio/uni-mp-lark'
version: 3.0.0-alpha-3040820220424001
@@ -760,7 +1046,12 @@ packages:
dev: false
registry.npmmirror.com/@dcloudio/uni-mp-qq/3.0.0-alpha-3040820220424001_vue@3.2.36:
- resolution: {integrity: sha512-a0bhU9bZvnDXSGVFQ3XGYSHTdxTHFVJBAex7ZaH7OH9lzXykKKmE2mLBsYD92yvBbOz2BrsROIzP2MsZ53aTNg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-qq/-/uni-mp-qq-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-a0bhU9bZvnDXSGVFQ3XGYSHTdxTHFVJBAex7ZaH7OH9lzXykKKmE2mLBsYD92yvBbOz2BrsROIzP2MsZ53aTNg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-qq/-/uni-mp-qq-3.0.0-alpha-3040820220424001.tgz,
+ }
id: registry.npmmirror.com/@dcloudio/uni-mp-qq/3.0.0-alpha-3040820220424001
name: '@dcloudio/uni-mp-qq'
version: 3.0.0-alpha-3040820220424001
@@ -779,7 +1070,12 @@ packages:
dev: false
registry.npmmirror.com/@dcloudio/uni-mp-toutiao/3.0.0-alpha-3040820220424001_vue@3.2.36:
- resolution: {integrity: sha512-gwBOBry5L1xNcAbKG/gDfPuLGebZCd7pWef9z28R+kiKOqR2SOuASwclarVARRDjQpaIOsQ+eL2E9b/szKmdTg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-toutiao/-/uni-mp-toutiao-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-gwBOBry5L1xNcAbKG/gDfPuLGebZCd7pWef9z28R+kiKOqR2SOuASwclarVARRDjQpaIOsQ+eL2E9b/szKmdTg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-toutiao/-/uni-mp-toutiao-3.0.0-alpha-3040820220424001.tgz,
+ }
id: registry.npmmirror.com/@dcloudio/uni-mp-toutiao/3.0.0-alpha-3040820220424001
name: '@dcloudio/uni-mp-toutiao'
version: 3.0.0-alpha-3040820220424001
@@ -799,7 +1095,12 @@ packages:
dev: false
registry.npmmirror.com/@dcloudio/uni-mp-vite/3.0.0-alpha-3040820220424001_vue@3.2.36:
- resolution: {integrity: sha512-smVHArj+FSKh3E/MexmDTqJbooiwTz0x+BENTpCm+DnXGo1BHIWOwTkEBgHKP/oPF3essRzhMq9kTfYBfDf13g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-vite/-/uni-mp-vite-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-smVHArj+FSKh3E/MexmDTqJbooiwTz0x+BENTpCm+DnXGo1BHIWOwTkEBgHKP/oPF3essRzhMq9kTfYBfDf13g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-vite/-/uni-mp-vite-3.0.0-alpha-3040820220424001.tgz,
+ }
id: registry.npmmirror.com/@dcloudio/uni-mp-vite/3.0.0-alpha-3040820220424001
name: '@dcloudio/uni-mp-vite'
version: 3.0.0-alpha-3040820220424001
@@ -821,7 +1122,12 @@ packages:
dev: false
registry.npmmirror.com/@dcloudio/uni-mp-vue/3.0.0-alpha-3040820220424001:
- resolution: {integrity: sha512-TEzwk8kZzbGPJ7PkGAX3LvrAvd9dB+jRq1BwkIzNpyo2xBkGv0PBTVShsWWgXSlUoN89nzaD7XbaZaj6GCJbqw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-vue/-/uni-mp-vue-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-TEzwk8kZzbGPJ7PkGAX3LvrAvd9dB+jRq1BwkIzNpyo2xBkGv0PBTVShsWWgXSlUoN89nzaD7XbaZaj6GCJbqw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-vue/-/uni-mp-vue-3.0.0-alpha-3040820220424001.tgz,
+ }
name: '@dcloudio/uni-mp-vue'
version: 3.0.0-alpha-3040820220424001
dependencies:
@@ -830,7 +1136,12 @@ packages:
dev: false
registry.npmmirror.com/@dcloudio/uni-mp-weixin/3.0.0-alpha-3040820220424001_vue@3.2.36:
- resolution: {integrity: sha512-6qke7kMjf8mAYBbV+PwW6XrzBwSSVOMdyZv4mNeDsQLCmD5/7gp4/NxpI5RxjE0lkU/CCXkAJWm9cZs+XABR/w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-weixin/-/uni-mp-weixin-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-6qke7kMjf8mAYBbV+PwW6XrzBwSSVOMdyZv4mNeDsQLCmD5/7gp4/NxpI5RxjE0lkU/CCXkAJWm9cZs+XABR/w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-mp-weixin/-/uni-mp-weixin-3.0.0-alpha-3040820220424001.tgz,
+ }
id: registry.npmmirror.com/@dcloudio/uni-mp-weixin/3.0.0-alpha-3040820220424001
name: '@dcloudio/uni-mp-weixin'
version: 3.0.0-alpha-3040820220424001
@@ -848,7 +1159,12 @@ packages:
dev: false
registry.npmmirror.com/@dcloudio/uni-nvue-styler/3.0.0-alpha-3040820220424001:
- resolution: {integrity: sha512-mrYOhZXcASR2sEXCH1tCkHQQ1yJCImUdmRt1QfEy7sruGO+ofwKrBPjmkNg3NqDcpzRqOQmirav31bqjxj9kUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-nvue-styler/-/uni-nvue-styler-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-mrYOhZXcASR2sEXCH1tCkHQQ1yJCImUdmRt1QfEy7sruGO+ofwKrBPjmkNg3NqDcpzRqOQmirav31bqjxj9kUg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-nvue-styler/-/uni-nvue-styler-3.0.0-alpha-3040820220424001.tgz,
+ }
name: '@dcloudio/uni-nvue-styler'
version: 3.0.0-alpha-3040820220424001
dependencies:
@@ -858,7 +1174,12 @@ packages:
dev: false
registry.npmmirror.com/@dcloudio/uni-push/3.0.0-alpha-3040820220424001_vue@3.2.36:
- resolution: {integrity: sha512-CVmGg8cKZM0vYHDibSPFYX35UYN370c3xrf6ZbnFclx1bVw2l9QNNG6Zkt4XoWp+gUF4q/Hh+oBszovjaGyWug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-push/-/uni-push-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-CVmGg8cKZM0vYHDibSPFYX35UYN370c3xrf6ZbnFclx1bVw2l9QNNG6Zkt4XoWp+gUF4q/Hh+oBszovjaGyWug==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-push/-/uni-push-3.0.0-alpha-3040820220424001.tgz,
+ }
id: registry.npmmirror.com/@dcloudio/uni-push/3.0.0-alpha-3040820220424001
name: '@dcloudio/uni-push'
version: 3.0.0-alpha-3040820220424001
@@ -872,7 +1193,12 @@ packages:
dev: false
registry.npmmirror.com/@dcloudio/uni-quickapp-webview/3.0.0-alpha-3040820220424001_vue@3.2.36:
- resolution: {integrity: sha512-d28HguwbkvsLP4q7aaUR8xJUWlxgsHySAXipIInVo1WtWGvISkmvcde8um5fkfIJBrRupVICFxfBwKJh0HGm6A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-quickapp-webview/-/uni-quickapp-webview-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-d28HguwbkvsLP4q7aaUR8xJUWlxgsHySAXipIInVo1WtWGvISkmvcde8um5fkfIJBrRupVICFxfBwKJh0HGm6A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-quickapp-webview/-/uni-quickapp-webview-3.0.0-alpha-3040820220424001.tgz,
+ }
id: registry.npmmirror.com/@dcloudio/uni-quickapp-webview/3.0.0-alpha-3040820220424001
name: '@dcloudio/uni-quickapp-webview'
version: 3.0.0-alpha-3040820220424001
@@ -890,14 +1216,24 @@ packages:
dev: false
registry.npmmirror.com/@dcloudio/uni-shared/3.0.0-alpha-3040820220424001:
- resolution: {integrity: sha512-3aP6MGqhXPwH/IWVbEn1e8ljBkM3Qu7S6m266xaksvtZlHKizXPRWT3RRLaACicvd7MYK61t2J3bsIX6Irh9Kg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-shared/-/uni-shared-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-3aP6MGqhXPwH/IWVbEn1e8ljBkM3Qu7S6m266xaksvtZlHKizXPRWT3RRLaACicvd7MYK61t2J3bsIX6Irh9Kg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-shared/-/uni-shared-3.0.0-alpha-3040820220424001.tgz,
+ }
name: '@dcloudio/uni-shared'
version: 3.0.0-alpha-3040820220424001
dependencies:
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.33
registry.npmmirror.com/@dcloudio/uni-stat/3.0.0-alpha-3040820220424001_vue@3.2.36:
- resolution: {integrity: sha512-4diOqcbY20OvixP8mR2YiHYOSIuKg+0LNE0EFm1YLQfODe95ujyNMwN97Xyzm5MIZ7t/qG/hZCoLlkfZxDTlxg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/uni-stat/-/uni-stat-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-4diOqcbY20OvixP8mR2YiHYOSIuKg+0LNE0EFm1YLQfODe95ujyNMwN97Xyzm5MIZ7t/qG/hZCoLlkfZxDTlxg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/uni-stat/-/uni-stat-3.0.0-alpha-3040820220424001.tgz,
+ }
id: registry.npmmirror.com/@dcloudio/uni-stat/3.0.0-alpha-3040820220424001
name: '@dcloudio/uni-stat'
version: 3.0.0-alpha-3040820220424001
@@ -913,7 +1249,12 @@ packages:
dev: false
registry.npmmirror.com/@dcloudio/vite-plugin-uni/3.0.0-alpha-3040820220424001_vite@2.9.9+vue@3.2.36:
- resolution: {integrity: sha512-ksXzUTHkjOYJ/XqJmTSR25edamCSPXOPUkaTeZ138MECuNongJUDksxPXvDzYEFwtv+7Nm4Y93EmpBcNPvs3Zw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@dcloudio/vite-plugin-uni/-/vite-plugin-uni-3.0.0-alpha-3040820220424001.tgz}
+ resolution:
+ {
+ integrity: sha512-ksXzUTHkjOYJ/XqJmTSR25edamCSPXOPUkaTeZ138MECuNongJUDksxPXvDzYEFwtv+7Nm4Y93EmpBcNPvs3Zw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@dcloudio/vite-plugin-uni/-/vite-plugin-uni-3.0.0-alpha-3040820220424001.tgz,
+ }
id: registry.npmmirror.com/@dcloudio/vite-plugin-uni/3.0.0-alpha-3040820220424001
name: '@dcloudio/vite-plugin-uni'
version: 3.0.0-alpha-3040820220424001
@@ -950,11 +1291,69 @@ packages:
- vue
dev: true
+ registry.npmmirror.com/@eslint/eslintrc/1.3.0:
+ resolution:
+ {
+ integrity: sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-1.3.0.tgz,
+ }
+ name: '@eslint/eslintrc'
+ version: 1.3.0
+ engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ dependencies:
+ ajv: registry.npmmirror.com/ajv/6.12.6
+ debug: registry.npmmirror.com/debug/4.3.4
+ espree: registry.npmmirror.com/espree/9.3.2
+ globals: registry.npmmirror.com/globals/13.15.0
+ ignore: registry.npmmirror.com/ignore/5.2.0
+ import-fresh: registry.npmmirror.com/import-fresh/3.3.0
+ js-yaml: registry.npmmirror.com/js-yaml/4.1.0
+ minimatch: registry.npmmirror.com/minimatch/3.1.2
+ strip-json-comments: registry.npmmirror.com/strip-json-comments/3.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ registry.npmmirror.com/@humanwhocodes/config-array/0.9.5:
+ resolution:
+ {
+ integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz,
+ }
+ name: '@humanwhocodes/config-array'
+ version: 0.9.5
+ 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.4
+ minimatch: registry.npmmirror.com/minimatch/3.1.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ registry.npmmirror.com/@humanwhocodes/object-schema/1.2.1:
+ resolution:
+ {
+ integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz,
+ }
+ name: '@humanwhocodes/object-schema'
+ version: 1.2.1
+ dev: true
+
registry.npmmirror.com/@intlify/core-base/9.1.10:
- resolution: {integrity: sha512-So9CNUavB/IsZ+zBmk2Cv6McQp6vc2wbGi1S0XQmJ8Vz+UFcNn9MFXAe9gY67PreIHrbLsLxDD0cwo1qsxM1Nw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@intlify/core-base/-/core-base-9.1.10.tgz}
+ resolution:
+ {
+ integrity: sha512-So9CNUavB/IsZ+zBmk2Cv6McQp6vc2wbGi1S0XQmJ8Vz+UFcNn9MFXAe9gY67PreIHrbLsLxDD0cwo1qsxM1Nw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@intlify/core-base/-/core-base-9.1.10.tgz,
+ }
name: '@intlify/core-base'
version: 9.1.10
- engines: {node: '>= 10'}
+ engines: { node: '>= 10' }
dependencies:
'@intlify/devtools-if': registry.npmmirror.com/@intlify/devtools-if/9.1.10
'@intlify/message-compiler': registry.npmmirror.com/@intlify/message-compiler/9.1.10
@@ -965,10 +1364,15 @@ packages:
dev: false
registry.npmmirror.com/@intlify/core-base/9.1.9:
- resolution: {integrity: sha512-x5T0p/Ja0S8hs5xs+ImKyYckVkL4CzcEXykVYYV6rcbXxJTe2o58IquSqX9bdncVKbRZP7GlBU1EcRaQEEJ+vw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@intlify/core-base/-/core-base-9.1.9.tgz}
+ resolution:
+ {
+ integrity: sha512-x5T0p/Ja0S8hs5xs+ImKyYckVkL4CzcEXykVYYV6rcbXxJTe2o58IquSqX9bdncVKbRZP7GlBU1EcRaQEEJ+vw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@intlify/core-base/-/core-base-9.1.9.tgz,
+ }
name: '@intlify/core-base'
version: 9.1.9
- engines: {node: '>= 10'}
+ engines: { node: '>= 10' }
dependencies:
'@intlify/devtools-if': registry.npmmirror.com/@intlify/devtools-if/9.1.9
'@intlify/message-compiler': registry.npmmirror.com/@intlify/message-compiler/9.1.9
@@ -978,27 +1382,42 @@ packages:
'@intlify/vue-devtools': registry.npmmirror.com/@intlify/vue-devtools/9.1.9
registry.npmmirror.com/@intlify/devtools-if/9.1.10:
- resolution: {integrity: sha512-SHaKoYu6sog3+Q8js1y3oXLywuogbH1sKuc7NSYkN3GElvXSBaMoCzW+we0ZSFqj/6c7vTNLg9nQ6rxhKqYwnQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@intlify/devtools-if/-/devtools-if-9.1.10.tgz}
+ resolution:
+ {
+ integrity: sha512-SHaKoYu6sog3+Q8js1y3oXLywuogbH1sKuc7NSYkN3GElvXSBaMoCzW+we0ZSFqj/6c7vTNLg9nQ6rxhKqYwnQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@intlify/devtools-if/-/devtools-if-9.1.10.tgz,
+ }
name: '@intlify/devtools-if'
version: 9.1.10
- engines: {node: '>= 10'}
+ engines: { node: '>= 10' }
dependencies:
'@intlify/shared': registry.npmmirror.com/@intlify/shared/9.1.10
dev: false
registry.npmmirror.com/@intlify/devtools-if/9.1.9:
- resolution: {integrity: sha512-oKSMKjttG3Ut/1UGEZjSdghuP3fwA15zpDPcjkf/1FjlOIm6uIBGMNS5jXzsZy593u+P/YcnrZD6cD3IVFz9vQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@intlify/devtools-if/-/devtools-if-9.1.9.tgz}
+ resolution:
+ {
+ integrity: sha512-oKSMKjttG3Ut/1UGEZjSdghuP3fwA15zpDPcjkf/1FjlOIm6uIBGMNS5jXzsZy593u+P/YcnrZD6cD3IVFz9vQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@intlify/devtools-if/-/devtools-if-9.1.9.tgz,
+ }
name: '@intlify/devtools-if'
version: 9.1.9
- engines: {node: '>= 10'}
+ engines: { node: '>= 10' }
dependencies:
'@intlify/shared': registry.npmmirror.com/@intlify/shared/9.1.9
registry.npmmirror.com/@intlify/message-compiler/9.1.10:
- resolution: {integrity: sha512-+JiJpXff/XTb0EadYwdxOyRTB0hXNd4n1HaJ/a4yuV960uRmPXaklJsedW0LNdcptd/hYUZtCkI7Lc9J5C1gxg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@intlify/message-compiler/-/message-compiler-9.1.10.tgz}
+ resolution:
+ {
+ integrity: sha512-+JiJpXff/XTb0EadYwdxOyRTB0hXNd4n1HaJ/a4yuV960uRmPXaklJsedW0LNdcptd/hYUZtCkI7Lc9J5C1gxg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@intlify/message-compiler/-/message-compiler-9.1.10.tgz,
+ }
name: '@intlify/message-compiler'
version: 9.1.10
- engines: {node: '>= 10'}
+ engines: { node: '>= 10' }
dependencies:
'@intlify/message-resolver': registry.npmmirror.com/@intlify/message-resolver/9.1.10
'@intlify/shared': registry.npmmirror.com/@intlify/shared/9.1.10
@@ -1006,33 +1425,53 @@ packages:
dev: false
registry.npmmirror.com/@intlify/message-compiler/9.1.9:
- resolution: {integrity: sha512-6YgCMF46Xd0IH2hMRLCssZI3gFG4aywidoWQ3QP4RGYQXQYYfFC54DxhSgfIPpVoPLQ+4AD29eoYmhiHZ+qLFQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@intlify/message-compiler/-/message-compiler-9.1.9.tgz}
+ resolution:
+ {
+ integrity: sha512-6YgCMF46Xd0IH2hMRLCssZI3gFG4aywidoWQ3QP4RGYQXQYYfFC54DxhSgfIPpVoPLQ+4AD29eoYmhiHZ+qLFQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@intlify/message-compiler/-/message-compiler-9.1.9.tgz,
+ }
name: '@intlify/message-compiler'
version: 9.1.9
- engines: {node: '>= 10'}
+ engines: { node: '>= 10' }
dependencies:
'@intlify/message-resolver': registry.npmmirror.com/@intlify/message-resolver/9.1.9
'@intlify/shared': registry.npmmirror.com/@intlify/shared/9.1.9
source-map: registry.npmmirror.com/source-map/0.6.1
registry.npmmirror.com/@intlify/message-resolver/9.1.10:
- resolution: {integrity: sha512-5YixMG/M05m0cn9+gOzd4EZQTFRUu8RGhzxJbR1DWN21x/Z3bJ8QpDYj6hC4FwBj5uKsRfKpJQ3Xqg98KWoA+w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@intlify/message-resolver/-/message-resolver-9.1.10.tgz}
+ resolution:
+ {
+ integrity: sha512-5YixMG/M05m0cn9+gOzd4EZQTFRUu8RGhzxJbR1DWN21x/Z3bJ8QpDYj6hC4FwBj5uKsRfKpJQ3Xqg98KWoA+w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@intlify/message-resolver/-/message-resolver-9.1.10.tgz,
+ }
name: '@intlify/message-resolver'
version: 9.1.10
- engines: {node: '>= 10'}
+ engines: { node: '>= 10' }
dev: false
registry.npmmirror.com/@intlify/message-resolver/9.1.9:
- resolution: {integrity: sha512-Lx/DBpigeK0sz2BBbzv5mu9/dAlt98HxwbG7xLawC3O2xMF9MNWU5FtOziwYG6TDIjNq0O/3ZbOJAxwITIWXEA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@intlify/message-resolver/-/message-resolver-9.1.9.tgz}
+ resolution:
+ {
+ integrity: sha512-Lx/DBpigeK0sz2BBbzv5mu9/dAlt98HxwbG7xLawC3O2xMF9MNWU5FtOziwYG6TDIjNq0O/3ZbOJAxwITIWXEA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@intlify/message-resolver/-/message-resolver-9.1.9.tgz,
+ }
name: '@intlify/message-resolver'
version: 9.1.9
- engines: {node: '>= 10'}
+ engines: { node: '>= 10' }
registry.npmmirror.com/@intlify/runtime/9.1.10:
- resolution: {integrity: sha512-7QsuByNzpe3Gfmhwq6hzgXcMPpxz8Zxb/XFI6s9lQdPLPe5Lgw4U1ovRPZTOs6Y2hwitR3j/HD8BJNGWpJnOFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@intlify/runtime/-/runtime-9.1.10.tgz}
+ resolution:
+ {
+ integrity: sha512-7QsuByNzpe3Gfmhwq6hzgXcMPpxz8Zxb/XFI6s9lQdPLPe5Lgw4U1ovRPZTOs6Y2hwitR3j/HD8BJNGWpJnOFA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@intlify/runtime/-/runtime-9.1.10.tgz,
+ }
name: '@intlify/runtime'
version: 9.1.10
- engines: {node: '>= 10'}
+ engines: { node: '>= 10' }
dependencies:
'@intlify/message-compiler': registry.npmmirror.com/@intlify/message-compiler/9.1.10
'@intlify/message-resolver': registry.npmmirror.com/@intlify/message-resolver/9.1.10
@@ -1040,33 +1479,53 @@ packages:
dev: false
registry.npmmirror.com/@intlify/runtime/9.1.9:
- resolution: {integrity: sha512-XgPw8+UlHCiie3fI41HPVa/VDJb3/aSH7bLhY1hJvlvNV713PFtb4p4Jo+rlE0gAoMsMCGcsiT982fImolSltg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@intlify/runtime/-/runtime-9.1.9.tgz}
+ resolution:
+ {
+ integrity: sha512-XgPw8+UlHCiie3fI41HPVa/VDJb3/aSH7bLhY1hJvlvNV713PFtb4p4Jo+rlE0gAoMsMCGcsiT982fImolSltg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@intlify/runtime/-/runtime-9.1.9.tgz,
+ }
name: '@intlify/runtime'
version: 9.1.9
- engines: {node: '>= 10'}
+ engines: { node: '>= 10' }
dependencies:
'@intlify/message-compiler': registry.npmmirror.com/@intlify/message-compiler/9.1.9
'@intlify/message-resolver': registry.npmmirror.com/@intlify/message-resolver/9.1.9
'@intlify/shared': registry.npmmirror.com/@intlify/shared/9.1.9
registry.npmmirror.com/@intlify/shared/9.1.10:
- resolution: {integrity: sha512-Om54xJeo1Vw+K1+wHYyXngE8cAbrxZHpWjYzMR9wCkqbhGtRV5VLhVc214Ze2YatPrWlS2WSMOWXR8JktX/IgA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@intlify/shared/-/shared-9.1.10.tgz}
+ resolution:
+ {
+ integrity: sha512-Om54xJeo1Vw+K1+wHYyXngE8cAbrxZHpWjYzMR9wCkqbhGtRV5VLhVc214Ze2YatPrWlS2WSMOWXR8JktX/IgA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@intlify/shared/-/shared-9.1.10.tgz,
+ }
name: '@intlify/shared'
version: 9.1.10
- engines: {node: '>= 10'}
+ engines: { node: '>= 10' }
dev: false
registry.npmmirror.com/@intlify/shared/9.1.9:
- resolution: {integrity: sha512-xKGM1d0EAxdDFCWedcYXOm6V5Pfw/TMudd6/qCdEb4tv0hk9EKeg7lwQF1azE0dP2phvx0yXxrt7UQK+IZjNdw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@intlify/shared/-/shared-9.1.9.tgz}
+ resolution:
+ {
+ integrity: sha512-xKGM1d0EAxdDFCWedcYXOm6V5Pfw/TMudd6/qCdEb4tv0hk9EKeg7lwQF1azE0dP2phvx0yXxrt7UQK+IZjNdw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@intlify/shared/-/shared-9.1.9.tgz,
+ }
name: '@intlify/shared'
version: 9.1.9
- engines: {node: '>= 10'}
+ engines: { node: '>= 10' }
registry.npmmirror.com/@intlify/vue-devtools/9.1.10:
- resolution: {integrity: sha512-5l3qYARVbkWAkagLu1XbDUWRJSL8br1Dj60wgMaKB0+HswVsrR6LloYZTg7ozyvM621V6+zsmwzbQxbVQyrytQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@intlify/vue-devtools/-/vue-devtools-9.1.10.tgz}
+ resolution:
+ {
+ integrity: sha512-5l3qYARVbkWAkagLu1XbDUWRJSL8br1Dj60wgMaKB0+HswVsrR6LloYZTg7ozyvM621V6+zsmwzbQxbVQyrytQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@intlify/vue-devtools/-/vue-devtools-9.1.10.tgz,
+ }
name: '@intlify/vue-devtools'
version: 9.1.10
- engines: {node: '>= 10'}
+ engines: { node: '>= 10' }
dependencies:
'@intlify/message-resolver': registry.npmmirror.com/@intlify/message-resolver/9.1.10
'@intlify/runtime': registry.npmmirror.com/@intlify/runtime/9.1.10
@@ -1074,53 +1533,88 @@ packages:
dev: false
registry.npmmirror.com/@intlify/vue-devtools/9.1.9:
- resolution: {integrity: sha512-YPehH9uL4vZcGXky4Ev5qQIITnHKIvsD2GKGXgqf+05osMUI6WSEQHaN9USRa318Rs8RyyPCiDfmA0hRu3k7og==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@intlify/vue-devtools/-/vue-devtools-9.1.9.tgz}
+ resolution:
+ {
+ integrity: sha512-YPehH9uL4vZcGXky4Ev5qQIITnHKIvsD2GKGXgqf+05osMUI6WSEQHaN9USRa318Rs8RyyPCiDfmA0hRu3k7og==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@intlify/vue-devtools/-/vue-devtools-9.1.9.tgz,
+ }
name: '@intlify/vue-devtools'
version: 9.1.9
- engines: {node: '>= 10'}
+ engines: { node: '>= 10' }
dependencies:
'@intlify/message-resolver': registry.npmmirror.com/@intlify/message-resolver/9.1.9
'@intlify/runtime': registry.npmmirror.com/@intlify/runtime/9.1.9
'@intlify/shared': registry.npmmirror.com/@intlify/shared/9.1.9
registry.npmmirror.com/@jridgewell/gen-mapping/0.1.1:
- resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz}
+ resolution:
+ {
+ integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz,
+ }
name: '@jridgewell/gen-mapping'
version: 0.1.1
- engines: {node: '>=6.0.0'}
+ engines: { node: '>=6.0.0' }
dependencies:
'@jridgewell/set-array': registry.npmmirror.com/@jridgewell/set-array/1.1.1
'@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.13
registry.npmmirror.com/@jridgewell/gen-mapping/0.3.1:
- resolution: {integrity: sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.1.tgz}
+ resolution:
+ {
+ integrity: sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.1.tgz,
+ }
name: '@jridgewell/gen-mapping'
version: 0.3.1
- engines: {node: '>=6.0.0'}
+ engines: { node: '>=6.0.0' }
dependencies:
'@jridgewell/set-array': registry.npmmirror.com/@jridgewell/set-array/1.1.1
'@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.13
'@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping/0.3.13
registry.npmmirror.com/@jridgewell/resolve-uri/3.0.7:
- resolution: {integrity: sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz}
+ resolution:
+ {
+ integrity: sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz,
+ }
name: '@jridgewell/resolve-uri'
version: 3.0.7
- engines: {node: '>=6.0.0'}
+ engines: { node: '>=6.0.0' }
registry.npmmirror.com/@jridgewell/set-array/1.1.1:
- resolution: {integrity: sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.1.tgz}
+ resolution:
+ {
+ integrity: sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.1.tgz,
+ }
name: '@jridgewell/set-array'
version: 1.1.1
- engines: {node: '>=6.0.0'}
+ engines: { node: '>=6.0.0' }
registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.13:
- resolution: {integrity: sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz}
+ resolution:
+ {
+ integrity: sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz,
+ }
name: '@jridgewell/sourcemap-codec'
version: 1.4.13
registry.npmmirror.com/@jridgewell/trace-mapping/0.3.13:
- resolution: {integrity: sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz}
+ resolution:
+ {
+ integrity: sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz,
+ }
name: '@jridgewell/trace-mapping'
version: 0.3.13
dependencies:
@@ -1128,50 +1622,303 @@ packages:
'@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.13
registry.npmmirror.com/@nodelib/fs.scandir/2.1.5:
- resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz}
+ resolution:
+ {
+ integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz,
+ }
name: '@nodelib/fs.scandir'
version: 2.1.5
- engines: {node: '>= 8'}
+ engines: { node: '>= 8' }
dependencies:
'@nodelib/fs.stat': registry.npmmirror.com/@nodelib/fs.stat/2.0.5
run-parallel: registry.npmmirror.com/run-parallel/1.2.0
registry.npmmirror.com/@nodelib/fs.stat/2.0.5:
- resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz}
+ resolution:
+ {
+ integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz,
+ }
name: '@nodelib/fs.stat'
version: 2.0.5
- engines: {node: '>= 8'}
+ engines: { node: '>= 8' }
registry.npmmirror.com/@nodelib/fs.walk/1.2.8:
- resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz}
+ resolution:
+ {
+ integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz,
+ }
name: '@nodelib/fs.walk'
version: 1.2.8
- engines: {node: '>= 8'}
+ engines: { node: '>= 8' }
dependencies:
'@nodelib/fs.scandir': registry.npmmirror.com/@nodelib/fs.scandir/2.1.5
fastq: registry.npmmirror.com/fastq/1.13.0
registry.npmmirror.com/@rollup/pluginutils/4.2.1:
- resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz}
+ resolution:
+ {
+ integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz,
+ }
name: '@rollup/pluginutils'
version: 4.2.1
- engines: {node: '>= 8.0.0'}
+ engines: { node: '>= 8.0.0' }
dependencies:
estree-walker: registry.npmmirror.com/estree-walker/2.0.2
picomatch: registry.npmmirror.com/picomatch/2.3.1
+ registry.npmmirror.com/@types/eslint/8.4.2:
+ resolution:
+ {
+ integrity: sha512-Z1nseZON+GEnFjJc04sv4NSALGjhFwy6K0HXt7qsn5ArfAKtb63dXNJHf+1YW6IpOIYRBGUbu3GwJdj8DGnCjA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@types/eslint/-/eslint-8.4.2.tgz,
+ }
+ name: '@types/eslint'
+ version: 8.4.2
+ dependencies:
+ '@types/estree': registry.npmmirror.com/@types/estree/0.0.51
+ '@types/json-schema': registry.npmmirror.com/@types/json-schema/7.0.11
+ dev: true
+
+ registry.npmmirror.com/@types/estree/0.0.51:
+ resolution:
+ {
+ integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@types/estree/-/estree-0.0.51.tgz,
+ }
+ name: '@types/estree'
+ version: 0.0.51
+ dev: true
+
+ registry.npmmirror.com/@types/json-schema/7.0.11:
+ resolution:
+ {
+ integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.11.tgz,
+ }
+ name: '@types/json-schema'
+ version: 7.0.11
+ dev: true
+
registry.npmmirror.com/@types/node/17.0.38:
- resolution: {integrity: sha512-5jY9RhV7c0Z4Jy09G+NIDTsCZ5G0L5n+Z+p+Y7t5VJHM30bgwzSjVtlcBxqAj+6L/swIlvtOSzr8rBk/aNyV2g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/node/-/node-17.0.38.tgz}
+ resolution:
+ {
+ integrity: sha512-5jY9RhV7c0Z4Jy09G+NIDTsCZ5G0L5n+Z+p+Y7t5VJHM30bgwzSjVtlcBxqAj+6L/swIlvtOSzr8rBk/aNyV2g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@types/node/-/node-17.0.38.tgz,
+ }
name: '@types/node'
version: 17.0.38
dev: true
+ registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.27.0_dszb5tb7atwkjjijmmov4qhi7i:
+ resolution:
+ {
+ integrity: sha512-DDrIA7GXtmHXr1VCcx9HivA39eprYBIFxbQEHI6NyraRDxCGpxAFiYQAT/1Y0vh1C+o2vfBiy4IuPoXxtTZCAQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.27.0.tgz,
+ }
+ id: registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.27.0
+ name: '@typescript-eslint/eslint-plugin'
+ version: 5.27.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/parser': registry.npmmirror.com/@typescript-eslint/parser/5.27.0_xztl6dhthcahlo6akmb2bmjmle
+ '@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager/5.27.0
+ '@typescript-eslint/type-utils': registry.npmmirror.com/@typescript-eslint/type-utils/5.27.0_xztl6dhthcahlo6akmb2bmjmle
+ '@typescript-eslint/utils': registry.npmmirror.com/@typescript-eslint/utils/5.27.0_xztl6dhthcahlo6akmb2bmjmle
+ debug: registry.npmmirror.com/debug/4.3.4
+ eslint: registry.npmmirror.com/eslint/8.16.0
+ functional-red-black-tree: registry.npmmirror.com/functional-red-black-tree/1.0.1
+ ignore: registry.npmmirror.com/ignore/5.2.0
+ regexpp: registry.npmmirror.com/regexpp/3.2.0
+ semver: registry.npmmirror.com/semver/7.3.7
+ tsutils: registry.npmmirror.com/tsutils/3.21.0_typescript@4.7.2
+ typescript: registry.npmmirror.com/typescript/4.7.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ registry.npmmirror.com/@typescript-eslint/parser/5.27.0_xztl6dhthcahlo6akmb2bmjmle:
+ resolution:
+ {
+ integrity: sha512-8oGjQF46c52l7fMiPPvX4It3u3V3JipssqDfHQ2hcR0AeR8Zge+OYyKUCm5b70X72N1qXt0qgHenwN6Gc2SXZA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-5.27.0.tgz,
+ }
+ id: registry.npmmirror.com/@typescript-eslint/parser/5.27.0
+ name: '@typescript-eslint/parser'
+ version: 5.27.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.27.0
+ '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.27.0
+ '@typescript-eslint/typescript-estree': registry.npmmirror.com/@typescript-eslint/typescript-estree/5.27.0_typescript@4.7.2
+ debug: registry.npmmirror.com/debug/4.3.4
+ eslint: registry.npmmirror.com/eslint/8.16.0
+ typescript: registry.npmmirror.com/typescript/4.7.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ registry.npmmirror.com/@typescript-eslint/scope-manager/5.27.0:
+ resolution:
+ {
+ integrity: sha512-VnykheBQ/sHd1Vt0LJ1JLrMH1GzHO+SzX6VTXuStISIsvRiurue/eRkTqSrG0CexHQgKG8shyJfR4o5VYioB9g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.27.0.tgz,
+ }
+ name: '@typescript-eslint/scope-manager'
+ version: 5.27.0
+ engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ dependencies:
+ '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.27.0
+ '@typescript-eslint/visitor-keys': registry.npmmirror.com/@typescript-eslint/visitor-keys/5.27.0
+ dev: true
+
+ registry.npmmirror.com/@typescript-eslint/type-utils/5.27.0_xztl6dhthcahlo6akmb2bmjmle:
+ resolution:
+ {
+ integrity: sha512-vpTvRRchaf628Hb/Xzfek+85o//zEUotr1SmexKvTfs7czXfYjXVT/a5yDbpzLBX1rhbqxjDdr1Gyo0x1Fc64g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@typescript-eslint/type-utils/-/type-utils-5.27.0.tgz,
+ }
+ id: registry.npmmirror.com/@typescript-eslint/type-utils/5.27.0
+ name: '@typescript-eslint/type-utils'
+ version: 5.27.0
+ engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ peerDependencies:
+ eslint: '*'
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/utils': registry.npmmirror.com/@typescript-eslint/utils/5.27.0_xztl6dhthcahlo6akmb2bmjmle
+ debug: registry.npmmirror.com/debug/4.3.4
+ eslint: registry.npmmirror.com/eslint/8.16.0
+ tsutils: registry.npmmirror.com/tsutils/3.21.0_typescript@4.7.2
+ typescript: registry.npmmirror.com/typescript/4.7.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ registry.npmmirror.com/@typescript-eslint/types/5.27.0:
+ resolution:
+ {
+ integrity: sha512-lY6C7oGm9a/GWhmUDOs3xAVRz4ty/XKlQ2fOLr8GAIryGn0+UBOoJDWyHer3UgrHkenorwvBnphhP+zPmzmw0A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.27.0.tgz,
+ }
+ name: '@typescript-eslint/types'
+ version: 5.27.0
+ engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ dev: true
+
+ registry.npmmirror.com/@typescript-eslint/typescript-estree/5.27.0_typescript@4.7.2:
+ resolution:
+ {
+ integrity: sha512-QywPMFvgZ+MHSLRofLI7BDL+UczFFHyj0vF5ibeChDAJgdTV8k4xgEwF0geFhVlPc1p8r70eYewzpo6ps+9LJQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.27.0.tgz,
+ }
+ id: registry.npmmirror.com/@typescript-eslint/typescript-estree/5.27.0
+ name: '@typescript-eslint/typescript-estree'
+ version: 5.27.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.27.0
+ '@typescript-eslint/visitor-keys': registry.npmmirror.com/@typescript-eslint/visitor-keys/5.27.0
+ debug: registry.npmmirror.com/debug/4.3.4
+ globby: registry.npmmirror.com/globby/11.1.0
+ is-glob: registry.npmmirror.com/is-glob/4.0.3
+ semver: registry.npmmirror.com/semver/7.3.7
+ tsutils: registry.npmmirror.com/tsutils/3.21.0_typescript@4.7.2
+ typescript: registry.npmmirror.com/typescript/4.7.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ registry.npmmirror.com/@typescript-eslint/utils/5.27.0_xztl6dhthcahlo6akmb2bmjmle:
+ resolution:
+ {
+ integrity: sha512-nZvCrkIJppym7cIbP3pOwIkAefXOmfGPnCM0LQfzNaKxJHI6VjI8NC662uoiPlaf5f6ymkTy9C3NQXev2mdXmA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-5.27.0.tgz,
+ }
+ id: registry.npmmirror.com/@typescript-eslint/utils/5.27.0
+ name: '@typescript-eslint/utils'
+ version: 5.27.0
+ engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ '@types/json-schema': registry.npmmirror.com/@types/json-schema/7.0.11
+ '@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager/5.27.0
+ '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.27.0
+ '@typescript-eslint/typescript-estree': registry.npmmirror.com/@typescript-eslint/typescript-estree/5.27.0_typescript@4.7.2
+ eslint: registry.npmmirror.com/eslint/8.16.0
+ eslint-scope: registry.npmmirror.com/eslint-scope/5.1.1
+ eslint-utils: registry.npmmirror.com/eslint-utils/3.0.0_eslint@8.16.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ dev: true
+
+ registry.npmmirror.com/@typescript-eslint/visitor-keys/5.27.0:
+ resolution:
+ {
+ integrity: sha512-46cYrteA2MrIAjv9ai44OQDUoCZyHeGIc4lsjCUX2WT6r4C+kidz1bNiR4017wHOPUythYeH+Sc7/cFP97KEAA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.27.0.tgz,
+ }
+ name: '@typescript-eslint/visitor-keys'
+ version: 5.27.0
+ engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ dependencies:
+ '@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.27.0
+ eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/3.3.0
+ dev: true
+
registry.npmmirror.com/@vitejs/plugin-legacy/1.8.2_vite@2.9.9:
- resolution: {integrity: sha512-NCOKU+pU+cxLMR9P9RTolEuOK+h+zYBXlknj+zGcKSj/NXBZYgA1GAH1FnO4zijoWRiTaiOm2ha9LQrELE7XHg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vitejs/plugin-legacy/-/plugin-legacy-1.8.2.tgz}
+ resolution:
+ {
+ integrity: sha512-NCOKU+pU+cxLMR9P9RTolEuOK+h+zYBXlknj+zGcKSj/NXBZYgA1GAH1FnO4zijoWRiTaiOm2ha9LQrELE7XHg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vitejs/plugin-legacy/-/plugin-legacy-1.8.2.tgz,
+ }
id: registry.npmmirror.com/@vitejs/plugin-legacy/1.8.2
name: '@vitejs/plugin-legacy'
version: 1.8.2
- engines: {node: '>=12.0.0'}
+ engines: { node: '>=12.0.0' }
peerDependencies:
vite: ^2.8.0
dependencies:
@@ -1184,10 +1931,15 @@ packages:
dev: true
registry.npmmirror.com/@vitejs/plugin-vue-jsx/1.3.10:
- resolution: {integrity: sha512-Cf5zznh4yNMiEMBfTOztaDVDmK1XXfgxClzOSUVUc8WAmHzogrCUeM8B05ABzuGtg0D1amfng+mUmSIOFGP3Pw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-1.3.10.tgz}
+ resolution:
+ {
+ integrity: sha512-Cf5zznh4yNMiEMBfTOztaDVDmK1XXfgxClzOSUVUc8WAmHzogrCUeM8B05ABzuGtg0D1amfng+mUmSIOFGP3Pw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-1.3.10.tgz,
+ }
name: '@vitejs/plugin-vue-jsx'
version: 1.3.10
- engines: {node: '>=12.0.0'}
+ engines: { node: '>=12.0.0' }
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.18.2
'@babel/plugin-syntax-import-meta': registry.npmmirror.com/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.2
@@ -1200,11 +1952,16 @@ packages:
dev: true
registry.npmmirror.com/@vitejs/plugin-vue/2.3.3_vite@2.9.9+vue@3.2.36:
- resolution: {integrity: sha512-SmQLDyhz+6lGJhPELsBdzXGc+AcaT8stgkbiTFGpXPe8Tl1tJaBw1A6pxDqDuRsVkD8uscrkx3hA7QDOoKYtyw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-2.3.3.tgz}
+ resolution:
+ {
+ integrity: sha512-SmQLDyhz+6lGJhPELsBdzXGc+AcaT8stgkbiTFGpXPe8Tl1tJaBw1A6pxDqDuRsVkD8uscrkx3hA7QDOoKYtyw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-2.3.3.tgz,
+ }
id: registry.npmmirror.com/@vitejs/plugin-vue/2.3.3
name: '@vitejs/plugin-vue'
version: 2.3.3
- engines: {node: '>=12.0.0'}
+ engines: { node: '>=12.0.0' }
peerDependencies:
vite: ^2.5.10
vue: ^3.2.25
@@ -1213,19 +1970,34 @@ packages:
vue: registry.npmmirror.com/vue/3.2.36
registry.npmmirror.com/@vivaxy/wxml/2.1.0:
- resolution: {integrity: sha512-xqnfAB58tl5SPyfkQjrn7D7nuvq7XV9um7QUsjCrvA4X6aZBxcau9sAM47LsQTOpJIVPzjaKIMvq3ul07yZlOA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vivaxy/wxml/-/wxml-2.1.0.tgz}
+ resolution:
+ {
+ integrity: sha512-xqnfAB58tl5SPyfkQjrn7D7nuvq7XV9um7QUsjCrvA4X6aZBxcau9sAM47LsQTOpJIVPzjaKIMvq3ul07yZlOA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vivaxy/wxml/-/wxml-2.1.0.tgz,
+ }
name: '@vivaxy/wxml'
version: 2.1.0
dev: true
registry.npmmirror.com/@vue/babel-helper-vue-transform-on/1.0.2:
- resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.2.tgz}
+ resolution:
+ {
+ integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.2.tgz,
+ }
name: '@vue/babel-helper-vue-transform-on'
version: 1.0.2
dev: true
registry.npmmirror.com/@vue/babel-plugin-jsx/1.1.1_@babel+core@7.18.2:
- resolution: {integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.1.1.tgz}
+ resolution:
+ {
+ integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vue/babel-plugin-jsx/-/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
@@ -1245,7 +2017,12 @@ packages:
dev: true
registry.npmmirror.com/@vue/compiler-core/3.2.33:
- resolution: {integrity: sha512-AAmr52ji3Zhk7IKIuigX2osWWsb2nQE5xsdFYjdnmtQ4gymmqXbjLvkSE174+fF3A3kstYrTgGkqgOEbsdLDpw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.2.33.tgz}
+ resolution:
+ {
+ integrity: sha512-AAmr52ji3Zhk7IKIuigX2osWWsb2nQE5xsdFYjdnmtQ4gymmqXbjLvkSE174+fF3A3kstYrTgGkqgOEbsdLDpw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.2.33.tgz,
+ }
name: '@vue/compiler-core'
version: 3.2.33
dependencies:
@@ -1255,7 +2032,12 @@ packages:
source-map: registry.npmmirror.com/source-map/0.6.1
registry.npmmirror.com/@vue/compiler-core/3.2.36:
- resolution: {integrity: sha512-bbyZM5hvBicv0PW3KUfVi+x3ylHnfKG7DOn5wM+f2OztTzTjLEyBb/5yrarIYpmnGitVGbjZqDbODyW4iK8hqw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.2.36.tgz}
+ resolution:
+ {
+ integrity: sha512-bbyZM5hvBicv0PW3KUfVi+x3ylHnfKG7DOn5wM+f2OztTzTjLEyBb/5yrarIYpmnGitVGbjZqDbODyW4iK8hqw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.2.36.tgz,
+ }
name: '@vue/compiler-core'
version: 3.2.36
dependencies:
@@ -1265,7 +2047,12 @@ packages:
source-map: registry.npmmirror.com/source-map/0.6.1
registry.npmmirror.com/@vue/compiler-dom/3.2.33:
- resolution: {integrity: sha512-GhiG1C8X98Xz9QUX/RlA6/kgPBWJkjq0Rq6//5XTAGSYrTMBgcLpP9+CnlUg1TFxnnCVughAG+KZl28XJqw8uQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.2.33.tgz}
+ resolution:
+ {
+ integrity: sha512-GhiG1C8X98Xz9QUX/RlA6/kgPBWJkjq0Rq6//5XTAGSYrTMBgcLpP9+CnlUg1TFxnnCVughAG+KZl28XJqw8uQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.2.33.tgz,
+ }
name: '@vue/compiler-dom'
version: 3.2.33
dependencies:
@@ -1273,7 +2060,12 @@ packages:
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.33
registry.npmmirror.com/@vue/compiler-dom/3.2.36:
- resolution: {integrity: sha512-tcOTAOiW4s24QLnq+ON6J+GRONXJ+A/mqKCORi0LSlIh8XQlNnlm24y8xIL8la+ZDgkdbjarQ9ZqYSvEja6gVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.2.36.tgz}
+ resolution:
+ {
+ integrity: sha512-tcOTAOiW4s24QLnq+ON6J+GRONXJ+A/mqKCORi0LSlIh8XQlNnlm24y8xIL8la+ZDgkdbjarQ9ZqYSvEja6gVA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.2.36.tgz,
+ }
name: '@vue/compiler-dom'
version: 3.2.36
dependencies:
@@ -1281,7 +2073,12 @@ packages:
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.36
registry.npmmirror.com/@vue/compiler-sfc/3.2.33:
- resolution: {integrity: sha512-H8D0WqagCr295pQjUYyO8P3IejM3vEzeCO1apzByAEaAR/WimhMYczHfZVvlCE/9yBaEu/eu9RdiWr0kF8b71Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.2.33.tgz}
+ resolution:
+ {
+ integrity: sha512-H8D0WqagCr295pQjUYyO8P3IejM3vEzeCO1apzByAEaAR/WimhMYczHfZVvlCE/9yBaEu/eu9RdiWr0kF8b71Q==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.2.33.tgz,
+ }
name: '@vue/compiler-sfc'
version: 3.2.33
dependencies:
@@ -1297,7 +2094,12 @@ packages:
source-map: registry.npmmirror.com/source-map/0.6.1
registry.npmmirror.com/@vue/compiler-sfc/3.2.36:
- resolution: {integrity: sha512-AvGb4bTj4W8uQ4BqaSxo7UwTEqX5utdRSMyHy58OragWlt8nEACQ9mIeQh3K4di4/SX+41+pJrLIY01lHAOFOA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.2.36.tgz}
+ resolution:
+ {
+ integrity: sha512-AvGb4bTj4W8uQ4BqaSxo7UwTEqX5utdRSMyHy58OragWlt8nEACQ9mIeQh3K4di4/SX+41+pJrLIY01lHAOFOA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.2.36.tgz,
+ }
name: '@vue/compiler-sfc'
version: 3.2.36
dependencies:
@@ -1313,7 +2115,12 @@ packages:
source-map: registry.npmmirror.com/source-map/0.6.1
registry.npmmirror.com/@vue/compiler-ssr/3.2.33:
- resolution: {integrity: sha512-XQh1Xdk3VquDpXsnoCd7JnMoWec9CfAzQDQsaMcSU79OrrO2PNR0ErlIjm/mGq3GmBfkQjzZACV+7GhfRB8xMQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.2.33.tgz}
+ resolution:
+ {
+ integrity: sha512-XQh1Xdk3VquDpXsnoCd7JnMoWec9CfAzQDQsaMcSU79OrrO2PNR0ErlIjm/mGq3GmBfkQjzZACV+7GhfRB8xMQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.2.33.tgz,
+ }
name: '@vue/compiler-ssr'
version: 3.2.33
dependencies:
@@ -1321,7 +2128,12 @@ packages:
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.33
registry.npmmirror.com/@vue/compiler-ssr/3.2.36:
- resolution: {integrity: sha512-+KugInUFRvOxEdLkZwE+W43BqHyhBh0jpYXhmqw1xGq2dmE6J9eZ8UUSOKNhdHtQ/iNLWWeK/wPZkVLUf3YGaw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.2.36.tgz}
+ resolution:
+ {
+ integrity: sha512-+KugInUFRvOxEdLkZwE+W43BqHyhBh0jpYXhmqw1xGq2dmE6J9eZ8UUSOKNhdHtQ/iNLWWeK/wPZkVLUf3YGaw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.2.36.tgz,
+ }
name: '@vue/compiler-ssr'
version: 3.2.36
dependencies:
@@ -1329,13 +2141,23 @@ packages:
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.36
registry.npmmirror.com/@vue/devtools-api/6.1.4:
- resolution: {integrity: sha512-IiA0SvDrJEgXvVxjNkHPFfDx6SXw0b/TUkqMcDZWNg9fnCAHbTpoo59YfJ9QLFkwa3raau5vSlRVzMSLDnfdtQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.1.4.tgz}
+ resolution:
+ {
+ integrity: sha512-IiA0SvDrJEgXvVxjNkHPFfDx6SXw0b/TUkqMcDZWNg9fnCAHbTpoo59YfJ9QLFkwa3raau5vSlRVzMSLDnfdtQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.1.4.tgz,
+ }
name: '@vue/devtools-api'
version: 6.1.4
dev: false
registry.npmmirror.com/@vue/reactivity-transform/3.2.33:
- resolution: {integrity: sha512-4UL5KOIvSQb254aqenW4q34qMXbfZcmEsV/yVidLUgvwYQQ/D21bGX3DlgPUGI3c4C+iOnNmDCkIxkILoX/Pyw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.2.33.tgz}
+ resolution:
+ {
+ integrity: sha512-4UL5KOIvSQb254aqenW4q34qMXbfZcmEsV/yVidLUgvwYQQ/D21bGX3DlgPUGI3c4C+iOnNmDCkIxkILoX/Pyw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.2.33.tgz,
+ }
name: '@vue/reactivity-transform'
version: 3.2.33
dependencies:
@@ -1346,7 +2168,12 @@ packages:
magic-string: registry.npmmirror.com/magic-string/0.25.9
registry.npmmirror.com/@vue/reactivity-transform/3.2.36:
- resolution: {integrity: sha512-Jk5o2BhpODC9XTA7o4EL8hSJ4JyrFWErLtClG3NH8wDS7ri9jBDWxI7/549T7JY9uilKsaNM+4pJASLj5dtRwA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.2.36.tgz}
+ resolution:
+ {
+ integrity: sha512-Jk5o2BhpODC9XTA7o4EL8hSJ4JyrFWErLtClG3NH8wDS7ri9jBDWxI7/549T7JY9uilKsaNM+4pJASLj5dtRwA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.2.36.tgz,
+ }
name: '@vue/reactivity-transform'
version: 3.2.36
dependencies:
@@ -1357,14 +2184,24 @@ packages:
magic-string: registry.npmmirror.com/magic-string/0.25.9
registry.npmmirror.com/@vue/reactivity/3.2.36:
- resolution: {integrity: sha512-c2qvopo0crh9A4GXi2/2kfGYMxsJW4tVILrqRPydVGZHhq0fnzy6qmclWOhBFckEhmyxmpHpdJtIRYGeKcuhnA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.2.36.tgz}
+ resolution:
+ {
+ integrity: sha512-c2qvopo0crh9A4GXi2/2kfGYMxsJW4tVILrqRPydVGZHhq0fnzy6qmclWOhBFckEhmyxmpHpdJtIRYGeKcuhnA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.2.36.tgz,
+ }
name: '@vue/reactivity'
version: 3.2.36
dependencies:
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.36
registry.npmmirror.com/@vue/runtime-core/3.2.36:
- resolution: {integrity: sha512-PTWBD+Lub+1U3/KhbCExrfxyS14hstLX+cBboxVHaz+kXoiDLNDEYAovPtxeTutbqtClIXtft+wcGdC+FUQ9qQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.2.36.tgz}
+ resolution:
+ {
+ integrity: sha512-PTWBD+Lub+1U3/KhbCExrfxyS14hstLX+cBboxVHaz+kXoiDLNDEYAovPtxeTutbqtClIXtft+wcGdC+FUQ9qQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.2.36.tgz,
+ }
name: '@vue/runtime-core'
version: 3.2.36
dependencies:
@@ -1372,7 +2209,12 @@ packages:
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.36
registry.npmmirror.com/@vue/runtime-dom/3.2.36:
- resolution: {integrity: sha512-gYPYblm7QXHVuBohqNRRT7Wez0f2Mx2D40rb4fleehrJU9CnkjG0phhcGEZFfGwCmHZRqBCRgbFWE98bPULqkg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.2.36.tgz}
+ resolution:
+ {
+ integrity: sha512-gYPYblm7QXHVuBohqNRRT7Wez0f2Mx2D40rb4fleehrJU9CnkjG0phhcGEZFfGwCmHZRqBCRgbFWE98bPULqkg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.2.36.tgz,
+ }
name: '@vue/runtime-dom'
version: 3.2.36
dependencies:
@@ -1381,7 +2223,12 @@ packages:
csstype: registry.npmmirror.com/csstype/2.6.20
registry.npmmirror.com/@vue/server-renderer/3.2.33_vue@3.2.36:
- resolution: {integrity: sha512-4jpJHRD4ORv8PlbYi+/MfP8ec1okz6rybe36MdpkDrGIdEItHEUyaHSKvz+ptNEyQpALmmVfRteHkU9F8vxOew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.2.33.tgz}
+ resolution:
+ {
+ integrity: sha512-4jpJHRD4ORv8PlbYi+/MfP8ec1okz6rybe36MdpkDrGIdEItHEUyaHSKvz+ptNEyQpALmmVfRteHkU9F8vxOew==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.2.33.tgz,
+ }
id: registry.npmmirror.com/@vue/server-renderer/3.2.33
name: '@vue/server-renderer'
version: 3.2.33
@@ -1393,7 +2240,12 @@ packages:
vue: registry.npmmirror.com/vue/3.2.36
registry.npmmirror.com/@vue/server-renderer/3.2.36_vue@3.2.36:
- resolution: {integrity: sha512-uZE0+jfye6yYXWvAQYeHZv+f50sRryvy16uiqzk3jn8hEY8zTjI+rzlmZSGoE915k+W/Ol9XSw6vxOUD8dGkUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.2.36.tgz}
+ resolution:
+ {
+ integrity: sha512-uZE0+jfye6yYXWvAQYeHZv+f50sRryvy16uiqzk3jn8hEY8zTjI+rzlmZSGoE915k+W/Ol9XSw6vxOUD8dGkUg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.2.36.tgz,
+ }
id: registry.npmmirror.com/@vue/server-renderer/3.2.36
name: '@vue/server-renderer'
version: 3.2.36
@@ -1405,17 +2257,32 @@ packages:
vue: registry.npmmirror.com/vue/3.2.36
registry.npmmirror.com/@vue/shared/3.2.33:
- resolution: {integrity: sha512-UBc1Pg1T3yZ97vsA2ueER0F6GbJebLHYlEi4ou1H5YL4KWvMOOWwpYo9/QpWq93wxKG6Wo13IY74Hcn/f7c7Bg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/shared/-/shared-3.2.33.tgz}
+ resolution:
+ {
+ integrity: sha512-UBc1Pg1T3yZ97vsA2ueER0F6GbJebLHYlEi4ou1H5YL4KWvMOOWwpYo9/QpWq93wxKG6Wo13IY74Hcn/f7c7Bg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vue/shared/-/shared-3.2.33.tgz,
+ }
name: '@vue/shared'
version: 3.2.33
registry.npmmirror.com/@vue/shared/3.2.36:
- resolution: {integrity: sha512-JtB41wXl7Au3+Nl3gD16Cfpj7k/6aCroZ6BbOiCMFCMvrOpkg/qQUXTso2XowaNqBbnkuGHurLAqkLBxNGc1hQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/shared/-/shared-3.2.36.tgz}
+ resolution:
+ {
+ integrity: sha512-JtB41wXl7Au3+Nl3gD16Cfpj7k/6aCroZ6BbOiCMFCMvrOpkg/qQUXTso2XowaNqBbnkuGHurLAqkLBxNGc1hQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@vue/shared/-/shared-3.2.36.tgz,
+ }
name: '@vue/shared'
version: 3.2.36
registry.npmmirror.com/@windicss/config/1.8.4:
- resolution: {integrity: sha512-i4fFGFfZoRess6WMkauykHC3PFd9xKYVx7lSuLfMK7sgo6x3+l4dY42GbsWMHyLqH1sTMfyt1LgfXSIKYJozSA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@windicss/config/-/config-1.8.4.tgz}
+ resolution:
+ {
+ integrity: sha512-i4fFGFfZoRess6WMkauykHC3PFd9xKYVx7lSuLfMK7sgo6x3+l4dY42GbsWMHyLqH1sTMfyt1LgfXSIKYJozSA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@windicss/config/-/config-1.8.4.tgz,
+ }
name: '@windicss/config'
version: 1.8.4
dependencies:
@@ -1427,7 +2294,12 @@ packages:
dev: true
registry.npmmirror.com/@windicss/plugin-utils/1.8.4:
- resolution: {integrity: sha512-DqJVwAfzlgd8nYSNlmhXOey32pI8UwH7QiOWdFS/AR2O/q9oLDGHDn97Its/kZdfoyhi8ylwZNP2Pk0H7cihhQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@windicss/plugin-utils/-/plugin-utils-1.8.4.tgz}
+ resolution:
+ {
+ integrity: sha512-DqJVwAfzlgd8nYSNlmhXOey32pI8UwH7QiOWdFS/AR2O/q9oLDGHDn97Its/kZdfoyhi8ylwZNP2Pk0H7cihhQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/@windicss/plugin-utils/-/plugin-utils-1.8.4.tgz,
+ }
name: '@windicss/plugin-utils'
version: 1.8.4
dependencies:
@@ -1443,50 +2315,174 @@ packages:
dev: true
registry.npmmirror.com/accepts/1.3.8:
- resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/accepts/-/accepts-1.3.8.tgz}
+ resolution:
+ {
+ integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/accepts/-/accepts-1.3.8.tgz,
+ }
name: accepts
version: 1.3.8
- engines: {node: '>= 0.6'}
+ engines: { node: '>= 0.6' }
dependencies:
mime-types: registry.npmmirror.com/mime-types/2.1.35
negotiator: registry.npmmirror.com/negotiator/0.6.3
dev: true
+ registry.npmmirror.com/acorn-jsx/5.3.2_acorn@8.7.1:
+ resolution:
+ {
+ integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz,
+ }
+ id: registry.npmmirror.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.7.1
+ dev: true
+
+ registry.npmmirror.com/acorn/8.7.1:
+ resolution:
+ {
+ integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/acorn/-/acorn-8.7.1.tgz,
+ }
+ name: acorn
+ version: 8.7.1
+ engines: { node: '>=0.4.0' }
+ hasBin: true
+ dev: true
+
registry.npmmirror.com/address/1.2.0:
- resolution: {integrity: sha512-tNEZYz5G/zYunxFm7sfhAxkXEuLj3K6BKwv6ZURlsF6yiUQ65z0Q2wZW9L5cPUl9ocofGvXOdFYbFHp0+6MOig==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/address/-/address-1.2.0.tgz}
+ resolution:
+ {
+ integrity: sha512-tNEZYz5G/zYunxFm7sfhAxkXEuLj3K6BKwv6ZURlsF6yiUQ65z0Q2wZW9L5cPUl9ocofGvXOdFYbFHp0+6MOig==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/address/-/address-1.2.0.tgz,
+ }
name: address
version: 1.2.0
- engines: {node: '>= 10.0.0'}
+ engines: { node: '>= 10.0.0' }
+ dev: true
+
+ registry.npmmirror.com/ajv/6.12.6:
+ resolution:
+ {
+ integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz,
+ }
+ name: ajv
+ version: 6.12.6
+ dependencies:
+ fast-deep-equal: registry.npmmirror.com/fast-deep-equal/3.1.3
+ fast-json-stable-stringify: registry.npmmirror.com/fast-json-stable-stringify/2.1.0
+ json-schema-traverse: registry.npmmirror.com/json-schema-traverse/0.4.1
+ uri-js: registry.npmmirror.com/uri-js/4.4.1
+ dev: true
+
+ registry.npmmirror.com/ansi-regex/5.0.1:
+ resolution:
+ {
+ integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz,
+ }
+ name: ansi-regex
+ version: 5.0.1
+ engines: { node: '>=8' }
dev: true
registry.npmmirror.com/ansi-styles/3.2.1:
- resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz}
+ resolution:
+ {
+ integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz,
+ }
name: ansi-styles
version: 3.2.1
- engines: {node: '>=4'}
+ engines: { node: '>=4' }
dependencies:
color-convert: registry.npmmirror.com/color-convert/1.9.3
+ registry.npmmirror.com/ansi-styles/4.3.0:
+ resolution:
+ {
+ integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz,
+ }
+ name: ansi-styles
+ version: 4.3.0
+ engines: { node: '>=8' }
+ dependencies:
+ color-convert: registry.npmmirror.com/color-convert/2.0.1
+ dev: true
+
registry.npmmirror.com/anymatch/3.1.2:
- resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/anymatch/-/anymatch-3.1.2.tgz}
+ resolution:
+ {
+ integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/anymatch/-/anymatch-3.1.2.tgz,
+ }
name: anymatch
version: 3.1.2
- engines: {node: '>= 8'}
+ engines: { node: '>= 8' }
dependencies:
normalize-path: registry.npmmirror.com/normalize-path/3.0.0
picomatch: registry.npmmirror.com/picomatch/2.3.1
+ registry.npmmirror.com/argparse/2.0.1:
+ resolution:
+ {
+ integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz,
+ }
+ name: argparse
+ version: 2.0.1
+ dev: true
+
registry.npmmirror.com/array-flatten/1.1.1:
- resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/array-flatten/-/array-flatten-1.1.1.tgz}
+ resolution:
+ {
+ integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/array-flatten/-/array-flatten-1.1.1.tgz,
+ }
name: array-flatten
version: 1.1.1
dev: true
+ registry.npmmirror.com/array-union/2.1.0:
+ resolution:
+ {
+ integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/array-union/-/array-union-2.1.0.tgz,
+ }
+ name: array-union
+ version: 2.1.0
+ engines: { node: '>=8' }
+ dev: true
+
registry.npmmirror.com/autoprefixer/10.4.7:
- resolution: {integrity: sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/autoprefixer/-/autoprefixer-10.4.7.tgz}
+ resolution:
+ {
+ integrity: sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/autoprefixer/-/autoprefixer-10.4.7.tgz,
+ }
name: autoprefixer
version: 10.4.7
- engines: {node: ^10 || ^12 || >=14}
+ engines: { node: ^10 || ^12 || >=14 }
hasBin: true
peerDependencies:
postcss: ^8.1.0
@@ -1498,29 +2494,60 @@ packages:
picocolors: registry.npmmirror.com/picocolors/1.0.0
postcss-value-parser: registry.npmmirror.com/postcss-value-parser/4.2.0
+ registry.npmmirror.com/balanced-match/1.0.2:
+ resolution:
+ {
+ integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz,
+ }
+ name: balanced-match
+ version: 1.0.2
+ dev: true
+
registry.npmmirror.com/base64url/3.0.1:
- resolution: {integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/base64url/-/base64url-3.0.1.tgz}
+ resolution:
+ {
+ integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/base64url/-/base64url-3.0.1.tgz,
+ }
name: base64url
version: 3.0.1
- engines: {node: '>=6.0.0'}
+ engines: { node: '>=6.0.0' }
registry.npmmirror.com/big.js/5.2.2:
- resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/big.js/-/big.js-5.2.2.tgz}
+ resolution:
+ {
+ integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/big.js/-/big.js-5.2.2.tgz,
+ }
name: big.js
version: 5.2.2
dev: true
registry.npmmirror.com/binary-extensions/2.2.0:
- resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz}
+ resolution:
+ {
+ integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz,
+ }
name: binary-extensions
version: 2.2.0
- engines: {node: '>=8'}
+ engines: { node: '>=8' }
registry.npmmirror.com/body-parser/1.20.0:
- resolution: {integrity: sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/body-parser/-/body-parser-1.20.0.tgz}
+ resolution:
+ {
+ integrity: sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/body-parser/-/body-parser-1.20.0.tgz,
+ }
name: body-parser
version: 1.20.0
- engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
+ engines: { node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16 }
dependencies:
bytes: registry.npmmirror.com/bytes/3.1.2
content-type: registry.npmmirror.com/content-type/1.0.4
@@ -1538,19 +2565,54 @@ packages:
- supports-color
dev: true
+ registry.npmmirror.com/boolbase/1.0.0:
+ resolution:
+ {
+ integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/boolbase/-/boolbase-1.0.0.tgz,
+ }
+ name: boolbase
+ version: 1.0.0
+ dev: true
+
+ registry.npmmirror.com/brace-expansion/1.1.11:
+ resolution:
+ {
+ integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz,
+ }
+ name: brace-expansion
+ version: 1.1.11
+ dependencies:
+ balanced-match: registry.npmmirror.com/balanced-match/1.0.2
+ concat-map: registry.nlark.com/concat-map/0.0.1
+ dev: true
+
registry.npmmirror.com/braces/3.0.2:
- resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz}
+ resolution:
+ {
+ integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz,
+ }
name: braces
version: 3.0.2
- engines: {node: '>=8'}
+ engines: { node: '>=8' }
dependencies:
fill-range: registry.npmmirror.com/fill-range/7.0.1
registry.npmmirror.com/browserslist/4.20.3:
- resolution: {integrity: sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/browserslist/-/browserslist-4.20.3.tgz}
+ resolution:
+ {
+ integrity: sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/browserslist/-/browserslist-4.20.3.tgz,
+ }
name: browserslist
version: 4.20.3
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
hasBin: true
dependencies:
caniuse-lite: registry.npmmirror.com/caniuse-lite/1.0.30001346
@@ -1560,21 +2622,36 @@ packages:
picocolors: registry.npmmirror.com/picocolors/1.0.0
registry.npmmirror.com/bytes/3.1.2:
- resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/bytes/-/bytes-3.1.2.tgz}
+ resolution:
+ {
+ integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/bytes/-/bytes-3.1.2.tgz,
+ }
name: bytes
version: 3.1.2
- engines: {node: '>= 0.8'}
+ engines: { node: '>= 0.8' }
dev: true
registry.npmmirror.com/cac/6.7.9:
- resolution: {integrity: sha512-XN5qEpfNQCJ8jRaZgitSkkukjMRCGio+X3Ks5KUbGGlPbV+pSem1l9VuzooCBXOiMFshUZgyYqg6rgN8rjkb/w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cac/-/cac-6.7.9.tgz}
+ resolution:
+ {
+ integrity: sha512-XN5qEpfNQCJ8jRaZgitSkkukjMRCGio+X3Ks5KUbGGlPbV+pSem1l9VuzooCBXOiMFshUZgyYqg6rgN8rjkb/w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/cac/-/cac-6.7.9.tgz,
+ }
name: cac
version: 6.7.9
- engines: {node: '>=8'}
+ engines: { node: '>=8' }
dev: true
registry.npmmirror.com/call-bind/1.0.2:
- resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz}
+ resolution:
+ {
+ integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz,
+ }
name: call-bind
version: 1.0.2
dependencies:
@@ -1582,33 +2659,80 @@ packages:
get-intrinsic: registry.npmmirror.com/get-intrinsic/1.1.1
dev: true
+ registry.npmmirror.com/callsites/3.1.0:
+ resolution:
+ {
+ integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz,
+ }
+ name: callsites
+ version: 3.1.0
+ engines: { node: '>=6' }
+ dev: true
+
registry.npmmirror.com/camelcase/6.3.0:
- resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/camelcase/-/camelcase-6.3.0.tgz}
+ resolution:
+ {
+ integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/camelcase/-/camelcase-6.3.0.tgz,
+ }
name: camelcase
version: 6.3.0
- engines: {node: '>=10'}
+ engines: { node: '>=10' }
dev: true
registry.npmmirror.com/caniuse-lite/1.0.30001346:
- resolution: {integrity: sha512-q6ibZUO2t88QCIPayP/euuDREq+aMAxFE5S70PkrLh0iTDj/zEhgvJRKC2+CvXY6EWc6oQwUR48lL5vCW6jiXQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001346.tgz}
+ resolution:
+ {
+ integrity: sha512-q6ibZUO2t88QCIPayP/euuDREq+aMAxFE5S70PkrLh0iTDj/zEhgvJRKC2+CvXY6EWc6oQwUR48lL5vCW6jiXQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001346.tgz,
+ }
name: caniuse-lite
version: 1.0.30001346
registry.npmmirror.com/chalk/2.4.2:
- resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz}
+ resolution:
+ {
+ integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz,
+ }
name: chalk
version: 2.4.2
- engines: {node: '>=4'}
+ engines: { node: '>=4' }
dependencies:
ansi-styles: registry.npmmirror.com/ansi-styles/3.2.1
escape-string-regexp: registry.npmmirror.com/escape-string-regexp/1.0.5
supports-color: registry.npmmirror.com/supports-color/5.5.0
+ registry.npmmirror.com/chalk/4.1.2:
+ resolution:
+ {
+ integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz,
+ }
+ name: chalk
+ version: 4.1.2
+ engines: { node: '>=10' }
+ dependencies:
+ ansi-styles: registry.npmmirror.com/ansi-styles/4.3.0
+ supports-color: registry.npmmirror.com/supports-color/7.2.0
+ dev: true
+
registry.npmmirror.com/chokidar/3.5.3:
- resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chokidar/-/chokidar-3.5.3.tgz}
+ resolution:
+ {
+ integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/chokidar/-/chokidar-3.5.3.tgz,
+ }
name: chokidar
version: 3.5.3
- engines: {node: '>= 8.10.0'}
+ engines: { node: '>= 8.10.0' }
dependencies:
anymatch: registry.npmmirror.com/anymatch/3.1.2
braces: registry.npmmirror.com/braces/3.0.2
@@ -1621,80 +2745,160 @@ packages:
fsevents: registry.npmmirror.com/fsevents/2.3.2
registry.npmmirror.com/color-convert/1.9.3:
- resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz}
+ resolution:
+ {
+ integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz,
+ }
name: color-convert
version: 1.9.3
dependencies:
color-name: registry.npmmirror.com/color-name/1.1.3
+ registry.npmmirror.com/color-convert/2.0.1:
+ resolution:
+ {
+ integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz,
+ }
+ name: color-convert
+ version: 2.0.1
+ engines: { node: '>=7.0.0' }
+ dependencies:
+ color-name: registry.npmmirror.com/color-name/1.1.4
+ dev: true
+
registry.npmmirror.com/color-name/1.1.3:
- resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz}
+ resolution:
+ {
+ integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz,
+ }
name: color-name
version: 1.1.3
+ registry.npmmirror.com/color-name/1.1.4:
+ resolution:
+ {
+ integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz,
+ }
+ name: color-name
+ version: 1.1.4
+ dev: true
+
registry.npmmirror.com/compare-versions/3.6.0:
- resolution: {integrity: sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/compare-versions/-/compare-versions-3.6.0.tgz}
+ resolution:
+ {
+ integrity: sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/compare-versions/-/compare-versions-3.6.0.tgz,
+ }
name: compare-versions
version: 3.6.0
registry.npmmirror.com/content-disposition/0.5.4:
- resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/content-disposition/-/content-disposition-0.5.4.tgz}
+ resolution:
+ {
+ integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/content-disposition/-/content-disposition-0.5.4.tgz,
+ }
name: content-disposition
version: 0.5.4
- engines: {node: '>= 0.6'}
+ engines: { node: '>= 0.6' }
dependencies:
safe-buffer: registry.npmmirror.com/safe-buffer/5.2.1
dev: true
registry.npmmirror.com/content-type/1.0.4:
- resolution: {integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/content-type/-/content-type-1.0.4.tgz}
+ resolution:
+ {
+ integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/content-type/-/content-type-1.0.4.tgz,
+ }
name: content-type
version: 1.0.4
- engines: {node: '>= 0.6'}
+ engines: { node: '>= 0.6' }
dev: true
registry.npmmirror.com/convert-source-map/1.8.0:
- resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.8.0.tgz}
+ resolution:
+ {
+ integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.8.0.tgz,
+ }
name: convert-source-map
version: 1.8.0
dependencies:
safe-buffer: registry.npmmirror.com/safe-buffer/5.1.2
registry.npmmirror.com/cookie-signature/1.0.6:
- resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cookie-signature/-/cookie-signature-1.0.6.tgz}
+ resolution:
+ {
+ integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/cookie-signature/-/cookie-signature-1.0.6.tgz,
+ }
name: cookie-signature
version: 1.0.6
dev: true
registry.npmmirror.com/cookie/0.5.0:
- resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cookie/-/cookie-0.5.0.tgz}
+ resolution:
+ {
+ integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/cookie/-/cookie-0.5.0.tgz,
+ }
name: cookie
version: 0.5.0
- engines: {node: '>= 0.6'}
+ engines: { node: '>= 0.6' }
dev: true
registry.npmmirror.com/core-js/3.22.8:
- resolution: {integrity: sha512-UoGQ/cfzGYIuiq6Z7vWL1HfkE9U9IZ4Ub+0XSiJTCzvbZzgPA69oDF2f+lgJ6dFFLEdjW5O6svvoKzXX23xFkA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/core-js/-/core-js-3.22.8.tgz}
+ resolution:
+ {
+ integrity: sha512-UoGQ/cfzGYIuiq6Z7vWL1HfkE9U9IZ4Ub+0XSiJTCzvbZzgPA69oDF2f+lgJ6dFFLEdjW5O6svvoKzXX23xFkA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/core-js/-/core-js-3.22.8.tgz,
+ }
name: core-js
version: 3.22.8
requiresBuild: true
dev: true
registry.npmmirror.com/cross-env/7.0.3:
- resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cross-env/-/cross-env-7.0.3.tgz}
+ resolution:
+ {
+ integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/cross-env/-/cross-env-7.0.3.tgz,
+ }
name: cross-env
version: 7.0.3
- engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'}
+ engines: { node: '>=10.14', npm: '>=6', yarn: '>=1' }
hasBin: true
dependencies:
cross-spawn: registry.npmmirror.com/cross-spawn/7.0.3
dev: true
registry.npmmirror.com/cross-spawn/7.0.3:
- resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz}
+ resolution:
+ {
+ integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz,
+ }
name: cross-spawn
version: 7.0.3
- engines: {node: '>= 8'}
+ engines: { node: '>= 8' }
dependencies:
path-key: registry.npmmirror.com/path-key/3.1.1
shebang-command: registry.npmmirror.com/shebang-command/2.0.0
@@ -1702,55 +2906,100 @@ packages:
dev: true
registry.npmmirror.com/css-font-size-keywords/1.0.0:
- resolution: {integrity: sha512-Q+svMDbMlelgCfH/RVDKtTDaf5021O486ZThQPIpahnIjUkMUslC+WuOQSWTgGSrNCH08Y7tYNEmmy0hkfMI8Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/css-font-size-keywords/-/css-font-size-keywords-1.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-Q+svMDbMlelgCfH/RVDKtTDaf5021O486ZThQPIpahnIjUkMUslC+WuOQSWTgGSrNCH08Y7tYNEmmy0hkfMI8Q==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/css-font-size-keywords/-/css-font-size-keywords-1.0.0.tgz,
+ }
name: css-font-size-keywords
version: 1.0.0
dev: false
registry.npmmirror.com/css-font-stretch-keywords/1.0.1:
- resolution: {integrity: sha512-KmugPO2BNqoyp9zmBIUGwt58UQSfyk1X5DbOlkb2pckDXFSAfjsD5wenb88fNrD6fvS+vu90a/tsPpb9vb0SLg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/css-font-stretch-keywords/-/css-font-stretch-keywords-1.0.1.tgz}
+ resolution:
+ {
+ integrity: sha512-KmugPO2BNqoyp9zmBIUGwt58UQSfyk1X5DbOlkb2pckDXFSAfjsD5wenb88fNrD6fvS+vu90a/tsPpb9vb0SLg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/css-font-stretch-keywords/-/css-font-stretch-keywords-1.0.1.tgz,
+ }
name: css-font-stretch-keywords
version: 1.0.1
dev: false
registry.npmmirror.com/css-font-style-keywords/1.0.1:
- resolution: {integrity: sha512-0Fn0aTpcDktnR1RzaBYorIxQily85M2KXRpzmxQPgh8pxUN9Fcn00I8u9I3grNr1QXVgCl9T5Imx0ZwKU973Vg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/css-font-style-keywords/-/css-font-style-keywords-1.0.1.tgz}
+ resolution:
+ {
+ integrity: sha512-0Fn0aTpcDktnR1RzaBYorIxQily85M2KXRpzmxQPgh8pxUN9Fcn00I8u9I3grNr1QXVgCl9T5Imx0ZwKU973Vg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/css-font-style-keywords/-/css-font-style-keywords-1.0.1.tgz,
+ }
name: css-font-style-keywords
version: 1.0.1
dev: false
registry.npmmirror.com/css-font-weight-keywords/1.0.0:
- resolution: {integrity: sha512-5So8/NH+oDD+EzsnF4iaG4ZFHQ3vaViePkL1ZbZ5iC/KrsCY+WHq/lvOgrtmuOQ9pBBZ1ADGpaf+A4lj1Z9eYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/css-font-weight-keywords/-/css-font-weight-keywords-1.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-5So8/NH+oDD+EzsnF4iaG4ZFHQ3vaViePkL1ZbZ5iC/KrsCY+WHq/lvOgrtmuOQ9pBBZ1ADGpaf+A4lj1Z9eYA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/css-font-weight-keywords/-/css-font-weight-keywords-1.0.0.tgz,
+ }
name: css-font-weight-keywords
version: 1.0.0
dev: false
registry.npmmirror.com/css-list-helpers/2.0.0:
- resolution: {integrity: sha512-9Bj8tZ0jWbAM3u/U6m/boAzAwLPwtjzFvwivr2piSvyVa3K3rChJzQy4RIHkNkKiZCHrEMWDJWtTR8UyVhdDnQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/css-list-helpers/-/css-list-helpers-2.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-9Bj8tZ0jWbAM3u/U6m/boAzAwLPwtjzFvwivr2piSvyVa3K3rChJzQy4RIHkNkKiZCHrEMWDJWtTR8UyVhdDnQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/css-list-helpers/-/css-list-helpers-2.0.0.tgz,
+ }
name: css-list-helpers
version: 2.0.0
dev: false
registry.npmmirror.com/css-system-font-keywords/1.0.0:
- resolution: {integrity: sha512-1umTtVd/fXS25ftfjB71eASCrYhilmEsvDEI6wG/QplnmlfmVM5HkZ/ZX46DT5K3eblFPgLUHt5BRCb0YXkSFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/css-system-font-keywords/-/css-system-font-keywords-1.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-1umTtVd/fXS25ftfjB71eASCrYhilmEsvDEI6wG/QplnmlfmVM5HkZ/ZX46DT5K3eblFPgLUHt5BRCb0YXkSFA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/css-system-font-keywords/-/css-system-font-keywords-1.0.0.tgz,
+ }
name: css-system-font-keywords
version: 1.0.0
dev: false
registry.npmmirror.com/cssesc/3.0.0:
- resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz,
+ }
name: cssesc
version: 3.0.0
- engines: {node: '>=4'}
+ engines: { node: '>=4' }
hasBin: true
registry.npmmirror.com/csstype/2.6.20:
- resolution: {integrity: sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/csstype/-/csstype-2.6.20.tgz}
+ resolution:
+ {
+ integrity: sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/csstype/-/csstype-2.6.20.tgz,
+ }
name: csstype
version: 2.6.20
registry.npmmirror.com/debug/2.6.9:
- resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz}
+ resolution:
+ {
+ integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz,
+ }
name: debug
version: 2.6.9
peerDependencies:
@@ -1763,10 +3012,15 @@ packages:
dev: true
registry.npmmirror.com/debug/4.3.4:
- resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz}
+ resolution:
+ {
+ integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz,
+ }
name: debug
version: 4.3.4
- engines: {node: '>=6.0'}
+ engines: { node: '>=6.0' }
peerDependencies:
supports-color: '*'
peerDependenciesMeta:
@@ -1775,264 +3029,448 @@ packages:
dependencies:
ms: registry.npmmirror.com/ms/2.1.2
+ registry.npmmirror.com/deep-is/0.1.4:
+ resolution:
+ {
+ integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/deep-is/-/deep-is-0.1.4.tgz,
+ }
+ name: deep-is
+ version: 0.1.4
+ dev: true
+
registry.npmmirror.com/default-gateway/6.0.3:
- resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/default-gateway/-/default-gateway-6.0.3.tgz}
+ resolution:
+ {
+ integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/default-gateway/-/default-gateway-6.0.3.tgz,
+ }
name: default-gateway
version: 6.0.3
- engines: {node: '>= 10'}
+ engines: { node: '>= 10' }
dependencies:
execa: registry.npmmirror.com/execa/5.1.1
dev: true
registry.npmmirror.com/depd/2.0.0:
- resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/depd/-/depd-2.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/depd/-/depd-2.0.0.tgz,
+ }
name: depd
version: 2.0.0
- engines: {node: '>= 0.8'}
+ engines: { node: '>= 0.8' }
dev: true
registry.npmmirror.com/destroy/1.2.0:
- resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/destroy/-/destroy-1.2.0.tgz}
+ resolution:
+ {
+ integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/destroy/-/destroy-1.2.0.tgz,
+ }
name: destroy
version: 1.2.0
- engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
+ engines: { node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16 }
+ dev: true
+
+ registry.npmmirror.com/dir-glob/3.0.1:
+ resolution:
+ {
+ integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/dir-glob/-/dir-glob-3.0.1.tgz,
+ }
+ name: dir-glob
+ version: 3.0.1
+ engines: { node: '>=8' }
+ dependencies:
+ path-type: registry.npmmirror.com/path-type/4.0.0
+ dev: true
+
+ registry.npmmirror.com/doctrine/3.0.0:
+ resolution:
+ {
+ integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/doctrine/-/doctrine-3.0.0.tgz,
+ }
+ name: doctrine
+ version: 3.0.0
+ engines: { node: '>=6.0.0' }
+ dependencies:
+ esutils: registry.npmmirror.com/esutils/2.0.3
dev: true
registry.npmmirror.com/ee-first/1.1.1:
- resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ee-first/-/ee-first-1.1.1.tgz}
+ resolution:
+ {
+ integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/ee-first/-/ee-first-1.1.1.tgz,
+ }
name: ee-first
version: 1.1.1
dev: true
registry.npmmirror.com/electron-to-chromium/1.4.144:
- resolution: {integrity: sha512-R3RV3rU1xWwFJlSClVWDvARaOk6VUO/FubHLodIASDB3Mc2dzuWvNdfOgH9bwHUTqT79u92qw60NWfwUdzAqdg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.144.tgz}
+ resolution:
+ {
+ integrity: sha512-R3RV3rU1xWwFJlSClVWDvARaOk6VUO/FubHLodIASDB3Mc2dzuWvNdfOgH9bwHUTqT79u92qw60NWfwUdzAqdg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.144.tgz,
+ }
name: electron-to-chromium
version: 1.4.144
registry.npmmirror.com/emojis-list/3.0.0:
- resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/emojis-list/-/emojis-list-3.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/emojis-list/-/emojis-list-3.0.0.tgz,
+ }
name: emojis-list
version: 3.0.0
- engines: {node: '>= 4'}
+ engines: { node: '>= 4' }
dev: true
registry.npmmirror.com/encodeurl/1.0.2:
- resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/encodeurl/-/encodeurl-1.0.2.tgz}
+ resolution:
+ {
+ integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/encodeurl/-/encodeurl-1.0.2.tgz,
+ }
name: encodeurl
version: 1.0.2
- engines: {node: '>= 0.8'}
+ engines: { node: '>= 0.8' }
dev: true
registry.npmmirror.com/es-module-lexer/0.9.3:
- resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz}
+ resolution:
+ {
+ integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz,
+ }
name: es-module-lexer
version: 0.9.3
registry.npmmirror.com/esbuild-android-64/0.14.42:
- resolution: {integrity: sha512-P4Y36VUtRhK/zivqGVMqhptSrFILAGlYp0Z8r9UQqHJ3iWztRCNWnlBzD9HRx0DbueXikzOiwyOri+ojAFfW6A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-android-64/-/esbuild-android-64-0.14.42.tgz}
+ resolution:
+ {
+ integrity: sha512-P4Y36VUtRhK/zivqGVMqhptSrFILAGlYp0Z8r9UQqHJ3iWztRCNWnlBzD9HRx0DbueXikzOiwyOri+ojAFfW6A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esbuild-android-64/-/esbuild-android-64-0.14.42.tgz,
+ }
name: esbuild-android-64
version: 0.14.42
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
cpu: [x64]
os: [android]
requiresBuild: true
optional: true
registry.npmmirror.com/esbuild-android-arm64/0.14.42:
- resolution: {integrity: sha512-0cOqCubq+RWScPqvtQdjXG3Czb3AWI2CaKw3HeXry2eoA2rrPr85HF7IpdU26UWdBXgPYtlTN1LUiuXbboROhg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-android-arm64/-/esbuild-android-arm64-0.14.42.tgz}
+ resolution:
+ {
+ integrity: sha512-0cOqCubq+RWScPqvtQdjXG3Czb3AWI2CaKw3HeXry2eoA2rrPr85HF7IpdU26UWdBXgPYtlTN1LUiuXbboROhg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esbuild-android-arm64/-/esbuild-android-arm64-0.14.42.tgz,
+ }
name: esbuild-android-arm64
version: 0.14.42
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
cpu: [arm64]
os: [android]
requiresBuild: true
optional: true
registry.npmmirror.com/esbuild-darwin-64/0.14.42:
- resolution: {integrity: sha512-ipiBdCA3ZjYgRfRLdQwP82rTiv/YVMtW36hTvAN5ZKAIfxBOyPXY7Cejp3bMXWgzKD8B6O+zoMzh01GZsCuEIA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-darwin-64/-/esbuild-darwin-64-0.14.42.tgz}
+ resolution:
+ {
+ integrity: sha512-ipiBdCA3ZjYgRfRLdQwP82rTiv/YVMtW36hTvAN5ZKAIfxBOyPXY7Cejp3bMXWgzKD8B6O+zoMzh01GZsCuEIA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esbuild-darwin-64/-/esbuild-darwin-64-0.14.42.tgz,
+ }
name: esbuild-darwin-64
version: 0.14.42
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
cpu: [x64]
os: [darwin]
requiresBuild: true
optional: true
registry.npmmirror.com/esbuild-darwin-arm64/0.14.42:
- resolution: {integrity: sha512-bU2tHRqTPOaoH/4m0zYHbFWpiYDmaA0gt90/3BMEFaM0PqVK/a6MA2V/ypV5PO0v8QxN6gH5hBPY4YJ2lopXgA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.42.tgz}
+ resolution:
+ {
+ integrity: sha512-bU2tHRqTPOaoH/4m0zYHbFWpiYDmaA0gt90/3BMEFaM0PqVK/a6MA2V/ypV5PO0v8QxN6gH5hBPY4YJ2lopXgA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.42.tgz,
+ }
name: esbuild-darwin-arm64
version: 0.14.42
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
registry.npmmirror.com/esbuild-freebsd-64/0.14.42:
- resolution: {integrity: sha512-75h1+22Ivy07+QvxHyhVqOdekupiTZVLN1PMwCDonAqyXd8TVNJfIRFrdL8QmSJrOJJ5h8H1I9ETyl2L8LQDaw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.42.tgz}
+ resolution:
+ {
+ integrity: sha512-75h1+22Ivy07+QvxHyhVqOdekupiTZVLN1PMwCDonAqyXd8TVNJfIRFrdL8QmSJrOJJ5h8H1I9ETyl2L8LQDaw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.42.tgz,
+ }
name: esbuild-freebsd-64
version: 0.14.42
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
cpu: [x64]
os: [freebsd]
requiresBuild: true
optional: true
registry.npmmirror.com/esbuild-freebsd-arm64/0.14.42:
- resolution: {integrity: sha512-W6Jebeu5TTDQMJUJVarEzRU9LlKpNkPBbjqSu+GUPTHDCly5zZEQq9uHkmHHl7OKm+mQ2zFySN83nmfCeZCyNA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.42.tgz}
+ resolution:
+ {
+ integrity: sha512-W6Jebeu5TTDQMJUJVarEzRU9LlKpNkPBbjqSu+GUPTHDCly5zZEQq9uHkmHHl7OKm+mQ2zFySN83nmfCeZCyNA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.42.tgz,
+ }
name: esbuild-freebsd-arm64
version: 0.14.42
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
cpu: [arm64]
os: [freebsd]
requiresBuild: true
optional: true
registry.npmmirror.com/esbuild-linux-32/0.14.42:
- resolution: {integrity: sha512-Ooy/Bj+mJ1z4jlWcK5Dl6SlPlCgQB9zg1UrTCeY8XagvuWZ4qGPyYEWGkT94HUsRi2hKsXvcs6ThTOjBaJSMfg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-32/-/esbuild-linux-32-0.14.42.tgz}
+ resolution:
+ {
+ integrity: sha512-Ooy/Bj+mJ1z4jlWcK5Dl6SlPlCgQB9zg1UrTCeY8XagvuWZ4qGPyYEWGkT94HUsRi2hKsXvcs6ThTOjBaJSMfg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esbuild-linux-32/-/esbuild-linux-32-0.14.42.tgz,
+ }
name: esbuild-linux-32
version: 0.14.42
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
cpu: [ia32]
os: [linux]
requiresBuild: true
optional: true
registry.npmmirror.com/esbuild-linux-64/0.14.42:
- resolution: {integrity: sha512-2L0HbzQfbTuemUWfVqNIjOfaTRt9zsvjnme6lnr7/MO9toz/MJ5tZhjqrG6uDWDxhsaHI2/nsDgrv8uEEN2eoA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-64/-/esbuild-linux-64-0.14.42.tgz}
+ resolution:
+ {
+ integrity: sha512-2L0HbzQfbTuemUWfVqNIjOfaTRt9zsvjnme6lnr7/MO9toz/MJ5tZhjqrG6uDWDxhsaHI2/nsDgrv8uEEN2eoA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esbuild-linux-64/-/esbuild-linux-64-0.14.42.tgz,
+ }
name: esbuild-linux-64
version: 0.14.42
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
registry.npmmirror.com/esbuild-linux-arm/0.14.42:
- resolution: {integrity: sha512-STq69yzCMhdRaWnh29UYrLSr/qaWMm/KqwaRF1pMEK7kDiagaXhSL1zQGXbYv94GuGY/zAwzK98+6idCMUOOCg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-arm/-/esbuild-linux-arm-0.14.42.tgz}
+ resolution:
+ {
+ integrity: sha512-STq69yzCMhdRaWnh29UYrLSr/qaWMm/KqwaRF1pMEK7kDiagaXhSL1zQGXbYv94GuGY/zAwzK98+6idCMUOOCg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esbuild-linux-arm/-/esbuild-linux-arm-0.14.42.tgz,
+ }
name: esbuild-linux-arm
version: 0.14.42
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
registry.npmmirror.com/esbuild-linux-arm64/0.14.42:
- resolution: {integrity: sha512-c3Ug3e9JpVr8jAcfbhirtpBauLxzYPpycjWulD71CF6ZSY26tvzmXMJYooQ2YKqDY4e/fPu5K8bm7MiXMnyxuA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.42.tgz}
+ resolution:
+ {
+ integrity: sha512-c3Ug3e9JpVr8jAcfbhirtpBauLxzYPpycjWulD71CF6ZSY26tvzmXMJYooQ2YKqDY4e/fPu5K8bm7MiXMnyxuA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.42.tgz,
+ }
name: esbuild-linux-arm64
version: 0.14.42
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
registry.npmmirror.com/esbuild-linux-mips64le/0.14.42:
- resolution: {integrity: sha512-QuvpHGbYlkyXWf2cGm51LBCHx6eUakjaSrRpUqhPwjh/uvNUYvLmz2LgPTTPwCqaKt0iwL+OGVL0tXA5aDbAbg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.42.tgz}
+ resolution:
+ {
+ integrity: sha512-QuvpHGbYlkyXWf2cGm51LBCHx6eUakjaSrRpUqhPwjh/uvNUYvLmz2LgPTTPwCqaKt0iwL+OGVL0tXA5aDbAbg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.42.tgz,
+ }
name: esbuild-linux-mips64le
version: 0.14.42
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
cpu: [mips64el]
os: [linux]
requiresBuild: true
optional: true
registry.npmmirror.com/esbuild-linux-ppc64le/0.14.42:
- resolution: {integrity: sha512-8ohIVIWDbDT+i7lCx44YCyIRrOW1MYlks9fxTo0ME2LS/fxxdoJBwHWzaDYhjvf8kNpA+MInZvyOEAGoVDrMHg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.42.tgz}
+ resolution:
+ {
+ integrity: sha512-8ohIVIWDbDT+i7lCx44YCyIRrOW1MYlks9fxTo0ME2LS/fxxdoJBwHWzaDYhjvf8kNpA+MInZvyOEAGoVDrMHg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.42.tgz,
+ }
name: esbuild-linux-ppc64le
version: 0.14.42
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
cpu: [ppc64]
os: [linux]
requiresBuild: true
optional: true
registry.npmmirror.com/esbuild-linux-riscv64/0.14.42:
- resolution: {integrity: sha512-DzDqK3TuoXktPyG1Lwx7vhaF49Onv3eR61KwQyxYo4y5UKTpL3NmuarHSIaSVlTFDDpcIajCDwz5/uwKLLgKiQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.42.tgz}
+ resolution:
+ {
+ integrity: sha512-DzDqK3TuoXktPyG1Lwx7vhaF49Onv3eR61KwQyxYo4y5UKTpL3NmuarHSIaSVlTFDDpcIajCDwz5/uwKLLgKiQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.42.tgz,
+ }
name: esbuild-linux-riscv64
version: 0.14.42
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
cpu: [riscv64]
os: [linux]
requiresBuild: true
optional: true
registry.npmmirror.com/esbuild-linux-s390x/0.14.42:
- resolution: {integrity: sha512-YFRhPCxl8nb//Wn6SiS5pmtplBi4z9yC2gLrYoYI/tvwuB1jldir9r7JwAGy1Ck4D7sE7wBN9GFtUUX/DLdcEQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.42.tgz}
+ resolution:
+ {
+ integrity: sha512-YFRhPCxl8nb//Wn6SiS5pmtplBi4z9yC2gLrYoYI/tvwuB1jldir9r7JwAGy1Ck4D7sE7wBN9GFtUUX/DLdcEQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.42.tgz,
+ }
name: esbuild-linux-s390x
version: 0.14.42
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
cpu: [s390x]
os: [linux]
requiresBuild: true
optional: true
registry.npmmirror.com/esbuild-netbsd-64/0.14.42:
- resolution: {integrity: sha512-QYSD2k+oT9dqB/4eEM9c+7KyNYsIPgzYOSrmfNGDIyJrbT1d+CFVKvnKahDKNJLfOYj8N4MgyFaU9/Ytc6w5Vw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.42.tgz}
+ resolution:
+ {
+ integrity: sha512-QYSD2k+oT9dqB/4eEM9c+7KyNYsIPgzYOSrmfNGDIyJrbT1d+CFVKvnKahDKNJLfOYj8N4MgyFaU9/Ytc6w5Vw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.42.tgz,
+ }
name: esbuild-netbsd-64
version: 0.14.42
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
cpu: [x64]
os: [netbsd]
requiresBuild: true
optional: true
registry.npmmirror.com/esbuild-openbsd-64/0.14.42:
- resolution: {integrity: sha512-M2meNVIKWsm2HMY7+TU9AxM7ZVwI9havdsw6m/6EzdXysyCFFSoaTQ/Jg03izjCsK17FsVRHqRe26Llj6x0MNA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.42.tgz}
+ resolution:
+ {
+ integrity: sha512-M2meNVIKWsm2HMY7+TU9AxM7ZVwI9havdsw6m/6EzdXysyCFFSoaTQ/Jg03izjCsK17FsVRHqRe26Llj6x0MNA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.42.tgz,
+ }
name: esbuild-openbsd-64
version: 0.14.42
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
cpu: [x64]
os: [openbsd]
requiresBuild: true
optional: true
registry.npmmirror.com/esbuild-sunos-64/0.14.42:
- resolution: {integrity: sha512-uXV8TAZEw36DkgW8Ak3MpSJs1ofBb3Smkc/6pZ29sCAN1KzCAQzsje4sUwugf+FVicrHvlamCOlFZIXgct+iqQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-sunos-64/-/esbuild-sunos-64-0.14.42.tgz}
+ resolution:
+ {
+ integrity: sha512-uXV8TAZEw36DkgW8Ak3MpSJs1ofBb3Smkc/6pZ29sCAN1KzCAQzsje4sUwugf+FVicrHvlamCOlFZIXgct+iqQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esbuild-sunos-64/-/esbuild-sunos-64-0.14.42.tgz,
+ }
name: esbuild-sunos-64
version: 0.14.42
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
cpu: [x64]
os: [sunos]
requiresBuild: true
optional: true
registry.npmmirror.com/esbuild-windows-32/0.14.42:
- resolution: {integrity: sha512-4iw/8qWmRICWi9ZOnJJf9sYt6wmtp3hsN4TdI5NqgjfOkBVMxNdM9Vt3626G1Rda9ya2Q0hjQRD9W1o+m6Lz6g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-32/-/esbuild-windows-32-0.14.42.tgz}
+ resolution:
+ {
+ integrity: sha512-4iw/8qWmRICWi9ZOnJJf9sYt6wmtp3hsN4TdI5NqgjfOkBVMxNdM9Vt3626G1Rda9ya2Q0hjQRD9W1o+m6Lz6g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esbuild-windows-32/-/esbuild-windows-32-0.14.42.tgz,
+ }
name: esbuild-windows-32
version: 0.14.42
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
cpu: [ia32]
os: [win32]
requiresBuild: true
optional: true
registry.npmmirror.com/esbuild-windows-64/0.14.42:
- resolution: {integrity: sha512-j3cdK+Y3+a5H0wHKmLGTJcq0+/2mMBHPWkItR3vytp/aUGD/ua/t2BLdfBIzbNN9nLCRL9sywCRpOpFMx3CxzA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-64/-/esbuild-windows-64-0.14.42.tgz}
+ resolution:
+ {
+ integrity: sha512-j3cdK+Y3+a5H0wHKmLGTJcq0+/2mMBHPWkItR3vytp/aUGD/ua/t2BLdfBIzbNN9nLCRL9sywCRpOpFMx3CxzA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esbuild-windows-64/-/esbuild-windows-64-0.14.42.tgz,
+ }
name: esbuild-windows-64
version: 0.14.42
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
cpu: [x64]
os: [win32]
requiresBuild: true
optional: true
registry.npmmirror.com/esbuild-windows-arm64/0.14.42:
- resolution: {integrity: sha512-+lRAARnF+hf8J0mN27ujO+VbhPbDqJ8rCcJKye4y7YZLV6C4n3pTRThAb388k/zqF5uM0lS5O201u0OqoWSicw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.42.tgz}
+ resolution:
+ {
+ integrity: sha512-+lRAARnF+hf8J0mN27ujO+VbhPbDqJ8rCcJKye4y7YZLV6C4n3pTRThAb388k/zqF5uM0lS5O201u0OqoWSicw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.42.tgz,
+ }
name: esbuild-windows-arm64
version: 0.14.42
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
cpu: [arm64]
os: [win32]
requiresBuild: true
optional: true
registry.npmmirror.com/esbuild/0.14.42:
- resolution: {integrity: sha512-V0uPZotCEHokJdNqyozH6qsaQXqmZEOiZWrXnds/zaH/0SyrIayRXWRB98CENO73MIZ9T3HBIOsmds5twWtmgw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild/-/esbuild-0.14.42.tgz}
+ resolution:
+ {
+ integrity: sha512-V0uPZotCEHokJdNqyozH6qsaQXqmZEOiZWrXnds/zaH/0SyrIayRXWRB98CENO73MIZ9T3HBIOsmds5twWtmgw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esbuild/-/esbuild-0.14.42.tgz,
+ }
name: esbuild
version: 0.14.42
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
hasBin: true
requiresBuild: true
optionalDependencies:
@@ -2058,40 +3496,353 @@ packages:
esbuild-windows-arm64: registry.npmmirror.com/esbuild-windows-arm64/0.14.42
registry.npmmirror.com/escalade/3.1.1:
- resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz}
+ resolution:
+ {
+ integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz,
+ }
name: escalade
version: 3.1.1
- engines: {node: '>=6'}
+ engines: { node: '>=6' }
registry.npmmirror.com/escape-html/1.0.3:
- resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz}
+ resolution:
+ {
+ integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz,
+ }
name: escape-html
version: 1.0.3
dev: true
registry.npmmirror.com/escape-string-regexp/1.0.5:
- resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz}
+ resolution:
+ {
+ integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz,
+ }
name: escape-string-regexp
version: 1.0.5
- engines: {node: '>=0.8.0'}
+ engines: { node: '>=0.8.0' }
+
+ registry.npmmirror.com/escape-string-regexp/4.0.0:
+ resolution:
+ {
+ integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz,
+ }
+ name: escape-string-regexp
+ version: 4.0.0
+ engines: { node: '>=10' }
+ dev: true
+
+ registry.npmmirror.com/eslint-config-prettier/8.5.0_eslint@8.16.0:
+ resolution:
+ {
+ integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz,
+ }
+ id: registry.npmmirror.com/eslint-config-prettier/8.5.0
+ name: eslint-config-prettier
+ version: 8.5.0
+ hasBin: true
+ peerDependencies:
+ eslint: '>=7.0.0'
+ dependencies:
+ eslint: registry.npmmirror.com/eslint/8.16.0
+ dev: true
+
+ registry.npmmirror.com/eslint-plugin-prettier/4.0.0_j7rsahgqtkecno6yauhsgsglf4:
+ resolution:
+ {
+ integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/eslint-plugin-prettier/-/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.16.0
+ eslint-config-prettier: registry.npmmirror.com/eslint-config-prettier/8.5.0_eslint@8.16.0
+ prettier: registry.npmmirror.com/prettier/2.6.2
+ prettier-linter-helpers: registry.npmmirror.com/prettier-linter-helpers/1.0.0
+ dev: true
+
+ registry.npmmirror.com/eslint-plugin-vue/9.1.0_eslint@8.16.0:
+ resolution:
+ {
+ integrity: sha512-EPCeInPicQ/YyfOWJDr1yfEeSNoFCMzUus107lZyYi37xejdOolNzS5MXGXp8+9bkoKZMdv/1AcZzQebME6r+g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/eslint-plugin-vue/-/eslint-plugin-vue-9.1.0.tgz,
+ }
+ id: registry.npmmirror.com/eslint-plugin-vue/9.1.0
+ name: eslint-plugin-vue
+ version: 9.1.0
+ engines: { node: ^14.17.0 || >=16.0.0 }
+ peerDependencies:
+ eslint: ^6.2.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ eslint: registry.npmmirror.com/eslint/8.16.0
+ eslint-utils: registry.npmmirror.com/eslint-utils/3.0.0_eslint@8.16.0
+ natural-compare: registry.npmmirror.com/natural-compare/1.4.0
+ nth-check: registry.npmmirror.com/nth-check/2.1.1
+ postcss-selector-parser: registry.npmmirror.com/postcss-selector-parser/6.0.10
+ semver: registry.npmmirror.com/semver/7.3.7
+ vue-eslint-parser: registry.npmmirror.com/vue-eslint-parser/9.0.2_eslint@8.16.0
+ xml-name-validator: registry.npmmirror.com/xml-name-validator/4.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ registry.npmmirror.com/eslint-scope/5.1.1:
+ resolution:
+ {
+ integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/eslint-scope/-/eslint-scope-5.1.1.tgz,
+ }
+ name: eslint-scope
+ version: 5.1.1
+ engines: { node: '>=8.0.0' }
+ dependencies:
+ esrecurse: registry.npmmirror.com/esrecurse/4.3.0
+ estraverse: registry.npmmirror.com/estraverse/4.3.0
+ dev: true
+
+ registry.npmmirror.com/eslint-scope/7.1.1:
+ resolution:
+ {
+ integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.1.1.tgz,
+ }
+ name: eslint-scope
+ version: 7.1.1
+ engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ dependencies:
+ esrecurse: registry.npmmirror.com/esrecurse/4.3.0
+ estraverse: registry.npmmirror.com/estraverse/5.3.0
+ dev: true
+
+ registry.npmmirror.com/eslint-utils/3.0.0_eslint@8.16.0:
+ resolution:
+ {
+ integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/eslint-utils/-/eslint-utils-3.0.0.tgz,
+ }
+ id: registry.npmmirror.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.16.0
+ eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/2.1.0
+ dev: true
+
+ registry.npmmirror.com/eslint-visitor-keys/2.1.0:
+ resolution:
+ {
+ integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz,
+ }
+ name: eslint-visitor-keys
+ version: 2.1.0
+ engines: { node: '>=10' }
+ dev: true
+
+ registry.npmmirror.com/eslint-visitor-keys/3.3.0:
+ resolution:
+ {
+ integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz,
+ }
+ name: eslint-visitor-keys
+ version: 3.3.0
+ engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ dev: true
+
+ registry.npmmirror.com/eslint/8.16.0:
+ resolution:
+ {
+ integrity: sha512-MBndsoXY/PeVTDJeWsYj7kLZ5hQpJOfMYLsF6LicLHQWbRDG19lK5jOix4DPl8yY4SUFcE3txy86OzFLWT+yoA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/eslint/-/eslint-8.16.0.tgz,
+ }
+ name: eslint
+ version: 8.16.0
+ engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ hasBin: true
+ dependencies:
+ '@eslint/eslintrc': registry.npmmirror.com/@eslint/eslintrc/1.3.0
+ '@humanwhocodes/config-array': registry.npmmirror.com/@humanwhocodes/config-array/0.9.5
+ ajv: registry.npmmirror.com/ajv/6.12.6
+ chalk: registry.npmmirror.com/chalk/4.1.2
+ cross-spawn: registry.npmmirror.com/cross-spawn/7.0.3
+ debug: registry.npmmirror.com/debug/4.3.4
+ doctrine: registry.npmmirror.com/doctrine/3.0.0
+ escape-string-regexp: registry.npmmirror.com/escape-string-regexp/4.0.0
+ eslint-scope: registry.npmmirror.com/eslint-scope/7.1.1
+ eslint-utils: registry.npmmirror.com/eslint-utils/3.0.0_eslint@8.16.0
+ eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/3.3.0
+ espree: registry.npmmirror.com/espree/9.3.2
+ esquery: registry.npmmirror.com/esquery/1.4.0
+ esutils: registry.npmmirror.com/esutils/2.0.3
+ fast-deep-equal: registry.npmmirror.com/fast-deep-equal/3.1.3
+ file-entry-cache: registry.npmmirror.com/file-entry-cache/6.0.1
+ functional-red-black-tree: registry.npmmirror.com/functional-red-black-tree/1.0.1
+ glob-parent: registry.npmmirror.com/glob-parent/6.0.2
+ globals: registry.npmmirror.com/globals/13.15.0
+ ignore: registry.npmmirror.com/ignore/5.2.0
+ import-fresh: registry.npmmirror.com/import-fresh/3.3.0
+ imurmurhash: registry.npmmirror.com/imurmurhash/0.1.4
+ is-glob: registry.npmmirror.com/is-glob/4.0.3
+ js-yaml: registry.npmmirror.com/js-yaml/4.1.0
+ json-stable-stringify-without-jsonify: registry.npmmirror.com/json-stable-stringify-without-jsonify/1.0.1
+ levn: registry.npmmirror.com/levn/0.4.1
+ lodash.merge: registry.npmmirror.com/lodash.merge/4.6.2
+ minimatch: registry.npmmirror.com/minimatch/3.1.2
+ natural-compare: registry.npmmirror.com/natural-compare/1.4.0
+ optionator: registry.npmmirror.com/optionator/0.9.1
+ regexpp: registry.npmmirror.com/regexpp/3.2.0
+ strip-ansi: registry.npmmirror.com/strip-ansi/6.0.1
+ strip-json-comments: registry.npmmirror.com/strip-json-comments/3.1.1
+ text-table: registry.npmmirror.com/text-table/0.2.0
+ v8-compile-cache: registry.npmmirror.com/v8-compile-cache/2.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ registry.npmmirror.com/espree/9.3.2:
+ resolution:
+ {
+ integrity: sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/espree/-/espree-9.3.2.tgz,
+ }
+ name: espree
+ version: 9.3.2
+ engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ dependencies:
+ acorn: registry.npmmirror.com/acorn/8.7.1
+ acorn-jsx: registry.npmmirror.com/acorn-jsx/5.3.2_acorn@8.7.1
+ eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/3.3.0
+ dev: true
+
+ registry.npmmirror.com/esquery/1.4.0:
+ resolution:
+ {
+ integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esquery/-/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.npmmirror.com/esrecurse/4.3.0:
+ resolution:
+ {
+ integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esrecurse/-/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.npmmirror.com/estraverse/4.3.0:
+ resolution:
+ {
+ integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/estraverse/-/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: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz,
+ }
+ name: estraverse
+ version: 5.3.0
+ engines: { node: '>=4.0' }
+ dev: true
registry.npmmirror.com/estree-walker/2.0.2:
- resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz}
+ resolution:
+ {
+ integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz,
+ }
name: estree-walker
version: 2.0.2
+ registry.npmmirror.com/esutils/2.0.3:
+ resolution:
+ {
+ integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz,
+ }
+ name: esutils
+ version: 2.0.3
+ engines: { node: '>=0.10.0' }
+ dev: true
+
registry.npmmirror.com/etag/1.8.1:
- resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/etag/-/etag-1.8.1.tgz}
+ resolution:
+ {
+ integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/etag/-/etag-1.8.1.tgz,
+ }
name: etag
version: 1.8.1
- engines: {node: '>= 0.6'}
+ engines: { node: '>= 0.6' }
dev: true
registry.npmmirror.com/execa/5.1.1:
- resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz}
+ resolution:
+ {
+ integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz,
+ }
name: execa
version: 5.1.1
- engines: {node: '>=10'}
+ engines: { node: '>=10' }
dependencies:
cross-spawn: registry.npmmirror.com/cross-spawn/7.0.3
get-stream: registry.npmmirror.com/get-stream/6.0.1
@@ -2105,10 +3856,15 @@ packages:
dev: true
registry.npmmirror.com/express/4.18.1:
- resolution: {integrity: sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/express/-/express-4.18.1.tgz}
+ resolution:
+ {
+ integrity: sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/express/-/express-4.18.1.tgz,
+ }
name: express
version: 4.18.1
- engines: {node: '>= 0.10.0'}
+ engines: { node: '>= 0.10.0' }
dependencies:
accepts: registry.npmmirror.com/accepts/1.3.8
array-flatten: registry.npmmirror.com/array-flatten/1.1.1
@@ -2145,11 +3901,38 @@ packages:
- supports-color
dev: true
+ registry.npmmirror.com/fast-deep-equal/3.1.3:
+ resolution:
+ {
+ integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz,
+ }
+ name: fast-deep-equal
+ version: 3.1.3
+ dev: true
+
+ registry.npmmirror.com/fast-diff/1.2.0:
+ resolution:
+ {
+ integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/fast-diff/-/fast-diff-1.2.0.tgz,
+ }
+ name: fast-diff
+ version: 1.2.0
+ dev: true
+
registry.npmmirror.com/fast-glob/3.2.11:
- resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fast-glob/-/fast-glob-3.2.11.tgz}
+ resolution:
+ {
+ integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/fast-glob/-/fast-glob-3.2.11.tgz,
+ }
name: fast-glob
version: 3.2.11
- engines: {node: '>=8.6.0'}
+ engines: { node: '>=8.6.0' }
dependencies:
'@nodelib/fs.stat': registry.npmmirror.com/@nodelib/fs.stat/2.0.5
'@nodelib/fs.walk': registry.npmmirror.com/@nodelib/fs.walk/1.2.8
@@ -2157,26 +3940,77 @@ packages:
merge2: registry.npmmirror.com/merge2/1.4.1
micromatch: registry.npmmirror.com/micromatch/4.0.5
+ registry.npmmirror.com/fast-json-stable-stringify/2.1.0:
+ resolution:
+ {
+ integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz,
+ }
+ name: fast-json-stable-stringify
+ version: 2.1.0
+ dev: true
+
+ registry.npmmirror.com/fast-levenshtein/2.0.6:
+ resolution:
+ {
+ integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz,
+ }
+ name: fast-levenshtein
+ version: 2.0.6
+ dev: true
+
registry.npmmirror.com/fastq/1.13.0:
- resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fastq/-/fastq-1.13.0.tgz}
+ resolution:
+ {
+ integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/fastq/-/fastq-1.13.0.tgz,
+ }
name: fastq
version: 1.13.0
dependencies:
reusify: registry.npmmirror.com/reusify/1.0.4
+ registry.npmmirror.com/file-entry-cache/6.0.1:
+ resolution:
+ {
+ integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz,
+ }
+ name: file-entry-cache
+ version: 6.0.1
+ engines: { node: ^10.12.0 || >=12.0.0 }
+ dependencies:
+ flat-cache: registry.npmmirror.com/flat-cache/3.0.4
+ dev: true
+
registry.npmmirror.com/fill-range/7.0.1:
- resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz}
+ resolution:
+ {
+ integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz,
+ }
name: fill-range
version: 7.0.1
- engines: {node: '>=8'}
+ engines: { node: '>=8' }
dependencies:
to-regex-range: registry.npmmirror.com/to-regex-range/5.0.1
registry.npmmirror.com/finalhandler/1.2.0:
- resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/finalhandler/-/finalhandler-1.2.0.tgz}
+ resolution:
+ {
+ integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/finalhandler/-/finalhandler-1.2.0.tgz,
+ }
name: finalhandler
version: 1.2.0
- engines: {node: '>= 0.8'}
+ engines: { node: '>= 0.8' }
dependencies:
debug: registry.npmmirror.com/debug/2.6.9
encodeurl: registry.npmmirror.com/encodeurl/1.0.2
@@ -2189,64 +4023,157 @@ packages:
- supports-color
dev: true
+ registry.npmmirror.com/flat-cache/3.0.4:
+ resolution:
+ {
+ integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/flat-cache/-/flat-cache-3.0.4.tgz,
+ }
+ name: flat-cache
+ version: 3.0.4
+ engines: { node: ^10.12.0 || >=12.0.0 }
+ dependencies:
+ flatted: registry.npmmirror.com/flatted/3.2.5
+ rimraf: registry.npmmirror.com/rimraf/3.0.2
+ dev: true
+
+ registry.npmmirror.com/flatted/3.2.5:
+ resolution:
+ {
+ integrity: sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/flatted/-/flatted-3.2.5.tgz,
+ }
+ name: flatted
+ version: 3.2.5
+ dev: true
+
registry.npmmirror.com/forwarded/0.2.0:
- resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/forwarded/-/forwarded-0.2.0.tgz}
+ resolution:
+ {
+ integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/forwarded/-/forwarded-0.2.0.tgz,
+ }
name: forwarded
version: 0.2.0
- engines: {node: '>= 0.6'}
+ engines: { node: '>= 0.6' }
dev: true
registry.npmmirror.com/fraction.js/4.2.0:
- resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fraction.js/-/fraction.js-4.2.0.tgz}
+ resolution:
+ {
+ integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/fraction.js/-/fraction.js-4.2.0.tgz,
+ }
name: fraction.js
version: 4.2.0
registry.npmmirror.com/fresh/0.5.2:
- resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fresh/-/fresh-0.5.2.tgz}
+ resolution:
+ {
+ integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/fresh/-/fresh-0.5.2.tgz,
+ }
name: fresh
version: 0.5.2
- engines: {node: '>= 0.6'}
+ engines: { node: '>= 0.6' }
dev: true
registry.npmmirror.com/fs-extra/10.1.0:
- resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz}
+ resolution:
+ {
+ integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz,
+ }
name: fs-extra
version: 10.1.0
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
dependencies:
graceful-fs: registry.npmmirror.com/graceful-fs/4.2.10
jsonfile: registry.npmmirror.com/jsonfile/6.1.0
universalify: registry.npmmirror.com/universalify/2.0.0
+ registry.npmmirror.com/fs.realpath/1.0.0:
+ resolution:
+ {
+ integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz,
+ }
+ name: fs.realpath
+ version: 1.0.0
+ dev: true
+
registry.npmmirror.com/fsevents/2.3.2:
- resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fsevents/-/fsevents-2.3.2.tgz}
+ resolution:
+ {
+ integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/fsevents/-/fsevents-2.3.2.tgz,
+ }
name: fsevents
version: 2.3.2
- engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
+ engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 }
os: [darwin]
requiresBuild: true
optional: true
registry.npmmirror.com/function-bind/1.1.1:
- resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz}
+ resolution:
+ {
+ integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz,
+ }
name: function-bind
version: 1.1.1
+ registry.npmmirror.com/functional-red-black-tree/1.0.1:
+ resolution:
+ {
+ integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz,
+ }
+ name: functional-red-black-tree
+ version: 1.0.1
+ dev: true
+
registry.npmmirror.com/generic-names/4.0.0:
- resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/generic-names/-/generic-names-4.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/generic-names/-/generic-names-4.0.0.tgz,
+ }
name: generic-names
version: 4.0.0
dependencies:
loader-utils: registry.npmmirror.com/loader-utils/3.2.0
registry.npmmirror.com/gensync/1.0.0-beta.2:
- resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz}
+ resolution:
+ {
+ integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz,
+ }
name: gensync
version: 1.0.0-beta.2
- engines: {node: '>=6.9.0'}
+ engines: { node: '>=6.9.0' }
registry.npmmirror.com/get-intrinsic/1.1.1:
- resolution: {integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz}
+ resolution:
+ {
+ integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz,
+ }
name: get-intrinsic
version: 1.1.1
dependencies:
@@ -2256,76 +4183,208 @@ packages:
dev: true
registry.npmmirror.com/get-port/6.1.2:
- resolution: {integrity: sha512-BrGGraKm2uPqurfGVj/z97/zv8dPleC6x9JBNRTrDNtCkkRF4rPwrQXFgL7+I+q8QSdU4ntLQX2D7KIxSy8nGw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/get-port/-/get-port-6.1.2.tgz}
+ resolution:
+ {
+ integrity: sha512-BrGGraKm2uPqurfGVj/z97/zv8dPleC6x9JBNRTrDNtCkkRF4rPwrQXFgL7+I+q8QSdU4ntLQX2D7KIxSy8nGw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/get-port/-/get-port-6.1.2.tgz,
+ }
name: get-port
version: 6.1.2
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
dev: true
registry.npmmirror.com/get-stream/6.0.1:
- resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/get-stream/-/get-stream-6.0.1.tgz}
+ resolution:
+ {
+ integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/get-stream/-/get-stream-6.0.1.tgz,
+ }
name: get-stream
version: 6.0.1
- engines: {node: '>=10'}
+ engines: { node: '>=10' }
dev: true
registry.npmmirror.com/glob-parent/5.1.2:
- resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz}
+ resolution:
+ {
+ integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz,
+ }
name: glob-parent
version: 5.1.2
- engines: {node: '>= 6'}
+ engines: { node: '>= 6' }
dependencies:
is-glob: registry.npmmirror.com/is-glob/4.0.3
+ registry.npmmirror.com/glob-parent/6.0.2:
+ resolution:
+ {
+ integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/glob-parent/-/glob-parent-6.0.2.tgz,
+ }
+ name: glob-parent
+ version: 6.0.2
+ engines: { node: '>=10.13.0' }
+ dependencies:
+ is-glob: registry.npmmirror.com/is-glob/4.0.3
+ dev: true
+
+ registry.npmmirror.com/glob/7.2.3:
+ resolution:
+ {
+ integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz,
+ }
+ name: glob
+ version: 7.2.3
+ dependencies:
+ fs.realpath: registry.npmmirror.com/fs.realpath/1.0.0
+ inflight: registry.npmmirror.com/inflight/1.0.6
+ inherits: registry.npmmirror.com/inherits/2.0.4
+ minimatch: registry.npmmirror.com/minimatch/3.1.2
+ once: registry.npmmirror.com/once/1.4.0
+ path-is-absolute: registry.npmmirror.com/path-is-absolute/1.0.1
+ dev: true
+
registry.npmmirror.com/globals/11.12.0:
- resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/globals/-/globals-11.12.0.tgz}
+ resolution:
+ {
+ integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/globals/-/globals-11.12.0.tgz,
+ }
name: globals
version: 11.12.0
- engines: {node: '>=4'}
+ engines: { node: '>=4' }
+
+ registry.npmmirror.com/globals/13.15.0:
+ resolution:
+ {
+ integrity: sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/globals/-/globals-13.15.0.tgz,
+ }
+ name: globals
+ version: 13.15.0
+ engines: { node: '>=8' }
+ dependencies:
+ type-fest: registry.npmmirror.com/type-fest/0.20.2
+ dev: true
+
+ registry.npmmirror.com/globby/11.1.0:
+ resolution:
+ {
+ integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/globby/-/globby-11.1.0.tgz,
+ }
+ name: globby
+ version: 11.1.0
+ engines: { node: '>=10' }
+ dependencies:
+ array-union: registry.npmmirror.com/array-union/2.1.0
+ dir-glob: registry.npmmirror.com/dir-glob/3.0.1
+ fast-glob: registry.npmmirror.com/fast-glob/3.2.11
+ ignore: registry.npmmirror.com/ignore/5.2.0
+ merge2: registry.npmmirror.com/merge2/1.4.1
+ slash: registry.npmmirror.com/slash/3.0.0
+ dev: true
registry.npmmirror.com/graceful-fs/4.2.10:
- resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.10.tgz}
+ resolution:
+ {
+ integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.10.tgz,
+ }
name: graceful-fs
version: 4.2.10
registry.npmmirror.com/has-flag/3.0.0:
- resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz,
+ }
name: has-flag
version: 3.0.0
- engines: {node: '>=4'}
+ engines: { node: '>=4' }
+
+ registry.npmmirror.com/has-flag/4.0.0:
+ resolution:
+ {
+ integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz,
+ }
+ name: has-flag
+ version: 4.0.0
+ engines: { node: '>=8' }
+ dev: true
registry.npmmirror.com/has-symbols/1.0.3:
- resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz}
+ resolution:
+ {
+ integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz,
+ }
name: has-symbols
version: 1.0.3
- engines: {node: '>= 0.4'}
+ engines: { node: '>= 0.4' }
dev: true
registry.npmmirror.com/has/1.0.3:
- resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has/-/has-1.0.3.tgz}
+ resolution:
+ {
+ integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/has/-/has-1.0.3.tgz,
+ }
name: has
version: 1.0.3
- engines: {node: '>= 0.4.0'}
+ engines: { node: '>= 0.4.0' }
dependencies:
function-bind: registry.npmmirror.com/function-bind/1.1.1
registry.npmmirror.com/hash-sum/2.0.0:
- resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/hash-sum/-/hash-sum-2.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/hash-sum/-/hash-sum-2.0.0.tgz,
+ }
name: hash-sum
version: 2.0.0
registry.npmmirror.com/html-tags/3.2.0:
- resolution: {integrity: sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/html-tags/-/html-tags-3.2.0.tgz}
+ resolution:
+ {
+ integrity: sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/html-tags/-/html-tags-3.2.0.tgz,
+ }
name: html-tags
version: 3.2.0
- engines: {node: '>=8'}
+ engines: { node: '>=8' }
dev: true
registry.npmmirror.com/http-errors/2.0.0:
- resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/http-errors/-/http-errors-2.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/http-errors/-/http-errors-2.0.0.tgz,
+ }
name: http-errors
version: 2.0.0
- engines: {node: '>= 0.8'}
+ engines: { node: '>= 0.8' }
dependencies:
depd: registry.npmmirror.com/depd/2.0.0
inherits: registry.npmmirror.com/inherits/2.0.4
@@ -2335,133 +4394,322 @@ packages:
dev: true
registry.npmmirror.com/human-signals/2.1.0:
- resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/human-signals/-/human-signals-2.1.0.tgz}
+ resolution:
+ {
+ integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/human-signals/-/human-signals-2.1.0.tgz,
+ }
name: human-signals
version: 2.1.0
- engines: {node: '>=10.17.0'}
+ engines: { node: '>=10.17.0' }
dev: true
registry.npmmirror.com/iconv-lite/0.4.24:
- resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz}
+ resolution:
+ {
+ integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz,
+ }
name: iconv-lite
version: 0.4.24
- engines: {node: '>=0.10.0'}
+ engines: { node: '>=0.10.0' }
dependencies:
safer-buffer: registry.npmmirror.com/safer-buffer/2.1.2
dev: true
registry.npmmirror.com/icss-replace-symbols/1.1.0:
- resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz}
+ resolution:
+ {
+ integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz,
+ }
name: icss-replace-symbols
version: 1.1.0
registry.npmmirror.com/icss-utils/5.1.0:
- resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/icss-utils/-/icss-utils-5.1.0.tgz}
+ resolution:
+ {
+ integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/icss-utils/-/icss-utils-5.1.0.tgz,
+ }
name: icss-utils
version: 5.1.0
- engines: {node: ^10 || ^12 || >= 14}
+ engines: { node: ^10 || ^12 || >= 14 }
peerDependencies:
postcss: ^8.1.0
+ registry.npmmirror.com/ignore/5.2.0:
+ resolution:
+ {
+ integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/ignore/-/ignore-5.2.0.tgz,
+ }
+ name: ignore
+ version: 5.2.0
+ engines: { node: '>= 4' }
+ dev: true
+
registry.npmmirror.com/immutable/4.1.0:
- resolution: {integrity: sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/immutable/-/immutable-4.1.0.tgz}
+ resolution:
+ {
+ integrity: sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/immutable/-/immutable-4.1.0.tgz,
+ }
name: immutable
version: 4.1.0
+ registry.npmmirror.com/import-fresh/3.3.0:
+ resolution:
+ {
+ integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/import-fresh/-/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.npmmirror.com/resolve-from/4.0.0
+ dev: true
+
+ registry.npmmirror.com/imurmurhash/0.1.4:
+ resolution:
+ {
+ integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz,
+ }
+ name: imurmurhash
+ version: 0.1.4
+ engines: { node: '>=0.8.19' }
+ dev: true
+
+ registry.npmmirror.com/inflight/1.0.6:
+ resolution:
+ {
+ integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz,
+ }
+ name: inflight
+ version: 1.0.6
+ dependencies:
+ once: registry.npmmirror.com/once/1.4.0
+ wrappy: registry.npmmirror.com/wrappy/1.0.2
+ dev: true
+
registry.npmmirror.com/inherits/2.0.4:
- resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz}
+ resolution:
+ {
+ integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz,
+ }
name: inherits
version: 2.0.4
dev: true
registry.npmmirror.com/ipaddr.js/1.9.1:
- resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz}
+ resolution:
+ {
+ integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz,
+ }
name: ipaddr.js
version: 1.9.1
- engines: {node: '>= 0.10'}
+ engines: { node: '>= 0.10' }
dev: true
registry.npmmirror.com/is-binary-path/2.1.0:
- resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz}
+ resolution:
+ {
+ integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz,
+ }
name: is-binary-path
version: 2.1.0
- engines: {node: '>=8'}
+ engines: { node: '>=8' }
dependencies:
binary-extensions: registry.npmmirror.com/binary-extensions/2.2.0
registry.npmmirror.com/is-core-module/2.9.0:
- resolution: {integrity: sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-core-module/-/is-core-module-2.9.0.tgz}
+ resolution:
+ {
+ integrity: sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/is-core-module/-/is-core-module-2.9.0.tgz,
+ }
name: is-core-module
version: 2.9.0
dependencies:
has: registry.npmmirror.com/has/1.0.3
registry.npmmirror.com/is-extglob/2.1.1:
- resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz}
+ resolution:
+ {
+ integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz,
+ }
name: is-extglob
version: 2.1.1
- engines: {node: '>=0.10.0'}
+ engines: { node: '>=0.10.0' }
registry.npmmirror.com/is-glob/4.0.3:
- resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz}
+ resolution:
+ {
+ integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz,
+ }
name: is-glob
version: 4.0.3
- engines: {node: '>=0.10.0'}
+ engines: { node: '>=0.10.0' }
dependencies:
is-extglob: registry.npmmirror.com/is-extglob/2.1.1
registry.npmmirror.com/is-number/7.0.0:
- resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz,
+ }
name: is-number
version: 7.0.0
- engines: {node: '>=0.12.0'}
+ engines: { node: '>=0.12.0' }
registry.npmmirror.com/is-stream/2.0.1:
- resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz}
+ resolution:
+ {
+ integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz,
+ }
name: is-stream
version: 2.0.1
- engines: {node: '>=8'}
+ engines: { node: '>=8' }
dev: true
registry.npmmirror.com/isexe/2.0.0:
- resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz,
+ }
name: isexe
version: 2.0.0
dev: true
registry.npmmirror.com/jiti/1.13.0:
- resolution: {integrity: sha512-/n9mNxZj/HDSrincJ6RP+L+yXbpnB8FybySBa+IjIaoH9FIxBbrbRT5XUbe8R7zuVM2AQqNMNDDqz0bzx3znOQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jiti/-/jiti-1.13.0.tgz}
+ resolution:
+ {
+ integrity: sha512-/n9mNxZj/HDSrincJ6RP+L+yXbpnB8FybySBa+IjIaoH9FIxBbrbRT5XUbe8R7zuVM2AQqNMNDDqz0bzx3znOQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/jiti/-/jiti-1.13.0.tgz,
+ }
name: jiti
version: 1.13.0
hasBin: true
dev: true
registry.npmmirror.com/js-tokens/4.0.0:
- resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz,
+ }
name: js-tokens
version: 4.0.0
+ registry.npmmirror.com/js-yaml/4.1.0:
+ resolution:
+ {
+ integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz,
+ }
+ name: js-yaml
+ version: 4.1.0
+ hasBin: true
+ dependencies:
+ argparse: registry.npmmirror.com/argparse/2.0.1
+ dev: true
+
registry.npmmirror.com/jsesc/2.5.2:
- resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsesc/-/jsesc-2.5.2.tgz}
+ resolution:
+ {
+ integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/jsesc/-/jsesc-2.5.2.tgz,
+ }
name: jsesc
version: 2.5.2
- engines: {node: '>=4'}
+ engines: { node: '>=4' }
hasBin: true
+ registry.npmmirror.com/json-schema-traverse/0.4.1:
+ resolution:
+ {
+ integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz,
+ }
+ name: json-schema-traverse
+ version: 0.4.1
+ dev: true
+
+ registry.npmmirror.com/json-stable-stringify-without-jsonify/1.0.1:
+ resolution:
+ {
+ integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz,
+ }
+ name: json-stable-stringify-without-jsonify
+ version: 1.0.1
+ dev: true
+
registry.npmmirror.com/json5/2.2.1:
- resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json5/-/json5-2.2.1.tgz}
+ resolution:
+ {
+ integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/json5/-/json5-2.2.1.tgz,
+ }
name: json5
version: 2.2.1
- engines: {node: '>=6'}
+ engines: { node: '>=6' }
hasBin: true
registry.npmmirror.com/jsonc-parser/3.0.0:
- resolution: {integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsonc-parser/-/jsonc-parser-3.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/jsonc-parser/-/jsonc-parser-3.0.0.tgz,
+ }
name: jsonc-parser
version: 3.0.0
registry.npmmirror.com/jsonfile/6.1.0:
- resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsonfile/-/jsonfile-6.1.0.tgz}
+ resolution:
+ {
+ integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/jsonfile/-/jsonfile-6.1.0.tgz,
+ }
name: jsonfile
version: 6.1.0
dependencies:
@@ -2470,28 +4718,63 @@ packages:
graceful-fs: registry.npmmirror.com/graceful-fs/4.2.10
registry.npmmirror.com/kolorist/1.5.1:
- resolution: {integrity: sha512-lxpCM3HTvquGxKGzHeknB/sUjuVoUElLlfYnXZT73K8geR9jQbroGlSCFBax9/0mpGoD3kzcMLnOlGQPJJNyqQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/kolorist/-/kolorist-1.5.1.tgz}
+ resolution:
+ {
+ integrity: sha512-lxpCM3HTvquGxKGzHeknB/sUjuVoUElLlfYnXZT73K8geR9jQbroGlSCFBax9/0mpGoD3kzcMLnOlGQPJJNyqQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/kolorist/-/kolorist-1.5.1.tgz,
+ }
name: kolorist
version: 1.5.1
dev: true
+ registry.npmmirror.com/levn/0.4.1:
+ resolution:
+ {
+ integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/levn/-/levn-0.4.1.tgz,
+ }
+ name: levn
+ version: 0.4.1
+ engines: { node: '>= 0.8.0' }
+ dependencies:
+ prelude-ls: registry.npmmirror.com/prelude-ls/1.2.1
+ type-check: registry.npmmirror.com/type-check/0.4.0
+ dev: true
+
registry.npmmirror.com/licia/1.36.0:
- resolution: {integrity: sha512-T1E+U8ObQmsVVTE4XN/OUUhwve8f9cDgKFFBOdJvuXIN1uZvKEQa0PP8Q+KSgSRCgUnp/gjvxGKskNt4K5pVkA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/licia/-/licia-1.36.0.tgz}
+ resolution:
+ {
+ integrity: sha512-T1E+U8ObQmsVVTE4XN/OUUhwve8f9cDgKFFBOdJvuXIN1uZvKEQa0PP8Q+KSgSRCgUnp/gjvxGKskNt4K5pVkA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/licia/-/licia-1.36.0.tgz,
+ }
name: licia
version: 1.36.0
dev: true
registry.npmmirror.com/lilconfig/2.0.5:
- resolution: {integrity: sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lilconfig/-/lilconfig-2.0.5.tgz}
+ resolution:
+ {
+ integrity: sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/lilconfig/-/lilconfig-2.0.5.tgz,
+ }
name: lilconfig
version: 2.0.5
- engines: {node: '>=10'}
+ engines: { node: '>=10' }
registry.npmmirror.com/loader-utils/2.0.2:
- resolution: {integrity: sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/loader-utils/-/loader-utils-2.0.2.tgz}
+ resolution:
+ {
+ integrity: sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/loader-utils/-/loader-utils-2.0.2.tgz,
+ }
name: loader-utils
version: 2.0.2
- engines: {node: '>=8.9.0'}
+ engines: { node: '>=8.9.0' }
dependencies:
big.js: registry.npmmirror.com/big.js/5.2.2
emojis-list: registry.npmmirror.com/emojis-list/3.0.0
@@ -2499,216 +4782,484 @@ packages:
dev: true
registry.npmmirror.com/loader-utils/3.2.0:
- resolution: {integrity: sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/loader-utils/-/loader-utils-3.2.0.tgz}
+ resolution:
+ {
+ integrity: sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/loader-utils/-/loader-utils-3.2.0.tgz,
+ }
name: loader-utils
version: 3.2.0
- engines: {node: '>= 12.13.0'}
+ engines: { node: '>= 12.13.0' }
registry.npmmirror.com/localstorage-polyfill/1.0.1:
- resolution: {integrity: sha512-m4iHVZxFH5734oQcPKU08025gIz2+4bjWR9lulP8ZYxEJR0BpA0w32oJmkzh8y3UI9ci7xCBehQDc3oA1X+VHw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/localstorage-polyfill/-/localstorage-polyfill-1.0.1.tgz}
+ resolution:
+ {
+ integrity: sha512-m4iHVZxFH5734oQcPKU08025gIz2+4bjWR9lulP8ZYxEJR0BpA0w32oJmkzh8y3UI9ci7xCBehQDc3oA1X+VHw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/localstorage-polyfill/-/localstorage-polyfill-1.0.1.tgz,
+ }
name: localstorage-polyfill
version: 1.0.1
- engines: {node: '>=6'}
+ engines: { node: '>=6' }
dev: false
registry.npmmirror.com/lodash.camelcase/4.3.0:
- resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz}
+ resolution:
+ {
+ integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz,
+ }
name: lodash.camelcase
version: 4.3.0
+ registry.npmmirror.com/lodash.merge/4.6.2:
+ resolution:
+ {
+ integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz,
+ }
+ name: lodash.merge
+ version: 4.6.2
+ dev: true
+
registry.npmmirror.com/lodash/4.17.21:
- resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz}
+ resolution:
+ {
+ integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz,
+ }
name: lodash
version: 4.17.21
dev: true
+ registry.npmmirror.com/lru-cache/6.0.0:
+ resolution:
+ {
+ integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz,
+ }
+ name: lru-cache
+ version: 6.0.0
+ engines: { node: '>=10' }
+ dependencies:
+ yallist: registry.npmmirror.com/yallist/4.0.0
+ dev: true
+
registry.npmmirror.com/magic-string/0.25.9:
- resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/magic-string/-/magic-string-0.25.9.tgz}
+ resolution:
+ {
+ integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/magic-string/-/magic-string-0.25.9.tgz,
+ }
name: magic-string
version: 0.25.9
dependencies:
sourcemap-codec: registry.npmmirror.com/sourcemap-codec/1.4.8
registry.npmmirror.com/magic-string/0.26.2:
- resolution: {integrity: sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/magic-string/-/magic-string-0.26.2.tgz}
+ resolution:
+ {
+ integrity: sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/magic-string/-/magic-string-0.26.2.tgz,
+ }
name: magic-string
version: 0.26.2
- engines: {node: '>=12'}
+ engines: { node: '>=12' }
dependencies:
sourcemap-codec: registry.npmmirror.com/sourcemap-codec/1.4.8
registry.npmmirror.com/media-typer/0.3.0:
- resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/media-typer/-/media-typer-0.3.0.tgz}
+ resolution:
+ {
+ integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/media-typer/-/media-typer-0.3.0.tgz,
+ }
name: media-typer
version: 0.3.0
- engines: {node: '>= 0.6'}
+ engines: { node: '>= 0.6' }
dev: true
registry.npmmirror.com/merge-descriptors/1.0.1:
- resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz}
+ resolution:
+ {
+ integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz,
+ }
name: merge-descriptors
version: 1.0.1
dev: true
registry.npmmirror.com/merge-stream/2.0.0:
- resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz,
+ }
name: merge-stream
version: 2.0.0
dev: true
registry.npmmirror.com/merge/2.1.1:
- resolution: {integrity: sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/merge/-/merge-2.1.1.tgz}
+ resolution:
+ {
+ integrity: sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/merge/-/merge-2.1.1.tgz,
+ }
name: merge
version: 2.1.1
registry.npmmirror.com/merge2/1.4.1:
- resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz}
+ resolution:
+ {
+ integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz,
+ }
name: merge2
version: 1.4.1
- engines: {node: '>= 8'}
+ engines: { node: '>= 8' }
registry.npmmirror.com/methods/1.1.2:
- resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/methods/-/methods-1.1.2.tgz}
+ resolution:
+ {
+ integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/methods/-/methods-1.1.2.tgz,
+ }
name: methods
version: 1.1.2
- engines: {node: '>= 0.6'}
+ engines: { node: '>= 0.6' }
dev: true
registry.npmmirror.com/micromatch/4.0.5:
- resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz}
+ resolution:
+ {
+ integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz,
+ }
name: micromatch
version: 4.0.5
- engines: {node: '>=8.6'}
+ engines: { node: '>=8.6' }
dependencies:
braces: registry.npmmirror.com/braces/3.0.2
picomatch: registry.npmmirror.com/picomatch/2.3.1
registry.npmmirror.com/mime-db/1.52.0:
- resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz}
+ resolution:
+ {
+ integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz,
+ }
name: mime-db
version: 1.52.0
- engines: {node: '>= 0.6'}
+ engines: { node: '>= 0.6' }
dev: true
registry.npmmirror.com/mime-types/2.1.35:
- resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz}
+ resolution:
+ {
+ integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz,
+ }
name: mime-types
version: 2.1.35
- engines: {node: '>= 0.6'}
+ engines: { node: '>= 0.6' }
dependencies:
mime-db: registry.npmmirror.com/mime-db/1.52.0
dev: true
registry.npmmirror.com/mime/1.6.0:
- resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mime/-/mime-1.6.0.tgz}
+ resolution:
+ {
+ integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/mime/-/mime-1.6.0.tgz,
+ }
name: mime
version: 1.6.0
- engines: {node: '>=4'}
+ engines: { node: '>=4' }
hasBin: true
dev: true
registry.npmmirror.com/mime/3.0.0:
- resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mime/-/mime-3.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/mime/-/mime-3.0.0.tgz,
+ }
name: mime
version: 3.0.0
- engines: {node: '>=10.0.0'}
+ engines: { node: '>=10.0.0' }
hasBin: true
registry.npmmirror.com/mimic-fn/2.1.0:
- resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz}
+ resolution:
+ {
+ integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz,
+ }
name: mimic-fn
version: 2.1.0
- engines: {node: '>=6'}
+ engines: { node: '>=6' }
+ dev: true
+
+ registry.npmmirror.com/minimatch/3.1.2:
+ resolution:
+ {
+ integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz,
+ }
+ name: minimatch
+ version: 3.1.2
+ dependencies:
+ brace-expansion: registry.npmmirror.com/brace-expansion/1.1.11
dev: true
registry.npmmirror.com/module-alias/2.2.2:
- resolution: {integrity: sha512-A/78XjoX2EmNvppVWEhM2oGk3x4lLxnkEA4jTbaK97QKSDjkIoOsKQlfylt/d3kKKi596Qy3NP5XrXJ6fZIC9Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/module-alias/-/module-alias-2.2.2.tgz}
+ resolution:
+ {
+ integrity: sha512-A/78XjoX2EmNvppVWEhM2oGk3x4lLxnkEA4jTbaK97QKSDjkIoOsKQlfylt/d3kKKi596Qy3NP5XrXJ6fZIC9Q==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/module-alias/-/module-alias-2.2.2.tgz,
+ }
name: module-alias
version: 2.2.2
registry.npmmirror.com/ms/2.0.0:
- resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz,
+ }
name: ms
version: 2.0.0
dev: true
registry.npmmirror.com/ms/2.1.2:
- resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz}
+ resolution:
+ {
+ integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz,
+ }
name: ms
version: 2.1.2
registry.npmmirror.com/ms/2.1.3:
- resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz}
+ resolution:
+ {
+ integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz,
+ }
name: ms
version: 2.1.3
dev: true
registry.npmmirror.com/nanoid/3.3.4:
- resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/nanoid/-/nanoid-3.3.4.tgz}
+ resolution:
+ {
+ integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/nanoid/-/nanoid-3.3.4.tgz,
+ }
name: nanoid
version: 3.3.4
- engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
+ engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
hasBin: true
+ registry.npmmirror.com/natural-compare/1.4.0:
+ resolution:
+ {
+ integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz,
+ }
+ name: natural-compare
+ version: 1.4.0
+ dev: true
+
registry.npmmirror.com/negotiator/0.6.3:
- resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/negotiator/-/negotiator-0.6.3.tgz}
+ resolution:
+ {
+ integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/negotiator/-/negotiator-0.6.3.tgz,
+ }
name: negotiator
version: 0.6.3
- engines: {node: '>= 0.6'}
+ engines: { node: '>= 0.6' }
dev: true
registry.npmmirror.com/node-releases/2.0.5:
- resolution: {integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-releases/-/node-releases-2.0.5.tgz}
+ resolution:
+ {
+ integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/node-releases/-/node-releases-2.0.5.tgz,
+ }
name: node-releases
version: 2.0.5
registry.npmmirror.com/normalize-path/3.0.0:
- resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz,
+ }
name: normalize-path
version: 3.0.0
- engines: {node: '>=0.10.0'}
+ engines: { node: '>=0.10.0' }
registry.npmmirror.com/normalize-range/0.1.2:
- resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/normalize-range/-/normalize-range-0.1.2.tgz}
+ resolution:
+ {
+ integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/normalize-range/-/normalize-range-0.1.2.tgz,
+ }
name: normalize-range
version: 0.1.2
- engines: {node: '>=0.10.0'}
+ engines: { node: '>=0.10.0' }
registry.npmmirror.com/npm-run-path/4.0.1:
- resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz}
+ resolution:
+ {
+ integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz,
+ }
name: npm-run-path
version: 4.0.1
- engines: {node: '>=8'}
+ engines: { node: '>=8' }
dependencies:
path-key: registry.npmmirror.com/path-key/3.1.1
dev: true
+ registry.npmmirror.com/nth-check/2.1.1:
+ resolution:
+ {
+ integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/nth-check/-/nth-check-2.1.1.tgz,
+ }
+ name: nth-check
+ version: 2.1.1
+ dependencies:
+ boolbase: registry.npmmirror.com/boolbase/1.0.0
+ dev: true
+
registry.npmmirror.com/object-inspect/1.12.2:
- resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.2.tgz}
+ resolution:
+ {
+ integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.2.tgz,
+ }
name: object-inspect
version: 1.12.2
dev: true
registry.npmmirror.com/on-finished/2.4.1:
- resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/on-finished/-/on-finished-2.4.1.tgz}
+ resolution:
+ {
+ integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/on-finished/-/on-finished-2.4.1.tgz,
+ }
name: on-finished
version: 2.4.1
- engines: {node: '>= 0.8'}
+ engines: { node: '>= 0.8' }
dependencies:
ee-first: registry.npmmirror.com/ee-first/1.1.1
dev: true
+ registry.npmmirror.com/once/1.4.0:
+ resolution:
+ {
+ integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/once/-/once-1.4.0.tgz,
+ }
+ name: once
+ version: 1.4.0
+ dependencies:
+ wrappy: registry.npmmirror.com/wrappy/1.0.2
+ dev: true
+
registry.npmmirror.com/onetime/5.1.2:
- resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz}
+ resolution:
+ {
+ integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz,
+ }
name: onetime
version: 5.1.2
- engines: {node: '>=6'}
+ engines: { node: '>=6' }
dependencies:
mimic-fn: registry.npmmirror.com/mimic-fn/2.1.0
dev: true
+ registry.npmmirror.com/optionator/0.9.1:
+ resolution:
+ {
+ integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/optionator/-/optionator-0.9.1.tgz,
+ }
+ name: optionator
+ version: 0.9.1
+ engines: { node: '>= 0.8.0' }
+ dependencies:
+ deep-is: registry.npmmirror.com/deep-is/0.1.4
+ fast-levenshtein: registry.npmmirror.com/fast-levenshtein/2.0.6
+ levn: registry.npmmirror.com/levn/0.4.1
+ prelude-ls: registry.npmmirror.com/prelude-ls/1.2.1
+ type-check: registry.npmmirror.com/type-check/0.4.0
+ word-wrap: registry.npmmirror.com/word-wrap/1.2.3
+ dev: true
+
+ registry.npmmirror.com/parent-module/1.0.1:
+ resolution:
+ {
+ integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz,
+ }
+ name: parent-module
+ version: 1.0.1
+ engines: { node: '>=6' }
+ dependencies:
+ callsites: registry.npmmirror.com/callsites/3.1.0
+ dev: true
+
registry.npmmirror.com/parse-css-font/4.0.0:
- resolution: {integrity: sha512-lnY7dTUfjRXsSo5G5C639L8RaBBaVSgL+5hacIFKsNHzeCJQ5SFSZv1DZmc7+wZv/22PFGOq2YbaEHLdaCS/mQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/parse-css-font/-/parse-css-font-4.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-lnY7dTUfjRXsSo5G5C639L8RaBBaVSgL+5hacIFKsNHzeCJQ5SFSZv1DZmc7+wZv/22PFGOq2YbaEHLdaCS/mQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/parse-css-font/-/parse-css-font-4.0.0.tgz,
+ }
name: parse-css-font
version: 4.0.0
dependencies:
@@ -2722,58 +5273,127 @@ packages:
dev: false
registry.npmmirror.com/parseurl/1.3.3:
- resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz}
+ resolution:
+ {
+ integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz,
+ }
name: parseurl
version: 1.3.3
- engines: {node: '>= 0.8'}
+ engines: { node: '>= 0.8' }
+ dev: true
+
+ registry.npmmirror.com/path-is-absolute/1.0.1:
+ resolution:
+ {
+ integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz,
+ }
+ name: path-is-absolute
+ version: 1.0.1
+ engines: { node: '>=0.10.0' }
dev: true
registry.npmmirror.com/path-key/3.1.1:
- resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz}
+ resolution:
+ {
+ integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz,
+ }
name: path-key
version: 3.1.1
- engines: {node: '>=8'}
+ engines: { node: '>=8' }
dev: true
registry.npmmirror.com/path-parse/1.0.7:
- resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz}
+ resolution:
+ {
+ integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz,
+ }
name: path-parse
version: 1.0.7
registry.npmmirror.com/path-to-regexp/0.1.7:
- resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz}
+ resolution:
+ {
+ integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz,
+ }
name: path-to-regexp
version: 0.1.7
dev: true
+ registry.npmmirror.com/path-type/4.0.0:
+ resolution:
+ {
+ integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz,
+ }
+ name: path-type
+ version: 4.0.0
+ engines: { node: '>=8' }
+ dev: true
+
registry.npmmirror.com/pathe/0.2.0:
- resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pathe/-/pathe-0.2.0.tgz}
+ resolution:
+ {
+ integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/pathe/-/pathe-0.2.0.tgz,
+ }
name: pathe
version: 0.2.0
dev: true
registry.npmmirror.com/picocolors/1.0.0:
- resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz,
+ }
name: picocolors
version: 1.0.0
registry.npmmirror.com/picomatch/2.3.1:
- resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz}
+ resolution:
+ {
+ integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz,
+ }
name: picomatch
version: 2.3.1
- engines: {node: '>=8.6'}
+ engines: { node: '>=8.6' }
registry.npmmirror.com/pify/2.3.0:
- resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pify/-/pify-2.3.0.tgz}
+ resolution:
+ {
+ integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/pify/-/pify-2.3.0.tgz,
+ }
name: pify
version: 2.3.0
- engines: {node: '>=0.10.0'}
+ engines: { node: '>=0.10.0' }
registry.npmmirror.com/postcss-import/14.1.0:
- resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-import/-/postcss-import-14.1.0.tgz}
+ resolution:
+ {
+ integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/postcss-import/-/postcss-import-14.1.0.tgz,
+ }
name: postcss-import
version: 14.1.0
- engines: {node: '>=10.0.0'}
+ engines: { node: '>=10.0.0' }
peerDependencies:
postcss: ^8.0.0
dependencies:
@@ -2782,10 +5402,15 @@ packages:
resolve: registry.npmmirror.com/resolve/1.22.0
registry.npmmirror.com/postcss-load-config/3.1.4:
- resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz}
+ resolution:
+ {
+ integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz,
+ }
name: postcss-load-config
version: 3.1.4
- engines: {node: '>= 10'}
+ engines: { node: '>= 10' }
peerDependencies:
postcss: '>=8.0.9'
ts-node: '>=9.0.0'
@@ -2799,18 +5424,28 @@ packages:
yaml: registry.npmmirror.com/yaml/1.10.2
registry.npmmirror.com/postcss-modules-extract-imports/3.0.0:
- resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz,
+ }
name: postcss-modules-extract-imports
version: 3.0.0
- engines: {node: ^10 || ^12 || >= 14}
+ engines: { node: ^10 || ^12 || >= 14 }
peerDependencies:
postcss: ^8.1.0
registry.npmmirror.com/postcss-modules-local-by-default/4.0.0:
- resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz,
+ }
name: postcss-modules-local-by-default
version: 4.0.0
- engines: {node: ^10 || ^12 || >= 14}
+ engines: { node: ^10 || ^12 || >= 14 }
peerDependencies:
postcss: ^8.1.0
dependencies:
@@ -2819,27 +5454,42 @@ packages:
postcss-value-parser: registry.npmmirror.com/postcss-value-parser/4.2.0
registry.npmmirror.com/postcss-modules-scope/3.0.0:
- resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz,
+ }
name: postcss-modules-scope
version: 3.0.0
- engines: {node: ^10 || ^12 || >= 14}
+ engines: { node: ^10 || ^12 || >= 14 }
peerDependencies:
postcss: ^8.1.0
dependencies:
postcss-selector-parser: registry.npmmirror.com/postcss-selector-parser/6.0.10
registry.npmmirror.com/postcss-modules-values/4.0.0:
- resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz,
+ }
name: postcss-modules-values
version: 4.0.0
- engines: {node: ^10 || ^12 || >= 14}
+ engines: { node: ^10 || ^12 || >= 14 }
peerDependencies:
postcss: ^8.1.0
dependencies:
icss-utils: registry.npmmirror.com/icss-utils/5.1.0
registry.npmmirror.com/postcss-modules/4.3.1:
- resolution: {integrity: sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-modules/-/postcss-modules-4.3.1.tgz}
+ resolution:
+ {
+ integrity: sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/postcss-modules/-/postcss-modules-4.3.1.tgz,
+ }
name: postcss-modules
version: 4.3.1
peerDependencies:
@@ -2855,78 +5505,179 @@ packages:
string-hash: registry.npmmirror.com/string-hash/1.1.3
registry.npmmirror.com/postcss-selector-parser/6.0.10:
- resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz}
+ resolution:
+ {
+ integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz,
+ }
name: postcss-selector-parser
version: 6.0.10
- engines: {node: '>=4'}
+ engines: { node: '>=4' }
dependencies:
cssesc: registry.npmmirror.com/cssesc/3.0.0
util-deprecate: registry.npmmirror.com/util-deprecate/1.0.2
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/-/postcss-value-parser-4.2.0.tgz}
+ resolution:
+ {
+ integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz,
+ }
name: postcss-value-parser
version: 4.2.0
registry.npmmirror.com/postcss/8.4.14:
- resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss/-/postcss-8.4.14.tgz}
+ resolution:
+ {
+ integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/postcss/-/postcss-8.4.14.tgz,
+ }
name: postcss
version: 8.4.14
- engines: {node: ^10 || ^12 || >=14}
+ engines: { node: ^10 || ^12 || >=14 }
dependencies:
nanoid: registry.npmmirror.com/nanoid/3.3.4
picocolors: registry.npmmirror.com/picocolors/1.0.0
source-map-js: registry.npmmirror.com/source-map-js/1.0.2
+ registry.npmmirror.com/prelude-ls/1.2.1:
+ resolution:
+ {
+ integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz,
+ }
+ name: prelude-ls
+ version: 1.2.1
+ engines: { node: '>= 0.8.0' }
+ dev: true
+
+ registry.npmmirror.com/prettier-linter-helpers/1.0.0:
+ resolution:
+ {
+ integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz,
+ }
+ name: prettier-linter-helpers
+ version: 1.0.0
+ engines: { node: '>=6.0.0' }
+ dependencies:
+ fast-diff: registry.npmmirror.com/fast-diff/1.2.0
+ dev: true
+
+ registry.npmmirror.com/prettier/2.6.2:
+ resolution:
+ {
+ integrity: sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/prettier/-/prettier-2.6.2.tgz,
+ }
+ name: prettier
+ version: 2.6.2
+ engines: { node: '>=10.13.0' }
+ hasBin: true
+ dev: true
+
registry.npmmirror.com/proxy-addr/2.0.7:
- resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/proxy-addr/-/proxy-addr-2.0.7.tgz}
+ resolution:
+ {
+ integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/proxy-addr/-/proxy-addr-2.0.7.tgz,
+ }
name: proxy-addr
version: 2.0.7
- engines: {node: '>= 0.10'}
+ engines: { node: '>= 0.10' }
dependencies:
forwarded: registry.npmmirror.com/forwarded/0.2.0
ipaddr.js: registry.npmmirror.com/ipaddr.js/1.9.1
dev: true
+ registry.npmmirror.com/punycode/2.1.1:
+ resolution:
+ {
+ integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/punycode/-/punycode-2.1.1.tgz,
+ }
+ name: punycode
+ version: 2.1.1
+ engines: { node: '>=6' }
+ dev: true
+
registry.npmmirror.com/qrcode-reader/1.0.4:
- resolution: {integrity: sha512-rRjALGNh9zVqvweg1j5OKIQKNsw3bLC+7qwlnead5K/9cb1cEIAGkwikt/09U0K+2IDWGD9CC6SP7tHAjUeqvQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/qrcode-reader/-/qrcode-reader-1.0.4.tgz}
+ resolution:
+ {
+ integrity: sha512-rRjALGNh9zVqvweg1j5OKIQKNsw3bLC+7qwlnead5K/9cb1cEIAGkwikt/09U0K+2IDWGD9CC6SP7tHAjUeqvQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/qrcode-reader/-/qrcode-reader-1.0.4.tgz,
+ }
name: qrcode-reader
version: 1.0.4
dev: true
registry.npmmirror.com/qrcode-terminal/0.12.0:
- resolution: {integrity: sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz}
+ resolution:
+ {
+ integrity: sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz,
+ }
name: qrcode-terminal
version: 0.12.0
hasBin: true
dev: true
registry.npmmirror.com/qs/6.10.3:
- resolution: {integrity: sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/qs/-/qs-6.10.3.tgz}
+ resolution:
+ {
+ integrity: sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/qs/-/qs-6.10.3.tgz,
+ }
name: qs
version: 6.10.3
- engines: {node: '>=0.6'}
+ engines: { node: '>=0.6' }
dependencies:
side-channel: registry.npmmirror.com/side-channel/1.0.4
dev: true
registry.npmmirror.com/queue-microtask/1.2.3:
- resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz}
+ resolution:
+ {
+ integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz,
+ }
name: queue-microtask
version: 1.2.3
registry.npmmirror.com/range-parser/1.2.1:
- resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/range-parser/-/range-parser-1.2.1.tgz}
+ resolution:
+ {
+ integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/range-parser/-/range-parser-1.2.1.tgz,
+ }
name: range-parser
version: 1.2.1
- engines: {node: '>= 0.6'}
+ engines: { node: '>= 0.6' }
dev: true
registry.npmmirror.com/raw-body/2.5.1:
- resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/raw-body/-/raw-body-2.5.1.tgz}
+ resolution:
+ {
+ integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/raw-body/-/raw-body-2.5.1.tgz,
+ }
name: raw-body
version: 2.5.1
- engines: {node: '>= 0.8'}
+ engines: { node: '>= 0.8' }
dependencies:
bytes: registry.npmmirror.com/bytes/3.1.2
http-errors: registry.npmmirror.com/http-errors/2.0.0
@@ -2935,28 +5686,72 @@ packages:
dev: true
registry.npmmirror.com/read-cache/1.0.0:
- resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/read-cache/-/read-cache-1.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/read-cache/-/read-cache-1.0.0.tgz,
+ }
name: read-cache
version: 1.0.0
dependencies:
pify: registry.npmmirror.com/pify/2.3.0
registry.npmmirror.com/readdirp/3.6.0:
- resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz}
+ resolution:
+ {
+ integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz,
+ }
name: readdirp
version: 3.6.0
- engines: {node: '>=8.10.0'}
+ engines: { node: '>=8.10.0' }
dependencies:
picomatch: registry.npmmirror.com/picomatch/2.3.1
registry.npmmirror.com/regenerator-runtime/0.13.9:
- resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz}
+ resolution:
+ {
+ integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz,
+ }
name: regenerator-runtime
version: 0.13.9
dev: true
+ registry.npmmirror.com/regexpp/3.2.0:
+ resolution:
+ {
+ integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/regexpp/-/regexpp-3.2.0.tgz,
+ }
+ name: regexpp
+ version: 3.2.0
+ engines: { node: '>=8' }
+ dev: true
+
+ registry.npmmirror.com/resolve-from/4.0.0:
+ resolution:
+ {
+ integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz,
+ }
+ name: resolve-from
+ version: 4.0.0
+ engines: { node: '>=4' }
+ dev: true
+
registry.npmmirror.com/resolve/1.22.0:
- resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/resolve/-/resolve-1.22.0.tgz}
+ resolution:
+ {
+ integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/resolve/-/resolve-1.22.0.tgz,
+ }
name: resolve
version: 1.22.0
hasBin: true
@@ -2966,55 +5761,109 @@ packages:
supports-preserve-symlinks-flag: registry.npmmirror.com/supports-preserve-symlinks-flag/1.0.0
registry.npmmirror.com/reusify/1.0.4:
- resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz}
+ resolution:
+ {
+ integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz,
+ }
name: reusify
version: 1.0.4
- engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
+ engines: { iojs: '>=1.0.0', node: '>=0.10.0' }
+
+ registry.npmmirror.com/rimraf/3.0.2:
+ resolution:
+ {
+ integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz,
+ }
+ name: rimraf
+ version: 3.0.2
+ hasBin: true
+ dependencies:
+ glob: registry.npmmirror.com/glob/7.2.3
+ dev: true
registry.npmmirror.com/rollup/2.75.5:
- resolution: {integrity: sha512-JzNlJZDison3o2mOxVmb44Oz7t74EfSd1SQrplQk0wSaXV7uLQXtVdHbxlcT3w+8tZ1TL4r/eLfc7nAbz38BBA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rollup/-/rollup-2.75.5.tgz}
+ resolution:
+ {
+ integrity: sha512-JzNlJZDison3o2mOxVmb44Oz7t74EfSd1SQrplQk0wSaXV7uLQXtVdHbxlcT3w+8tZ1TL4r/eLfc7nAbz38BBA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/rollup/-/rollup-2.75.5.tgz,
+ }
name: rollup
version: 2.75.5
- engines: {node: '>=10.0.0'}
+ engines: { node: '>=10.0.0' }
hasBin: true
optionalDependencies:
fsevents: registry.npmmirror.com/fsevents/2.3.2
registry.npmmirror.com/run-parallel/1.2.0:
- resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz}
+ resolution:
+ {
+ integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz,
+ }
name: run-parallel
version: 1.2.0
dependencies:
queue-microtask: registry.npmmirror.com/queue-microtask/1.2.3
registry.npmmirror.com/safe-area-insets/1.4.1:
- resolution: {integrity: sha512-r/nRWTjFGhhm3w1Z6Kd/jY11srN+lHt2mNl1E/emQGW8ic7n3Avu4noibklfSM+Y34peNphHD/BSZecav0sXYQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/safe-area-insets/-/safe-area-insets-1.4.1.tgz}
+ resolution:
+ {
+ integrity: sha512-r/nRWTjFGhhm3w1Z6Kd/jY11srN+lHt2mNl1E/emQGW8ic7n3Avu4noibklfSM+Y34peNphHD/BSZecav0sXYQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/safe-area-insets/-/safe-area-insets-1.4.1.tgz,
+ }
name: safe-area-insets
version: 1.4.1
dev: false
registry.npmmirror.com/safe-buffer/5.1.2:
- resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz}
+ resolution:
+ {
+ integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz,
+ }
name: safe-buffer
version: 5.1.2
registry.npmmirror.com/safe-buffer/5.2.1:
- resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz}
+ resolution:
+ {
+ integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz,
+ }
name: safe-buffer
version: 5.2.1
dev: true
registry.npmmirror.com/safer-buffer/2.1.2:
- resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz}
+ resolution:
+ {
+ integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz,
+ }
name: safer-buffer
version: 2.1.2
dev: true
registry.npmmirror.com/sass/1.52.1:
- resolution: {integrity: sha512-fSzYTbr7z8oQnVJ3Acp9hV80dM1fkMN7mSD/25mpcct9F7FPBMOI8krEYALgU1aZoqGhQNhTPsuSmxjnIvAm4Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sass/-/sass-1.52.1.tgz}
+ resolution:
+ {
+ integrity: sha512-fSzYTbr7z8oQnVJ3Acp9hV80dM1fkMN7mSD/25mpcct9F7FPBMOI8krEYALgU1aZoqGhQNhTPsuSmxjnIvAm4Q==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/sass/-/sass-1.52.1.tgz,
+ }
name: sass
version: 1.52.1
- engines: {node: '>=12.0.0'}
+ engines: { node: '>=12.0.0' }
hasBin: true
dependencies:
chokidar: registry.npmmirror.com/chokidar/3.5.3
@@ -3022,16 +5871,41 @@ packages:
source-map-js: registry.npmmirror.com/source-map-js/1.0.2
registry.npmmirror.com/semver/6.3.0:
- resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/semver/-/semver-6.3.0.tgz}
+ resolution:
+ {
+ integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/semver/-/semver-6.3.0.tgz,
+ }
name: semver
version: 6.3.0
hasBin: true
+ registry.npmmirror.com/semver/7.3.7:
+ resolution:
+ {
+ integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/semver/-/semver-7.3.7.tgz,
+ }
+ name: semver
+ version: 7.3.7
+ engines: { node: '>=10' }
+ hasBin: true
+ dependencies:
+ lru-cache: registry.npmmirror.com/lru-cache/6.0.0
+ dev: true
+
registry.npmmirror.com/send/0.18.0:
- resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/send/-/send-0.18.0.tgz}
+ resolution:
+ {
+ integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/send/-/send-0.18.0.tgz,
+ }
name: send
version: 0.18.0
- engines: {node: '>= 0.8.0'}
+ engines: { node: '>= 0.8.0' }
dependencies:
debug: registry.npmmirror.com/debug/2.6.9
depd: registry.npmmirror.com/depd/2.0.0
@@ -3051,10 +5925,15 @@ packages:
dev: true
registry.npmmirror.com/serve-static/1.15.0:
- resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/serve-static/-/serve-static-1.15.0.tgz}
+ resolution:
+ {
+ integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/serve-static/-/serve-static-1.15.0.tgz,
+ }
name: serve-static
version: 1.15.0
- engines: {node: '>= 0.8.0'}
+ engines: { node: '>= 0.8.0' }
dependencies:
encodeurl: registry.npmmirror.com/encodeurl/1.0.2
escape-html: registry.npmmirror.com/escape-html/1.0.3
@@ -3065,29 +5944,49 @@ packages:
dev: true
registry.npmmirror.com/setprototypeof/1.2.0:
- resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/setprototypeof/-/setprototypeof-1.2.0.tgz}
+ resolution:
+ {
+ integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/setprototypeof/-/setprototypeof-1.2.0.tgz,
+ }
name: setprototypeof
version: 1.2.0
dev: true
registry.npmmirror.com/shebang-command/2.0.0:
- resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz,
+ }
name: shebang-command
version: 2.0.0
- engines: {node: '>=8'}
+ engines: { node: '>=8' }
dependencies:
shebang-regex: registry.npmmirror.com/shebang-regex/3.0.0
dev: true
registry.npmmirror.com/shebang-regex/3.0.0:
- resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz,
+ }
name: shebang-regex
version: 3.0.0
- engines: {node: '>=8'}
+ engines: { node: '>=8' }
dev: true
registry.npmmirror.com/side-channel/1.0.4:
- resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz}
+ resolution:
+ {
+ integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz,
+ }
name: side-channel
version: 1.0.4
dependencies:
@@ -3097,164 +5996,452 @@ packages:
dev: true
registry.npmmirror.com/signal-exit/3.0.7:
- resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz}
+ resolution:
+ {
+ integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz,
+ }
name: signal-exit
version: 3.0.7
dev: true
+ registry.npmmirror.com/slash/3.0.0:
+ resolution:
+ {
+ integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz,
+ }
+ name: slash
+ version: 3.0.0
+ engines: { node: '>=8' }
+ dev: true
+
registry.npmmirror.com/source-list-map/2.0.1:
- resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-list-map/-/source-list-map-2.0.1.tgz}
+ resolution:
+ {
+ integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/source-list-map/-/source-list-map-2.0.1.tgz,
+ }
name: source-list-map
version: 2.0.1
dev: true
registry.npmmirror.com/source-map-js/1.0.2:
- resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz}
+ resolution:
+ {
+ integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz,
+ }
name: source-map-js
version: 1.0.2
- engines: {node: '>=0.10.0'}
+ engines: { node: '>=0.10.0' }
registry.npmmirror.com/source-map/0.6.1:
- resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz}
+ resolution:
+ {
+ integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz,
+ }
name: source-map
version: 0.6.1
- engines: {node: '>=0.10.0'}
+ engines: { node: '>=0.10.0' }
registry.npmmirror.com/sourcemap-codec/1.4.8:
- resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz}
+ resolution:
+ {
+ integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz,
+ }
name: sourcemap-codec
version: 1.4.8
registry.npmmirror.com/statuses/2.0.1:
- resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/statuses/-/statuses-2.0.1.tgz}
+ resolution:
+ {
+ integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/statuses/-/statuses-2.0.1.tgz,
+ }
name: statuses
version: 2.0.1
- engines: {node: '>= 0.8'}
+ engines: { node: '>= 0.8' }
dev: true
registry.npmmirror.com/string-hash/1.1.3:
- resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string-hash/-/string-hash-1.1.3.tgz}
+ resolution:
+ {
+ integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/string-hash/-/string-hash-1.1.3.tgz,
+ }
name: string-hash
version: 1.1.3
+ registry.npmmirror.com/strip-ansi/6.0.1:
+ resolution:
+ {
+ integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz,
+ }
+ name: strip-ansi
+ version: 6.0.1
+ engines: { node: '>=8' }
+ dependencies:
+ ansi-regex: registry.npmmirror.com/ansi-regex/5.0.1
+ dev: true
+
registry.npmmirror.com/strip-final-newline/2.0.0:
- resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz,
+ }
name: strip-final-newline
version: 2.0.0
- engines: {node: '>=6'}
+ engines: { node: '>=6' }
+ dev: true
+
+ registry.npmmirror.com/strip-json-comments/3.1.1:
+ resolution:
+ {
+ integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz,
+ }
+ name: strip-json-comments
+ version: 3.1.1
+ engines: { node: '>=8' }
dev: true
registry.npmmirror.com/supports-color/5.5.0:
- resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz}
+ resolution:
+ {
+ integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz,
+ }
name: supports-color
version: 5.5.0
- engines: {node: '>=4'}
+ engines: { node: '>=4' }
dependencies:
has-flag: registry.npmmirror.com/has-flag/3.0.0
+ registry.npmmirror.com/supports-color/7.2.0:
+ resolution:
+ {
+ integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz,
+ }
+ name: supports-color
+ version: 7.2.0
+ engines: { node: '>=8' }
+ dependencies:
+ has-flag: registry.npmmirror.com/has-flag/4.0.0
+ dev: true
+
registry.npmmirror.com/supports-preserve-symlinks-flag/1.0.0:
- resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz,
+ }
name: supports-preserve-symlinks-flag
version: 1.0.0
- engines: {node: '>= 0.4'}
+ engines: { node: '>= 0.4' }
registry.npmmirror.com/svg-tags/1.0.0:
- resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/svg-tags/-/svg-tags-1.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/svg-tags/-/svg-tags-1.0.0.tgz,
+ }
name: svg-tags
version: 1.0.0
dev: true
registry.npmmirror.com/systemjs/6.12.1:
- resolution: {integrity: sha512-hqTN6kW+pN6/qro6G9OZ7ceDQOcYno020zBQKpZQLsJhYTDMCMNfXi/Y8duF5iW+4WWZr42ry0MMkcRGpbwG2A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/systemjs/-/systemjs-6.12.1.tgz}
+ resolution:
+ {
+ integrity: sha512-hqTN6kW+pN6/qro6G9OZ7ceDQOcYno020zBQKpZQLsJhYTDMCMNfXi/Y8duF5iW+4WWZr42ry0MMkcRGpbwG2A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/systemjs/-/systemjs-6.12.1.tgz,
+ }
name: systemjs
version: 6.12.1
dev: true
registry.npmmirror.com/tapable/2.2.1:
- resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tapable/-/tapable-2.2.1.tgz}
+ resolution:
+ {
+ integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/tapable/-/tapable-2.2.1.tgz,
+ }
name: tapable
version: 2.2.1
- engines: {node: '>=6'}
+ engines: { node: '>=6' }
+
+ registry.npmmirror.com/text-table/0.2.0:
+ resolution:
+ {
+ integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/text-table/-/text-table-0.2.0.tgz,
+ }
+ name: text-table
+ version: 0.2.0
+ dev: true
registry.npmmirror.com/to-fast-properties/2.0.0:
- resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz,
+ }
name: to-fast-properties
version: 2.0.0
- engines: {node: '>=4'}
+ engines: { node: '>=4' }
registry.npmmirror.com/to-regex-range/5.0.1:
- resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz}
+ resolution:
+ {
+ integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz,
+ }
name: to-regex-range
version: 5.0.1
- engines: {node: '>=8.0'}
+ engines: { node: '>=8.0' }
dependencies:
is-number: registry.npmmirror.com/is-number/7.0.0
registry.npmmirror.com/toidentifier/1.0.1:
- resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/toidentifier/-/toidentifier-1.0.1.tgz}
+ resolution:
+ {
+ integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/toidentifier/-/toidentifier-1.0.1.tgz,
+ }
name: toidentifier
version: 1.0.1
- engines: {node: '>=0.6'}
+ engines: { node: '>=0.6' }
+ dev: true
+
+ registry.npmmirror.com/tslib/1.14.1:
+ resolution:
+ {
+ integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/tslib/-/tslib-1.14.1.tgz,
+ }
+ name: tslib
+ version: 1.14.1
+ dev: true
+
+ registry.npmmirror.com/tsutils/3.21.0_typescript@4.7.2:
+ resolution:
+ {
+ integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/tsutils/-/tsutils-3.21.0.tgz,
+ }
+ id: registry.npmmirror.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.npmmirror.com/tslib/1.14.1
+ typescript: registry.npmmirror.com/typescript/4.7.2
+ dev: true
+
+ registry.npmmirror.com/type-check/0.4.0:
+ resolution:
+ {
+ integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/type-check/-/type-check-0.4.0.tgz,
+ }
+ name: type-check
+ version: 0.4.0
+ engines: { node: '>= 0.8.0' }
+ dependencies:
+ prelude-ls: registry.npmmirror.com/prelude-ls/1.2.1
+ dev: true
+
+ registry.npmmirror.com/type-fest/0.20.2:
+ resolution:
+ {
+ integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/type-fest/-/type-fest-0.20.2.tgz,
+ }
+ name: type-fest
+ version: 0.20.2
+ engines: { node: '>=10' }
dev: true
registry.npmmirror.com/type-is/1.6.18:
- resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/type-is/-/type-is-1.6.18.tgz}
+ resolution:
+ {
+ integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/type-is/-/type-is-1.6.18.tgz,
+ }
name: type-is
version: 1.6.18
- engines: {node: '>= 0.6'}
+ engines: { node: '>= 0.6' }
dependencies:
media-typer: registry.npmmirror.com/media-typer/0.3.0
mime-types: registry.npmmirror.com/mime-types/2.1.35
dev: true
registry.npmmirror.com/typescript/4.7.2:
- resolution: {integrity: sha512-Mamb1iX2FDUpcTRzltPxgWMKy3fhg0TN378ylbktPGPK/99KbDtMQ4W1hwgsbPAsG3a0xKa1vmw4VKZQbkvz5A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/typescript/-/typescript-4.7.2.tgz}
+ resolution:
+ {
+ integrity: sha512-Mamb1iX2FDUpcTRzltPxgWMKy3fhg0TN378ylbktPGPK/99KbDtMQ4W1hwgsbPAsG3a0xKa1vmw4VKZQbkvz5A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/typescript/-/typescript-4.7.2.tgz,
+ }
name: typescript
version: 4.7.2
- engines: {node: '>=4.2.0'}
+ engines: { node: '>=4.2.0' }
hasBin: true
dev: true
registry.npmmirror.com/universalify/2.0.0:
- resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/universalify/-/universalify-2.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/universalify/-/universalify-2.0.0.tgz,
+ }
name: universalify
version: 2.0.0
- engines: {node: '>= 10.0.0'}
+ engines: { node: '>= 10.0.0' }
registry.npmmirror.com/unpipe/1.0.0:
- resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unpipe/-/unpipe-1.0.0.tgz}
+ resolution:
+ {
+ integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/unpipe/-/unpipe-1.0.0.tgz,
+ }
name: unpipe
version: 1.0.0
- engines: {node: '>= 0.8'}
+ engines: { node: '>= 0.8' }
dev: true
registry.npmmirror.com/unquote/1.1.1:
- resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unquote/-/unquote-1.1.1.tgz}
+ resolution:
+ {
+ integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/unquote/-/unquote-1.1.1.tgz,
+ }
name: unquote
version: 1.1.1
dev: false
+ registry.npmmirror.com/uri-js/4.4.1:
+ resolution:
+ {
+ integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz,
+ }
+ name: uri-js
+ version: 4.4.1
+ dependencies:
+ punycode: registry.npmmirror.com/punycode/2.1.1
+ dev: true
+
registry.npmmirror.com/util-deprecate/1.0.2:
- resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz}
+ resolution:
+ {
+ integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz,
+ }
name: util-deprecate
version: 1.0.2
registry.npmmirror.com/utils-merge/1.0.1:
- resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/utils-merge/-/utils-merge-1.0.1.tgz}
+ resolution:
+ {
+ integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/utils-merge/-/utils-merge-1.0.1.tgz,
+ }
name: utils-merge
version: 1.0.1
- engines: {node: '>= 0.4.0'}
+ engines: { node: '>= 0.4.0' }
+ dev: true
+
+ registry.npmmirror.com/v8-compile-cache/2.3.0:
+ resolution:
+ {
+ integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz,
+ }
+ name: v8-compile-cache
+ version: 2.3.0
dev: true
registry.npmmirror.com/vary/1.1.2:
- resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz}
+ resolution:
+ {
+ integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz,
+ }
name: vary
version: 1.1.2
- engines: {node: '>= 0.8'}
+ engines: { node: '>= 0.8' }
+ dev: true
+
+ registry.npmmirror.com/vite-plugin-eslint/1.6.1_eslint@8.16.0+vite@2.9.9:
+ resolution:
+ {
+ integrity: sha512-wXwGJ222zjlllHmmPXX6oSU8DbmYjnA6HHBYbOLT8WAc73j4/YAtBQHCVSoHOTPiT4TPzsuZSvputWwc86BweQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/vite-plugin-eslint/-/vite-plugin-eslint-1.6.1.tgz,
+ }
+ id: registry.npmmirror.com/vite-plugin-eslint/1.6.1
+ name: vite-plugin-eslint
+ version: 1.6.1
+ peerDependencies:
+ eslint: '>=7'
+ vite: ^2.0.0
+ dependencies:
+ '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/4.2.1
+ '@types/eslint': registry.npmmirror.com/@types/eslint/8.4.2
+ eslint: registry.npmmirror.com/eslint/8.16.0
+ rollup: registry.npmmirror.com/rollup/2.75.5
+ vite: registry.npmmirror.com/vite/2.9.9_sass@1.52.1
dev: true
registry.npmmirror.com/vite-plugin-windicss/1.8.4_vite@2.9.9:
- resolution: {integrity: sha512-LSZAO8BZn3x406GRbYX5t5ONXXJVdqiQtN1qrznLA/Dy5/NzZVhfcrL6N1qEYYO7HsCDT4pLAjTzObvDnM9Y8A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vite-plugin-windicss/-/vite-plugin-windicss-1.8.4.tgz}
+ resolution:
+ {
+ integrity: sha512-LSZAO8BZn3x406GRbYX5t5ONXXJVdqiQtN1qrznLA/Dy5/NzZVhfcrL6N1qEYYO7HsCDT4pLAjTzObvDnM9Y8A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/vite-plugin-windicss/-/vite-plugin-windicss-1.8.4.tgz,
+ }
id: registry.npmmirror.com/vite-plugin-windicss/1.8.4
name: vite-plugin-windicss
version: 1.8.4
@@ -3271,11 +6458,16 @@ packages:
dev: true
registry.npmmirror.com/vite/2.9.9_sass@1.52.1:
- resolution: {integrity: sha512-ffaam+NgHfbEmfw/Vuh6BHKKlI/XIAhxE5QSS7gFLIngxg171mg1P3a4LSRME0z2ZU1ScxoKzphkipcYwSD5Ew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vite/-/vite-2.9.9.tgz}
+ resolution:
+ {
+ integrity: sha512-ffaam+NgHfbEmfw/Vuh6BHKKlI/XIAhxE5QSS7gFLIngxg171mg1P3a4LSRME0z2ZU1ScxoKzphkipcYwSD5Ew==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/vite/-/vite-2.9.9.tgz,
+ }
id: registry.npmmirror.com/vite/2.9.9
name: vite
version: 2.9.9
- engines: {node: '>=12.2.0'}
+ engines: { node: '>=12.2.0' }
hasBin: true
peerDependencies:
less: '*'
@@ -3297,12 +6489,43 @@ packages:
optionalDependencies:
fsevents: registry.npmmirror.com/fsevents/2.3.2
+ registry.npmmirror.com/vue-eslint-parser/9.0.2_eslint@8.16.0:
+ resolution:
+ {
+ integrity: sha512-uCPQwTGjOtAYrwnU+76pYxalhjsh7iFBsHwBqDHiOPTxtICDaraO4Szw54WFTNZTAEsgHHzqFOu1mmnBOBRzDA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-9.0.2.tgz,
+ }
+ id: registry.npmmirror.com/vue-eslint-parser/9.0.2
+ name: vue-eslint-parser
+ version: 9.0.2
+ engines: { node: ^14.17.0 || >=16.0.0 }
+ peerDependencies:
+ eslint: '>=6.0.0'
+ dependencies:
+ debug: registry.npmmirror.com/debug/4.3.4
+ eslint: registry.npmmirror.com/eslint/8.16.0
+ eslint-scope: registry.npmmirror.com/eslint-scope/7.1.1
+ eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/3.3.0
+ espree: registry.npmmirror.com/espree/9.3.2
+ esquery: registry.npmmirror.com/esquery/1.4.0
+ lodash: registry.npmmirror.com/lodash/4.17.21
+ semver: registry.npmmirror.com/semver/7.3.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
registry.npmmirror.com/vue-i18n/9.1.10_vue@3.2.36:
- resolution: {integrity: sha512-jpr7gV5KPk4n+sSPdpZT8Qx3XzTcNDWffRlHV/cT2NUyEf+sEgTTmLvnBAibjOFJ0zsUyZlVTAWH5DDnYep+1g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-i18n/-/vue-i18n-9.1.10.tgz}
+ resolution:
+ {
+ integrity: sha512-jpr7gV5KPk4n+sSPdpZT8Qx3XzTcNDWffRlHV/cT2NUyEf+sEgTTmLvnBAibjOFJ0zsUyZlVTAWH5DDnYep+1g==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/vue-i18n/-/vue-i18n-9.1.10.tgz,
+ }
id: registry.npmmirror.com/vue-i18n/9.1.10
name: vue-i18n
version: 9.1.10
- engines: {node: '>= 10'}
+ engines: { node: '>= 10' }
peerDependencies:
vue: ^3.0.0
dependencies:
@@ -3314,7 +6537,12 @@ packages:
dev: false
registry.npmmirror.com/vue-router/4.0.15_vue@3.2.36:
- resolution: {integrity: sha512-xa+pIN9ZqORdIW1MkN2+d9Ui2pCM1b/UMgwYUCZOiFYHAvz/slKKBDha8DLrh5aCG/RibtrpyhKjKOZ85tYyWg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-router/-/vue-router-4.0.15.tgz}
+ resolution:
+ {
+ integrity: sha512-xa+pIN9ZqORdIW1MkN2+d9Ui2pCM1b/UMgwYUCZOiFYHAvz/slKKBDha8DLrh5aCG/RibtrpyhKjKOZ85tYyWg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/vue-router/-/vue-router-4.0.15.tgz,
+ }
id: registry.npmmirror.com/vue-router/4.0.15
name: vue-router
version: 4.0.15
@@ -3326,7 +6554,12 @@ packages:
dev: false
registry.npmmirror.com/vue/3.2.36:
- resolution: {integrity: sha512-5yTXmrE6gW8IQgttzHW5bfBiFA6mx35ZXHjGLDmKYzW6MMmYvCwuKybANRepwkMYeXw2v1buGg3/lPICY5YlZw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue/-/vue-3.2.36.tgz}
+ resolution:
+ {
+ integrity: sha512-5yTXmrE6gW8IQgttzHW5bfBiFA6mx35ZXHjGLDmKYzW6MMmYvCwuKybANRepwkMYeXw2v1buGg3/lPICY5YlZw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/vue/-/vue-3.2.36.tgz,
+ }
name: vue
version: 3.2.36
dependencies:
@@ -3337,7 +6570,12 @@ packages:
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.36
registry.npmmirror.com/webpack-sources/1.4.3:
- resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/webpack-sources/-/webpack-sources-1.4.3.tgz}
+ resolution:
+ {
+ integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/webpack-sources/-/webpack-sources-1.4.3.tgz,
+ }
name: webpack-sources
version: 1.4.3
dependencies:
@@ -3346,23 +6584,38 @@ packages:
dev: true
registry.npmmirror.com/webpack-virtual-modules/0.4.3:
- resolution: {integrity: sha512-5NUqC2JquIL2pBAAo/VfBP6KuGkHIZQXW/lNKupLPfhViwh8wNsu0BObtl09yuKZszeEUfbXz8xhrHvSG16Nqw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/webpack-virtual-modules/-/webpack-virtual-modules-0.4.3.tgz}
+ resolution:
+ {
+ integrity: sha512-5NUqC2JquIL2pBAAo/VfBP6KuGkHIZQXW/lNKupLPfhViwh8wNsu0BObtl09yuKZszeEUfbXz8xhrHvSG16Nqw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/webpack-virtual-modules/-/webpack-virtual-modules-0.4.3.tgz,
+ }
name: webpack-virtual-modules
version: 0.4.3
dev: true
registry.npmmirror.com/which/2.0.2:
- resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/which/-/which-2.0.2.tgz}
+ resolution:
+ {
+ integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/which/-/which-2.0.2.tgz,
+ }
name: which
version: 2.0.2
- engines: {node: '>= 8'}
+ engines: { node: '>= 8' }
hasBin: true
dependencies:
isexe: registry.npmmirror.com/isexe/2.0.0
dev: true
registry.npmmirror.com/windicss-webpack-plugin/1.7.3:
- resolution: {integrity: sha512-vESTMEUqzNlvOmnOCCxeqDkj1q2u69FfKMQHyTF9Y9tLJbWttEHgt+qSJZ3cYndUHRxbz06INanEyL08dQr79A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/windicss-webpack-plugin/-/windicss-webpack-plugin-1.7.3.tgz}
+ resolution:
+ {
+ integrity: sha512-vESTMEUqzNlvOmnOCCxeqDkj1q2u69FfKMQHyTF9Y9tLJbWttEHgt+qSJZ3cYndUHRxbz06INanEyL08dQr79A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/windicss-webpack-plugin/-/windicss-webpack-plugin-1.7.3.tgz,
+ }
name: windicss-webpack-plugin
version: 1.7.3
dependencies:
@@ -3379,18 +6632,51 @@ packages:
dev: true
registry.npmmirror.com/windicss/3.5.4:
- resolution: {integrity: sha512-x2Iu0a69dtNiKHMkR886lx0WKbZI5GqvXyvGBCJ2VA6rcjKYjnzCA/Ljd6hNQBfqlkSum8J+qAVcCfLzQFI4rQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/windicss/-/windicss-3.5.4.tgz}
+ resolution:
+ {
+ integrity: sha512-x2Iu0a69dtNiKHMkR886lx0WKbZI5GqvXyvGBCJ2VA6rcjKYjnzCA/Ljd6hNQBfqlkSum8J+qAVcCfLzQFI4rQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/windicss/-/windicss-3.5.4.tgz,
+ }
name: windicss
version: 3.5.4
- engines: {node: '>= 12'}
+ engines: { node: '>= 12' }
hasBin: true
dev: true
+ registry.npmmirror.com/word-wrap/1.2.3:
+ resolution:
+ {
+ integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/word-wrap/-/word-wrap-1.2.3.tgz,
+ }
+ name: word-wrap
+ version: 1.2.3
+ engines: { node: '>=0.10.0' }
+ dev: true
+
+ registry.npmmirror.com/wrappy/1.0.2:
+ resolution:
+ {
+ integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz,
+ }
+ name: wrappy
+ version: 1.0.2
+ dev: true
+
registry.npmmirror.com/ws/8.7.0:
- resolution: {integrity: sha512-c2gsP0PRwcLFzUiA8Mkr37/MI7ilIlHQxaEAtd0uNMbVMoy8puJyafRlm0bV9MbGSabUPeLrRRaqIBcFcA2Pqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ws/-/ws-8.7.0.tgz}
+ resolution:
+ {
+ integrity: sha512-c2gsP0PRwcLFzUiA8Mkr37/MI7ilIlHQxaEAtd0uNMbVMoy8puJyafRlm0bV9MbGSabUPeLrRRaqIBcFcA2Pqg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/ws/-/ws-8.7.0.tgz,
+ }
name: ws
version: 8.7.0
- engines: {node: '>=10.0.0'}
+ engines: { node: '>=10.0.0' }
peerDependencies:
bufferutil: ^4.0.1
utf-8-validate: ^5.0.2
@@ -3401,20 +6687,58 @@ packages:
optional: true
dev: true
+ registry.npmmirror.com/xml-name-validator/4.0.0:
+ resolution:
+ {
+ integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz,
+ }
+ name: xml-name-validator
+ version: 4.0.0
+ engines: { node: '>=12' }
+ dev: true
+
registry.npmmirror.com/xmlhttprequest/1.8.0:
- resolution: {integrity: sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz}
+ resolution:
+ {
+ integrity: sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz,
+ }
name: xmlhttprequest
version: 1.8.0
- engines: {node: '>=0.4.0'}
+ engines: { node: '>=0.4.0' }
dev: false
registry.npmmirror.com/xregexp/3.1.0:
- resolution: {integrity: sha512-4Y1x6DyB8xRoxosooa6PlGWqmmSKatbzhrftZ7Purmm4B8R4qIEJG1A2hZsdz5DhmIqS0msC0I7KEq93GphEVg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/xregexp/-/xregexp-3.1.0.tgz}
+ resolution:
+ {
+ integrity: sha512-4Y1x6DyB8xRoxosooa6PlGWqmmSKatbzhrftZ7Purmm4B8R4qIEJG1A2hZsdz5DhmIqS0msC0I7KEq93GphEVg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/xregexp/-/xregexp-3.1.0.tgz,
+ }
name: xregexp
version: 3.1.0
+ registry.npmmirror.com/yallist/4.0.0:
+ resolution:
+ {
+ integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz,
+ }
+ name: yallist
+ version: 4.0.0
+ dev: true
+
registry.npmmirror.com/yaml/1.10.2:
- resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yaml/-/yaml-1.10.2.tgz}
+ resolution:
+ {
+ integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==,
+ registry: https://registry.npm.taobao.org/,
+ tarball: https://registry.npmmirror.com/yaml/-/yaml-1.10.2.tgz,
+ }
name: yaml
version: 1.10.2
- engines: {node: '>= 6'}
+ engines: { node: '>= 6' }
diff --git a/src/App.vue b/src/App.vue
index a75adcd..dca8c8e 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,28 +1,29 @@
diff --git a/src/components/test/Test.vue b/src/components/test/Test.vue
index efd9fdf..fc1d37c 100644
--- a/src/components/test/Test.vue
+++ b/src/components/test/Test.vue
@@ -1,14 +1,16 @@
-
- Test Component
-
+Test Component-----{{ msg }}
diff --git a/src/env.d.ts b/src/env.d.ts
index d27eb5a..7ade2e2 100644
--- a/src/env.d.ts
+++ b/src/env.d.ts
@@ -1,8 +1,8 @@
-///
+// /
declare module '*.vue' {
- import { DefineComponent } from 'vue'
+ import { DefineComponent } from 'vue';
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
- const component: DefineComponent<{}, {}, any>
- export default component
+ const component: DefineComponent<{}, {}, any>;
+ export default component;
}
diff --git a/src/main.ts b/src/main.ts
index ea78fd7..317c4ad 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -1,5 +1,5 @@
-import { createSSRApp } from "vue";
-import App from "./App.vue";
+import { createSSRApp } from 'vue';
+import App from './App.vue';
import 'virtual:windi.css';
export function createApp() {
const app = createSSRApp(App);
diff --git a/src/manifest.json b/src/manifest.json
index 309b9ec..c38e717 100644
--- a/src/manifest.json
+++ b/src/manifest.json
@@ -1,72 +1,72 @@
{
- "name" : "",
- "appid" : "",
- "description" : "",
- "versionName" : "1.0.0",
- "versionCode" : "100",
- "transformPx" : false,
- /* 5+App特有相关 */
- "app-plus" : {
- "usingComponents" : true,
- "nvueStyleCompiler" : "uni-app",
- "compilerVersion" : 3,
- "splashscreen" : {
- "alwaysShowBeforeRender" : true,
- "waiting" : true,
- "autoclose" : true,
- "delay" : 0
- },
- /* 模块配置 */
- "modules" : {},
- /* 应用发布信息 */
- "distribute" : {
- /* android打包配置 */
- "android" : {
- "permissions" : [
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- ""
- ]
- },
- /* ios打包配置 */
- "ios" : {},
- /* SDK配置 */
- "sdkConfigs" : {}
- }
+ "name": "",
+ "appid": "",
+ "description": "",
+ "versionName": "1.0.0",
+ "versionCode": "100",
+ "transformPx": false,
+ /* 5+App特有相关 */
+ "app-plus": {
+ "usingComponents": true,
+ "nvueStyleCompiler": "uni-app",
+ "compilerVersion": 3,
+ "splashscreen": {
+ "alwaysShowBeforeRender": true,
+ "waiting": true,
+ "autoclose": true,
+ "delay": 0
},
- /* 快应用特有相关 */
- "quickapp" : {},
- /* 小程序特有相关 */
- "mp-weixin" : {
- "appid" : "",
- "setting" : {
- "urlCheck" : false
- },
- "usingComponents" : true
+ /* 模块配置 */
+ "modules": {},
+ /* 应用发布信息 */
+ "distribute": {
+ /* android打包配置 */
+ "android": {
+ "permissions": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ]
+ },
+ /* ios打包配置 */
+ "ios": {},
+ /* SDK配置 */
+ "sdkConfigs": {}
+ }
+ },
+ /* 快应用特有相关 */
+ "quickapp": {},
+ /* 小程序特有相关 */
+ "mp-weixin": {
+ "appid": "",
+ "setting": {
+ "urlCheck": false
},
- "mp-alipay" : {
- "usingComponents" : true
- },
- "mp-baidu" : {
- "usingComponents" : true
- },
- "mp-toutiao" : {
- "usingComponents" : true
- },
- "uniStatistics": {
- "enable": false
- },
- "vueVersion" : "3"
+ "usingComponents": true
+ },
+ "mp-alipay": {
+ "usingComponents": true
+ },
+ "mp-baidu": {
+ "usingComponents": true
+ },
+ "mp-toutiao": {
+ "usingComponents": true
+ },
+ "uniStatistics": {
+ "enable": false
+ },
+ "vueVersion": "3"
}
diff --git a/src/pages.json b/src/pages.json
index 1aea851..8a92cfb 100644
--- a/src/pages.json
+++ b/src/pages.json
@@ -1,16 +1,17 @@
{
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "uni-app"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- }
+ "pages": [
+ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
+ {
+ "path": "pages/index/index",
+ "style": {
+ "navigationBarTitleText": "uni-app"
+ }
+ }
+ ],
+ "globalStyle": {
+ "navigationBarTextStyle": "black",
+ "navigationBarTitleText": "uni-app",
+ "navigationBarBackgroundColor": "#F8F8F8",
+ "backgroundColor": "#F8F8F8"
+ }
}
diff --git a/src/pages/index/index.vue b/src/pages/index/index.vue
index 2a054be..aae13e4 100644
--- a/src/pages/index/index.vue
+++ b/src/pages/index/index.vue
@@ -1,7 +1,7 @@
-
+
{{ title }}
@@ -9,32 +9,32 @@
diff --git a/src/uni.scss b/src/uni.scss
index 845142d..f9dc976 100644
--- a/src/uni.scss
+++ b/src/uni.scss
@@ -21,32 +21,32 @@ $uni-color-warning: #f0ad4e;
$uni-color-error: #dd524d;
/* 文字基本颜色 */
-$uni-text-color:#333;//基本色
-$uni-text-color-inverse:#fff;//反色
-$uni-text-color-grey:#999;//辅助灰色,如加载更多的提示信息
+$uni-text-color: #333; //基本色
+$uni-text-color-inverse: #fff; //反色
+$uni-text-color-grey: #999; //辅助灰色,如加载更多的提示信息
$uni-text-color-placeholder: #808080;
-$uni-text-color-disable:#c0c0c0;
+$uni-text-color-disable: #c0c0c0;
/* 背景颜色 */
-$uni-bg-color:#ffffff;
-$uni-bg-color-grey:#f8f8f8;
-$uni-bg-color-hover:#f1f1f1;//点击状态颜色
-$uni-bg-color-mask:rgba(0, 0, 0, 0.4);//遮罩颜色
+$uni-bg-color: #ffffff;
+$uni-bg-color-grey: #f8f8f8;
+$uni-bg-color-hover: #f1f1f1; //点击状态颜色
+$uni-bg-color-mask: rgba(0, 0, 0, 0.4); //遮罩颜色
/* 边框颜色 */
-$uni-border-color:#c8c7cc;
+$uni-border-color: #c8c7cc;
/* 尺寸变量 */
/* 文字尺寸 */
-$uni-font-size-sm:24rpx;
-$uni-font-size-base:28rpx;
-$uni-font-size-lg:32rpx;
+$uni-font-size-sm: 24rpx;
+$uni-font-size-base: 28rpx;
+$uni-font-size-lg: 32rpx;
/* 图片尺寸 */
-$uni-img-size-sm:40rpx;
-$uni-img-size-base:52rpx;
-$uni-img-size-lg:80rpx;
+$uni-img-size-sm: 40rpx;
+$uni-img-size-base: 52rpx;
+$uni-img-size-lg: 80rpx;
/* Border Radius */
$uni-border-radius-sm: 4rpx;
@@ -68,9 +68,9 @@ $uni-spacing-col-lg: 24rpx;
$uni-opacity-disabled: 0.3; // 组件禁用态的透明度
/* 文章场景相关 */
-$uni-color-title: #2C405A; // 文章标题颜色
-$uni-font-size-title:40rpx;
+$uni-color-title: #2c405a; // 文章标题颜色
+$uni-font-size-title: 40rpx;
$uni-color-subtitle: #555555; // 二级标题颜色
-$uni-font-size-subtitle:36rpx;
-$uni-color-paragraph: #3F536E; // 文章段落颜色
-$uni-font-size-paragraph:30rpx;
\ No newline at end of file
+$uni-font-size-subtitle: 36rpx;
+$uni-color-paragraph: #3f536e; // 文章段落颜色
+$uni-font-size-paragraph: 30rpx;
diff --git a/vite.config.ts b/vite.config.ts
index 85922f0..a637c04 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -1,24 +1,31 @@
-import {defineConfig} from "vite";
-import uni from "@dcloudio/vite-plugin-uni";
+import { defineConfig } from 'vite';
+import uni from '@dcloudio/vite-plugin-uni';
+import eslintPlugin from 'vite-plugin-eslint';
import windicss from 'vite-plugin-windicss';
import MiniProgramTailwind from '@dcasia/mini-program-tailwind-webpack-plugin/rollup';
import { resolve } from 'path';
// https://vitejs.dev/config/
export default defineConfig({
- plugins: [
- uni(),
- windicss(),
- MiniProgramTailwind({
- // 是否开启自动转换至 rpx 单位值的功能
- enableRpx: true,
- // 设计稿的像素宽度值,该尺寸会影响 rpx 转换过程中的计算比率
- designWidth: 350
- }),
- ],
- resolve: {
- alias: {
- '@': resolve('./src'),
- },
+ base: './',
+ plugins: [
+ uni(),
+ windicss(),
+ MiniProgramTailwind({
+ // 是否开启自动转换至 rpx 单位值的功能
+ enableRpx: true,
+ // 设计稿的像素宽度值,该尺寸会影响 rpx 转换过程中的计算比率
+ designWidth: 350,
+ }),
+ eslintPlugin({
+ include: ['src/**/*.js', 'src/**/*.vue', 'src/**/*.ts'],
+ exclude: ['./node_modules/**'],
+ cache: false,
+ }),
+ ],
+ resolve: {
+ alias: {
+ '@': resolve('./src'),
},
+ },
});
diff --git a/windi.config.ts b/windi.config.ts
index cace525..d2c228a 100644
--- a/windi.config.ts
+++ b/windi.config.ts
@@ -1,21 +1,21 @@
-import {defineConfig} from 'vite-plugin-windicss';
+import { defineConfig } from 'vite-plugin-windicss';
// https://windicss.org/posts/attributify.html
export default defineConfig({
- attributify: {
- // prefix: ''
- },
- preflight: false,
- prefixer: false,
- extract: {
- // 忽略部分文件夹
- exclude: ['node_modules', '.git', 'dist', '.idea', '.vscode']
- },
- corePlugins: {
- // 禁用掉在小程序环境中不可能用到的 plugins
- container: false
- },
- alias: {},
- plugins: [],
- variants: {}
+ attributify: {
+ // prefix: ''
+ },
+ preflight: false,
+ prefixer: false,
+ extract: {
+ // 忽略部分文件夹
+ exclude: ['node_modules', '.git', 'dist', '.idea', '.vscode'],
+ },
+ corePlugins: {
+ // 禁用掉在小程序环境中不可能用到的 plugins
+ container: false,
+ },
+ alias: {},
+ plugins: [],
+ variants: {},
});